OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [gdb/] [breakpoint.c] - Diff between revs 157 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 157 Rev 816
/* Everything about breakpoints, for GDB.
/* Everything about breakpoints, for GDB.
 
 
   Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
   Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
   1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
   1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
   2008 Free Software Foundation, Inc.
   2008 Free Software Foundation, Inc.
 
 
   This file is part of GDB.
   This file is part of GDB.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
#include "defs.h"
#include "defs.h"
#include <ctype.h>
#include <ctype.h>
#include "hashtab.h"
#include "hashtab.h"
#include "symtab.h"
#include "symtab.h"
#include "frame.h"
#include "frame.h"
#include "breakpoint.h"
#include "breakpoint.h"
#include "gdbtypes.h"
#include "gdbtypes.h"
#include "expression.h"
#include "expression.h"
#include "gdbcore.h"
#include "gdbcore.h"
#include "gdbcmd.h"
#include "gdbcmd.h"
#include "value.h"
#include "value.h"
#include "command.h"
#include "command.h"
#include "inferior.h"
#include "inferior.h"
#include "gdbthread.h"
#include "gdbthread.h"
#include "target.h"
#include "target.h"
#include "language.h"
#include "language.h"
#include "gdb_string.h"
#include "gdb_string.h"
#include "demangle.h"
#include "demangle.h"
#include "annotate.h"
#include "annotate.h"
#include "symfile.h"
#include "symfile.h"
#include "objfiles.h"
#include "objfiles.h"
#include "source.h"
#include "source.h"
#include "linespec.h"
#include "linespec.h"
#include "completer.h"
#include "completer.h"
#include "gdb.h"
#include "gdb.h"
#include "ui-out.h"
#include "ui-out.h"
#include "cli/cli-script.h"
#include "cli/cli-script.h"
#include "gdb_assert.h"
#include "gdb_assert.h"
#include "block.h"
#include "block.h"
#include "solib.h"
#include "solib.h"
#include "solist.h"
#include "solist.h"
#include "observer.h"
#include "observer.h"
#include "exceptions.h"
#include "exceptions.h"
#include "memattr.h"
#include "memattr.h"
#include "ada-lang.h"
#include "ada-lang.h"
#include "top.h"
#include "top.h"
 
 
#include "gdb-events.h"
#include "gdb-events.h"
#include "mi/mi-common.h"
#include "mi/mi-common.h"
 
 
/* Prototypes for local functions. */
/* Prototypes for local functions. */
 
 
static void until_break_command_continuation (struct continuation_arg *arg);
static void until_break_command_continuation (struct continuation_arg *arg);
 
 
static void catch_command_1 (char *, int, int);
static void catch_command_1 (char *, int, int);
 
 
static void enable_delete_command (char *, int);
static void enable_delete_command (char *, int);
 
 
static void enable_delete_breakpoint (struct breakpoint *);
static void enable_delete_breakpoint (struct breakpoint *);
 
 
static void enable_once_command (char *, int);
static void enable_once_command (char *, int);
 
 
static void enable_once_breakpoint (struct breakpoint *);
static void enable_once_breakpoint (struct breakpoint *);
 
 
static void disable_command (char *, int);
static void disable_command (char *, int);
 
 
static void enable_command (char *, int);
static void enable_command (char *, int);
 
 
static void map_breakpoint_numbers (char *, void (*)(struct breakpoint *));
static void map_breakpoint_numbers (char *, void (*)(struct breakpoint *));
 
 
static void ignore_command (char *, int);
static void ignore_command (char *, int);
 
 
static int breakpoint_re_set_one (void *);
static int breakpoint_re_set_one (void *);
 
 
static void clear_command (char *, int);
static void clear_command (char *, int);
 
 
static void catch_command (char *, int);
static void catch_command (char *, int);
 
 
static void watch_command (char *, int);
static void watch_command (char *, int);
 
 
static int can_use_hardware_watchpoint (struct value *);
static int can_use_hardware_watchpoint (struct value *);
 
 
static void break_command_1 (char *, int, int);
static void break_command_1 (char *, int, int);
 
 
static void mention (struct breakpoint *);
static void mention (struct breakpoint *);
 
 
struct breakpoint *set_raw_breakpoint (struct symtab_and_line, enum bptype);
struct breakpoint *set_raw_breakpoint (struct symtab_and_line, enum bptype);
 
 
static void check_duplicates (struct breakpoint *);
static void check_duplicates (struct breakpoint *);
 
 
static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
 
 
static CORE_ADDR adjust_breakpoint_address (CORE_ADDR bpaddr,
static CORE_ADDR adjust_breakpoint_address (CORE_ADDR bpaddr,
                                            enum bptype bptype);
                                            enum bptype bptype);
 
 
static void describe_other_breakpoints (CORE_ADDR, asection *, int);
static void describe_other_breakpoints (CORE_ADDR, asection *, int);
 
 
static void breakpoints_info (char *, int);
static void breakpoints_info (char *, int);
 
 
static void breakpoint_1 (int, int);
static void breakpoint_1 (int, int);
 
 
static bpstat bpstat_alloc (const struct bp_location *, bpstat);
static bpstat bpstat_alloc (const struct bp_location *, bpstat);
 
 
static int breakpoint_cond_eval (void *);
static int breakpoint_cond_eval (void *);
 
 
static void cleanup_executing_breakpoints (void *);
static void cleanup_executing_breakpoints (void *);
 
 
static void commands_command (char *, int);
static void commands_command (char *, int);
 
 
static void condition_command (char *, int);
static void condition_command (char *, int);
 
 
static int get_number_trailer (char **, int);
static int get_number_trailer (char **, int);
 
 
void set_breakpoint_count (int);
void set_breakpoint_count (int);
 
 
typedef enum
typedef enum
  {
  {
    mark_inserted,
    mark_inserted,
    mark_uninserted
    mark_uninserted
  }
  }
insertion_state_t;
insertion_state_t;
 
 
static int remove_breakpoint (struct bp_location *, insertion_state_t);
static int remove_breakpoint (struct bp_location *, insertion_state_t);
 
 
static enum print_stop_action print_it_typical (bpstat);
static enum print_stop_action print_it_typical (bpstat);
 
 
static enum print_stop_action print_bp_stop_message (bpstat bs);
static enum print_stop_action print_bp_stop_message (bpstat bs);
 
 
typedef struct
typedef struct
  {
  {
    enum exception_event_kind kind;
    enum exception_event_kind kind;
    int enable_p;
    int enable_p;
  }
  }
args_for_catchpoint_enable;
args_for_catchpoint_enable;
 
 
static int watchpoint_check (void *);
static int watchpoint_check (void *);
 
 
static void maintenance_info_breakpoints (char *, int);
static void maintenance_info_breakpoints (char *, int);
 
 
static void create_longjmp_breakpoint (char *);
static void create_longjmp_breakpoint (char *);
 
 
static void create_overlay_event_breakpoint (char *);
static void create_overlay_event_breakpoint (char *);
 
 
static int hw_breakpoint_used_count (void);
static int hw_breakpoint_used_count (void);
 
 
static int hw_watchpoint_used_count (enum bptype, int *);
static int hw_watchpoint_used_count (enum bptype, int *);
 
 
static void hbreak_command (char *, int);
static void hbreak_command (char *, int);
 
 
static void thbreak_command (char *, int);
static void thbreak_command (char *, int);
 
 
static void watch_command_1 (char *, int, int);
static void watch_command_1 (char *, int, int);
 
 
static void rwatch_command (char *, int);
static void rwatch_command (char *, int);
 
 
static void awatch_command (char *, int);
static void awatch_command (char *, int);
 
 
static void do_enable_breakpoint (struct breakpoint *, enum bpdisp);
static void do_enable_breakpoint (struct breakpoint *, enum bpdisp);
 
 
static void create_fork_vfork_event_catchpoint (int tempflag,
static void create_fork_vfork_event_catchpoint (int tempflag,
                                                char *cond_string,
                                                char *cond_string,
                                                enum bptype bp_kind);
                                                enum bptype bp_kind);
 
 
static void stop_command (char *arg, int from_tty);
static void stop_command (char *arg, int from_tty);
 
 
static void stopin_command (char *arg, int from_tty);
static void stopin_command (char *arg, int from_tty);
 
 
static void stopat_command (char *arg, int from_tty);
static void stopat_command (char *arg, int from_tty);
 
 
static char *ep_find_event_name_end (char *arg);
static char *ep_find_event_name_end (char *arg);
 
 
static char *ep_parse_optional_if_clause (char **arg);
static char *ep_parse_optional_if_clause (char **arg);
 
 
static char *ep_parse_optional_filename (char **arg);
static char *ep_parse_optional_filename (char **arg);
 
 
static void create_exception_catchpoint (int tempflag, char *cond_string,
static void create_exception_catchpoint (int tempflag, char *cond_string,
                                         enum exception_event_kind ex_event,
                                         enum exception_event_kind ex_event,
                                         struct symtab_and_line *sal);
                                         struct symtab_and_line *sal);
 
 
static void catch_exception_command_1 (enum exception_event_kind ex_event,
static void catch_exception_command_1 (enum exception_event_kind ex_event,
                                       char *arg, int tempflag, int from_tty);
                                       char *arg, int tempflag, int from_tty);
 
 
static void tcatch_command (char *arg, int from_tty);
static void tcatch_command (char *arg, int from_tty);
 
 
static void ep_skip_leading_whitespace (char **s);
static void ep_skip_leading_whitespace (char **s);
 
 
static int single_step_breakpoint_inserted_here_p (CORE_ADDR pc);
static int single_step_breakpoint_inserted_here_p (CORE_ADDR pc);
 
 
static void free_bp_location (struct bp_location *loc);
static void free_bp_location (struct bp_location *loc);
 
 
static void mark_breakpoints_out (void);
static void mark_breakpoints_out (void);
 
 
static struct bp_location *
static struct bp_location *
allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type);
allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type);
 
 
static void
static void
unlink_locations_from_global_list (struct breakpoint *bpt);
unlink_locations_from_global_list (struct breakpoint *bpt);
 
 
static int
static int
is_hardware_watchpoint (struct breakpoint *bpt);
is_hardware_watchpoint (struct breakpoint *bpt);
 
 
/* Prototypes for exported functions. */
/* Prototypes for exported functions. */
 
 
/* If FALSE, gdb will not use hardware support for watchpoints, even
/* If FALSE, gdb will not use hardware support for watchpoints, even
   if such is available. */
   if such is available. */
static int can_use_hw_watchpoints;
static int can_use_hw_watchpoints;
 
 
static void
static void
show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
                             struct cmd_list_element *c,
                             struct cmd_list_element *c,
                             const char *value)
                             const char *value)
{
{
  fprintf_filtered (file, _("\
  fprintf_filtered (file, _("\
Debugger's willingness to use watchpoint hardware is %s.\n"),
Debugger's willingness to use watchpoint hardware is %s.\n"),
                    value);
                    value);
}
}
 
 
/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
   If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
   If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
   for unrecognized breakpoint locations.
   for unrecognized breakpoint locations.
   If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized.  */
   If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized.  */
static enum auto_boolean pending_break_support;
static enum auto_boolean pending_break_support;
static void
static void
show_pending_break_support (struct ui_file *file, int from_tty,
show_pending_break_support (struct ui_file *file, int from_tty,
                            struct cmd_list_element *c,
                            struct cmd_list_element *c,
                            const char *value)
                            const char *value)
{
{
  fprintf_filtered (file, _("\
  fprintf_filtered (file, _("\
Debugger's behavior regarding pending breakpoints is %s.\n"),
Debugger's behavior regarding pending breakpoints is %s.\n"),
                    value);
                    value);
}
}
 
 
/* If 1, gdb will automatically use hardware breakpoints for breakpoints
/* If 1, gdb will automatically use hardware breakpoints for breakpoints
   set with "break" but falling in read-only memory.
   set with "break" but falling in read-only memory.
   If 0, gdb will warn about such breakpoints, but won't automatically
   If 0, gdb will warn about such breakpoints, but won't automatically
   use hardware breakpoints.  */
   use hardware breakpoints.  */
static int automatic_hardware_breakpoints;
static int automatic_hardware_breakpoints;
static void
static void
show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
                                     struct cmd_list_element *c,
                                     struct cmd_list_element *c,
                                     const char *value)
                                     const char *value)
{
{
  fprintf_filtered (file, _("\
  fprintf_filtered (file, _("\
Automatic usage of hardware breakpoints is %s.\n"),
Automatic usage of hardware breakpoints is %s.\n"),
                    value);
                    value);
}
}
 
 
 
 
void _initialize_breakpoint (void);
void _initialize_breakpoint (void);
 
 
extern int addressprint;        /* Print machine addresses? */
extern int addressprint;        /* Print machine addresses? */
 
 
/* Are we executing breakpoint commands?  */
/* Are we executing breakpoint commands?  */
static int executing_breakpoint_commands;
static int executing_breakpoint_commands;
 
 
/* Are overlay event breakpoints enabled? */
/* Are overlay event breakpoints enabled? */
static int overlay_events_enabled;
static int overlay_events_enabled;
 
 
/* Walk the following statement or block through all breakpoints.
/* Walk the following statement or block through all breakpoints.
   ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
   ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
   breakpoint.  */
   breakpoint.  */
 
 
#define ALL_BREAKPOINTS(B)  for (B = breakpoint_chain; B; B = B->next)
#define ALL_BREAKPOINTS(B)  for (B = breakpoint_chain; B; B = B->next)
 
 
#define ALL_BREAKPOINTS_SAFE(B,TMP)     \
#define ALL_BREAKPOINTS_SAFE(B,TMP)     \
        for (B = breakpoint_chain;      \
        for (B = breakpoint_chain;      \
             B ? (TMP=B->next, 1): 0;    \
             B ? (TMP=B->next, 1): 0;    \
             B = TMP)
             B = TMP)
 
 
/* Similar iterators for the low-level breakpoints.  */
/* Similar iterators for the low-level breakpoints.  */
 
 
#define ALL_BP_LOCATIONS(B)  for (B = bp_location_chain; B; B = B->global_next)
#define ALL_BP_LOCATIONS(B)  for (B = bp_location_chain; B; B = B->global_next)
 
 
#define ALL_BP_LOCATIONS_SAFE(B,TMP)    \
#define ALL_BP_LOCATIONS_SAFE(B,TMP)    \
        for (B = bp_location_chain;     \
        for (B = bp_location_chain;     \
             B ? (TMP=B->global_next, 1): 0;     \
             B ? (TMP=B->global_next, 1): 0;     \
             B = TMP)
             B = TMP)
 
 
/* True if breakpoint hit counts should be displayed in breakpoint info.  */
/* True if breakpoint hit counts should be displayed in breakpoint info.  */
 
 
int show_breakpoint_hit_counts = 1;
int show_breakpoint_hit_counts = 1;
 
 
/* Chains of all breakpoints defined.  */
/* Chains of all breakpoints defined.  */
 
 
struct breakpoint *breakpoint_chain;
struct breakpoint *breakpoint_chain;
 
 
struct bp_location *bp_location_chain;
struct bp_location *bp_location_chain;
 
 
/* Number of last breakpoint made.  */
/* Number of last breakpoint made.  */
 
 
int breakpoint_count;
int breakpoint_count;
 
 
/* Pointer to current exception event record */
/* Pointer to current exception event record */
static struct exception_event_record *current_exception_event;
static struct exception_event_record *current_exception_event;
 
 
/* This function returns a pointer to the string representation of the
/* This function returns a pointer to the string representation of the
   pathname of the dynamically-linked library that has just been
   pathname of the dynamically-linked library that has just been
   loaded.
   loaded.
 
 
   This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
   This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
   or undefined results are guaranteed.
   or undefined results are guaranteed.
 
 
   This string's contents are only valid immediately after the
   This string's contents are only valid immediately after the
   inferior has stopped in the dynamic linker hook, and becomes
   inferior has stopped in the dynamic linker hook, and becomes
   invalid as soon as the inferior is continued.  Clients should make
   invalid as soon as the inferior is continued.  Clients should make
   a copy of this string if they wish to continue the inferior and
   a copy of this string if they wish to continue the inferior and
   then access the string.  */
   then access the string.  */
 
 
#ifndef SOLIB_LOADED_LIBRARY_PATHNAME
#ifndef SOLIB_LOADED_LIBRARY_PATHNAME
#define SOLIB_LOADED_LIBRARY_PATHNAME(pid) ""
#define SOLIB_LOADED_LIBRARY_PATHNAME(pid) ""
#endif
#endif
 
 
/* This function returns a pointer to the string representation of the
/* This function returns a pointer to the string representation of the
   pathname of the dynamically-linked library that has just been
   pathname of the dynamically-linked library that has just been
   unloaded.
   unloaded.
 
 
   This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is
   This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is
   TRUE, or undefined results are guaranteed.
   TRUE, or undefined results are guaranteed.
 
 
   This string's contents are only valid immediately after the
   This string's contents are only valid immediately after the
   inferior has stopped in the dynamic linker hook, and becomes
   inferior has stopped in the dynamic linker hook, and becomes
   invalid as soon as the inferior is continued.  Clients should make
   invalid as soon as the inferior is continued.  Clients should make
   a copy of this string if they wish to continue the inferior and
   a copy of this string if they wish to continue the inferior and
   then access the string.  */
   then access the string.  */
 
 
#ifndef SOLIB_UNLOADED_LIBRARY_PATHNAME
#ifndef SOLIB_UNLOADED_LIBRARY_PATHNAME
#define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) ""
#define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) ""
#endif
#endif
 
 
/* This function is called by the "catch load" command.  It allows the
/* This function is called by the "catch load" command.  It allows the
   debugger to be notified by the dynamic linker when a specified
   debugger to be notified by the dynamic linker when a specified
   library file (or any library file, if filename is NULL) is loaded.  */
   library file (or any library file, if filename is NULL) is loaded.  */
 
 
#ifndef SOLIB_CREATE_CATCH_LOAD_HOOK
#ifndef SOLIB_CREATE_CATCH_LOAD_HOOK
#define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
#define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
   error (_("catch of library loads not yet implemented on this platform"))
   error (_("catch of library loads not yet implemented on this platform"))
#endif
#endif
 
 
/* This function is called by the "catch unload" command.  It allows
/* This function is called by the "catch unload" command.  It allows
   the debugger to be notified by the dynamic linker when a specified
   the debugger to be notified by the dynamic linker when a specified
   library file (or any library file, if filename is NULL) is
   library file (or any library file, if filename is NULL) is
   unloaded.  */
   unloaded.  */
 
 
#ifndef SOLIB_CREATE_CATCH_UNLOAD_HOOK
#ifndef SOLIB_CREATE_CATCH_UNLOAD_HOOK
#define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid, tempflag, filename, cond_string) \
#define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid, tempflag, filename, cond_string) \
   error (_("catch of library unloads not yet implemented on this platform"))
   error (_("catch of library unloads not yet implemented on this platform"))
#endif
#endif
 
 
/* Return whether a breakpoint is an active enabled breakpoint.  */
/* Return whether a breakpoint is an active enabled breakpoint.  */
static int
static int
breakpoint_enabled (struct breakpoint *b)
breakpoint_enabled (struct breakpoint *b)
{
{
  return (b->enable_state == bp_enabled);
  return (b->enable_state == bp_enabled);
}
}
 
 
/* Set breakpoint count to NUM.  */
/* Set breakpoint count to NUM.  */
 
 
void
void
set_breakpoint_count (int num)
set_breakpoint_count (int num)
{
{
  breakpoint_count = num;
  breakpoint_count = num;
  set_internalvar (lookup_internalvar ("bpnum"),
  set_internalvar (lookup_internalvar ("bpnum"),
                   value_from_longest (builtin_type_int, (LONGEST) num));
                   value_from_longest (builtin_type_int, (LONGEST) num));
}
}
 
 
/* Used in run_command to zero the hit count when a new run starts. */
/* Used in run_command to zero the hit count when a new run starts. */
 
 
void
void
clear_breakpoint_hit_counts (void)
clear_breakpoint_hit_counts (void)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    b->hit_count = 0;
    b->hit_count = 0;
}
}
 
 
/* Default address, symtab and line to put a breakpoint at
/* Default address, symtab and line to put a breakpoint at
   for "break" command with no arg.
   for "break" command with no arg.
   if default_breakpoint_valid is zero, the other three are
   if default_breakpoint_valid is zero, the other three are
   not valid, and "break" with no arg is an error.
   not valid, and "break" with no arg is an error.
 
 
   This set by print_stack_frame, which calls set_default_breakpoint.  */
   This set by print_stack_frame, which calls set_default_breakpoint.  */
 
 
int default_breakpoint_valid;
int default_breakpoint_valid;
CORE_ADDR default_breakpoint_address;
CORE_ADDR default_breakpoint_address;
struct symtab *default_breakpoint_symtab;
struct symtab *default_breakpoint_symtab;
int default_breakpoint_line;
int default_breakpoint_line;


/* *PP is a string denoting a breakpoint.  Get the number of the breakpoint.
/* *PP is a string denoting a breakpoint.  Get the number of the breakpoint.
   Advance *PP after the string and any trailing whitespace.
   Advance *PP after the string and any trailing whitespace.
 
 
   Currently the string can either be a number or "$" followed by the name
   Currently the string can either be a number or "$" followed by the name
   of a convenience variable.  Making it an expression wouldn't work well
   of a convenience variable.  Making it an expression wouldn't work well
   for map_breakpoint_numbers (e.g. "4 + 5 + 6").
   for map_breakpoint_numbers (e.g. "4 + 5 + 6").
 
 
   If the string is a NULL pointer, that denotes the last breakpoint.
   If the string is a NULL pointer, that denotes the last breakpoint.
 
 
   TRAILER is a character which can be found after the number; most
   TRAILER is a character which can be found after the number; most
   commonly this is `-'.  If you don't want a trailer, use \0.  */
   commonly this is `-'.  If you don't want a trailer, use \0.  */
static int
static int
get_number_trailer (char **pp, int trailer)
get_number_trailer (char **pp, int trailer)
{
{
  int retval = 0;        /* default */
  int retval = 0;        /* default */
  char *p = *pp;
  char *p = *pp;
 
 
  if (p == NULL)
  if (p == NULL)
    /* Empty line means refer to the last breakpoint.  */
    /* Empty line means refer to the last breakpoint.  */
    return breakpoint_count;
    return breakpoint_count;
  else if (*p == '$')
  else if (*p == '$')
    {
    {
      /* Make a copy of the name, so we can null-terminate it
      /* Make a copy of the name, so we can null-terminate it
         to pass to lookup_internalvar().  */
         to pass to lookup_internalvar().  */
      char *varname;
      char *varname;
      char *start = ++p;
      char *start = ++p;
      struct value *val;
      struct value *val;
 
 
      while (isalnum (*p) || *p == '_')
      while (isalnum (*p) || *p == '_')
        p++;
        p++;
      varname = (char *) alloca (p - start + 1);
      varname = (char *) alloca (p - start + 1);
      strncpy (varname, start, p - start);
      strncpy (varname, start, p - start);
      varname[p - start] = '\0';
      varname[p - start] = '\0';
      val = value_of_internalvar (lookup_internalvar (varname));
      val = value_of_internalvar (lookup_internalvar (varname));
      if (TYPE_CODE (value_type (val)) == TYPE_CODE_INT)
      if (TYPE_CODE (value_type (val)) == TYPE_CODE_INT)
        retval = (int) value_as_long (val);
        retval = (int) value_as_long (val);
      else
      else
        {
        {
          printf_filtered (_("Convenience variable must have integer value.\n"));
          printf_filtered (_("Convenience variable must have integer value.\n"));
          retval = 0;
          retval = 0;
        }
        }
    }
    }
  else
  else
    {
    {
      if (*p == '-')
      if (*p == '-')
        ++p;
        ++p;
      while (*p >= '0' && *p <= '9')
      while (*p >= '0' && *p <= '9')
        ++p;
        ++p;
      if (p == *pp)
      if (p == *pp)
        /* There is no number here.  (e.g. "cond a == b").  */
        /* There is no number here.  (e.g. "cond a == b").  */
        {
        {
          /* Skip non-numeric token */
          /* Skip non-numeric token */
          while (*p && !isspace((int) *p))
          while (*p && !isspace((int) *p))
            ++p;
            ++p;
          /* Return zero, which caller must interpret as error. */
          /* Return zero, which caller must interpret as error. */
          retval = 0;
          retval = 0;
        }
        }
      else
      else
        retval = atoi (*pp);
        retval = atoi (*pp);
    }
    }
  if (!(isspace (*p) || *p == '\0' || *p == trailer))
  if (!(isspace (*p) || *p == '\0' || *p == trailer))
    {
    {
      /* Trailing junk: return 0 and let caller print error msg. */
      /* Trailing junk: return 0 and let caller print error msg. */
      while (!(isspace (*p) || *p == '\0' || *p == trailer))
      while (!(isspace (*p) || *p == '\0' || *p == trailer))
        ++p;
        ++p;
      retval = 0;
      retval = 0;
    }
    }
  while (isspace (*p))
  while (isspace (*p))
    p++;
    p++;
  *pp = p;
  *pp = p;
  return retval;
  return retval;
}
}
 
 
 
 
/* Like get_number_trailer, but don't allow a trailer.  */
/* Like get_number_trailer, but don't allow a trailer.  */
int
int
get_number (char **pp)
get_number (char **pp)
{
{
  return get_number_trailer (pp, '\0');
  return get_number_trailer (pp, '\0');
}
}
 
 
/* Parse a number or a range.
/* Parse a number or a range.
 * A number will be of the form handled by get_number.
 * A number will be of the form handled by get_number.
 * A range will be of the form <number1> - <number2>, and
 * A range will be of the form <number1> - <number2>, and
 * will represent all the integers between number1 and number2,
 * will represent all the integers between number1 and number2,
 * inclusive.
 * inclusive.
 *
 *
 * While processing a range, this fuction is called iteratively;
 * While processing a range, this fuction is called iteratively;
 * At each call it will return the next value in the range.
 * At each call it will return the next value in the range.
 *
 *
 * At the beginning of parsing a range, the char pointer PP will
 * At the beginning of parsing a range, the char pointer PP will
 * be advanced past <number1> and left pointing at the '-' token.
 * be advanced past <number1> and left pointing at the '-' token.
 * Subsequent calls will not advance the pointer until the range
 * Subsequent calls will not advance the pointer until the range
 * is completed.  The call that completes the range will advance
 * is completed.  The call that completes the range will advance
 * pointer PP past <number2>.
 * pointer PP past <number2>.
 */
 */
 
 
int
int
get_number_or_range (char **pp)
get_number_or_range (char **pp)
{
{
  static int last_retval, end_value;
  static int last_retval, end_value;
  static char *end_ptr;
  static char *end_ptr;
  static int in_range = 0;
  static int in_range = 0;
 
 
  if (**pp != '-')
  if (**pp != '-')
    {
    {
      /* Default case: pp is pointing either to a solo number,
      /* Default case: pp is pointing either to a solo number,
         or to the first number of a range.  */
         or to the first number of a range.  */
      last_retval = get_number_trailer (pp, '-');
      last_retval = get_number_trailer (pp, '-');
      if (**pp == '-')
      if (**pp == '-')
        {
        {
          char **temp;
          char **temp;
 
 
          /* This is the start of a range (<number1> - <number2>).
          /* This is the start of a range (<number1> - <number2>).
             Skip the '-', parse and remember the second number,
             Skip the '-', parse and remember the second number,
             and also remember the end of the final token.  */
             and also remember the end of the final token.  */
 
 
          temp = &end_ptr;
          temp = &end_ptr;
          end_ptr = *pp + 1;
          end_ptr = *pp + 1;
          while (isspace ((int) *end_ptr))
          while (isspace ((int) *end_ptr))
            end_ptr++;  /* skip white space */
            end_ptr++;  /* skip white space */
          end_value = get_number (temp);
          end_value = get_number (temp);
          if (end_value < last_retval)
          if (end_value < last_retval)
            {
            {
              error (_("inverted range"));
              error (_("inverted range"));
            }
            }
          else if (end_value == last_retval)
          else if (end_value == last_retval)
            {
            {
              /* degenerate range (number1 == number2).  Advance the
              /* degenerate range (number1 == number2).  Advance the
                 token pointer so that the range will be treated as a
                 token pointer so that the range will be treated as a
                 single number.  */
                 single number.  */
              *pp = end_ptr;
              *pp = end_ptr;
            }
            }
          else
          else
            in_range = 1;
            in_range = 1;
        }
        }
    }
    }
  else if (! in_range)
  else if (! in_range)
    error (_("negative value"));
    error (_("negative value"));
  else
  else
    {
    {
      /* pp points to the '-' that betokens a range.  All
      /* pp points to the '-' that betokens a range.  All
         number-parsing has already been done.  Return the next
         number-parsing has already been done.  Return the next
         integer value (one greater than the saved previous value).
         integer value (one greater than the saved previous value).
         Do not advance the token pointer 'pp' until the end of range
         Do not advance the token pointer 'pp' until the end of range
         is reached.  */
         is reached.  */
 
 
      if (++last_retval == end_value)
      if (++last_retval == end_value)
        {
        {
          /* End of range reached; advance token pointer.  */
          /* End of range reached; advance token pointer.  */
          *pp = end_ptr;
          *pp = end_ptr;
          in_range = 0;
          in_range = 0;
        }
        }
    }
    }
  return last_retval;
  return last_retval;
}
}
 
 
 
 


/* condition N EXP -- set break condition of breakpoint N to EXP.  */
/* condition N EXP -- set break condition of breakpoint N to EXP.  */
 
 
static void
static void
condition_command (char *arg, int from_tty)
condition_command (char *arg, int from_tty)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  char *p;
  char *p;
  int bnum;
  int bnum;
 
 
  if (arg == 0)
  if (arg == 0)
    error_no_arg (_("breakpoint number"));
    error_no_arg (_("breakpoint number"));
 
 
  p = arg;
  p = arg;
  bnum = get_number (&p);
  bnum = get_number (&p);
  if (bnum == 0)
  if (bnum == 0)
    error (_("Bad breakpoint argument: '%s'"), arg);
    error (_("Bad breakpoint argument: '%s'"), arg);
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->number == bnum)
    if (b->number == bnum)
    {
    {
      struct bp_location *loc = b->loc;
      struct bp_location *loc = b->loc;
      for (; loc; loc = loc->next)
      for (; loc; loc = loc->next)
        {
        {
          if (loc->cond)
          if (loc->cond)
            {
            {
              xfree (loc->cond);
              xfree (loc->cond);
              loc->cond = 0;
              loc->cond = 0;
            }
            }
        }
        }
      if (b->cond_string != NULL)
      if (b->cond_string != NULL)
        xfree (b->cond_string);
        xfree (b->cond_string);
 
 
      if (*p == 0)
      if (*p == 0)
        {
        {
          b->cond_string = NULL;
          b->cond_string = NULL;
          if (from_tty)
          if (from_tty)
            printf_filtered (_("Breakpoint %d now unconditional.\n"), bnum);
            printf_filtered (_("Breakpoint %d now unconditional.\n"), bnum);
        }
        }
      else
      else
        {
        {
          arg = p;
          arg = p;
          /* I don't know if it matters whether this is the string the user
          /* I don't know if it matters whether this is the string the user
             typed in or the decompiled expression.  */
             typed in or the decompiled expression.  */
          b->cond_string = savestring (arg, strlen (arg));
          b->cond_string = savestring (arg, strlen (arg));
          b->condition_not_parsed = 0;
          b->condition_not_parsed = 0;
          for (loc = b->loc; loc; loc = loc->next)
          for (loc = b->loc; loc; loc = loc->next)
            {
            {
              arg = p;
              arg = p;
              loc->cond = parse_exp_1 (&arg, block_for_pc (loc->address), 0);
              loc->cond = parse_exp_1 (&arg, block_for_pc (loc->address), 0);
              if (*arg)
              if (*arg)
                error (_("Junk at end of expression"));
                error (_("Junk at end of expression"));
            }
            }
        }
        }
      breakpoints_changed ();
      breakpoints_changed ();
      breakpoint_modify_event (b->number);
      breakpoint_modify_event (b->number);
      return;
      return;
    }
    }
 
 
  error (_("No breakpoint number %d."), bnum);
  error (_("No breakpoint number %d."), bnum);
}
}
 
 
static void
static void
commands_command (char *arg, int from_tty)
commands_command (char *arg, int from_tty)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  char *p;
  char *p;
  int bnum;
  int bnum;
  struct command_line *l;
  struct command_line *l;
 
 
  /* If we allowed this, we would have problems with when to
  /* If we allowed this, we would have problems with when to
     free the storage, if we change the commands currently
     free the storage, if we change the commands currently
     being read from.  */
     being read from.  */
 
 
  if (executing_breakpoint_commands)
  if (executing_breakpoint_commands)
    error (_("Can't use the \"commands\" command among a breakpoint's commands."));
    error (_("Can't use the \"commands\" command among a breakpoint's commands."));
 
 
  p = arg;
  p = arg;
  bnum = get_number (&p);
  bnum = get_number (&p);
 
 
  if (p && *p)
  if (p && *p)
    error (_("Unexpected extra arguments following breakpoint number."));
    error (_("Unexpected extra arguments following breakpoint number."));
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->number == bnum)
    if (b->number == bnum)
      {
      {
        char *tmpbuf = xstrprintf ("Type commands for when breakpoint %d is hit, one per line.",
        char *tmpbuf = xstrprintf ("Type commands for when breakpoint %d is hit, one per line.",
                                 bnum);
                                 bnum);
        struct cleanup *cleanups = make_cleanup (xfree, tmpbuf);
        struct cleanup *cleanups = make_cleanup (xfree, tmpbuf);
        l = read_command_lines (tmpbuf, from_tty);
        l = read_command_lines (tmpbuf, from_tty);
        do_cleanups (cleanups);
        do_cleanups (cleanups);
        free_command_lines (&b->commands);
        free_command_lines (&b->commands);
        b->commands = l;
        b->commands = l;
        breakpoints_changed ();
        breakpoints_changed ();
        breakpoint_modify_event (b->number);
        breakpoint_modify_event (b->number);
        return;
        return;
    }
    }
  error (_("No breakpoint number %d."), bnum);
  error (_("No breakpoint number %d."), bnum);
}
}
 
 
/* Like commands_command, but instead of reading the commands from
/* Like commands_command, but instead of reading the commands from
   input stream, takes them from an already parsed command structure.
   input stream, takes them from an already parsed command structure.
 
 
   This is used by cli-script.c to DTRT with breakpoint commands
   This is used by cli-script.c to DTRT with breakpoint commands
   that are part of if and while bodies.  */
   that are part of if and while bodies.  */
enum command_control_type
enum command_control_type
commands_from_control_command (char *arg, struct command_line *cmd)
commands_from_control_command (char *arg, struct command_line *cmd)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  char *p;
  char *p;
  int bnum;
  int bnum;
 
 
  /* If we allowed this, we would have problems with when to
  /* If we allowed this, we would have problems with when to
     free the storage, if we change the commands currently
     free the storage, if we change the commands currently
     being read from.  */
     being read from.  */
 
 
  if (executing_breakpoint_commands)
  if (executing_breakpoint_commands)
    error (_("Can't use the \"commands\" command among a breakpoint's commands."));
    error (_("Can't use the \"commands\" command among a breakpoint's commands."));
 
 
  /* An empty string for the breakpoint number means the last
  /* An empty string for the breakpoint number means the last
     breakpoint, but get_number expects a NULL pointer.  */
     breakpoint, but get_number expects a NULL pointer.  */
  if (arg && !*arg)
  if (arg && !*arg)
    p = NULL;
    p = NULL;
  else
  else
    p = arg;
    p = arg;
  bnum = get_number (&p);
  bnum = get_number (&p);
 
 
  if (p && *p)
  if (p && *p)
    error (_("Unexpected extra arguments following breakpoint number."));
    error (_("Unexpected extra arguments following breakpoint number."));
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->number == bnum)
    if (b->number == bnum)
      {
      {
        free_command_lines (&b->commands);
        free_command_lines (&b->commands);
        if (cmd->body_count != 1)
        if (cmd->body_count != 1)
          error (_("Invalid \"commands\" block structure."));
          error (_("Invalid \"commands\" block structure."));
        /* We need to copy the commands because if/while will free the
        /* We need to copy the commands because if/while will free the
           list after it finishes execution.  */
           list after it finishes execution.  */
        b->commands = copy_command_lines (cmd->body_list[0]);
        b->commands = copy_command_lines (cmd->body_list[0]);
        breakpoints_changed ();
        breakpoints_changed ();
        breakpoint_modify_event (b->number);
        breakpoint_modify_event (b->number);
        return simple_control;
        return simple_control;
    }
    }
  error (_("No breakpoint number %d."), bnum);
  error (_("No breakpoint number %d."), bnum);
}
}


/* Like target_read_memory() but if breakpoints are inserted, return
/* Like target_read_memory() but if breakpoints are inserted, return
   the shadow contents instead of the breakpoints themselves.
   the shadow contents instead of the breakpoints themselves.
 
 
   Read "memory data" from whatever target or inferior we have.
   Read "memory data" from whatever target or inferior we have.
   Returns zero if successful, errno value if not.  EIO is used
   Returns zero if successful, errno value if not.  EIO is used
   for address out of bounds.  If breakpoints are inserted, returns
   for address out of bounds.  If breakpoints are inserted, returns
   shadow contents, not the breakpoints themselves.  From breakpoint.c.  */
   shadow contents, not the breakpoints themselves.  From breakpoint.c.  */
 
 
int
int
read_memory_nobpt (CORE_ADDR memaddr, gdb_byte *myaddr, unsigned len)
read_memory_nobpt (CORE_ADDR memaddr, gdb_byte *myaddr, unsigned len)
{
{
  int status;
  int status;
  const struct bp_location *b;
  const struct bp_location *b;
  CORE_ADDR bp_addr = 0;
  CORE_ADDR bp_addr = 0;
  int bp_size = 0;
  int bp_size = 0;
 
 
  if (gdbarch_breakpoint_from_pc (current_gdbarch, &bp_addr, &bp_size) == NULL)
  if (gdbarch_breakpoint_from_pc (current_gdbarch, &bp_addr, &bp_size) == NULL)
    /* No breakpoints on this machine. */
    /* No breakpoints on this machine. */
    return target_read_memory (memaddr, myaddr, len);
    return target_read_memory (memaddr, myaddr, len);
 
 
  ALL_BP_LOCATIONS (b)
  ALL_BP_LOCATIONS (b)
  {
  {
    if (b->owner->type == bp_none)
    if (b->owner->type == bp_none)
      warning (_("reading through apparently deleted breakpoint #%d?"),
      warning (_("reading through apparently deleted breakpoint #%d?"),
              b->owner->number);
              b->owner->number);
 
 
    if (b->loc_type != bp_loc_software_breakpoint)
    if (b->loc_type != bp_loc_software_breakpoint)
      continue;
      continue;
    if (!b->inserted)
    if (!b->inserted)
      continue;
      continue;
    /* Addresses and length of the part of the breakpoint that
    /* Addresses and length of the part of the breakpoint that
       we need to copy.  */
       we need to copy.  */
    bp_addr = b->target_info.placed_address;
    bp_addr = b->target_info.placed_address;
    bp_size = b->target_info.shadow_len;
    bp_size = b->target_info.shadow_len;
    if (bp_size == 0)
    if (bp_size == 0)
      /* bp isn't valid, or doesn't shadow memory.  */
      /* bp isn't valid, or doesn't shadow memory.  */
      continue;
      continue;
    if (bp_addr + bp_size <= memaddr)
    if (bp_addr + bp_size <= memaddr)
      /* The breakpoint is entirely before the chunk of memory we
      /* The breakpoint is entirely before the chunk of memory we
         are reading.  */
         are reading.  */
      continue;
      continue;
    if (bp_addr >= memaddr + len)
    if (bp_addr >= memaddr + len)
      /* The breakpoint is entirely after the chunk of memory we are
      /* The breakpoint is entirely after the chunk of memory we are
         reading. */
         reading. */
      continue;
      continue;
    /* Copy the breakpoint from the shadow contents, and recurse for
    /* Copy the breakpoint from the shadow contents, and recurse for
       the things before and after.  */
       the things before and after.  */
    {
    {
      /* Offset within shadow_contents.  */
      /* Offset within shadow_contents.  */
      int bptoffset = 0;
      int bptoffset = 0;
 
 
      if (bp_addr < memaddr)
      if (bp_addr < memaddr)
        {
        {
          /* Only copy the second part of the breakpoint.  */
          /* Only copy the second part of the breakpoint.  */
          bp_size -= memaddr - bp_addr;
          bp_size -= memaddr - bp_addr;
          bptoffset = memaddr - bp_addr;
          bptoffset = memaddr - bp_addr;
          bp_addr = memaddr;
          bp_addr = memaddr;
        }
        }
 
 
      if (bp_addr + bp_size > memaddr + len)
      if (bp_addr + bp_size > memaddr + len)
        {
        {
          /* Only copy the first part of the breakpoint.  */
          /* Only copy the first part of the breakpoint.  */
          bp_size -= (bp_addr + bp_size) - (memaddr + len);
          bp_size -= (bp_addr + bp_size) - (memaddr + len);
        }
        }
 
 
      memcpy (myaddr + bp_addr - memaddr,
      memcpy (myaddr + bp_addr - memaddr,
              b->target_info.shadow_contents + bptoffset, bp_size);
              b->target_info.shadow_contents + bptoffset, bp_size);
 
 
      if (bp_addr > memaddr)
      if (bp_addr > memaddr)
        {
        {
          /* Copy the section of memory before the breakpoint.  */
          /* Copy the section of memory before the breakpoint.  */
          status = read_memory_nobpt (memaddr, myaddr, bp_addr - memaddr);
          status = read_memory_nobpt (memaddr, myaddr, bp_addr - memaddr);
          if (status != 0)
          if (status != 0)
            return status;
            return status;
        }
        }
 
 
      if (bp_addr + bp_size < memaddr + len)
      if (bp_addr + bp_size < memaddr + len)
        {
        {
          /* Copy the section of memory after the breakpoint.  */
          /* Copy the section of memory after the breakpoint.  */
          status = read_memory_nobpt (bp_addr + bp_size,
          status = read_memory_nobpt (bp_addr + bp_size,
                                      myaddr + bp_addr + bp_size - memaddr,
                                      myaddr + bp_addr + bp_size - memaddr,
                                      memaddr + len - (bp_addr + bp_size));
                                      memaddr + len - (bp_addr + bp_size));
          if (status != 0)
          if (status != 0)
            return status;
            return status;
        }
        }
      return 0;
      return 0;
    }
    }
  }
  }
  /* Nothing overlaps.  Just call read_memory_noerr.  */
  /* Nothing overlaps.  Just call read_memory_noerr.  */
  return target_read_memory (memaddr, myaddr, len);
  return target_read_memory (memaddr, myaddr, len);
}
}


 
 
/* A wrapper function for inserting catchpoints.  */
/* A wrapper function for inserting catchpoints.  */
static void
static void
insert_catchpoint (struct ui_out *uo, void *args)
insert_catchpoint (struct ui_out *uo, void *args)
{
{
  struct breakpoint *b = (struct breakpoint *) args;
  struct breakpoint *b = (struct breakpoint *) args;
  int val = -1;
  int val = -1;
 
 
  switch (b->type)
  switch (b->type)
    {
    {
    case bp_catch_fork:
    case bp_catch_fork:
      target_insert_fork_catchpoint (PIDGET (inferior_ptid));
      target_insert_fork_catchpoint (PIDGET (inferior_ptid));
      break;
      break;
    case bp_catch_vfork:
    case bp_catch_vfork:
      target_insert_vfork_catchpoint (PIDGET (inferior_ptid));
      target_insert_vfork_catchpoint (PIDGET (inferior_ptid));
      break;
      break;
    case bp_catch_exec:
    case bp_catch_exec:
      target_insert_exec_catchpoint (PIDGET (inferior_ptid));
      target_insert_exec_catchpoint (PIDGET (inferior_ptid));
      break;
      break;
    default:
    default:
      internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
      internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
      break;
      break;
    }
    }
}
}
 
 
static int
static int
is_hardware_watchpoint (struct breakpoint *bpt)
is_hardware_watchpoint (struct breakpoint *bpt)
{
{
  return (bpt->type == bp_hardware_watchpoint
  return (bpt->type == bp_hardware_watchpoint
          || bpt->type == bp_read_watchpoint
          || bpt->type == bp_read_watchpoint
          || bpt->type == bp_access_watchpoint);
          || bpt->type == bp_access_watchpoint);
}
}
 
 
/* Assuming that B is a hardware breakpoint:
/* Assuming that B is a hardware breakpoint:
   - Reparse watchpoint expression, is REPARSE is non-zero
   - Reparse watchpoint expression, is REPARSE is non-zero
   - Evaluate expression and store the result in B->val
   - Evaluate expression and store the result in B->val
   - Update the list of values that must be watched in B->loc.
   - Update the list of values that must be watched in B->loc.
 
 
   If the watchpoint is disabled, do nothing.  If this is
   If the watchpoint is disabled, do nothing.  If this is
   local watchpoint that is out of scope, delete it.  */
   local watchpoint that is out of scope, delete it.  */
static void
static void
update_watchpoint (struct breakpoint *b, int reparse)
update_watchpoint (struct breakpoint *b, int reparse)
{
{
  int within_current_scope;
  int within_current_scope;
  struct value *mark = value_mark ();
  struct value *mark = value_mark ();
  struct frame_id saved_frame_id;
  struct frame_id saved_frame_id;
  struct bp_location *loc;
  struct bp_location *loc;
  bpstat bs;
  bpstat bs;
 
 
  unlink_locations_from_global_list (b);
  unlink_locations_from_global_list (b);
  for (loc = b->loc; loc;)
  for (loc = b->loc; loc;)
    {
    {
      struct bp_location *loc_next = loc->next;
      struct bp_location *loc_next = loc->next;
      remove_breakpoint (loc, mark_uninserted);
      remove_breakpoint (loc, mark_uninserted);
      xfree (loc);
      xfree (loc);
      loc = loc_next;
      loc = loc_next;
    }
    }
  b->loc = NULL;
  b->loc = NULL;
 
 
  if (b->disposition == disp_del_at_next_stop)
  if (b->disposition == disp_del_at_next_stop)
    return;
    return;
 
 
  /* Save the current frame's ID so we can restore it after
  /* Save the current frame's ID so we can restore it after
     evaluating the watchpoint expression on its own frame.  */
     evaluating the watchpoint expression on its own frame.  */
  /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
  /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
     took a frame parameter, so that we didn't have to change the
     took a frame parameter, so that we didn't have to change the
     selected frame.  */
     selected frame.  */
  saved_frame_id = get_frame_id (get_selected_frame (NULL));
  saved_frame_id = get_frame_id (get_selected_frame (NULL));
 
 
  /* Determine if the watchpoint is within scope.  */
  /* Determine if the watchpoint is within scope.  */
  if (b->exp_valid_block == NULL)
  if (b->exp_valid_block == NULL)
    within_current_scope = 1;
    within_current_scope = 1;
  else
  else
    {
    {
      struct frame_info *fi;
      struct frame_info *fi;
      fi = frame_find_by_id (b->watchpoint_frame);
      fi = frame_find_by_id (b->watchpoint_frame);
      within_current_scope = (fi != NULL);
      within_current_scope = (fi != NULL);
      if (within_current_scope)
      if (within_current_scope)
        select_frame (fi);
        select_frame (fi);
    }
    }
 
 
  if (within_current_scope && reparse)
  if (within_current_scope && reparse)
    {
    {
      char *s;
      char *s;
      if (b->exp)
      if (b->exp)
        {
        {
          xfree (b->exp);
          xfree (b->exp);
          b->exp = NULL;
          b->exp = NULL;
        }
        }
      s = b->exp_string;
      s = b->exp_string;
      b->exp = parse_exp_1 (&s, b->exp_valid_block, 0);
      b->exp = parse_exp_1 (&s, b->exp_valid_block, 0);
      /* If the meaning of expression itself changed, the old value is
      /* If the meaning of expression itself changed, the old value is
         no longer relevant.  We don't want to report a watchpoint hit
         no longer relevant.  We don't want to report a watchpoint hit
         to the user when the old value and the new value may actually
         to the user when the old value and the new value may actually
         be completely different objects.  */
         be completely different objects.  */
      value_free (b->val);
      value_free (b->val);
      b->val = NULL;
      b->val = NULL;
    }
    }
 
 
 
 
  /* If we failed to parse the expression, for example because
  /* If we failed to parse the expression, for example because
     it refers to a global variable in a not-yet-loaded shared library,
     it refers to a global variable in a not-yet-loaded shared library,
     don't try to insert watchpoint.  We don't automatically delete
     don't try to insert watchpoint.  We don't automatically delete
     such watchpoint, though, since failure to parse expression
     such watchpoint, though, since failure to parse expression
     is different from out-of-scope watchpoint.  */
     is different from out-of-scope watchpoint.  */
  if (within_current_scope && b->exp)
  if (within_current_scope && b->exp)
    {
    {
      struct value *v, *next;
      struct value *v, *next;
 
 
      /* Evaluate the expression and make sure it's not lazy, so that
      /* Evaluate the expression and make sure it's not lazy, so that
         after target stops again, we have a non-lazy previous value
         after target stops again, we have a non-lazy previous value
         to compare with. Also, making the value non-lazy will fetch
         to compare with. Also, making the value non-lazy will fetch
         intermediate values as needed, which we use to decide which
         intermediate values as needed, which we use to decide which
         addresses to watch.
         addresses to watch.
 
 
         The value returned by evaluate_expression is stored in b->val.
         The value returned by evaluate_expression is stored in b->val.
         In addition, we look at all values which were created
         In addition, we look at all values which were created
         during evaluation, and set watchoints at addresses as needed.
         during evaluation, and set watchoints at addresses as needed.
         Those values are explicitly deleted here.  */
         Those values are explicitly deleted here.  */
      v = evaluate_expression (b->exp);
      v = evaluate_expression (b->exp);
      /* Avoid setting b->val if it's already set.  The meaning of
      /* Avoid setting b->val if it's already set.  The meaning of
         b->val is 'the last value' user saw, and we should update
         b->val is 'the last value' user saw, and we should update
         it only if we reported that last value to user.  As it
         it only if we reported that last value to user.  As it
         happens, the code that reports it updates b->val directly.  */
         happens, the code that reports it updates b->val directly.  */
      if (b->val == NULL)
      if (b->val == NULL)
        b->val = v;
        b->val = v;
      value_contents (v);
      value_contents (v);
      value_release_to_mark (mark);
      value_release_to_mark (mark);
 
 
      /* Look at each value on the value chain.  */
      /* Look at each value on the value chain.  */
      for (; v; v = next)
      for (; v; v = next)
        {
        {
          /* If it's a memory location, and GDB actually needed
          /* If it's a memory location, and GDB actually needed
             its contents to evaluate the expression, then we
             its contents to evaluate the expression, then we
             must watch it.  */
             must watch it.  */
          if (VALUE_LVAL (v) == lval_memory
          if (VALUE_LVAL (v) == lval_memory
              && ! value_lazy (v))
              && ! value_lazy (v))
            {
            {
              struct type *vtype = check_typedef (value_type (v));
              struct type *vtype = check_typedef (value_type (v));
 
 
              /* We only watch structs and arrays if user asked
              /* We only watch structs and arrays if user asked
                 for it explicitly, never if they just happen to
                 for it explicitly, never if they just happen to
                 appear in the middle of some value chain.  */
                 appear in the middle of some value chain.  */
              if (v == b->val
              if (v == b->val
                  || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
                  || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
                      && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
                      && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
                {
                {
                  CORE_ADDR addr;
                  CORE_ADDR addr;
                  int len, type;
                  int len, type;
                  struct bp_location *loc, **tmp;
                  struct bp_location *loc, **tmp;
 
 
                  addr = VALUE_ADDRESS (v) + value_offset (v);
                  addr = VALUE_ADDRESS (v) + value_offset (v);
                  len = TYPE_LENGTH (value_type (v));
                  len = TYPE_LENGTH (value_type (v));
                  type = hw_write;
                  type = hw_write;
                  if (b->type == bp_read_watchpoint)
                  if (b->type == bp_read_watchpoint)
                    type = hw_read;
                    type = hw_read;
                  else if (b->type == bp_access_watchpoint)
                  else if (b->type == bp_access_watchpoint)
                    type = hw_access;
                    type = hw_access;
 
 
                  loc = allocate_bp_location (b, bp_hardware_watchpoint);
                  loc = allocate_bp_location (b, bp_hardware_watchpoint);
                  for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
                  for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
                    ;
                    ;
                  *tmp = loc;
                  *tmp = loc;
                  loc->address = addr;
                  loc->address = addr;
                  loc->length = len;
                  loc->length = len;
                  loc->watchpoint_type = type;
                  loc->watchpoint_type = type;
                }
                }
            }
            }
 
 
          next = value_next (v);
          next = value_next (v);
          if (v != b->val)
          if (v != b->val)
            value_free (v);
            value_free (v);
        }
        }
 
 
      if (reparse && b->cond_string != NULL)
      if (reparse && b->cond_string != NULL)
        {
        {
          char *s = b->cond_string;
          char *s = b->cond_string;
          if (b->loc->cond)
          if (b->loc->cond)
            {
            {
              xfree (b->loc->cond);
              xfree (b->loc->cond);
              b->loc->cond = NULL;
              b->loc->cond = NULL;
            }
            }
          b->loc->cond = parse_exp_1 (&s, b->exp_valid_block, 0);
          b->loc->cond = parse_exp_1 (&s, b->exp_valid_block, 0);
        }
        }
    }
    }
  else if (!within_current_scope)
  else if (!within_current_scope)
    {
    {
      printf_filtered (_("\
      printf_filtered (_("\
Hardware watchpoint %d deleted because the program has left the block \n\
Hardware watchpoint %d deleted because the program has left the block \n\
in which its expression is valid.\n"),
in which its expression is valid.\n"),
                       b->number);
                       b->number);
      if (b->related_breakpoint)
      if (b->related_breakpoint)
        b->related_breakpoint->disposition = disp_del_at_next_stop;
        b->related_breakpoint->disposition = disp_del_at_next_stop;
      b->disposition = disp_del_at_next_stop;
      b->disposition = disp_del_at_next_stop;
    }
    }
 
 
  /* Restore the selected frame.  */
  /* Restore the selected frame.  */
  select_frame (frame_find_by_id (saved_frame_id));
  select_frame (frame_find_by_id (saved_frame_id));
}
}
 
 
 
 
/* Insert a low-level "breakpoint" of some type.  BPT is the breakpoint.
/* Insert a low-level "breakpoint" of some type.  BPT is the breakpoint.
   Any error messages are printed to TMP_ERROR_STREAM; and DISABLED_BREAKS,
   Any error messages are printed to TMP_ERROR_STREAM; and DISABLED_BREAKS,
   PROCESS_WARNING, and HW_BREAKPOINT_ERROR are used to report problems.
   PROCESS_WARNING, and HW_BREAKPOINT_ERROR are used to report problems.
 
 
   NOTE drow/2003-09-09: This routine could be broken down to an object-style
   NOTE drow/2003-09-09: This routine could be broken down to an object-style
   method for each breakpoint or catchpoint type.  */
   method for each breakpoint or catchpoint type.  */
static int
static int
insert_bp_location (struct bp_location *bpt,
insert_bp_location (struct bp_location *bpt,
                    struct ui_file *tmp_error_stream,
                    struct ui_file *tmp_error_stream,
                    int *disabled_breaks, int *process_warning,
                    int *disabled_breaks, int *process_warning,
                    int *hw_breakpoint_error)
                    int *hw_breakpoint_error)
{
{
  int val = 0;
  int val = 0;
 
 
  if (!breakpoint_enabled (bpt->owner))
  if (!breakpoint_enabled (bpt->owner))
    return 0;
    return 0;
 
 
  if (!bpt->enabled || bpt->shlib_disabled || bpt->inserted || bpt->duplicate)
  if (!bpt->enabled || bpt->shlib_disabled || bpt->inserted || bpt->duplicate)
    return 0;
    return 0;
 
 
  /* Initialize the target-specific information.  */
  /* Initialize the target-specific information.  */
  memset (&bpt->target_info, 0, sizeof (bpt->target_info));
  memset (&bpt->target_info, 0, sizeof (bpt->target_info));
  bpt->target_info.placed_address = bpt->address;
  bpt->target_info.placed_address = bpt->address;
 
 
  if (bpt->loc_type == bp_loc_software_breakpoint
  if (bpt->loc_type == bp_loc_software_breakpoint
      || bpt->loc_type == bp_loc_hardware_breakpoint)
      || bpt->loc_type == bp_loc_hardware_breakpoint)
    {
    {
      if (bpt->owner->type != bp_hardware_breakpoint)
      if (bpt->owner->type != bp_hardware_breakpoint)
        {
        {
          /* If the explicitly specified breakpoint type
          /* If the explicitly specified breakpoint type
             is not hardware breakpoint, check the memory map to see
             is not hardware breakpoint, check the memory map to see
             if the breakpoint address is in read only memory or not.
             if the breakpoint address is in read only memory or not.
             Two important cases are:
             Two important cases are:
             - location type is not hardware breakpoint, memory
             - location type is not hardware breakpoint, memory
             is readonly.  We change the type of the location to
             is readonly.  We change the type of the location to
             hardware breakpoint.
             hardware breakpoint.
             - location type is hardware breakpoint, memory is read-write.
             - location type is hardware breakpoint, memory is read-write.
             This means we've previously made the location hardware one, but
             This means we've previously made the location hardware one, but
             then the memory map changed, so we undo.
             then the memory map changed, so we undo.
 
 
             When breakpoints are removed, remove_breakpoints will
             When breakpoints are removed, remove_breakpoints will
             use location types we've just set here, the only possible
             use location types we've just set here, the only possible
             problem is that memory map has changed during running program,
             problem is that memory map has changed during running program,
             but it's not going to work anyway with current gdb.  */
             but it's not going to work anyway with current gdb.  */
          struct mem_region *mr
          struct mem_region *mr
            = lookup_mem_region (bpt->target_info.placed_address);
            = lookup_mem_region (bpt->target_info.placed_address);
 
 
          if (mr)
          if (mr)
            {
            {
              if (automatic_hardware_breakpoints)
              if (automatic_hardware_breakpoints)
                {
                {
                  int changed = 0;
                  int changed = 0;
                  enum bp_loc_type new_type;
                  enum bp_loc_type new_type;
 
 
                  if (mr->attrib.mode != MEM_RW)
                  if (mr->attrib.mode != MEM_RW)
                    new_type = bp_loc_hardware_breakpoint;
                    new_type = bp_loc_hardware_breakpoint;
                  else
                  else
                    new_type = bp_loc_software_breakpoint;
                    new_type = bp_loc_software_breakpoint;
 
 
                  if (new_type != bpt->loc_type)
                  if (new_type != bpt->loc_type)
                    {
                    {
                      static int said = 0;
                      static int said = 0;
                      bpt->loc_type = new_type;
                      bpt->loc_type = new_type;
                      if (!said)
                      if (!said)
                        {
                        {
                          fprintf_filtered (gdb_stdout, _("\
                          fprintf_filtered (gdb_stdout, _("\
Note: automatically using hardware breakpoints for read-only addresses.\n"));
Note: automatically using hardware breakpoints for read-only addresses.\n"));
                          said = 1;
                          said = 1;
                        }
                        }
                    }
                    }
                }
                }
              else if (bpt->loc_type == bp_loc_software_breakpoint
              else if (bpt->loc_type == bp_loc_software_breakpoint
                       && mr->attrib.mode != MEM_RW)
                       && mr->attrib.mode != MEM_RW)
                warning (_("cannot set software breakpoint at readonly address %s"),
                warning (_("cannot set software breakpoint at readonly address %s"),
                         paddr (bpt->address));
                         paddr (bpt->address));
            }
            }
        }
        }
 
 
      /* First check to see if we have to handle an overlay.  */
      /* First check to see if we have to handle an overlay.  */
      if (overlay_debugging == ovly_off
      if (overlay_debugging == ovly_off
          || bpt->section == NULL
          || bpt->section == NULL
          || !(section_is_overlay (bpt->section)))
          || !(section_is_overlay (bpt->section)))
        {
        {
          /* No overlay handling: just set the breakpoint.  */
          /* No overlay handling: just set the breakpoint.  */
 
 
          if (bpt->loc_type == bp_loc_hardware_breakpoint)
          if (bpt->loc_type == bp_loc_hardware_breakpoint)
            val = target_insert_hw_breakpoint (&bpt->target_info);
            val = target_insert_hw_breakpoint (&bpt->target_info);
          else
          else
            val = target_insert_breakpoint (&bpt->target_info);
            val = target_insert_breakpoint (&bpt->target_info);
        }
        }
      else
      else
        {
        {
          /* This breakpoint is in an overlay section.
          /* This breakpoint is in an overlay section.
             Shall we set a breakpoint at the LMA?  */
             Shall we set a breakpoint at the LMA?  */
          if (!overlay_events_enabled)
          if (!overlay_events_enabled)
            {
            {
              /* Yes -- overlay event support is not active,
              /* Yes -- overlay event support is not active,
                 so we must try to set a breakpoint at the LMA.
                 so we must try to set a breakpoint at the LMA.
                 This will not work for a hardware breakpoint.  */
                 This will not work for a hardware breakpoint.  */
              if (bpt->loc_type == bp_loc_hardware_breakpoint)
              if (bpt->loc_type == bp_loc_hardware_breakpoint)
                warning (_("hardware breakpoint %d not supported in overlay!"),
                warning (_("hardware breakpoint %d not supported in overlay!"),
                         bpt->owner->number);
                         bpt->owner->number);
              else
              else
                {
                {
                  CORE_ADDR addr = overlay_unmapped_address (bpt->address,
                  CORE_ADDR addr = overlay_unmapped_address (bpt->address,
                                                             bpt->section);
                                                             bpt->section);
                  /* Set a software (trap) breakpoint at the LMA.  */
                  /* Set a software (trap) breakpoint at the LMA.  */
                  bpt->overlay_target_info = bpt->target_info;
                  bpt->overlay_target_info = bpt->target_info;
                  bpt->overlay_target_info.placed_address = addr;
                  bpt->overlay_target_info.placed_address = addr;
                  val = target_insert_breakpoint (&bpt->overlay_target_info);
                  val = target_insert_breakpoint (&bpt->overlay_target_info);
                  if (val != 0)
                  if (val != 0)
                    fprintf_unfiltered (tmp_error_stream,
                    fprintf_unfiltered (tmp_error_stream,
                                        "Overlay breakpoint %d failed: in ROM?",
                                        "Overlay breakpoint %d failed: in ROM?",
                                        bpt->owner->number);
                                        bpt->owner->number);
                }
                }
            }
            }
          /* Shall we set a breakpoint at the VMA? */
          /* Shall we set a breakpoint at the VMA? */
          if (section_is_mapped (bpt->section))
          if (section_is_mapped (bpt->section))
            {
            {
              /* Yes.  This overlay section is mapped into memory.  */
              /* Yes.  This overlay section is mapped into memory.  */
              if (bpt->loc_type == bp_loc_hardware_breakpoint)
              if (bpt->loc_type == bp_loc_hardware_breakpoint)
                val = target_insert_hw_breakpoint (&bpt->target_info);
                val = target_insert_hw_breakpoint (&bpt->target_info);
              else
              else
                val = target_insert_breakpoint (&bpt->target_info);
                val = target_insert_breakpoint (&bpt->target_info);
            }
            }
          else
          else
            {
            {
              /* No.  This breakpoint will not be inserted.
              /* No.  This breakpoint will not be inserted.
                 No error, but do not mark the bp as 'inserted'.  */
                 No error, but do not mark the bp as 'inserted'.  */
              return 0;
              return 0;
            }
            }
        }
        }
 
 
      if (val)
      if (val)
        {
        {
          /* Can't set the breakpoint.  */
          /* Can't set the breakpoint.  */
          if (solib_address (bpt->address))
          if (solib_address (bpt->address))
            {
            {
              /* See also: disable_breakpoints_in_shlibs. */
              /* See also: disable_breakpoints_in_shlibs. */
              val = 0;
              val = 0;
              bpt->shlib_disabled = 1;
              bpt->shlib_disabled = 1;
              if (!*disabled_breaks)
              if (!*disabled_breaks)
                {
                {
                  fprintf_unfiltered (tmp_error_stream,
                  fprintf_unfiltered (tmp_error_stream,
                                      "Cannot insert breakpoint %d.\n",
                                      "Cannot insert breakpoint %d.\n",
                                      bpt->owner->number);
                                      bpt->owner->number);
                  fprintf_unfiltered (tmp_error_stream,
                  fprintf_unfiltered (tmp_error_stream,
                                      "Temporarily disabling shared library breakpoints:\n");
                                      "Temporarily disabling shared library breakpoints:\n");
                }
                }
              *disabled_breaks = 1;
              *disabled_breaks = 1;
              fprintf_unfiltered (tmp_error_stream,
              fprintf_unfiltered (tmp_error_stream,
                                  "breakpoint #%d\n", bpt->owner->number);
                                  "breakpoint #%d\n", bpt->owner->number);
            }
            }
          else
          else
            {
            {
#ifdef ONE_PROCESS_WRITETEXT
#ifdef ONE_PROCESS_WRITETEXT
              *process_warning = 1;
              *process_warning = 1;
#endif
#endif
              if (bpt->loc_type == bp_loc_hardware_breakpoint)
              if (bpt->loc_type == bp_loc_hardware_breakpoint)
                {
                {
                  *hw_breakpoint_error = 1;
                  *hw_breakpoint_error = 1;
                  fprintf_unfiltered (tmp_error_stream,
                  fprintf_unfiltered (tmp_error_stream,
                                      "Cannot insert hardware breakpoint %d.\n",
                                      "Cannot insert hardware breakpoint %d.\n",
                                      bpt->owner->number);
                                      bpt->owner->number);
                }
                }
              else
              else
                {
                {
                  fprintf_unfiltered (tmp_error_stream,
                  fprintf_unfiltered (tmp_error_stream,
                                      "Cannot insert breakpoint %d.\n",
                                      "Cannot insert breakpoint %d.\n",
                                      bpt->owner->number);
                                      bpt->owner->number);
                  fprintf_filtered (tmp_error_stream,
                  fprintf_filtered (tmp_error_stream,
                                    "Error accessing memory address ");
                                    "Error accessing memory address ");
                  fputs_filtered (paddress (bpt->address), tmp_error_stream);
                  fputs_filtered (paddress (bpt->address), tmp_error_stream);
                  fprintf_filtered (tmp_error_stream, ": %s.\n",
                  fprintf_filtered (tmp_error_stream, ": %s.\n",
                                    safe_strerror (val));
                                    safe_strerror (val));
                }
                }
 
 
            }
            }
        }
        }
      else
      else
        bpt->inserted = 1;
        bpt->inserted = 1;
 
 
      return val;
      return val;
    }
    }
 
 
  else if (bpt->loc_type == bp_loc_hardware_watchpoint
  else if (bpt->loc_type == bp_loc_hardware_watchpoint
           /* NOTE drow/2003-09-08: This state only exists for removing
           /* NOTE drow/2003-09-08: This state only exists for removing
              watchpoints.  It's not clear that it's necessary... */
              watchpoints.  It's not clear that it's necessary... */
           && bpt->owner->disposition != disp_del_at_next_stop)
           && bpt->owner->disposition != disp_del_at_next_stop)
    {
    {
      val = target_insert_watchpoint (bpt->address,
      val = target_insert_watchpoint (bpt->address,
                                      bpt->length,
                                      bpt->length,
                                      bpt->watchpoint_type);
                                      bpt->watchpoint_type);
      bpt->inserted = (val != -1);
      bpt->inserted = (val != -1);
    }
    }
 
 
  else if (bpt->owner->type == bp_catch_fork
  else if (bpt->owner->type == bp_catch_fork
           || bpt->owner->type == bp_catch_vfork
           || bpt->owner->type == bp_catch_vfork
           || bpt->owner->type == bp_catch_exec)
           || bpt->owner->type == bp_catch_exec)
    {
    {
      struct gdb_exception e = catch_exception (uiout, insert_catchpoint,
      struct gdb_exception e = catch_exception (uiout, insert_catchpoint,
                                                bpt->owner, RETURN_MASK_ERROR);
                                                bpt->owner, RETURN_MASK_ERROR);
      exception_fprintf (gdb_stderr, e, "warning: inserting catchpoint %d: ",
      exception_fprintf (gdb_stderr, e, "warning: inserting catchpoint %d: ",
                         bpt->owner->number);
                         bpt->owner->number);
      if (e.reason < 0)
      if (e.reason < 0)
        bpt->owner->enable_state = bp_disabled;
        bpt->owner->enable_state = bp_disabled;
      else
      else
        bpt->inserted = 1;
        bpt->inserted = 1;
 
 
      /* We've already printed an error message if there was a problem
      /* We've already printed an error message if there was a problem
         inserting this catchpoint, and we've disabled the catchpoint,
         inserting this catchpoint, and we've disabled the catchpoint,
         so just return success.  */
         so just return success.  */
      return 0;
      return 0;
    }
    }
 
 
  return 0;
  return 0;
}
}
 
 
/* insert_breakpoints is used when starting or continuing the program.
/* insert_breakpoints is used when starting or continuing the program.
   remove_breakpoints is used when the program stops.
   remove_breakpoints is used when the program stops.
   Both return zero if successful,
   Both return zero if successful,
   or an `errno' value if could not write the inferior.  */
   or an `errno' value if could not write the inferior.  */
 
 
void
void
insert_breakpoints (void)
insert_breakpoints (void)
{
{
  struct breakpoint *bpt;
  struct breakpoint *bpt;
  struct bp_location *b, *temp;
  struct bp_location *b, *temp;
  int error = 0;
  int error = 0;
  int val = 0;
  int val = 0;
  int disabled_breaks = 0;
  int disabled_breaks = 0;
  int hw_breakpoint_error = 0;
  int hw_breakpoint_error = 0;
  int process_warning = 0;
  int process_warning = 0;
 
 
  struct ui_file *tmp_error_stream = mem_fileopen ();
  struct ui_file *tmp_error_stream = mem_fileopen ();
  make_cleanup_ui_file_delete (tmp_error_stream);
  make_cleanup_ui_file_delete (tmp_error_stream);
 
 
  /* Explicitly mark the warning -- this will only be printed if
  /* Explicitly mark the warning -- this will only be printed if
     there was an error.  */
     there was an error.  */
  fprintf_unfiltered (tmp_error_stream, "Warning:\n");
  fprintf_unfiltered (tmp_error_stream, "Warning:\n");
 
 
  ALL_BREAKPOINTS (bpt)
  ALL_BREAKPOINTS (bpt)
    if (is_hardware_watchpoint (bpt))
    if (is_hardware_watchpoint (bpt))
      update_watchpoint (bpt, 0 /* don't reparse */);
      update_watchpoint (bpt, 0 /* don't reparse */);
 
 
  ALL_BP_LOCATIONS_SAFE (b, temp)
  ALL_BP_LOCATIONS_SAFE (b, temp)
    {
    {
      if (!breakpoint_enabled (b->owner))
      if (!breakpoint_enabled (b->owner))
        continue;
        continue;
 
 
      /* There is no point inserting thread-specific breakpoints if the
      /* There is no point inserting thread-specific breakpoints if the
         thread no longer exists.  */
         thread no longer exists.  */
      if (b->owner->thread != -1
      if (b->owner->thread != -1
          && !valid_thread_id (b->owner->thread))
          && !valid_thread_id (b->owner->thread))
        continue;
        continue;
 
 
      val = insert_bp_location (b, tmp_error_stream,
      val = insert_bp_location (b, tmp_error_stream,
                                    &disabled_breaks, &process_warning,
                                    &disabled_breaks, &process_warning,
                                    &hw_breakpoint_error);
                                    &hw_breakpoint_error);
      if (val)
      if (val)
        error = val;
        error = val;
    }
    }
 
 
  /* If we failed to insert all locations of a watchpoint,
  /* If we failed to insert all locations of a watchpoint,
     remove them, as half-inserted watchpoint is of limited use.  */
     remove them, as half-inserted watchpoint is of limited use.  */
  ALL_BREAKPOINTS (bpt)
  ALL_BREAKPOINTS (bpt)
    {
    {
      int some_failed = 0;
      int some_failed = 0;
      struct bp_location *loc;
      struct bp_location *loc;
 
 
      if (!is_hardware_watchpoint (bpt))
      if (!is_hardware_watchpoint (bpt))
        continue;
        continue;
 
 
      if (bpt->enable_state != bp_enabled)
      if (bpt->enable_state != bp_enabled)
        continue;
        continue;
 
 
      for (loc = bpt->loc; loc; loc = loc->next)
      for (loc = bpt->loc; loc; loc = loc->next)
        if (!loc->inserted)
        if (!loc->inserted)
          {
          {
            some_failed = 1;
            some_failed = 1;
            break;
            break;
          }
          }
      if (some_failed)
      if (some_failed)
        {
        {
          for (loc = bpt->loc; loc; loc = loc->next)
          for (loc = bpt->loc; loc; loc = loc->next)
            if (loc->inserted)
            if (loc->inserted)
              remove_breakpoint (loc, mark_uninserted);
              remove_breakpoint (loc, mark_uninserted);
 
 
          hw_breakpoint_error = 1;
          hw_breakpoint_error = 1;
          fprintf_unfiltered (tmp_error_stream,
          fprintf_unfiltered (tmp_error_stream,
                              "Could not insert hardware watchpoint %d.\n",
                              "Could not insert hardware watchpoint %d.\n",
                              bpt->number);
                              bpt->number);
          error = -1;
          error = -1;
        }
        }
    }
    }
 
 
  if (error)
  if (error)
    {
    {
      /* If a hardware breakpoint or watchpoint was inserted, add a
      /* If a hardware breakpoint or watchpoint was inserted, add a
         message about possibly exhausted resources.  */
         message about possibly exhausted resources.  */
      if (hw_breakpoint_error)
      if (hw_breakpoint_error)
        {
        {
          fprintf_unfiltered (tmp_error_stream,
          fprintf_unfiltered (tmp_error_stream,
                              "Could not insert hardware breakpoints:\n\
                              "Could not insert hardware breakpoints:\n\
You may have requested too many hardware breakpoints/watchpoints.\n");
You may have requested too many hardware breakpoints/watchpoints.\n");
        }
        }
#ifdef ONE_PROCESS_WRITETEXT
#ifdef ONE_PROCESS_WRITETEXT
      if (process_warning)
      if (process_warning)
        fprintf_unfiltered (tmp_error_stream,
        fprintf_unfiltered (tmp_error_stream,
                            "The same program may be running in another process.");
                            "The same program may be running in another process.");
#endif
#endif
      target_terminal_ours_for_output ();
      target_terminal_ours_for_output ();
      error_stream (tmp_error_stream);
      error_stream (tmp_error_stream);
    }
    }
}
}
 
 
int
int
remove_breakpoints (void)
remove_breakpoints (void)
{
{
  struct bp_location *b;
  struct bp_location *b;
  int val;
  int val;
 
 
  ALL_BP_LOCATIONS (b)
  ALL_BP_LOCATIONS (b)
  {
  {
    if (b->inserted)
    if (b->inserted)
      {
      {
        val = remove_breakpoint (b, mark_uninserted);
        val = remove_breakpoint (b, mark_uninserted);
        if (val != 0)
        if (val != 0)
          return val;
          return val;
      }
      }
  }
  }
  return 0;
  return 0;
}
}
 
 
int
int
remove_hw_watchpoints (void)
remove_hw_watchpoints (void)
{
{
  struct bp_location *b;
  struct bp_location *b;
  int val;
  int val;
 
 
  ALL_BP_LOCATIONS (b)
  ALL_BP_LOCATIONS (b)
  {
  {
    if (b->inserted && b->loc_type == bp_loc_hardware_watchpoint)
    if (b->inserted && b->loc_type == bp_loc_hardware_watchpoint)
      {
      {
        val = remove_breakpoint (b, mark_uninserted);
        val = remove_breakpoint (b, mark_uninserted);
        if (val != 0)
        if (val != 0)
          return val;
          return val;
      }
      }
  }
  }
  return 0;
  return 0;
}
}
 
 
int
int
reattach_breakpoints (int pid)
reattach_breakpoints (int pid)
{
{
  struct bp_location *b;
  struct bp_location *b;
  int val;
  int val;
  struct cleanup *old_chain = save_inferior_ptid ();
  struct cleanup *old_chain = save_inferior_ptid ();
  struct ui_file *tmp_error_stream = mem_fileopen ();
  struct ui_file *tmp_error_stream = mem_fileopen ();
  int dummy1 = 0, dummy2 = 0, dummy3 = 0;
  int dummy1 = 0, dummy2 = 0, dummy3 = 0;
 
 
  make_cleanup_ui_file_delete (tmp_error_stream);
  make_cleanup_ui_file_delete (tmp_error_stream);
 
 
  inferior_ptid = pid_to_ptid (pid);
  inferior_ptid = pid_to_ptid (pid);
  ALL_BP_LOCATIONS (b)
  ALL_BP_LOCATIONS (b)
  {
  {
    if (b->inserted)
    if (b->inserted)
      {
      {
        b->inserted = 0;
        b->inserted = 0;
        val = insert_bp_location (b, tmp_error_stream,
        val = insert_bp_location (b, tmp_error_stream,
                                  &dummy1, &dummy2, &dummy3);
                                  &dummy1, &dummy2, &dummy3);
        if (val != 0)
        if (val != 0)
          {
          {
            do_cleanups (old_chain);
            do_cleanups (old_chain);
            return val;
            return val;
          }
          }
      }
      }
  }
  }
  do_cleanups (old_chain);
  do_cleanups (old_chain);
  return 0;
  return 0;
}
}
 
 
void
void
update_breakpoints_after_exec (void)
update_breakpoints_after_exec (void)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  struct breakpoint *temp;
  struct breakpoint *temp;
 
 
  /* Doing this first prevents the badness of having delete_breakpoint()
  /* Doing this first prevents the badness of having delete_breakpoint()
     write a breakpoint's current "shadow contents" to lift the bp.  That
     write a breakpoint's current "shadow contents" to lift the bp.  That
     shadow is NOT valid after an exec()! */
     shadow is NOT valid after an exec()! */
  mark_breakpoints_out ();
  mark_breakpoints_out ();
 
 
  ALL_BREAKPOINTS_SAFE (b, temp)
  ALL_BREAKPOINTS_SAFE (b, temp)
  {
  {
    /* Solib breakpoints must be explicitly reset after an exec(). */
    /* Solib breakpoints must be explicitly reset after an exec(). */
    if (b->type == bp_shlib_event)
    if (b->type == bp_shlib_event)
      {
      {
        delete_breakpoint (b);
        delete_breakpoint (b);
        continue;
        continue;
      }
      }
 
 
    /* Thread event breakpoints must be set anew after an exec(),
    /* Thread event breakpoints must be set anew after an exec(),
       as must overlay event breakpoints.  */
       as must overlay event breakpoints.  */
    if (b->type == bp_thread_event || b->type == bp_overlay_event)
    if (b->type == bp_thread_event || b->type == bp_overlay_event)
      {
      {
        delete_breakpoint (b);
        delete_breakpoint (b);
        continue;
        continue;
      }
      }
 
 
    /* Step-resume breakpoints are meaningless after an exec(). */
    /* Step-resume breakpoints are meaningless after an exec(). */
    if (b->type == bp_step_resume)
    if (b->type == bp_step_resume)
      {
      {
        delete_breakpoint (b);
        delete_breakpoint (b);
        continue;
        continue;
      }
      }
 
 
    /* Don't delete an exec catchpoint, because else the inferior
    /* Don't delete an exec catchpoint, because else the inferior
       won't stop when it ought!
       won't stop when it ought!
 
 
       Similarly, we probably ought to keep vfork catchpoints, 'cause
       Similarly, we probably ought to keep vfork catchpoints, 'cause
       on this target, we may not be able to stop when the vfork is
       on this target, we may not be able to stop when the vfork is
       seen, but only when the subsequent exec is seen.  (And because
       seen, but only when the subsequent exec is seen.  (And because
       deleting fork catchpoints here but not vfork catchpoints will
       deleting fork catchpoints here but not vfork catchpoints will
       seem mysterious to users, keep those too.)  */
       seem mysterious to users, keep those too.)  */
    if ((b->type == bp_catch_exec) ||
    if ((b->type == bp_catch_exec) ||
        (b->type == bp_catch_vfork) ||
        (b->type == bp_catch_vfork) ||
        (b->type == bp_catch_fork))
        (b->type == bp_catch_fork))
      {
      {
        continue;
        continue;
      }
      }
 
 
    /* bp_finish is a special case.  The only way we ought to be able
    /* bp_finish is a special case.  The only way we ought to be able
       to see one of these when an exec() has happened, is if the user
       to see one of these when an exec() has happened, is if the user
       caught a vfork, and then said "finish".  Ordinarily a finish just
       caught a vfork, and then said "finish".  Ordinarily a finish just
       carries them to the call-site of the current callee, by setting
       carries them to the call-site of the current callee, by setting
       a temporary bp there and resuming.  But in this case, the finish
       a temporary bp there and resuming.  But in this case, the finish
       will carry them entirely through the vfork & exec.
       will carry them entirely through the vfork & exec.
 
 
       We don't want to allow a bp_finish to remain inserted now.  But
       We don't want to allow a bp_finish to remain inserted now.  But
       we can't safely delete it, 'cause finish_command has a handle to
       we can't safely delete it, 'cause finish_command has a handle to
       the bp on a bpstat, and will later want to delete it.  There's a
       the bp on a bpstat, and will later want to delete it.  There's a
       chance (and I've seen it happen) that if we delete the bp_finish
       chance (and I've seen it happen) that if we delete the bp_finish
       here, that its storage will get reused by the time finish_command
       here, that its storage will get reused by the time finish_command
       gets 'round to deleting the "use to be a bp_finish" breakpoint.
       gets 'round to deleting the "use to be a bp_finish" breakpoint.
       We really must allow finish_command to delete a bp_finish.
       We really must allow finish_command to delete a bp_finish.
 
 
       In the absense of a general solution for the "how do we know
       In the absense of a general solution for the "how do we know
       it's safe to delete something others may have handles to?"
       it's safe to delete something others may have handles to?"
       problem, what we'll do here is just uninsert the bp_finish, and
       problem, what we'll do here is just uninsert the bp_finish, and
       let finish_command delete it.
       let finish_command delete it.
 
 
       (We know the bp_finish is "doomed" in the sense that it's
       (We know the bp_finish is "doomed" in the sense that it's
       momentary, and will be deleted as soon as finish_command sees
       momentary, and will be deleted as soon as finish_command sees
       the inferior stopped.  So it doesn't matter that the bp's
       the inferior stopped.  So it doesn't matter that the bp's
       address is probably bogus in the new a.out, unlike e.g., the
       address is probably bogus in the new a.out, unlike e.g., the
       solib breakpoints.)  */
       solib breakpoints.)  */
 
 
    if (b->type == bp_finish)
    if (b->type == bp_finish)
      {
      {
        continue;
        continue;
      }
      }
 
 
    /* Without a symbolic address, we have little hope of the
    /* Without a symbolic address, we have little hope of the
       pre-exec() address meaning the same thing in the post-exec()
       pre-exec() address meaning the same thing in the post-exec()
       a.out. */
       a.out. */
    if (b->addr_string == NULL)
    if (b->addr_string == NULL)
      {
      {
        delete_breakpoint (b);
        delete_breakpoint (b);
        continue;
        continue;
      }
      }
  }
  }
  /* FIXME what about longjmp breakpoints?  Re-create them here?  */
  /* FIXME what about longjmp breakpoints?  Re-create them here?  */
  create_overlay_event_breakpoint ("_ovly_debug_event");
  create_overlay_event_breakpoint ("_ovly_debug_event");
}
}
 
 
int
int
detach_breakpoints (int pid)
detach_breakpoints (int pid)
{
{
  struct bp_location *b;
  struct bp_location *b;
  int val;
  int val;
  struct cleanup *old_chain = save_inferior_ptid ();
  struct cleanup *old_chain = save_inferior_ptid ();
 
 
  if (pid == PIDGET (inferior_ptid))
  if (pid == PIDGET (inferior_ptid))
    error (_("Cannot detach breakpoints of inferior_ptid"));
    error (_("Cannot detach breakpoints of inferior_ptid"));
 
 
  /* Set inferior_ptid; remove_breakpoint uses this global.  */
  /* Set inferior_ptid; remove_breakpoint uses this global.  */
  inferior_ptid = pid_to_ptid (pid);
  inferior_ptid = pid_to_ptid (pid);
  ALL_BP_LOCATIONS (b)
  ALL_BP_LOCATIONS (b)
  {
  {
    if (b->inserted)
    if (b->inserted)
      {
      {
        val = remove_breakpoint (b, mark_inserted);
        val = remove_breakpoint (b, mark_inserted);
        if (val != 0)
        if (val != 0)
          {
          {
            do_cleanups (old_chain);
            do_cleanups (old_chain);
            return val;
            return val;
          }
          }
      }
      }
  }
  }
  do_cleanups (old_chain);
  do_cleanups (old_chain);
  return 0;
  return 0;
}
}
 
 
static int
static int
remove_breakpoint (struct bp_location *b, insertion_state_t is)
remove_breakpoint (struct bp_location *b, insertion_state_t is)
{
{
  int val;
  int val;
 
 
  if (b->owner->enable_state == bp_permanent)
  if (b->owner->enable_state == bp_permanent)
    /* Permanent breakpoints cannot be inserted or removed.  */
    /* Permanent breakpoints cannot be inserted or removed.  */
    return 0;
    return 0;
 
 
  if (b->owner->type == bp_none)
  if (b->owner->type == bp_none)
    warning (_("attempted to remove apparently deleted breakpoint #%d?"),
    warning (_("attempted to remove apparently deleted breakpoint #%d?"),
             b->owner->number);
             b->owner->number);
 
 
  if (b->loc_type == bp_loc_software_breakpoint
  if (b->loc_type == bp_loc_software_breakpoint
      || b->loc_type == bp_loc_hardware_breakpoint)
      || b->loc_type == bp_loc_hardware_breakpoint)
    {
    {
      /* "Normal" instruction breakpoint: either the standard
      /* "Normal" instruction breakpoint: either the standard
         trap-instruction bp (bp_breakpoint), or a
         trap-instruction bp (bp_breakpoint), or a
         bp_hardware_breakpoint.  */
         bp_hardware_breakpoint.  */
 
 
      /* First check to see if we have to handle an overlay.  */
      /* First check to see if we have to handle an overlay.  */
      if (overlay_debugging == ovly_off
      if (overlay_debugging == ovly_off
          || b->section == NULL
          || b->section == NULL
          || !(section_is_overlay (b->section)))
          || !(section_is_overlay (b->section)))
        {
        {
          /* No overlay handling: just remove the breakpoint.  */
          /* No overlay handling: just remove the breakpoint.  */
 
 
          if (b->loc_type == bp_loc_hardware_breakpoint)
          if (b->loc_type == bp_loc_hardware_breakpoint)
            val = target_remove_hw_breakpoint (&b->target_info);
            val = target_remove_hw_breakpoint (&b->target_info);
          else
          else
            val = target_remove_breakpoint (&b->target_info);
            val = target_remove_breakpoint (&b->target_info);
        }
        }
      else
      else
        {
        {
          /* This breakpoint is in an overlay section.
          /* This breakpoint is in an overlay section.
             Did we set a breakpoint at the LMA?  */
             Did we set a breakpoint at the LMA?  */
          if (!overlay_events_enabled)
          if (!overlay_events_enabled)
              {
              {
                /* Yes -- overlay event support is not active, so we
                /* Yes -- overlay event support is not active, so we
                   should have set a breakpoint at the LMA.  Remove it.
                   should have set a breakpoint at the LMA.  Remove it.
                */
                */
                /* Ignore any failures: if the LMA is in ROM, we will
                /* Ignore any failures: if the LMA is in ROM, we will
                   have already warned when we failed to insert it.  */
                   have already warned when we failed to insert it.  */
                if (b->loc_type == bp_loc_hardware_breakpoint)
                if (b->loc_type == bp_loc_hardware_breakpoint)
                  target_remove_hw_breakpoint (&b->overlay_target_info);
                  target_remove_hw_breakpoint (&b->overlay_target_info);
                else
                else
                  target_remove_breakpoint (&b->overlay_target_info);
                  target_remove_breakpoint (&b->overlay_target_info);
              }
              }
          /* Did we set a breakpoint at the VMA?
          /* Did we set a breakpoint at the VMA?
             If so, we will have marked the breakpoint 'inserted'.  */
             If so, we will have marked the breakpoint 'inserted'.  */
          if (b->inserted)
          if (b->inserted)
            {
            {
              /* Yes -- remove it.  Previously we did not bother to
              /* Yes -- remove it.  Previously we did not bother to
                 remove the breakpoint if the section had been
                 remove the breakpoint if the section had been
                 unmapped, but let's not rely on that being safe.  We
                 unmapped, but let's not rely on that being safe.  We
                 don't know what the overlay manager might do.  */
                 don't know what the overlay manager might do.  */
              if (b->loc_type == bp_loc_hardware_breakpoint)
              if (b->loc_type == bp_loc_hardware_breakpoint)
                val = target_remove_hw_breakpoint (&b->target_info);
                val = target_remove_hw_breakpoint (&b->target_info);
 
 
              /* However, we should remove *software* breakpoints only
              /* However, we should remove *software* breakpoints only
                 if the section is still mapped, or else we overwrite
                 if the section is still mapped, or else we overwrite
                 wrong code with the saved shadow contents.  */
                 wrong code with the saved shadow contents.  */
              else if (section_is_mapped (b->section))
              else if (section_is_mapped (b->section))
                val = target_remove_breakpoint (&b->target_info);
                val = target_remove_breakpoint (&b->target_info);
              else
              else
                val = 0;
                val = 0;
            }
            }
          else
          else
            {
            {
              /* No -- not inserted, so no need to remove.  No error.  */
              /* No -- not inserted, so no need to remove.  No error.  */
              val = 0;
              val = 0;
            }
            }
        }
        }
      if (val)
      if (val)
        return val;
        return val;
      b->inserted = (is == mark_inserted);
      b->inserted = (is == mark_inserted);
    }
    }
  else if (b->loc_type == bp_loc_hardware_watchpoint)
  else if (b->loc_type == bp_loc_hardware_watchpoint)
    {
    {
      struct value *v;
      struct value *v;
      struct value *n;
      struct value *n;
 
 
      b->inserted = (is == mark_inserted);
      b->inserted = (is == mark_inserted);
      val = target_remove_watchpoint (b->address, b->length,
      val = target_remove_watchpoint (b->address, b->length,
                                      b->watchpoint_type);
                                      b->watchpoint_type);
 
 
      /* Failure to remove any of the hardware watchpoints comes here.  */
      /* Failure to remove any of the hardware watchpoints comes here.  */
      if ((is == mark_uninserted) && (b->inserted))
      if ((is == mark_uninserted) && (b->inserted))
        warning (_("Could not remove hardware watchpoint %d."),
        warning (_("Could not remove hardware watchpoint %d."),
                 b->owner->number);
                 b->owner->number);
    }
    }
  else if ((b->owner->type == bp_catch_fork ||
  else if ((b->owner->type == bp_catch_fork ||
            b->owner->type == bp_catch_vfork ||
            b->owner->type == bp_catch_vfork ||
            b->owner->type == bp_catch_exec)
            b->owner->type == bp_catch_exec)
           && breakpoint_enabled (b->owner)
           && breakpoint_enabled (b->owner)
           && !b->duplicate)
           && !b->duplicate)
    {
    {
      val = -1;
      val = -1;
      switch (b->owner->type)
      switch (b->owner->type)
        {
        {
        case bp_catch_fork:
        case bp_catch_fork:
          val = target_remove_fork_catchpoint (PIDGET (inferior_ptid));
          val = target_remove_fork_catchpoint (PIDGET (inferior_ptid));
          break;
          break;
        case bp_catch_vfork:
        case bp_catch_vfork:
          val = target_remove_vfork_catchpoint (PIDGET (inferior_ptid));
          val = target_remove_vfork_catchpoint (PIDGET (inferior_ptid));
          break;
          break;
        case bp_catch_exec:
        case bp_catch_exec:
          val = target_remove_exec_catchpoint (PIDGET (inferior_ptid));
          val = target_remove_exec_catchpoint (PIDGET (inferior_ptid));
          break;
          break;
        default:
        default:
          warning (_("Internal error, %s line %d."), __FILE__, __LINE__);
          warning (_("Internal error, %s line %d."), __FILE__, __LINE__);
          break;
          break;
        }
        }
      if (val)
      if (val)
        return val;
        return val;
      b->inserted = (is == mark_inserted);
      b->inserted = (is == mark_inserted);
    }
    }
 
 
  return 0;
  return 0;
}
}
 
 
/* Clear the "inserted" flag in all breakpoints.  */
/* Clear the "inserted" flag in all breakpoints.  */
 
 
static void
static void
mark_breakpoints_out (void)
mark_breakpoints_out (void)
{
{
  struct bp_location *bpt;
  struct bp_location *bpt;
 
 
  ALL_BP_LOCATIONS (bpt)
  ALL_BP_LOCATIONS (bpt)
    bpt->inserted = 0;
    bpt->inserted = 0;
}
}
 
 
/* Clear the "inserted" flag in all breakpoints and delete any
/* Clear the "inserted" flag in all breakpoints and delete any
   breakpoints which should go away between runs of the program.
   breakpoints which should go away between runs of the program.
 
 
   Plus other such housekeeping that has to be done for breakpoints
   Plus other such housekeeping that has to be done for breakpoints
   between runs.
   between runs.
 
 
   Note: this function gets called at the end of a run (by
   Note: this function gets called at the end of a run (by
   generic_mourn_inferior) and when a run begins (by
   generic_mourn_inferior) and when a run begins (by
   init_wait_for_inferior). */
   init_wait_for_inferior). */
 
 
 
 
 
 
void
void
breakpoint_init_inferior (enum inf_context context)
breakpoint_init_inferior (enum inf_context context)
{
{
  struct breakpoint *b, *temp;
  struct breakpoint *b, *temp;
  struct bp_location *bpt;
  struct bp_location *bpt;
 
 
  ALL_BP_LOCATIONS (bpt)
  ALL_BP_LOCATIONS (bpt)
    bpt->inserted = 0;
    bpt->inserted = 0;
 
 
  ALL_BREAKPOINTS_SAFE (b, temp)
  ALL_BREAKPOINTS_SAFE (b, temp)
  {
  {
    switch (b->type)
    switch (b->type)
      {
      {
      case bp_call_dummy:
      case bp_call_dummy:
      case bp_watchpoint_scope:
      case bp_watchpoint_scope:
 
 
        /* If the call dummy breakpoint is at the entry point it will
        /* If the call dummy breakpoint is at the entry point it will
           cause problems when the inferior is rerun, so we better
           cause problems when the inferior is rerun, so we better
           get rid of it.
           get rid of it.
 
 
           Also get rid of scope breakpoints.  */
           Also get rid of scope breakpoints.  */
        delete_breakpoint (b);
        delete_breakpoint (b);
        break;
        break;
 
 
      case bp_watchpoint:
      case bp_watchpoint:
      case bp_hardware_watchpoint:
      case bp_hardware_watchpoint:
      case bp_read_watchpoint:
      case bp_read_watchpoint:
      case bp_access_watchpoint:
      case bp_access_watchpoint:
 
 
        /* Likewise for watchpoints on local expressions.  */
        /* Likewise for watchpoints on local expressions.  */
        if (b->exp_valid_block != NULL)
        if (b->exp_valid_block != NULL)
          delete_breakpoint (b);
          delete_breakpoint (b);
        else if (context == inf_starting)
        else if (context == inf_starting)
          {
          {
            /* Reset val field to force reread of starting value
            /* Reset val field to force reread of starting value
               in insert_breakpoints.  */
               in insert_breakpoints.  */
            if (b->val)
            if (b->val)
              value_free (b->val);
              value_free (b->val);
            b->val = NULL;
            b->val = NULL;
          }
          }
        break;
        break;
      default:
      default:
        break;
        break;
      }
      }
  }
  }
}
}
 
 
/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
   exists at PC.  It returns ordinary_breakpoint_here if it's an
   exists at PC.  It returns ordinary_breakpoint_here if it's an
   ordinary breakpoint, or permanent_breakpoint_here if it's a
   ordinary breakpoint, or permanent_breakpoint_here if it's a
   permanent breakpoint.
   permanent breakpoint.
   - When continuing from a location with an ordinary breakpoint, we
   - When continuing from a location with an ordinary breakpoint, we
     actually single step once before calling insert_breakpoints.
     actually single step once before calling insert_breakpoints.
   - When continuing from a localion with a permanent breakpoint, we
   - When continuing from a localion with a permanent breakpoint, we
     need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
     need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
     the target, to advance the PC past the breakpoint.  */
     the target, to advance the PC past the breakpoint.  */
 
 
enum breakpoint_here
enum breakpoint_here
breakpoint_here_p (CORE_ADDR pc)
breakpoint_here_p (CORE_ADDR pc)
{
{
  const struct bp_location *bpt;
  const struct bp_location *bpt;
  int any_breakpoint_here = 0;
  int any_breakpoint_here = 0;
 
 
  ALL_BP_LOCATIONS (bpt)
  ALL_BP_LOCATIONS (bpt)
    {
    {
      if (bpt->loc_type != bp_loc_software_breakpoint
      if (bpt->loc_type != bp_loc_software_breakpoint
          && bpt->loc_type != bp_loc_hardware_breakpoint)
          && bpt->loc_type != bp_loc_hardware_breakpoint)
        continue;
        continue;
 
 
      if ((breakpoint_enabled (bpt->owner)
      if ((breakpoint_enabled (bpt->owner)
           || bpt->owner->enable_state == bp_permanent)
           || bpt->owner->enable_state == bp_permanent)
          && bpt->address == pc)        /* bp is enabled and matches pc */
          && bpt->address == pc)        /* bp is enabled and matches pc */
        {
        {
          if (overlay_debugging
          if (overlay_debugging
              && section_is_overlay (bpt->section)
              && section_is_overlay (bpt->section)
              && !section_is_mapped (bpt->section))
              && !section_is_mapped (bpt->section))
            continue;           /* unmapped overlay -- can't be a match */
            continue;           /* unmapped overlay -- can't be a match */
          else if (bpt->owner->enable_state == bp_permanent)
          else if (bpt->owner->enable_state == bp_permanent)
            return permanent_breakpoint_here;
            return permanent_breakpoint_here;
          else
          else
            any_breakpoint_here = 1;
            any_breakpoint_here = 1;
        }
        }
    }
    }
 
 
  return any_breakpoint_here ? ordinary_breakpoint_here : 0;
  return any_breakpoint_here ? ordinary_breakpoint_here : 0;
}
}
 
 
 
 
/* Returns non-zero if there's a breakpoint inserted at PC, which is
/* Returns non-zero if there's a breakpoint inserted at PC, which is
   inserted using regular breakpoint_chain/bp_location_chain mechanism.
   inserted using regular breakpoint_chain/bp_location_chain mechanism.
   This does not check for single-step breakpoints, which are
   This does not check for single-step breakpoints, which are
   inserted and removed using direct target manipulation.  */
   inserted and removed using direct target manipulation.  */
 
 
int
int
regular_breakpoint_inserted_here_p (CORE_ADDR pc)
regular_breakpoint_inserted_here_p (CORE_ADDR pc)
{
{
  const struct bp_location *bpt;
  const struct bp_location *bpt;
 
 
  ALL_BP_LOCATIONS (bpt)
  ALL_BP_LOCATIONS (bpt)
    {
    {
      if (bpt->loc_type != bp_loc_software_breakpoint
      if (bpt->loc_type != bp_loc_software_breakpoint
          && bpt->loc_type != bp_loc_hardware_breakpoint)
          && bpt->loc_type != bp_loc_hardware_breakpoint)
        continue;
        continue;
 
 
      if (bpt->inserted
      if (bpt->inserted
          && bpt->address == pc)        /* bp is inserted and matches pc */
          && bpt->address == pc)        /* bp is inserted and matches pc */
        {
        {
          if (overlay_debugging
          if (overlay_debugging
              && section_is_overlay (bpt->section)
              && section_is_overlay (bpt->section)
              && !section_is_mapped (bpt->section))
              && !section_is_mapped (bpt->section))
            continue;           /* unmapped overlay -- can't be a match */
            continue;           /* unmapped overlay -- can't be a match */
          else
          else
            return 1;
            return 1;
        }
        }
    }
    }
  return 0;
  return 0;
}
}
 
 
/* Returns non-zero iff there's either regular breakpoint
/* Returns non-zero iff there's either regular breakpoint
   or a single step breakpoint inserted at PC.  */
   or a single step breakpoint inserted at PC.  */
 
 
int
int
breakpoint_inserted_here_p (CORE_ADDR pc)
breakpoint_inserted_here_p (CORE_ADDR pc)
{
{
  if (regular_breakpoint_inserted_here_p (pc))
  if (regular_breakpoint_inserted_here_p (pc))
    return 1;
    return 1;
 
 
  if (single_step_breakpoint_inserted_here_p (pc))
  if (single_step_breakpoint_inserted_here_p (pc))
    return 1;
    return 1;
 
 
  return 0;
  return 0;
}
}
 
 
/* This function returns non-zero iff there is a software breakpoint
/* This function returns non-zero iff there is a software breakpoint
   inserted at PC.  */
   inserted at PC.  */
 
 
int
int
software_breakpoint_inserted_here_p (CORE_ADDR pc)
software_breakpoint_inserted_here_p (CORE_ADDR pc)
{
{
  const struct bp_location *bpt;
  const struct bp_location *bpt;
  int any_breakpoint_here = 0;
  int any_breakpoint_here = 0;
 
 
  ALL_BP_LOCATIONS (bpt)
  ALL_BP_LOCATIONS (bpt)
    {
    {
      if (bpt->loc_type != bp_loc_software_breakpoint)
      if (bpt->loc_type != bp_loc_software_breakpoint)
        continue;
        continue;
 
 
      if (bpt->inserted
      if (bpt->inserted
          && bpt->address == pc)        /* bp is enabled and matches pc */
          && bpt->address == pc)        /* bp is enabled and matches pc */
        {
        {
          if (overlay_debugging
          if (overlay_debugging
              && section_is_overlay (bpt->section)
              && section_is_overlay (bpt->section)
              && !section_is_mapped (bpt->section))
              && !section_is_mapped (bpt->section))
            continue;           /* unmapped overlay -- can't be a match */
            continue;           /* unmapped overlay -- can't be a match */
          else
          else
            return 1;
            return 1;
        }
        }
    }
    }
 
 
  /* Also check for software single-step breakpoints.  */
  /* Also check for software single-step breakpoints.  */
  if (single_step_breakpoint_inserted_here_p (pc))
  if (single_step_breakpoint_inserted_here_p (pc))
    return 1;
    return 1;
 
 
  return 0;
  return 0;
}
}
 
 
/* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
/* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
   PC is valid for process/thread PTID.  */
   PC is valid for process/thread PTID.  */
 
 
int
int
breakpoint_thread_match (CORE_ADDR pc, ptid_t ptid)
breakpoint_thread_match (CORE_ADDR pc, ptid_t ptid)
{
{
  const struct bp_location *bpt;
  const struct bp_location *bpt;
  int thread;
  int thread;
 
 
  thread = pid_to_thread_id (ptid);
  thread = pid_to_thread_id (ptid);
 
 
  ALL_BP_LOCATIONS (bpt)
  ALL_BP_LOCATIONS (bpt)
    {
    {
      if (bpt->loc_type != bp_loc_software_breakpoint
      if (bpt->loc_type != bp_loc_software_breakpoint
          && bpt->loc_type != bp_loc_hardware_breakpoint)
          && bpt->loc_type != bp_loc_hardware_breakpoint)
        continue;
        continue;
 
 
      if ((breakpoint_enabled (bpt->owner)
      if ((breakpoint_enabled (bpt->owner)
           || bpt->owner->enable_state == bp_permanent)
           || bpt->owner->enable_state == bp_permanent)
          && bpt->address == pc
          && bpt->address == pc
          && (bpt->owner->thread == -1 || bpt->owner->thread == thread))
          && (bpt->owner->thread == -1 || bpt->owner->thread == thread))
        {
        {
          if (overlay_debugging
          if (overlay_debugging
              && section_is_overlay (bpt->section)
              && section_is_overlay (bpt->section)
              && !section_is_mapped (bpt->section))
              && !section_is_mapped (bpt->section))
            continue;           /* unmapped overlay -- can't be a match */
            continue;           /* unmapped overlay -- can't be a match */
          else
          else
            return 1;
            return 1;
        }
        }
    }
    }
 
 
  return 0;
  return 0;
}
}


 
 
/* bpstat stuff.  External routines' interfaces are documented
/* bpstat stuff.  External routines' interfaces are documented
   in breakpoint.h.  */
   in breakpoint.h.  */
 
 
int
int
ep_is_catchpoint (struct breakpoint *ep)
ep_is_catchpoint (struct breakpoint *ep)
{
{
  return
  return
    (ep->type == bp_catch_load)
    (ep->type == bp_catch_load)
    || (ep->type == bp_catch_unload)
    || (ep->type == bp_catch_unload)
    || (ep->type == bp_catch_fork)
    || (ep->type == bp_catch_fork)
    || (ep->type == bp_catch_vfork)
    || (ep->type == bp_catch_vfork)
    || (ep->type == bp_catch_exec);
    || (ep->type == bp_catch_exec);
 
 
  /* ??rehrauer: Add more kinds here, as are implemented... */
  /* ??rehrauer: Add more kinds here, as are implemented... */
}
}
 
 
int
int
ep_is_shlib_catchpoint (struct breakpoint *ep)
ep_is_shlib_catchpoint (struct breakpoint *ep)
{
{
  return
  return
    (ep->type == bp_catch_load)
    (ep->type == bp_catch_load)
    || (ep->type == bp_catch_unload);
    || (ep->type == bp_catch_unload);
}
}
 
 
void
void
bpstat_free (bpstat bs)
bpstat_free (bpstat bs)
{
{
  if (bs->old_val != NULL)
  if (bs->old_val != NULL)
    value_free (bs->old_val);
    value_free (bs->old_val);
  free_command_lines (&bs->commands);
  free_command_lines (&bs->commands);
  xfree (bs);
  xfree (bs);
}
}
 
 
/* Clear a bpstat so that it says we are not at any breakpoint.
/* Clear a bpstat so that it says we are not at any breakpoint.
   Also free any storage that is part of a bpstat.  */
   Also free any storage that is part of a bpstat.  */
 
 
void
void
bpstat_clear (bpstat *bsp)
bpstat_clear (bpstat *bsp)
{
{
  bpstat p;
  bpstat p;
  bpstat q;
  bpstat q;
 
 
  if (bsp == 0)
  if (bsp == 0)
    return;
    return;
  p = *bsp;
  p = *bsp;
  while (p != NULL)
  while (p != NULL)
    {
    {
      q = p->next;
      q = p->next;
      bpstat_free (p);
      bpstat_free (p);
      p = q;
      p = q;
    }
    }
  *bsp = NULL;
  *bsp = NULL;
}
}
 
 
/* Return a copy of a bpstat.  Like "bs1 = bs2" but all storage that
/* Return a copy of a bpstat.  Like "bs1 = bs2" but all storage that
   is part of the bpstat is copied as well.  */
   is part of the bpstat is copied as well.  */
 
 
bpstat
bpstat
bpstat_copy (bpstat bs)
bpstat_copy (bpstat bs)
{
{
  bpstat p = NULL;
  bpstat p = NULL;
  bpstat tmp;
  bpstat tmp;
  bpstat retval = NULL;
  bpstat retval = NULL;
 
 
  if (bs == NULL)
  if (bs == NULL)
    return bs;
    return bs;
 
 
  for (; bs != NULL; bs = bs->next)
  for (; bs != NULL; bs = bs->next)
    {
    {
      tmp = (bpstat) xmalloc (sizeof (*tmp));
      tmp = (bpstat) xmalloc (sizeof (*tmp));
      memcpy (tmp, bs, sizeof (*tmp));
      memcpy (tmp, bs, sizeof (*tmp));
      if (bs->commands != NULL)
      if (bs->commands != NULL)
        tmp->commands = copy_command_lines (bs->commands);
        tmp->commands = copy_command_lines (bs->commands);
      if (bs->old_val != NULL)
      if (bs->old_val != NULL)
        tmp->old_val = value_copy (bs->old_val);
        tmp->old_val = value_copy (bs->old_val);
 
 
      if (p == NULL)
      if (p == NULL)
        /* This is the first thing in the chain.  */
        /* This is the first thing in the chain.  */
        retval = tmp;
        retval = tmp;
      else
      else
        p->next = tmp;
        p->next = tmp;
      p = tmp;
      p = tmp;
    }
    }
  p->next = NULL;
  p->next = NULL;
  return retval;
  return retval;
}
}
 
 
/* Find the bpstat associated with this breakpoint */
/* Find the bpstat associated with this breakpoint */
 
 
bpstat
bpstat
bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
{
{
  if (bsp == NULL)
  if (bsp == NULL)
    return NULL;
    return NULL;
 
 
  for (; bsp != NULL; bsp = bsp->next)
  for (; bsp != NULL; bsp = bsp->next)
    {
    {
      if (bsp->breakpoint_at && bsp->breakpoint_at->owner == breakpoint)
      if (bsp->breakpoint_at && bsp->breakpoint_at->owner == breakpoint)
        return bsp;
        return bsp;
    }
    }
  return NULL;
  return NULL;
}
}
 
 
/* Find a step_resume breakpoint associated with this bpstat.
/* Find a step_resume breakpoint associated with this bpstat.
   (If there are multiple step_resume bp's on the list, this function
   (If there are multiple step_resume bp's on the list, this function
   will arbitrarily pick one.)
   will arbitrarily pick one.)
 
 
   It is an error to use this function if BPSTAT doesn't contain a
   It is an error to use this function if BPSTAT doesn't contain a
   step_resume breakpoint.
   step_resume breakpoint.
 
 
   See wait_for_inferior's use of this function.  */
   See wait_for_inferior's use of this function.  */
struct breakpoint *
struct breakpoint *
bpstat_find_step_resume_breakpoint (bpstat bsp)
bpstat_find_step_resume_breakpoint (bpstat bsp)
{
{
  int current_thread;
  int current_thread;
 
 
  gdb_assert (bsp != NULL);
  gdb_assert (bsp != NULL);
 
 
  current_thread = pid_to_thread_id (inferior_ptid);
  current_thread = pid_to_thread_id (inferior_ptid);
 
 
  for (; bsp != NULL; bsp = bsp->next)
  for (; bsp != NULL; bsp = bsp->next)
    {
    {
      if ((bsp->breakpoint_at != NULL) &&
      if ((bsp->breakpoint_at != NULL) &&
          (bsp->breakpoint_at->owner->type == bp_step_resume) &&
          (bsp->breakpoint_at->owner->type == bp_step_resume) &&
          (bsp->breakpoint_at->owner->thread == current_thread ||
          (bsp->breakpoint_at->owner->thread == current_thread ||
           bsp->breakpoint_at->owner->thread == -1))
           bsp->breakpoint_at->owner->thread == -1))
        return bsp->breakpoint_at->owner;
        return bsp->breakpoint_at->owner;
    }
    }
 
 
  internal_error (__FILE__, __LINE__, _("No step_resume breakpoint found."));
  internal_error (__FILE__, __LINE__, _("No step_resume breakpoint found."));
}
}
 
 
 
 
/* Put in *NUM the breakpoint number of the first breakpoint we are stopped
/* Put in *NUM the breakpoint number of the first breakpoint we are stopped
   at.  *BSP upon return is a bpstat which points to the remaining
   at.  *BSP upon return is a bpstat which points to the remaining
   breakpoints stopped at (but which is not guaranteed to be good for
   breakpoints stopped at (but which is not guaranteed to be good for
   anything but further calls to bpstat_num).
   anything but further calls to bpstat_num).
   Return 0 if passed a bpstat which does not indicate any breakpoints.
   Return 0 if passed a bpstat which does not indicate any breakpoints.
   Return -1 if stopped at a breakpoint that has been deleted since
   Return -1 if stopped at a breakpoint that has been deleted since
   we set it.
   we set it.
   Return 1 otherwise.  */
   Return 1 otherwise.  */
 
 
int
int
bpstat_num (bpstat *bsp, int *num)
bpstat_num (bpstat *bsp, int *num)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  if ((*bsp) == NULL)
  if ((*bsp) == NULL)
    return 0;                    /* No more breakpoint values */
    return 0;                    /* No more breakpoint values */
 
 
  /* We assume we'll never have several bpstats that
  /* We assume we'll never have several bpstats that
     correspond to a single breakpoint -- otherwise,
     correspond to a single breakpoint -- otherwise,
     this function might return the same number more
     this function might return the same number more
     than once and this will look ugly.  */
     than once and this will look ugly.  */
  b = (*bsp)->breakpoint_at ? (*bsp)->breakpoint_at->owner : NULL;
  b = (*bsp)->breakpoint_at ? (*bsp)->breakpoint_at->owner : NULL;
  *bsp = (*bsp)->next;
  *bsp = (*bsp)->next;
  if (b == NULL)
  if (b == NULL)
    return -1;                  /* breakpoint that's been deleted since */
    return -1;                  /* breakpoint that's been deleted since */
 
 
  *num = b->number;             /* We have its number */
  *num = b->number;             /* We have its number */
  return 1;
  return 1;
}
}
 
 
/* Modify BS so that the actions will not be performed.  */
/* Modify BS so that the actions will not be performed.  */
 
 
void
void
bpstat_clear_actions (bpstat bs)
bpstat_clear_actions (bpstat bs)
{
{
  for (; bs != NULL; bs = bs->next)
  for (; bs != NULL; bs = bs->next)
    {
    {
      free_command_lines (&bs->commands);
      free_command_lines (&bs->commands);
      if (bs->old_val != NULL)
      if (bs->old_val != NULL)
        {
        {
          value_free (bs->old_val);
          value_free (bs->old_val);
          bs->old_val = NULL;
          bs->old_val = NULL;
        }
        }
    }
    }
}
}
 
 
/* Stub for cleaning up our state if we error-out of a breakpoint command */
/* Stub for cleaning up our state if we error-out of a breakpoint command */
static void
static void
cleanup_executing_breakpoints (void *ignore)
cleanup_executing_breakpoints (void *ignore)
{
{
  executing_breakpoint_commands = 0;
  executing_breakpoint_commands = 0;
}
}
 
 
/* Execute all the commands associated with all the breakpoints at this
/* Execute all the commands associated with all the breakpoints at this
   location.  Any of these commands could cause the process to proceed
   location.  Any of these commands could cause the process to proceed
   beyond this point, etc.  We look out for such changes by checking
   beyond this point, etc.  We look out for such changes by checking
   the global "breakpoint_proceeded" after each command.  */
   the global "breakpoint_proceeded" after each command.  */
 
 
void
void
bpstat_do_actions (bpstat *bsp)
bpstat_do_actions (bpstat *bsp)
{
{
  bpstat bs;
  bpstat bs;
  struct cleanup *old_chain;
  struct cleanup *old_chain;
 
 
  /* Avoid endless recursion if a `source' command is contained
  /* Avoid endless recursion if a `source' command is contained
     in bs->commands.  */
     in bs->commands.  */
  if (executing_breakpoint_commands)
  if (executing_breakpoint_commands)
    return;
    return;
 
 
  executing_breakpoint_commands = 1;
  executing_breakpoint_commands = 1;
  old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
  old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
 
 
top:
top:
  /* Note that (as of this writing), our callers all appear to
  /* Note that (as of this writing), our callers all appear to
     be passing us the address of global stop_bpstat.  And, if
     be passing us the address of global stop_bpstat.  And, if
     our calls to execute_control_command cause the inferior to
     our calls to execute_control_command cause the inferior to
     proceed, that global (and hence, *bsp) will change.
     proceed, that global (and hence, *bsp) will change.
 
 
     We must be careful to not touch *bsp unless the inferior
     We must be careful to not touch *bsp unless the inferior
     has not proceeded. */
     has not proceeded. */
 
 
  /* This pointer will iterate over the list of bpstat's. */
  /* This pointer will iterate over the list of bpstat's. */
  bs = *bsp;
  bs = *bsp;
 
 
  breakpoint_proceeded = 0;
  breakpoint_proceeded = 0;
  for (; bs != NULL; bs = bs->next)
  for (; bs != NULL; bs = bs->next)
    {
    {
      struct command_line *cmd;
      struct command_line *cmd;
      struct cleanup *this_cmd_tree_chain;
      struct cleanup *this_cmd_tree_chain;
 
 
      /* Take ownership of the BSP's command tree, if it has one.
      /* Take ownership of the BSP's command tree, if it has one.
 
 
         The command tree could legitimately contain commands like
         The command tree could legitimately contain commands like
         'step' and 'next', which call clear_proceed_status, which
         'step' and 'next', which call clear_proceed_status, which
         frees stop_bpstat's command tree.  To make sure this doesn't
         frees stop_bpstat's command tree.  To make sure this doesn't
         free the tree we're executing out from under us, we need to
         free the tree we're executing out from under us, we need to
         take ownership of the tree ourselves.  Since a given bpstat's
         take ownership of the tree ourselves.  Since a given bpstat's
         commands are only executed once, we don't need to copy it; we
         commands are only executed once, we don't need to copy it; we
         can clear the pointer in the bpstat, and make sure we free
         can clear the pointer in the bpstat, and make sure we free
         the tree when we're done.  */
         the tree when we're done.  */
      cmd = bs->commands;
      cmd = bs->commands;
      bs->commands = 0;
      bs->commands = 0;
      this_cmd_tree_chain = make_cleanup_free_command_lines (&cmd);
      this_cmd_tree_chain = make_cleanup_free_command_lines (&cmd);
 
 
      while (cmd != NULL)
      while (cmd != NULL)
        {
        {
          execute_control_command (cmd);
          execute_control_command (cmd);
 
 
          if (breakpoint_proceeded)
          if (breakpoint_proceeded)
            break;
            break;
          else
          else
            cmd = cmd->next;
            cmd = cmd->next;
        }
        }
 
 
      /* We can free this command tree now.  */
      /* We can free this command tree now.  */
      do_cleanups (this_cmd_tree_chain);
      do_cleanups (this_cmd_tree_chain);
 
 
      if (breakpoint_proceeded)
      if (breakpoint_proceeded)
        /* The inferior is proceeded by the command; bomb out now.
        /* The inferior is proceeded by the command; bomb out now.
           The bpstat chain has been blown away by wait_for_inferior.
           The bpstat chain has been blown away by wait_for_inferior.
           But since execution has stopped again, there is a new bpstat
           But since execution has stopped again, there is a new bpstat
           to look at, so start over.  */
           to look at, so start over.  */
        goto top;
        goto top;
    }
    }
  do_cleanups (old_chain);
  do_cleanups (old_chain);
}
}
 
 
/* This is the normal print function for a bpstat.  In the future,
/* This is the normal print function for a bpstat.  In the future,
   much of this logic could (should?) be moved to bpstat_stop_status,
   much of this logic could (should?) be moved to bpstat_stop_status,
   by having it set different print_it values.
   by having it set different print_it values.
 
 
   Current scheme: When we stop, bpstat_print() is called.  It loops
   Current scheme: When we stop, bpstat_print() is called.  It loops
   through the bpstat list of things causing this stop, calling the
   through the bpstat list of things causing this stop, calling the
   print_bp_stop_message function on each one. The behavior of the
   print_bp_stop_message function on each one. The behavior of the
   print_bp_stop_message function depends on the print_it field of
   print_bp_stop_message function depends on the print_it field of
   bpstat. If such field so indicates, call this function here.
   bpstat. If such field so indicates, call this function here.
 
 
   Return values from this routine (ultimately used by bpstat_print()
   Return values from this routine (ultimately used by bpstat_print()
   and normal_stop() to decide what to do):
   and normal_stop() to decide what to do):
   PRINT_NOTHING: Means we already printed all we needed to print,
   PRINT_NOTHING: Means we already printed all we needed to print,
   don't print anything else.
   don't print anything else.
   PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
   PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
   that something to be followed by a location.
   that something to be followed by a location.
   PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
   PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
   that something to be followed by a location.
   that something to be followed by a location.
   PRINT_UNKNOWN: Means we printed nothing or we need to do some more
   PRINT_UNKNOWN: Means we printed nothing or we need to do some more
   analysis.  */
   analysis.  */
 
 
static enum print_stop_action
static enum print_stop_action
print_it_typical (bpstat bs)
print_it_typical (bpstat bs)
{
{
  struct cleanup *old_chain, *ui_out_chain;
  struct cleanup *old_chain, *ui_out_chain;
  struct breakpoint *b;
  struct breakpoint *b;
  const struct bp_location *bl;
  const struct bp_location *bl;
  struct ui_stream *stb;
  struct ui_stream *stb;
  stb = ui_out_stream_new (uiout);
  stb = ui_out_stream_new (uiout);
  old_chain = make_cleanup_ui_out_stream_delete (stb);
  old_chain = make_cleanup_ui_out_stream_delete (stb);
  /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
  /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
     which has since been deleted.  */
     which has since been deleted.  */
  if (bs->breakpoint_at == NULL)
  if (bs->breakpoint_at == NULL)
    return PRINT_UNKNOWN;
    return PRINT_UNKNOWN;
  bl = bs->breakpoint_at;
  bl = bs->breakpoint_at;
  b = bl->owner;
  b = bl->owner;
 
 
  switch (b->type)
  switch (b->type)
    {
    {
    case bp_breakpoint:
    case bp_breakpoint:
    case bp_hardware_breakpoint:
    case bp_hardware_breakpoint:
      if (bl->address != bl->requested_address)
      if (bl->address != bl->requested_address)
        breakpoint_adjustment_warning (bl->requested_address,
        breakpoint_adjustment_warning (bl->requested_address,
                                       bl->address,
                                       bl->address,
                                       b->number, 1);
                                       b->number, 1);
      annotate_breakpoint (b->number);
      annotate_breakpoint (b->number);
      ui_out_text (uiout, "\nBreakpoint ");
      ui_out_text (uiout, "\nBreakpoint ");
      if (ui_out_is_mi_like_p (uiout))
      if (ui_out_is_mi_like_p (uiout))
        ui_out_field_string (uiout, "reason",
        ui_out_field_string (uiout, "reason",
                             async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
                             async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
      ui_out_field_int (uiout, "bkptno", b->number);
      ui_out_field_int (uiout, "bkptno", b->number);
      ui_out_text (uiout, ", ");
      ui_out_text (uiout, ", ");
      return PRINT_SRC_AND_LOC;
      return PRINT_SRC_AND_LOC;
      break;
      break;
 
 
    case bp_shlib_event:
    case bp_shlib_event:
      /* Did we stop because the user set the stop_on_solib_events
      /* Did we stop because the user set the stop_on_solib_events
         variable?  (If so, we report this as a generic, "Stopped due
         variable?  (If so, we report this as a generic, "Stopped due
         to shlib event" message.) */
         to shlib event" message.) */
      printf_filtered (_("Stopped due to shared library event\n"));
      printf_filtered (_("Stopped due to shared library event\n"));
      return PRINT_NOTHING;
      return PRINT_NOTHING;
      break;
      break;
 
 
    case bp_thread_event:
    case bp_thread_event:
      /* Not sure how we will get here.
      /* Not sure how we will get here.
         GDB should not stop for these breakpoints.  */
         GDB should not stop for these breakpoints.  */
      printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
      printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
      return PRINT_NOTHING;
      return PRINT_NOTHING;
      break;
      break;
 
 
    case bp_overlay_event:
    case bp_overlay_event:
      /* By analogy with the thread event, GDB should not stop for these. */
      /* By analogy with the thread event, GDB should not stop for these. */
      printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
      printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
      return PRINT_NOTHING;
      return PRINT_NOTHING;
      break;
      break;
 
 
    case bp_catch_load:
    case bp_catch_load:
      annotate_catchpoint (b->number);
      annotate_catchpoint (b->number);
      printf_filtered (_("\nCatchpoint %d (loaded %s), "),
      printf_filtered (_("\nCatchpoint %d (loaded %s), "),
                       b->number,
                       b->number,
                       b->triggered_dll_pathname);
                       b->triggered_dll_pathname);
      return PRINT_SRC_AND_LOC;
      return PRINT_SRC_AND_LOC;
      break;
      break;
 
 
    case bp_catch_unload:
    case bp_catch_unload:
      annotate_catchpoint (b->number);
      annotate_catchpoint (b->number);
      printf_filtered (_("\nCatchpoint %d (unloaded %s), "),
      printf_filtered (_("\nCatchpoint %d (unloaded %s), "),
                       b->number,
                       b->number,
                       b->triggered_dll_pathname);
                       b->triggered_dll_pathname);
      return PRINT_SRC_AND_LOC;
      return PRINT_SRC_AND_LOC;
      break;
      break;
 
 
    case bp_catch_fork:
    case bp_catch_fork:
      annotate_catchpoint (b->number);
      annotate_catchpoint (b->number);
      printf_filtered (_("\nCatchpoint %d (forked process %d), "),
      printf_filtered (_("\nCatchpoint %d (forked process %d), "),
                       b->number,
                       b->number,
                       b->forked_inferior_pid);
                       b->forked_inferior_pid);
      return PRINT_SRC_AND_LOC;
      return PRINT_SRC_AND_LOC;
      break;
      break;
 
 
    case bp_catch_vfork:
    case bp_catch_vfork:
      annotate_catchpoint (b->number);
      annotate_catchpoint (b->number);
      printf_filtered (_("\nCatchpoint %d (vforked process %d), "),
      printf_filtered (_("\nCatchpoint %d (vforked process %d), "),
                       b->number,
                       b->number,
                       b->forked_inferior_pid);
                       b->forked_inferior_pid);
      return PRINT_SRC_AND_LOC;
      return PRINT_SRC_AND_LOC;
      break;
      break;
 
 
    case bp_catch_exec:
    case bp_catch_exec:
      annotate_catchpoint (b->number);
      annotate_catchpoint (b->number);
      printf_filtered (_("\nCatchpoint %d (exec'd %s), "),
      printf_filtered (_("\nCatchpoint %d (exec'd %s), "),
                       b->number,
                       b->number,
                       b->exec_pathname);
                       b->exec_pathname);
      return PRINT_SRC_AND_LOC;
      return PRINT_SRC_AND_LOC;
      break;
      break;
 
 
    case bp_watchpoint:
    case bp_watchpoint:
    case bp_hardware_watchpoint:
    case bp_hardware_watchpoint:
      if (bs->old_val != NULL)
      if (bs->old_val != NULL)
        {
        {
          annotate_watchpoint (b->number);
          annotate_watchpoint (b->number);
          if (ui_out_is_mi_like_p (uiout))
          if (ui_out_is_mi_like_p (uiout))
            ui_out_field_string
            ui_out_field_string
              (uiout, "reason",
              (uiout, "reason",
               async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
               async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
          mention (b);
          mention (b);
          ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
          ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
          ui_out_text (uiout, "\nOld value = ");
          ui_out_text (uiout, "\nOld value = ");
          value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
          value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
          ui_out_field_stream (uiout, "old", stb);
          ui_out_field_stream (uiout, "old", stb);
          ui_out_text (uiout, "\nNew value = ");
          ui_out_text (uiout, "\nNew value = ");
          value_print (b->val, stb->stream, 0, Val_pretty_default);
          value_print (b->val, stb->stream, 0, Val_pretty_default);
          ui_out_field_stream (uiout, "new", stb);
          ui_out_field_stream (uiout, "new", stb);
          do_cleanups (ui_out_chain);
          do_cleanups (ui_out_chain);
          ui_out_text (uiout, "\n");
          ui_out_text (uiout, "\n");
          value_free (bs->old_val);
          value_free (bs->old_val);
          bs->old_val = NULL;
          bs->old_val = NULL;
        }
        }
      /* More than one watchpoint may have been triggered.  */
      /* More than one watchpoint may have been triggered.  */
      return PRINT_UNKNOWN;
      return PRINT_UNKNOWN;
      break;
      break;
 
 
    case bp_read_watchpoint:
    case bp_read_watchpoint:
      if (ui_out_is_mi_like_p (uiout))
      if (ui_out_is_mi_like_p (uiout))
        ui_out_field_string
        ui_out_field_string
          (uiout, "reason",
          (uiout, "reason",
           async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
           async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
      mention (b);
      mention (b);
      ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
      ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
      ui_out_text (uiout, "\nValue = ");
      ui_out_text (uiout, "\nValue = ");
      value_print (b->val, stb->stream, 0, Val_pretty_default);
      value_print (b->val, stb->stream, 0, Val_pretty_default);
      ui_out_field_stream (uiout, "value", stb);
      ui_out_field_stream (uiout, "value", stb);
      do_cleanups (ui_out_chain);
      do_cleanups (ui_out_chain);
      ui_out_text (uiout, "\n");
      ui_out_text (uiout, "\n");
      return PRINT_UNKNOWN;
      return PRINT_UNKNOWN;
      break;
      break;
 
 
    case bp_access_watchpoint:
    case bp_access_watchpoint:
      if (bs->old_val != NULL)
      if (bs->old_val != NULL)
        {
        {
          annotate_watchpoint (b->number);
          annotate_watchpoint (b->number);
          if (ui_out_is_mi_like_p (uiout))
          if (ui_out_is_mi_like_p (uiout))
            ui_out_field_string
            ui_out_field_string
              (uiout, "reason",
              (uiout, "reason",
               async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
               async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
          mention (b);
          mention (b);
          ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
          ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
          ui_out_text (uiout, "\nOld value = ");
          ui_out_text (uiout, "\nOld value = ");
          value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
          value_print (bs->old_val, stb->stream, 0, Val_pretty_default);
          ui_out_field_stream (uiout, "old", stb);
          ui_out_field_stream (uiout, "old", stb);
          value_free (bs->old_val);
          value_free (bs->old_val);
          bs->old_val = NULL;
          bs->old_val = NULL;
          ui_out_text (uiout, "\nNew value = ");
          ui_out_text (uiout, "\nNew value = ");
        }
        }
      else
      else
        {
        {
          mention (b);
          mention (b);
          if (ui_out_is_mi_like_p (uiout))
          if (ui_out_is_mi_like_p (uiout))
            ui_out_field_string
            ui_out_field_string
              (uiout, "reason",
              (uiout, "reason",
               async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
               async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
          ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
          ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
          ui_out_text (uiout, "\nValue = ");
          ui_out_text (uiout, "\nValue = ");
        }
        }
      value_print (b->val, stb->stream, 0,Val_pretty_default);
      value_print (b->val, stb->stream, 0,Val_pretty_default);
      ui_out_field_stream (uiout, "new", stb);
      ui_out_field_stream (uiout, "new", stb);
      do_cleanups (ui_out_chain);
      do_cleanups (ui_out_chain);
      ui_out_text (uiout, "\n");
      ui_out_text (uiout, "\n");
      return PRINT_UNKNOWN;
      return PRINT_UNKNOWN;
      break;
      break;
 
 
    /* Fall through, we don't deal with these types of breakpoints
    /* Fall through, we don't deal with these types of breakpoints
       here. */
       here. */
 
 
    case bp_finish:
    case bp_finish:
      if (ui_out_is_mi_like_p (uiout))
      if (ui_out_is_mi_like_p (uiout))
        ui_out_field_string
        ui_out_field_string
          (uiout, "reason",
          (uiout, "reason",
           async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED));
           async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED));
      return PRINT_UNKNOWN;
      return PRINT_UNKNOWN;
      break;
      break;
 
 
    case bp_until:
    case bp_until:
      if (ui_out_is_mi_like_p (uiout))
      if (ui_out_is_mi_like_p (uiout))
        ui_out_field_string
        ui_out_field_string
          (uiout, "reason",
          (uiout, "reason",
           async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED));
           async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED));
      return PRINT_UNKNOWN;
      return PRINT_UNKNOWN;
      break;
      break;
 
 
    case bp_none:
    case bp_none:
    case bp_longjmp:
    case bp_longjmp:
    case bp_longjmp_resume:
    case bp_longjmp_resume:
    case bp_step_resume:
    case bp_step_resume:
    case bp_watchpoint_scope:
    case bp_watchpoint_scope:
    case bp_call_dummy:
    case bp_call_dummy:
    default:
    default:
      return PRINT_UNKNOWN;
      return PRINT_UNKNOWN;
    }
    }
}
}
 
 
/* Generic routine for printing messages indicating why we
/* Generic routine for printing messages indicating why we
   stopped. The behavior of this function depends on the value
   stopped. The behavior of this function depends on the value
   'print_it' in the bpstat structure.  Under some circumstances we
   'print_it' in the bpstat structure.  Under some circumstances we
   may decide not to print anything here and delegate the task to
   may decide not to print anything here and delegate the task to
   normal_stop(). */
   normal_stop(). */
 
 
static enum print_stop_action
static enum print_stop_action
print_bp_stop_message (bpstat bs)
print_bp_stop_message (bpstat bs)
{
{
  switch (bs->print_it)
  switch (bs->print_it)
    {
    {
    case print_it_noop:
    case print_it_noop:
      /* Nothing should be printed for this bpstat entry. */
      /* Nothing should be printed for this bpstat entry. */
      return PRINT_UNKNOWN;
      return PRINT_UNKNOWN;
      break;
      break;
 
 
    case print_it_done:
    case print_it_done:
      /* We still want to print the frame, but we already printed the
      /* We still want to print the frame, but we already printed the
         relevant messages. */
         relevant messages. */
      return PRINT_SRC_AND_LOC;
      return PRINT_SRC_AND_LOC;
      break;
      break;
 
 
    case print_it_normal:
    case print_it_normal:
      {
      {
        const struct bp_location *bl = bs->breakpoint_at;
        const struct bp_location *bl = bs->breakpoint_at;
        struct breakpoint *b = bl ? bl->owner : NULL;
        struct breakpoint *b = bl ? bl->owner : NULL;
 
 
        /* Normal case.  Call the breakpoint's print_it method, or
        /* Normal case.  Call the breakpoint's print_it method, or
           print_it_typical.  */
           print_it_typical.  */
        /* FIXME: how breakpoint can ever be NULL here?  */
        /* FIXME: how breakpoint can ever be NULL here?  */
        if (b != NULL && b->ops != NULL && b->ops->print_it != NULL)
        if (b != NULL && b->ops != NULL && b->ops->print_it != NULL)
          return b->ops->print_it (b);
          return b->ops->print_it (b);
        else
        else
          return print_it_typical (bs);
          return print_it_typical (bs);
      }
      }
        break;
        break;
 
 
    default:
    default:
      internal_error (__FILE__, __LINE__,
      internal_error (__FILE__, __LINE__,
                      _("print_bp_stop_message: unrecognized enum value"));
                      _("print_bp_stop_message: unrecognized enum value"));
      break;
      break;
    }
    }
}
}
 
 
/* Print a message indicating what happened.  This is called from
/* Print a message indicating what happened.  This is called from
   normal_stop().  The input to this routine is the head of the bpstat
   normal_stop().  The input to this routine is the head of the bpstat
   list - a list of the eventpoints that caused this stop.  This
   list - a list of the eventpoints that caused this stop.  This
   routine calls the generic print routine for printing a message
   routine calls the generic print routine for printing a message
   about reasons for stopping.  This will print (for example) the
   about reasons for stopping.  This will print (for example) the
   "Breakpoint n," part of the output.  The return value of this
   "Breakpoint n," part of the output.  The return value of this
   routine is one of:
   routine is one of:
 
 
   PRINT_UNKNOWN: Means we printed nothing
   PRINT_UNKNOWN: Means we printed nothing
   PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
   PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
   code to print the location. An example is
   code to print the location. An example is
   "Breakpoint 1, " which should be followed by
   "Breakpoint 1, " which should be followed by
   the location.
   the location.
   PRINT_SRC_ONLY: Means we printed something, but there is no need
   PRINT_SRC_ONLY: Means we printed something, but there is no need
   to also print the location part of the message.
   to also print the location part of the message.
   An example is the catch/throw messages, which
   An example is the catch/throw messages, which
   don't require a location appended to the end.
   don't require a location appended to the end.
   PRINT_NOTHING: We have done some printing and we don't need any
   PRINT_NOTHING: We have done some printing and we don't need any
   further info to be printed.*/
   further info to be printed.*/
 
 
enum print_stop_action
enum print_stop_action
bpstat_print (bpstat bs)
bpstat_print (bpstat bs)
{
{
  int val;
  int val;
 
 
  /* Maybe another breakpoint in the chain caused us to stop.
  /* Maybe another breakpoint in the chain caused us to stop.
     (Currently all watchpoints go on the bpstat whether hit or not.
     (Currently all watchpoints go on the bpstat whether hit or not.
     That probably could (should) be changed, provided care is taken
     That probably could (should) be changed, provided care is taken
     with respect to bpstat_explains_signal).  */
     with respect to bpstat_explains_signal).  */
  for (; bs; bs = bs->next)
  for (; bs; bs = bs->next)
    {
    {
      val = print_bp_stop_message (bs);
      val = print_bp_stop_message (bs);
      if (val == PRINT_SRC_ONLY
      if (val == PRINT_SRC_ONLY
          || val == PRINT_SRC_AND_LOC
          || val == PRINT_SRC_AND_LOC
          || val == PRINT_NOTHING)
          || val == PRINT_NOTHING)
        return val;
        return val;
    }
    }
 
 
  /* We reached the end of the chain, or we got a null BS to start
  /* We reached the end of the chain, or we got a null BS to start
     with and nothing was printed. */
     with and nothing was printed. */
  return PRINT_UNKNOWN;
  return PRINT_UNKNOWN;
}
}
 
 
/* Evaluate the expression EXP and return 1 if value is zero.
/* Evaluate the expression EXP and return 1 if value is zero.
   This is used inside a catch_errors to evaluate the breakpoint condition.
   This is used inside a catch_errors to evaluate the breakpoint condition.
   The argument is a "struct expression *" that has been cast to char * to
   The argument is a "struct expression *" that has been cast to char * to
   make it pass through catch_errors.  */
   make it pass through catch_errors.  */
 
 
static int
static int
breakpoint_cond_eval (void *exp)
breakpoint_cond_eval (void *exp)
{
{
  struct value *mark = value_mark ();
  struct value *mark = value_mark ();
  int i = !value_true (evaluate_expression ((struct expression *) exp));
  int i = !value_true (evaluate_expression ((struct expression *) exp));
  value_free_to_mark (mark);
  value_free_to_mark (mark);
  return i;
  return i;
}
}
 
 
/* Allocate a new bpstat and chain it to the current one.  */
/* Allocate a new bpstat and chain it to the current one.  */
 
 
static bpstat
static bpstat
bpstat_alloc (const struct bp_location *bl, bpstat cbs /* Current "bs" value */ )
bpstat_alloc (const struct bp_location *bl, bpstat cbs /* Current "bs" value */ )
{
{
  bpstat bs;
  bpstat bs;
 
 
  bs = (bpstat) xmalloc (sizeof (*bs));
  bs = (bpstat) xmalloc (sizeof (*bs));
  cbs->next = bs;
  cbs->next = bs;
  bs->breakpoint_at = bl;
  bs->breakpoint_at = bl;
  /* If the condition is false, etc., don't do the commands.  */
  /* If the condition is false, etc., don't do the commands.  */
  bs->commands = NULL;
  bs->commands = NULL;
  bs->old_val = NULL;
  bs->old_val = NULL;
  bs->print_it = print_it_normal;
  bs->print_it = print_it_normal;
  return bs;
  return bs;
}
}


/* The target has stopped with waitstatus WS.  Check if any hardware
/* The target has stopped with waitstatus WS.  Check if any hardware
   watchpoints have triggered, according to the target.  */
   watchpoints have triggered, according to the target.  */
 
 
int
int
watchpoints_triggered (struct target_waitstatus *ws)
watchpoints_triggered (struct target_waitstatus *ws)
{
{
  int stopped_by_watchpoint = STOPPED_BY_WATCHPOINT (*ws);
  int stopped_by_watchpoint = STOPPED_BY_WATCHPOINT (*ws);
  CORE_ADDR addr;
  CORE_ADDR addr;
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  if (!stopped_by_watchpoint)
  if (!stopped_by_watchpoint)
    {
    {
      /* We were not stopped by a watchpoint.  Mark all watchpoints
      /* We were not stopped by a watchpoint.  Mark all watchpoints
         as not triggered.  */
         as not triggered.  */
      ALL_BREAKPOINTS (b)
      ALL_BREAKPOINTS (b)
        if (b->type == bp_hardware_watchpoint
        if (b->type == bp_hardware_watchpoint
            || b->type == bp_read_watchpoint
            || b->type == bp_read_watchpoint
            || b->type == bp_access_watchpoint)
            || b->type == bp_access_watchpoint)
          b->watchpoint_triggered = watch_triggered_no;
          b->watchpoint_triggered = watch_triggered_no;
 
 
      return 0;
      return 0;
    }
    }
 
 
  if (!target_stopped_data_address (&current_target, &addr))
  if (!target_stopped_data_address (&current_target, &addr))
    {
    {
      /* We were stopped by a watchpoint, but we don't know where.
      /* We were stopped by a watchpoint, but we don't know where.
         Mark all watchpoints as unknown.  */
         Mark all watchpoints as unknown.  */
      ALL_BREAKPOINTS (b)
      ALL_BREAKPOINTS (b)
        if (b->type == bp_hardware_watchpoint
        if (b->type == bp_hardware_watchpoint
            || b->type == bp_read_watchpoint
            || b->type == bp_read_watchpoint
            || b->type == bp_access_watchpoint)
            || b->type == bp_access_watchpoint)
          b->watchpoint_triggered = watch_triggered_unknown;
          b->watchpoint_triggered = watch_triggered_unknown;
 
 
      return stopped_by_watchpoint;
      return stopped_by_watchpoint;
    }
    }
 
 
  /* The target could report the data address.  Mark watchpoints
  /* The target could report the data address.  Mark watchpoints
     affected by this data address as triggered, and all others as not
     affected by this data address as triggered, and all others as not
     triggered.  */
     triggered.  */
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->type == bp_hardware_watchpoint
    if (b->type == bp_hardware_watchpoint
        || b->type == bp_read_watchpoint
        || b->type == bp_read_watchpoint
        || b->type == bp_access_watchpoint)
        || b->type == bp_access_watchpoint)
      {
      {
        struct bp_location *loc;
        struct bp_location *loc;
        struct value *v;
        struct value *v;
 
 
        b->watchpoint_triggered = watch_triggered_no;
        b->watchpoint_triggered = watch_triggered_no;
        for (loc = b->loc; loc; loc = loc->next)
        for (loc = b->loc; loc; loc = loc->next)
          /* Exact match not required.  Within range is
          /* Exact match not required.  Within range is
             sufficient.  */
             sufficient.  */
          if (addr >= loc->address
          if (addr >= loc->address
              && addr < loc->address + loc->length)
              && addr < loc->address + loc->length)
            {
            {
              b->watchpoint_triggered = watch_triggered_yes;
              b->watchpoint_triggered = watch_triggered_yes;
              break;
              break;
            }
            }
      }
      }
 
 
  return 1;
  return 1;
}
}
 
 
/* Possible return values for watchpoint_check (this can't be an enum
/* Possible return values for watchpoint_check (this can't be an enum
   because of check_errors).  */
   because of check_errors).  */
/* The watchpoint has been deleted.  */
/* The watchpoint has been deleted.  */
#define WP_DELETED 1
#define WP_DELETED 1
/* The value has changed.  */
/* The value has changed.  */
#define WP_VALUE_CHANGED 2
#define WP_VALUE_CHANGED 2
/* The value has not changed.  */
/* The value has not changed.  */
#define WP_VALUE_NOT_CHANGED 3
#define WP_VALUE_NOT_CHANGED 3
 
 
#define BP_TEMPFLAG 1
#define BP_TEMPFLAG 1
#define BP_HARDWAREFLAG 2
#define BP_HARDWAREFLAG 2
 
 
/* Check watchpoint condition.  */
/* Check watchpoint condition.  */
 
 
static int
static int
watchpoint_check (void *p)
watchpoint_check (void *p)
{
{
  bpstat bs = (bpstat) p;
  bpstat bs = (bpstat) p;
  struct breakpoint *b;
  struct breakpoint *b;
  struct frame_info *fr;
  struct frame_info *fr;
  int within_current_scope;
  int within_current_scope;
 
 
  b = bs->breakpoint_at->owner;
  b = bs->breakpoint_at->owner;
 
 
  if (b->exp_valid_block == NULL)
  if (b->exp_valid_block == NULL)
    within_current_scope = 1;
    within_current_scope = 1;
  else
  else
    {
    {
      /* There is no current frame at this moment.  If we're going to have
      /* There is no current frame at this moment.  If we're going to have
         any chance of handling watchpoints on local variables, we'll need
         any chance of handling watchpoints on local variables, we'll need
         the frame chain (so we can determine if we're in scope).  */
         the frame chain (so we can determine if we're in scope).  */
      reinit_frame_cache ();
      reinit_frame_cache ();
      fr = frame_find_by_id (b->watchpoint_frame);
      fr = frame_find_by_id (b->watchpoint_frame);
      within_current_scope = (fr != NULL);
      within_current_scope = (fr != NULL);
 
 
      /* If we've gotten confused in the unwinder, we might have
      /* If we've gotten confused in the unwinder, we might have
         returned a frame that can't describe this variable.  */
         returned a frame that can't describe this variable.  */
      if (within_current_scope
      if (within_current_scope
          && block_function (b->exp_valid_block) != get_frame_function (fr))
          && block_function (b->exp_valid_block) != get_frame_function (fr))
        within_current_scope = 0;
        within_current_scope = 0;
 
 
      /* in_function_epilogue_p() returns a non-zero value if we're still
      /* in_function_epilogue_p() returns a non-zero value if we're still
         in the function but the stack frame has already been invalidated.
         in the function but the stack frame has already been invalidated.
         Since we can't rely on the values of local variables after the
         Since we can't rely on the values of local variables after the
         stack has been destroyed, we are treating the watchpoint in that
         stack has been destroyed, we are treating the watchpoint in that
         state as `not changed' without further checking.
         state as `not changed' without further checking.
 
 
         vinschen/2003-09-04: The former implementation left out the case
         vinschen/2003-09-04: The former implementation left out the case
         that the watchpoint frame couldn't be found by frame_find_by_id()
         that the watchpoint frame couldn't be found by frame_find_by_id()
         because the current PC is currently in an epilogue.  Calling
         because the current PC is currently in an epilogue.  Calling
         gdbarch_in_function_epilogue_p() also when fr == NULL fixes that. */
         gdbarch_in_function_epilogue_p() also when fr == NULL fixes that. */
      if ((!within_current_scope || fr == get_current_frame ())
      if ((!within_current_scope || fr == get_current_frame ())
          && gdbarch_in_function_epilogue_p (current_gdbarch, read_pc ()))
          && gdbarch_in_function_epilogue_p (current_gdbarch, read_pc ()))
        return WP_VALUE_NOT_CHANGED;
        return WP_VALUE_NOT_CHANGED;
      if (fr && within_current_scope)
      if (fr && within_current_scope)
        /* If we end up stopping, the current frame will get selected
        /* If we end up stopping, the current frame will get selected
           in normal_stop.  So this call to select_frame won't affect
           in normal_stop.  So this call to select_frame won't affect
           the user.  */
           the user.  */
        select_frame (fr);
        select_frame (fr);
    }
    }
 
 
  if (within_current_scope)
  if (within_current_scope)
    {
    {
      /* We use value_{,free_to_}mark because it could be a
      /* We use value_{,free_to_}mark because it could be a
         *long* time before we return to the command level and
         *long* time before we return to the command level and
         call free_all_values.  We can't call free_all_values because
         call free_all_values.  We can't call free_all_values because
         we might be in the middle of evaluating a function call.  */
         we might be in the middle of evaluating a function call.  */
 
 
      struct value *mark = value_mark ();
      struct value *mark = value_mark ();
      struct value *new_val = evaluate_expression (b->exp);
      struct value *new_val = evaluate_expression (b->exp);
      if (!value_equal (b->val, new_val))
      if (!value_equal (b->val, new_val))
        {
        {
          release_value (new_val);
          release_value (new_val);
          value_free_to_mark (mark);
          value_free_to_mark (mark);
          bs->old_val = b->val;
          bs->old_val = b->val;
          b->val = new_val;
          b->val = new_val;
          /* We will stop here */
          /* We will stop here */
          return WP_VALUE_CHANGED;
          return WP_VALUE_CHANGED;
        }
        }
      else
      else
        {
        {
          /* Nothing changed, don't do anything.  */
          /* Nothing changed, don't do anything.  */
          value_free_to_mark (mark);
          value_free_to_mark (mark);
          /* We won't stop here */
          /* We won't stop here */
          return WP_VALUE_NOT_CHANGED;
          return WP_VALUE_NOT_CHANGED;
        }
        }
    }
    }
  else
  else
    {
    {
      /* This seems like the only logical thing to do because
      /* This seems like the only logical thing to do because
         if we temporarily ignored the watchpoint, then when
         if we temporarily ignored the watchpoint, then when
         we reenter the block in which it is valid it contains
         we reenter the block in which it is valid it contains
         garbage (in the case of a function, it may have two
         garbage (in the case of a function, it may have two
         garbage values, one before and one after the prologue).
         garbage values, one before and one after the prologue).
         So we can't even detect the first assignment to it and
         So we can't even detect the first assignment to it and
         watch after that (since the garbage may or may not equal
         watch after that (since the garbage may or may not equal
         the first value assigned).  */
         the first value assigned).  */
      /* We print all the stop information in print_it_typical(), but
      /* We print all the stop information in print_it_typical(), but
         in this case, by the time we call print_it_typical() this bp
         in this case, by the time we call print_it_typical() this bp
         will be deleted already. So we have no choice but print the
         will be deleted already. So we have no choice but print the
         information here. */
         information here. */
      if (ui_out_is_mi_like_p (uiout))
      if (ui_out_is_mi_like_p (uiout))
        ui_out_field_string
        ui_out_field_string
          (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
          (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
      ui_out_text (uiout, "\nWatchpoint ");
      ui_out_text (uiout, "\nWatchpoint ");
      ui_out_field_int (uiout, "wpnum", b->number);
      ui_out_field_int (uiout, "wpnum", b->number);
      ui_out_text (uiout, " deleted because the program has left the block in\n\
      ui_out_text (uiout, " deleted because the program has left the block in\n\
which its expression is valid.\n");
which its expression is valid.\n");
 
 
      if (b->related_breakpoint)
      if (b->related_breakpoint)
        b->related_breakpoint->disposition = disp_del_at_next_stop;
        b->related_breakpoint->disposition = disp_del_at_next_stop;
      b->disposition = disp_del_at_next_stop;
      b->disposition = disp_del_at_next_stop;
 
 
      return WP_DELETED;
      return WP_DELETED;
    }
    }
}
}
 
 
/* Get a bpstat associated with having just stopped at address
/* Get a bpstat associated with having just stopped at address
   BP_ADDR in thread PTID.
   BP_ADDR in thread PTID.
 
 
   Determine whether we stopped at a breakpoint, etc, or whether we
   Determine whether we stopped at a breakpoint, etc, or whether we
   don't understand this stop.  Result is a chain of bpstat's such that:
   don't understand this stop.  Result is a chain of bpstat's such that:
 
 
   if we don't understand the stop, the result is a null pointer.
   if we don't understand the stop, the result is a null pointer.
 
 
   if we understand why we stopped, the result is not null.
   if we understand why we stopped, the result is not null.
 
 
   Each element of the chain refers to a particular breakpoint or
   Each element of the chain refers to a particular breakpoint or
   watchpoint at which we have stopped.  (We may have stopped for
   watchpoint at which we have stopped.  (We may have stopped for
   several reasons concurrently.)
   several reasons concurrently.)
 
 
   Each element of the chain has valid next, breakpoint_at,
   Each element of the chain has valid next, breakpoint_at,
   commands, FIXME??? fields.  */
   commands, FIXME??? fields.  */
 
 
bpstat
bpstat
bpstat_stop_status (CORE_ADDR bp_addr, ptid_t ptid)
bpstat_stop_status (CORE_ADDR bp_addr, ptid_t ptid)
{
{
  struct breakpoint *b = NULL;
  struct breakpoint *b = NULL;
  const struct bp_location *bl;
  const struct bp_location *bl;
  /* Root of the chain of bpstat's */
  /* Root of the chain of bpstat's */
  struct bpstats root_bs[1];
  struct bpstats root_bs[1];
  /* Pointer to the last thing in the chain currently.  */
  /* Pointer to the last thing in the chain currently.  */
  bpstat bs = root_bs;
  bpstat bs = root_bs;
  int thread_id = pid_to_thread_id (ptid);
  int thread_id = pid_to_thread_id (ptid);
 
 
  ALL_BP_LOCATIONS (bl)
  ALL_BP_LOCATIONS (bl)
  {
  {
    b = bl->owner;
    b = bl->owner;
    gdb_assert (b);
    gdb_assert (b);
    if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
    if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
      continue;
      continue;
 
 
    if (b->type != bp_watchpoint
    if (b->type != bp_watchpoint
        && b->type != bp_hardware_watchpoint
        && b->type != bp_hardware_watchpoint
        && b->type != bp_read_watchpoint
        && b->type != bp_read_watchpoint
        && b->type != bp_access_watchpoint
        && b->type != bp_access_watchpoint
        && b->type != bp_hardware_breakpoint
        && b->type != bp_hardware_breakpoint
        && b->type != bp_catch_fork
        && b->type != bp_catch_fork
        && b->type != bp_catch_vfork
        && b->type != bp_catch_vfork
        && b->type != bp_catch_exec)    /* a non-watchpoint bp */
        && b->type != bp_catch_exec)    /* a non-watchpoint bp */
      {
      {
        if (bl->address != bp_addr)     /* address doesn't match */
        if (bl->address != bp_addr)     /* address doesn't match */
          continue;
          continue;
        if (overlay_debugging           /* unmapped overlay section */
        if (overlay_debugging           /* unmapped overlay section */
            && section_is_overlay (bl->section)
            && section_is_overlay (bl->section)
            && !section_is_mapped (bl->section))
            && !section_is_mapped (bl->section))
          continue;
          continue;
      }
      }
 
 
    /* Continuable hardware watchpoints are treated as non-existent if the
    /* Continuable hardware watchpoints are treated as non-existent if the
       reason we stopped wasn't a hardware watchpoint (we didn't stop on
       reason we stopped wasn't a hardware watchpoint (we didn't stop on
       some data address).  Otherwise gdb won't stop on a break instruction
       some data address).  Otherwise gdb won't stop on a break instruction
       in the code (not from a breakpoint) when a hardware watchpoint has
       in the code (not from a breakpoint) when a hardware watchpoint has
       been defined.  Also skip watchpoints which we know did not trigger
       been defined.  Also skip watchpoints which we know did not trigger
       (did not match the data address).  */
       (did not match the data address).  */
 
 
    if ((b->type == bp_hardware_watchpoint
    if ((b->type == bp_hardware_watchpoint
         || b->type == bp_read_watchpoint
         || b->type == bp_read_watchpoint
         || b->type == bp_access_watchpoint)
         || b->type == bp_access_watchpoint)
        && b->watchpoint_triggered == watch_triggered_no)
        && b->watchpoint_triggered == watch_triggered_no)
      continue;
      continue;
 
 
    if (b->type == bp_hardware_breakpoint)
    if (b->type == bp_hardware_breakpoint)
      {
      {
        if (bl->address != bp_addr)
        if (bl->address != bp_addr)
          continue;
          continue;
        if (overlay_debugging           /* unmapped overlay section */
        if (overlay_debugging           /* unmapped overlay section */
            && section_is_overlay (bl->section)
            && section_is_overlay (bl->section)
            && !section_is_mapped (bl->section))
            && !section_is_mapped (bl->section))
          continue;
          continue;
      }
      }
 
 
    /* Is this a catchpoint of a load or unload?  If so, did we
    /* Is this a catchpoint of a load or unload?  If so, did we
       get a load or unload of the specified library?  If not,
       get a load or unload of the specified library?  If not,
       ignore it. */
       ignore it. */
    if ((b->type == bp_catch_load)
    if ((b->type == bp_catch_load)
#if defined(SOLIB_HAVE_LOAD_EVENT)
#if defined(SOLIB_HAVE_LOAD_EVENT)
        && (!SOLIB_HAVE_LOAD_EVENT (PIDGET (inferior_ptid))
        && (!SOLIB_HAVE_LOAD_EVENT (PIDGET (inferior_ptid))
            || ((b->dll_pathname != NULL)
            || ((b->dll_pathname != NULL)
                && (strcmp (b->dll_pathname,
                && (strcmp (b->dll_pathname,
                            SOLIB_LOADED_LIBRARY_PATHNAME (
                            SOLIB_LOADED_LIBRARY_PATHNAME (
                              PIDGET (inferior_ptid)))
                              PIDGET (inferior_ptid)))
                    != 0)))
                    != 0)))
#endif
#endif
      )
      )
      continue;
      continue;
 
 
    if ((b->type == bp_catch_unload)
    if ((b->type == bp_catch_unload)
#if defined(SOLIB_HAVE_UNLOAD_EVENT)
#if defined(SOLIB_HAVE_UNLOAD_EVENT)
        && (!SOLIB_HAVE_UNLOAD_EVENT (PIDGET (inferior_ptid))
        && (!SOLIB_HAVE_UNLOAD_EVENT (PIDGET (inferior_ptid))
            || ((b->dll_pathname != NULL)
            || ((b->dll_pathname != NULL)
                && (strcmp (b->dll_pathname,
                && (strcmp (b->dll_pathname,
                            SOLIB_UNLOADED_LIBRARY_PATHNAME (
                            SOLIB_UNLOADED_LIBRARY_PATHNAME (
                              PIDGET (inferior_ptid)))
                              PIDGET (inferior_ptid)))
                    != 0)))
                    != 0)))
#endif
#endif
      )
      )
      continue;
      continue;
 
 
    if ((b->type == bp_catch_fork)
    if ((b->type == bp_catch_fork)
        && !inferior_has_forked (PIDGET (inferior_ptid),
        && !inferior_has_forked (PIDGET (inferior_ptid),
                                 &b->forked_inferior_pid))
                                 &b->forked_inferior_pid))
      continue;
      continue;
 
 
    if ((b->type == bp_catch_vfork)
    if ((b->type == bp_catch_vfork)
        && !inferior_has_vforked (PIDGET (inferior_ptid),
        && !inferior_has_vforked (PIDGET (inferior_ptid),
                                  &b->forked_inferior_pid))
                                  &b->forked_inferior_pid))
      continue;
      continue;
 
 
    if ((b->type == bp_catch_exec)
    if ((b->type == bp_catch_exec)
        && !inferior_has_execd (PIDGET (inferior_ptid), &b->exec_pathname))
        && !inferior_has_execd (PIDGET (inferior_ptid), &b->exec_pathname))
      continue;
      continue;
 
 
    /* For hardware watchpoints, we look only at the first location.
    /* For hardware watchpoints, we look only at the first location.
       The watchpoint_check function will work on entire expression,
       The watchpoint_check function will work on entire expression,
       not the individual locations.  For read watchopints, the
       not the individual locations.  For read watchopints, the
       watchpoints_triggered function have checked all locations
       watchpoints_triggered function have checked all locations
       alrea
       alrea
     */
     */
    if (b->type == bp_hardware_watchpoint && bl != b->loc)
    if (b->type == bp_hardware_watchpoint && bl != b->loc)
      continue;
      continue;
 
 
    /* Come here if it's a watchpoint, or if the break address matches */
    /* Come here if it's a watchpoint, or if the break address matches */
 
 
    bs = bpstat_alloc (bl, bs); /* Alloc a bpstat to explain stop */
    bs = bpstat_alloc (bl, bs); /* Alloc a bpstat to explain stop */
 
 
    /* Watchpoints may change this, if not found to have triggered. */
    /* Watchpoints may change this, if not found to have triggered. */
    bs->stop = 1;
    bs->stop = 1;
    bs->print = 1;
    bs->print = 1;
 
 
    if (b->type == bp_watchpoint
    if (b->type == bp_watchpoint
        || b->type == bp_read_watchpoint
        || b->type == bp_read_watchpoint
        || b->type == bp_access_watchpoint
        || b->type == bp_access_watchpoint
        || b->type == bp_hardware_watchpoint)
        || b->type == bp_hardware_watchpoint)
      {
      {
        CORE_ADDR addr;
        CORE_ADDR addr;
        struct value *v;
        struct value *v;
        int must_check_value = 0;
        int must_check_value = 0;
 
 
        if (b->type == bp_watchpoint)
        if (b->type == bp_watchpoint)
          /* For a software watchpoint, we must always check the
          /* For a software watchpoint, we must always check the
             watched value.  */
             watched value.  */
          must_check_value = 1;
          must_check_value = 1;
        else if (b->watchpoint_triggered == watch_triggered_yes)
        else if (b->watchpoint_triggered == watch_triggered_yes)
          /* We have a hardware watchpoint (read, write, or access)
          /* We have a hardware watchpoint (read, write, or access)
             and the target earlier reported an address watched by
             and the target earlier reported an address watched by
             this watchpoint.  */
             this watchpoint.  */
          must_check_value = 1;
          must_check_value = 1;
        else if (b->watchpoint_triggered == watch_triggered_unknown
        else if (b->watchpoint_triggered == watch_triggered_unknown
                 && b->type == bp_hardware_watchpoint)
                 && b->type == bp_hardware_watchpoint)
          /* We were stopped by a hardware watchpoint, but the target could
          /* We were stopped by a hardware watchpoint, but the target could
             not report the data address.  We must check the watchpoint's
             not report the data address.  We must check the watchpoint's
             value.  Access and read watchpoints are out of luck; without
             value.  Access and read watchpoints are out of luck; without
             a data address, we can't figure it out.  */
             a data address, we can't figure it out.  */
          must_check_value = 1;
          must_check_value = 1;
 
 
        if (must_check_value)
        if (must_check_value)
          {
          {
            char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
            char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
                                        b->number);
                                        b->number);
            struct cleanup *cleanups = make_cleanup (xfree, message);
            struct cleanup *cleanups = make_cleanup (xfree, message);
            int e = catch_errors (watchpoint_check, bs, message,
            int e = catch_errors (watchpoint_check, bs, message,
                                  RETURN_MASK_ALL);
                                  RETURN_MASK_ALL);
            do_cleanups (cleanups);
            do_cleanups (cleanups);
            switch (e)
            switch (e)
              {
              {
              case WP_DELETED:
              case WP_DELETED:
                /* We've already printed what needs to be printed.  */
                /* We've already printed what needs to be printed.  */
                bs->print_it = print_it_done;
                bs->print_it = print_it_done;
                /* Stop.  */
                /* Stop.  */
                break;
                break;
              case WP_VALUE_CHANGED:
              case WP_VALUE_CHANGED:
                /* NOTE: Jeremy Bennett, 13-Aug-08: Code used to check if the
                /* NOTE: Jeremy Bennett, 13-Aug-08: Code used to check if the
                   value had changed, and if so disallow the watchpoint. The
                   value had changed, and if so disallow the watchpoint. The
                   test was not reliable - trust the HW on this one */
                   test was not reliable - trust the HW on this one */
                ++(b->hit_count);
                ++(b->hit_count);
                break;
                break;
              case WP_VALUE_NOT_CHANGED:
              case WP_VALUE_NOT_CHANGED:
                if (b->type == bp_hardware_watchpoint
                if (b->type == bp_hardware_watchpoint
                    || b->type == bp_watchpoint)
                    || b->type == bp_watchpoint)
                  {
                  {
                    /* Don't stop: write watchpoints shouldn't fire if
                    /* Don't stop: write watchpoints shouldn't fire if
                       the value hasn't changed.  */
                       the value hasn't changed.  */
                    bs->print_it = print_it_noop;
                    bs->print_it = print_it_noop;
                    bs->stop = 0;
                    bs->stop = 0;
                    continue;
                    continue;
                  }
                  }
                /* Stop.  */
                /* Stop.  */
                ++(b->hit_count);
                ++(b->hit_count);
                break;
                break;
              default:
              default:
                /* Can't happen.  */
                /* Can't happen.  */
              case 0:
              case 0:
                /* Error from catch_errors.  */
                /* Error from catch_errors.  */
                printf_filtered (_("Watchpoint %d deleted.\n"), b->number);
                printf_filtered (_("Watchpoint %d deleted.\n"), b->number);
                if (b->related_breakpoint)
                if (b->related_breakpoint)
                  b->related_breakpoint->disposition = disp_del_at_next_stop;
                  b->related_breakpoint->disposition = disp_del_at_next_stop;
                b->disposition = disp_del_at_next_stop;
                b->disposition = disp_del_at_next_stop;
                /* We've already printed what needs to be printed.  */
                /* We've already printed what needs to be printed.  */
                bs->print_it = print_it_done;
                bs->print_it = print_it_done;
                break;
                break;
              }
              }
          }
          }
        else    /* must_check_value == 0 */
        else    /* must_check_value == 0 */
          {
          {
            /* This is a case where some watchpoint(s) triggered, but
            /* This is a case where some watchpoint(s) triggered, but
               not at the address of this watchpoint, or else no
               not at the address of this watchpoint, or else no
               watchpoint triggered after all.  So don't print
               watchpoint triggered after all.  So don't print
               anything for this watchpoint.  */
               anything for this watchpoint.  */
            bs->print_it = print_it_noop;
            bs->print_it = print_it_noop;
            bs->stop = 0;
            bs->stop = 0;
            continue;
            continue;
          }
          }
      }
      }
    else
    else
      {
      {
        /* By definition, an encountered breakpoint is a triggered
        /* By definition, an encountered breakpoint is a triggered
           breakpoint. */
           breakpoint. */
        ++(b->hit_count);
        ++(b->hit_count);
      }
      }
 
 
    if (frame_id_p (b->frame_id)
    if (frame_id_p (b->frame_id)
        && !frame_id_eq (b->frame_id, get_frame_id (get_current_frame ())))
        && !frame_id_eq (b->frame_id, get_frame_id (get_current_frame ())))
      bs->stop = 0;
      bs->stop = 0;
    else
    else
      {
      {
        int value_is_zero = 0;
        int value_is_zero = 0;
 
 
        /* If this is a scope breakpoint, mark the associated
        /* If this is a scope breakpoint, mark the associated
           watchpoint as triggered so that we will handle the
           watchpoint as triggered so that we will handle the
           out-of-scope event.  We'll get to the watchpoint next
           out-of-scope event.  We'll get to the watchpoint next
           iteration.  */
           iteration.  */
        if (b->type == bp_watchpoint_scope)
        if (b->type == bp_watchpoint_scope)
          b->related_breakpoint->watchpoint_triggered = watch_triggered_yes;
          b->related_breakpoint->watchpoint_triggered = watch_triggered_yes;
 
 
        if (bl->cond && bl->owner->disposition != disp_del_at_next_stop)
        if (bl->cond && bl->owner->disposition != disp_del_at_next_stop)
          {
          {
            /* Need to select the frame, with all that implies
            /* Need to select the frame, with all that implies
               so that the conditions will have the right context.  */
               so that the conditions will have the right context.  */
            select_frame (get_current_frame ());
            select_frame (get_current_frame ());
            value_is_zero
            value_is_zero
              = catch_errors (breakpoint_cond_eval, (bl->cond),
              = catch_errors (breakpoint_cond_eval, (bl->cond),
                              "Error in testing breakpoint condition:\n",
                              "Error in testing breakpoint condition:\n",
                              RETURN_MASK_ALL);
                              RETURN_MASK_ALL);
            /* FIXME-someday, should give breakpoint # */
            /* FIXME-someday, should give breakpoint # */
            free_all_values ();
            free_all_values ();
          }
          }
        if (bl->cond && value_is_zero)
        if (bl->cond && value_is_zero)
          {
          {
            bs->stop = 0;
            bs->stop = 0;
            /* Don't consider this a hit.  */
            /* Don't consider this a hit.  */
            --(b->hit_count);
            --(b->hit_count);
          }
          }
        else if (b->thread != -1 && b->thread != thread_id)
        else if (b->thread != -1 && b->thread != thread_id)
          {
          {
            bs->stop = 0;
            bs->stop = 0;
            /* Don't consider this a hit.  */
            /* Don't consider this a hit.  */
            --(b->hit_count);
            --(b->hit_count);
          }
          }
        else if (b->ignore_count > 0)
        else if (b->ignore_count > 0)
          {
          {
            b->ignore_count--;
            b->ignore_count--;
            annotate_ignore_count_change ();
            annotate_ignore_count_change ();
            bs->stop = 0;
            bs->stop = 0;
          }
          }
        else if (b->type == bp_thread_event || b->type == bp_overlay_event)
        else if (b->type == bp_thread_event || b->type == bp_overlay_event)
          /* We do not stop for these.  */
          /* We do not stop for these.  */
          bs->stop = 0;
          bs->stop = 0;
        else
        else
          {
          {
            /* We will stop here */
            /* We will stop here */
            if (b->disposition == disp_disable)
            if (b->disposition == disp_disable)
              b->enable_state = bp_disabled;
              b->enable_state = bp_disabled;
            if (b->silent)
            if (b->silent)
              bs->print = 0;
              bs->print = 0;
            bs->commands = b->commands;
            bs->commands = b->commands;
            if (bs->commands &&
            if (bs->commands &&
                (strcmp ("silent", bs->commands->line) == 0
                (strcmp ("silent", bs->commands->line) == 0
                 || (xdb_commands && strcmp ("Q", bs->commands->line) == 0)))
                 || (xdb_commands && strcmp ("Q", bs->commands->line) == 0)))
              {
              {
                bs->commands = bs->commands->next;
                bs->commands = bs->commands->next;
                bs->print = 0;
                bs->print = 0;
              }
              }
            bs->commands = copy_command_lines (bs->commands);
            bs->commands = copy_command_lines (bs->commands);
          }
          }
      }
      }
    /* Print nothing for this entry if we dont stop or if we dont print.  */
    /* Print nothing for this entry if we dont stop or if we dont print.  */
    if (bs->stop == 0 || bs->print == 0)
    if (bs->stop == 0 || bs->print == 0)
      bs->print_it = print_it_noop;
      bs->print_it = print_it_noop;
  }
  }
 
 
  bs->next = NULL;              /* Terminate the chain */
  bs->next = NULL;              /* Terminate the chain */
  bs = root_bs->next;           /* Re-grab the head of the chain */
  bs = root_bs->next;           /* Re-grab the head of the chain */
 
 
  /* If we aren't stopping, the value of some hardware watchpoint may
  /* If we aren't stopping, the value of some hardware watchpoint may
     not have changed, but the intermediate memory locations we are
     not have changed, but the intermediate memory locations we are
     watching may have.  Don't bother if we're stopping; this will get
     watching may have.  Don't bother if we're stopping; this will get
     done later.  */
     done later.  */
  for (bs = root_bs->next; bs != NULL; bs = bs->next)
  for (bs = root_bs->next; bs != NULL; bs = bs->next)
    if (bs->stop)
    if (bs->stop)
      break;
      break;
 
 
  if (bs == NULL)
  if (bs == NULL)
    for (bs = root_bs->next; bs != NULL; bs = bs->next)
    for (bs = root_bs->next; bs != NULL; bs = bs->next)
      if (!bs->stop
      if (!bs->stop
          && (bs->breakpoint_at->owner->type == bp_hardware_watchpoint
          && (bs->breakpoint_at->owner->type == bp_hardware_watchpoint
              || bs->breakpoint_at->owner->type == bp_read_watchpoint
              || bs->breakpoint_at->owner->type == bp_read_watchpoint
              || bs->breakpoint_at->owner->type == bp_access_watchpoint))
              || bs->breakpoint_at->owner->type == bp_access_watchpoint))
        {
        {
          /* remove/insert can invalidate bs->breakpoint_at, if this
          /* remove/insert can invalidate bs->breakpoint_at, if this
             location is no longer used by the watchpoint.  Prevent
             location is no longer used by the watchpoint.  Prevent
             further code from trying to use it.  */
             further code from trying to use it.  */
          bs->breakpoint_at = NULL;
          bs->breakpoint_at = NULL;
          remove_breakpoints ();
          remove_breakpoints ();
          insert_breakpoints ();
          insert_breakpoints ();
          break;
          break;
        }
        }
 
 
  return root_bs->next;
  return root_bs->next;
}
}


/* Tell what to do about this bpstat.  */
/* Tell what to do about this bpstat.  */
struct bpstat_what
struct bpstat_what
bpstat_what (bpstat bs)
bpstat_what (bpstat bs)
{
{
  /* Classify each bpstat as one of the following.  */
  /* Classify each bpstat as one of the following.  */
  enum class
  enum class
    {
    {
      /* This bpstat element has no effect on the main_action.  */
      /* This bpstat element has no effect on the main_action.  */
      no_effect = 0,
      no_effect = 0,
 
 
      /* There was a watchpoint, stop but don't print.  */
      /* There was a watchpoint, stop but don't print.  */
      wp_silent,
      wp_silent,
 
 
      /* There was a watchpoint, stop and print.  */
      /* There was a watchpoint, stop and print.  */
      wp_noisy,
      wp_noisy,
 
 
      /* There was a breakpoint but we're not stopping.  */
      /* There was a breakpoint but we're not stopping.  */
      bp_nostop,
      bp_nostop,
 
 
      /* There was a breakpoint, stop but don't print.  */
      /* There was a breakpoint, stop but don't print.  */
      bp_silent,
      bp_silent,
 
 
      /* There was a breakpoint, stop and print.  */
      /* There was a breakpoint, stop and print.  */
      bp_noisy,
      bp_noisy,
 
 
      /* We hit the longjmp breakpoint.  */
      /* We hit the longjmp breakpoint.  */
      long_jump,
      long_jump,
 
 
      /* We hit the longjmp_resume breakpoint.  */
      /* We hit the longjmp_resume breakpoint.  */
      long_resume,
      long_resume,
 
 
      /* We hit the step_resume breakpoint.  */
      /* We hit the step_resume breakpoint.  */
      step_resume,
      step_resume,
 
 
      /* We hit the shared library event breakpoint.  */
      /* We hit the shared library event breakpoint.  */
      shlib_event,
      shlib_event,
 
 
      /* We caught a shared library event.  */
      /* We caught a shared library event.  */
      catch_shlib_event,
      catch_shlib_event,
 
 
      /* This is just used to count how many enums there are.  */
      /* This is just used to count how many enums there are.  */
      class_last
      class_last
    };
    };
 
 
  /* Here is the table which drives this routine.  So that we can
  /* Here is the table which drives this routine.  So that we can
     format it pretty, we define some abbreviations for the
     format it pretty, we define some abbreviations for the
     enum bpstat_what codes.  */
     enum bpstat_what codes.  */
#define kc BPSTAT_WHAT_KEEP_CHECKING
#define kc BPSTAT_WHAT_KEEP_CHECKING
#define ss BPSTAT_WHAT_STOP_SILENT
#define ss BPSTAT_WHAT_STOP_SILENT
#define sn BPSTAT_WHAT_STOP_NOISY
#define sn BPSTAT_WHAT_STOP_NOISY
#define sgl BPSTAT_WHAT_SINGLE
#define sgl BPSTAT_WHAT_SINGLE
#define slr BPSTAT_WHAT_SET_LONGJMP_RESUME
#define slr BPSTAT_WHAT_SET_LONGJMP_RESUME
#define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
#define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
#define clrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
#define clrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
#define sr BPSTAT_WHAT_STEP_RESUME
#define sr BPSTAT_WHAT_STEP_RESUME
#define shl BPSTAT_WHAT_CHECK_SHLIBS
#define shl BPSTAT_WHAT_CHECK_SHLIBS
#define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
#define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
 
 
/* "Can't happen."  Might want to print an error message.
/* "Can't happen."  Might want to print an error message.
   abort() is not out of the question, but chances are GDB is just
   abort() is not out of the question, but chances are GDB is just
   a bit confused, not unusable.  */
   a bit confused, not unusable.  */
#define err BPSTAT_WHAT_STOP_NOISY
#define err BPSTAT_WHAT_STOP_NOISY
 
 
  /* Given an old action and a class, come up with a new action.  */
  /* Given an old action and a class, come up with a new action.  */
  /* One interesting property of this table is that wp_silent is the same
  /* One interesting property of this table is that wp_silent is the same
     as bp_silent and wp_noisy is the same as bp_noisy.  That is because
     as bp_silent and wp_noisy is the same as bp_noisy.  That is because
     after stopping, the check for whether to step over a breakpoint
     after stopping, the check for whether to step over a breakpoint
     (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
     (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
     reference to how we stopped.  We retain separate wp_silent and
     reference to how we stopped.  We retain separate wp_silent and
     bp_silent codes in case we want to change that someday.
     bp_silent codes in case we want to change that someday.
 
 
     Another possibly interesting property of this table is that
     Another possibly interesting property of this table is that
     there's a partial ordering, priority-like, of the actions.  Once
     there's a partial ordering, priority-like, of the actions.  Once
     you've decided that some action is appropriate, you'll never go
     you've decided that some action is appropriate, you'll never go
     back and decide something of a lower priority is better.  The
     back and decide something of a lower priority is better.  The
     ordering is:
     ordering is:
 
 
     kc   < clr sgl shl shlr slr sn sr ss
     kc   < clr sgl shl shlr slr sn sr ss
     sgl  < clrs shl shlr slr sn sr ss
     sgl  < clrs shl shlr slr sn sr ss
     slr  < err shl shlr sn sr ss
     slr  < err shl shlr sn sr ss
     clr  < clrs err shl shlr sn sr ss
     clr  < clrs err shl shlr sn sr ss
     clrs < err shl shlr sn sr ss
     clrs < err shl shlr sn sr ss
     ss   < shl shlr sn sr
     ss   < shl shlr sn sr
     sn   < shl shlr sr
     sn   < shl shlr sr
     shl  < shlr sr
     shl  < shlr sr
     shlr < sr
     shlr < sr
     sr   <
     sr   <
 
 
     What I think this means is that we don't need a damned table
     What I think this means is that we don't need a damned table
     here.  If you just put the rows and columns in the right order,
     here.  If you just put the rows and columns in the right order,
     it'd look awfully regular.  We could simply walk the bpstat list
     it'd look awfully regular.  We could simply walk the bpstat list
     and choose the highest priority action we find, with a little
     and choose the highest priority action we find, with a little
     logic to handle the 'err' cases, and the CLEAR_LONGJMP_RESUME/
     logic to handle the 'err' cases, and the CLEAR_LONGJMP_RESUME/
     CLEAR_LONGJMP_RESUME_SINGLE distinction (which breakpoint.h says
     CLEAR_LONGJMP_RESUME_SINGLE distinction (which breakpoint.h says
     is messy anyway).  */
     is messy anyway).  */
 
 
  /* step_resume entries: a step resume breakpoint overrides another
  /* step_resume entries: a step resume breakpoint overrides another
     breakpoint of signal handling (see comment in wait_for_inferior
     breakpoint of signal handling (see comment in wait_for_inferior
     at where we set the step_resume breakpoint).  */
     at where we set the step_resume breakpoint).  */
 
 
  static const enum bpstat_what_main_action
  static const enum bpstat_what_main_action
    table[(int) class_last][(int) BPSTAT_WHAT_LAST] =
    table[(int) class_last][(int) BPSTAT_WHAT_LAST] =
  {
  {
  /*                              old action */
  /*                              old action */
  /*       kc    ss    sn    sgl    slr   clr    clrs   sr   shl   shlr
  /*       kc    ss    sn    sgl    slr   clr    clrs   sr   shl   shlr
   */
   */
/*no_effect */
/*no_effect */
    {kc, ss, sn, sgl, slr, clr, clrs, sr, shl, shlr},
    {kc, ss, sn, sgl, slr, clr, clrs, sr, shl, shlr},
/*wp_silent */
/*wp_silent */
    {ss, ss, sn, ss, ss, ss, ss, sr, shl, shlr},
    {ss, ss, sn, ss, ss, ss, ss, sr, shl, shlr},
/*wp_noisy */
/*wp_noisy */
    {sn, sn, sn, sn, sn, sn, sn, sr, shl, shlr},
    {sn, sn, sn, sn, sn, sn, sn, sr, shl, shlr},
/*bp_nostop */
/*bp_nostop */
    {sgl, ss, sn, sgl, slr, clrs, clrs, sr, shl, shlr},
    {sgl, ss, sn, sgl, slr, clrs, clrs, sr, shl, shlr},
/*bp_silent */
/*bp_silent */
    {ss, ss, sn, ss, ss, ss, ss, sr, shl, shlr},
    {ss, ss, sn, ss, ss, ss, ss, sr, shl, shlr},
/*bp_noisy */
/*bp_noisy */
    {sn, sn, sn, sn, sn, sn, sn, sr, shl, shlr},
    {sn, sn, sn, sn, sn, sn, sn, sr, shl, shlr},
/*long_jump */
/*long_jump */
    {slr, ss, sn, slr, slr, err, err, sr, shl, shlr},
    {slr, ss, sn, slr, slr, err, err, sr, shl, shlr},
/*long_resume */
/*long_resume */
    {clr, ss, sn, clrs, err, err, err, sr, shl, shlr},
    {clr, ss, sn, clrs, err, err, err, sr, shl, shlr},
/*step_resume */
/*step_resume */
    {sr, sr, sr, sr, sr, sr, sr, sr, sr, sr},
    {sr, sr, sr, sr, sr, sr, sr, sr, sr, sr},
/*shlib */
/*shlib */
    {shl, shl, shl, shl, shl, shl, shl, sr, shl, shlr},
    {shl, shl, shl, shl, shl, shl, shl, sr, shl, shlr},
/*catch_shlib */
/*catch_shlib */
    {shlr, shlr, shlr, shlr, shlr, shlr, shlr, sr, shlr, shlr}
    {shlr, shlr, shlr, shlr, shlr, shlr, shlr, sr, shlr, shlr}
  };
  };
 
 
#undef kc
#undef kc
#undef ss
#undef ss
#undef sn
#undef sn
#undef sgl
#undef sgl
#undef slr
#undef slr
#undef clr
#undef clr
#undef clrs
#undef clrs
#undef err
#undef err
#undef sr
#undef sr
#undef ts
#undef ts
#undef shl
#undef shl
#undef shlr
#undef shlr
  enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
  enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
  struct bpstat_what retval;
  struct bpstat_what retval;
 
 
  retval.call_dummy = 0;
  retval.call_dummy = 0;
  for (; bs != NULL; bs = bs->next)
  for (; bs != NULL; bs = bs->next)
    {
    {
      enum class bs_class = no_effect;
      enum class bs_class = no_effect;
      if (bs->breakpoint_at == NULL)
      if (bs->breakpoint_at == NULL)
        /* I suspect this can happen if it was a momentary breakpoint
        /* I suspect this can happen if it was a momentary breakpoint
           which has since been deleted.  */
           which has since been deleted.  */
        continue;
        continue;
      switch (bs->breakpoint_at->owner->type)
      switch (bs->breakpoint_at->owner->type)
        {
        {
        case bp_none:
        case bp_none:
          continue;
          continue;
 
 
        case bp_breakpoint:
        case bp_breakpoint:
        case bp_hardware_breakpoint:
        case bp_hardware_breakpoint:
        case bp_until:
        case bp_until:
        case bp_finish:
        case bp_finish:
          if (bs->stop)
          if (bs->stop)
            {
            {
              if (bs->print)
              if (bs->print)
                bs_class = bp_noisy;
                bs_class = bp_noisy;
              else
              else
                bs_class = bp_silent;
                bs_class = bp_silent;
            }
            }
          else
          else
            bs_class = bp_nostop;
            bs_class = bp_nostop;
          break;
          break;
        case bp_watchpoint:
        case bp_watchpoint:
        case bp_hardware_watchpoint:
        case bp_hardware_watchpoint:
        case bp_read_watchpoint:
        case bp_read_watchpoint:
        case bp_access_watchpoint:
        case bp_access_watchpoint:
          if (bs->stop)
          if (bs->stop)
            {
            {
              if (bs->print)
              if (bs->print)
                bs_class = wp_noisy;
                bs_class = wp_noisy;
              else
              else
                bs_class = wp_silent;
                bs_class = wp_silent;
            }
            }
          else
          else
            /* There was a watchpoint, but we're not stopping.
            /* There was a watchpoint, but we're not stopping.
               This requires no further action.  */
               This requires no further action.  */
            bs_class = no_effect;
            bs_class = no_effect;
          break;
          break;
        case bp_longjmp:
        case bp_longjmp:
          bs_class = long_jump;
          bs_class = long_jump;
          break;
          break;
        case bp_longjmp_resume:
        case bp_longjmp_resume:
          bs_class = long_resume;
          bs_class = long_resume;
          break;
          break;
        case bp_step_resume:
        case bp_step_resume:
          if (bs->stop)
          if (bs->stop)
            {
            {
              bs_class = step_resume;
              bs_class = step_resume;
            }
            }
          else
          else
            /* It is for the wrong frame.  */
            /* It is for the wrong frame.  */
            bs_class = bp_nostop;
            bs_class = bp_nostop;
          break;
          break;
        case bp_watchpoint_scope:
        case bp_watchpoint_scope:
          bs_class = bp_nostop;
          bs_class = bp_nostop;
          break;
          break;
        case bp_shlib_event:
        case bp_shlib_event:
          bs_class = shlib_event;
          bs_class = shlib_event;
          break;
          break;
        case bp_thread_event:
        case bp_thread_event:
        case bp_overlay_event:
        case bp_overlay_event:
          bs_class = bp_nostop;
          bs_class = bp_nostop;
          break;
          break;
        case bp_catch_load:
        case bp_catch_load:
        case bp_catch_unload:
        case bp_catch_unload:
          /* Only if this catchpoint triggered should we cause the
          /* Only if this catchpoint triggered should we cause the
             step-out-of-dld behaviour.  Otherwise, we ignore this
             step-out-of-dld behaviour.  Otherwise, we ignore this
             catchpoint.  */
             catchpoint.  */
          if (bs->stop)
          if (bs->stop)
            bs_class = catch_shlib_event;
            bs_class = catch_shlib_event;
          else
          else
            bs_class = no_effect;
            bs_class = no_effect;
          break;
          break;
        case bp_catch_fork:
        case bp_catch_fork:
        case bp_catch_vfork:
        case bp_catch_vfork:
        case bp_catch_exec:
        case bp_catch_exec:
          if (bs->stop)
          if (bs->stop)
            {
            {
              if (bs->print)
              if (bs->print)
                bs_class = bp_noisy;
                bs_class = bp_noisy;
              else
              else
                bs_class = bp_silent;
                bs_class = bp_silent;
            }
            }
          else
          else
            /* There was a catchpoint, but we're not stopping.
            /* There was a catchpoint, but we're not stopping.
               This requires no further action.  */
               This requires no further action.  */
            bs_class = no_effect;
            bs_class = no_effect;
          break;
          break;
        case bp_call_dummy:
        case bp_call_dummy:
          /* Make sure the action is stop (silent or noisy),
          /* Make sure the action is stop (silent or noisy),
             so infrun.c pops the dummy frame.  */
             so infrun.c pops the dummy frame.  */
          bs_class = bp_silent;
          bs_class = bp_silent;
          retval.call_dummy = 1;
          retval.call_dummy = 1;
          break;
          break;
        }
        }
      current_action = table[(int) bs_class][(int) current_action];
      current_action = table[(int) bs_class][(int) current_action];
    }
    }
  retval.main_action = current_action;
  retval.main_action = current_action;
  return retval;
  return retval;
}
}
 
 
/* Nonzero if we should step constantly (e.g. watchpoints on machines
/* Nonzero if we should step constantly (e.g. watchpoints on machines
   without hardware support).  This isn't related to a specific bpstat,
   without hardware support).  This isn't related to a specific bpstat,
   just to things like whether watchpoints are set.  */
   just to things like whether watchpoints are set.  */
 
 
int
int
bpstat_should_step (void)
bpstat_should_step (void)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (breakpoint_enabled (b) && b->type == bp_watchpoint)
    if (breakpoint_enabled (b) && b->type == bp_watchpoint)
      return 1;
      return 1;
  return 0;
  return 0;
}
}
 
 


 
 
/* Given a bpstat that records zero or more triggered eventpoints, this
/* Given a bpstat that records zero or more triggered eventpoints, this
   function returns another bpstat which contains only the catchpoints
   function returns another bpstat which contains only the catchpoints
   on that first list, if any. */
   on that first list, if any. */
void
void
bpstat_get_triggered_catchpoints (bpstat ep_list, bpstat *cp_list)
bpstat_get_triggered_catchpoints (bpstat ep_list, bpstat *cp_list)
{
{
  struct bpstats root_bs[1];
  struct bpstats root_bs[1];
  bpstat bs = root_bs;
  bpstat bs = root_bs;
  struct breakpoint *ep;
  struct breakpoint *ep;
  char *dll_pathname;
  char *dll_pathname;
 
 
  bpstat_clear (cp_list);
  bpstat_clear (cp_list);
  root_bs->next = NULL;
  root_bs->next = NULL;
 
 
  for (; ep_list != NULL; ep_list = ep_list->next)
  for (; ep_list != NULL; ep_list = ep_list->next)
    {
    {
      /* Is this eventpoint a catchpoint?  If not, ignore it. */
      /* Is this eventpoint a catchpoint?  If not, ignore it. */
      ep = ep_list->breakpoint_at->owner;
      ep = ep_list->breakpoint_at->owner;
      if (ep == NULL)
      if (ep == NULL)
        break;
        break;
      if ((ep->type != bp_catch_load) &&
      if ((ep->type != bp_catch_load) &&
          (ep->type != bp_catch_unload))
          (ep->type != bp_catch_unload))
        /* pai: (temp) ADD fork/vfork here!!  */
        /* pai: (temp) ADD fork/vfork here!!  */
        continue;
        continue;
 
 
      /* Yes; add it to the list. */
      /* Yes; add it to the list. */
      bs = bpstat_alloc (ep_list->breakpoint_at, bs);
      bs = bpstat_alloc (ep_list->breakpoint_at, bs);
      *bs = *ep_list;
      *bs = *ep_list;
      bs->next = NULL;
      bs->next = NULL;
      bs = root_bs->next;
      bs = root_bs->next;
 
 
#if defined(SOLIB_ADD)
#if defined(SOLIB_ADD)
      /* Also, for each triggered catchpoint, tag it with the name of
      /* Also, for each triggered catchpoint, tag it with the name of
         the library that caused this trigger.  (We copy the name now,
         the library that caused this trigger.  (We copy the name now,
         because it's only guaranteed to be available NOW, when the
         because it's only guaranteed to be available NOW, when the
         catchpoint triggers.  Clients who may wish to know the name
         catchpoint triggers.  Clients who may wish to know the name
         later must get it from the catchpoint itself.) */
         later must get it from the catchpoint itself.) */
      if (ep->triggered_dll_pathname != NULL)
      if (ep->triggered_dll_pathname != NULL)
        xfree (ep->triggered_dll_pathname);
        xfree (ep->triggered_dll_pathname);
      if (ep->type == bp_catch_load)
      if (ep->type == bp_catch_load)
        dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME (
        dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME (
                         PIDGET (inferior_ptid));
                         PIDGET (inferior_ptid));
      else
      else
        dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME (
        dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME (
                         PIDGET (inferior_ptid));
                         PIDGET (inferior_ptid));
#else
#else
      dll_pathname = NULL;
      dll_pathname = NULL;
#endif
#endif
      if (dll_pathname)
      if (dll_pathname)
        {
        {
          ep->triggered_dll_pathname = (char *)
          ep->triggered_dll_pathname = (char *)
            xmalloc (strlen (dll_pathname) + 1);
            xmalloc (strlen (dll_pathname) + 1);
          strcpy (ep->triggered_dll_pathname, dll_pathname);
          strcpy (ep->triggered_dll_pathname, dll_pathname);
        }
        }
      else
      else
        ep->triggered_dll_pathname = NULL;
        ep->triggered_dll_pathname = NULL;
    }
    }
 
 
  *cp_list = bs;
  *cp_list = bs;
}
}
 
 
static void print_breakpoint_location (struct breakpoint *b,
static void print_breakpoint_location (struct breakpoint *b,
                                       struct bp_location *loc,
                                       struct bp_location *loc,
                                       char *wrap_indent,
                                       char *wrap_indent,
                                       struct ui_stream *stb)
                                       struct ui_stream *stb)
{
{
  if (b->source_file)
  if (b->source_file)
    {
    {
      struct symbol *sym
      struct symbol *sym
        = find_pc_sect_function (loc->address, loc->section);
        = find_pc_sect_function (loc->address, loc->section);
      if (sym)
      if (sym)
        {
        {
          ui_out_text (uiout, "in ");
          ui_out_text (uiout, "in ");
          ui_out_field_string (uiout, "func",
          ui_out_field_string (uiout, "func",
                               SYMBOL_PRINT_NAME (sym));
                               SYMBOL_PRINT_NAME (sym));
          ui_out_wrap_hint (uiout, wrap_indent);
          ui_out_wrap_hint (uiout, wrap_indent);
          ui_out_text (uiout, " at ");
          ui_out_text (uiout, " at ");
        }
        }
      ui_out_field_string (uiout, "file", b->source_file);
      ui_out_field_string (uiout, "file", b->source_file);
      ui_out_text (uiout, ":");
      ui_out_text (uiout, ":");
 
 
      if (ui_out_is_mi_like_p (uiout))
      if (ui_out_is_mi_like_p (uiout))
        {
        {
          struct symtab_and_line sal = find_pc_line (loc->address, 0);
          struct symtab_and_line sal = find_pc_line (loc->address, 0);
          char *fullname = symtab_to_fullname (sal.symtab);
          char *fullname = symtab_to_fullname (sal.symtab);
 
 
          if (fullname)
          if (fullname)
            ui_out_field_string (uiout, "fullname", fullname);
            ui_out_field_string (uiout, "fullname", fullname);
        }
        }
 
 
      ui_out_field_int (uiout, "line", b->line_number);
      ui_out_field_int (uiout, "line", b->line_number);
    }
    }
  else if (!b->loc)
  else if (!b->loc)
    {
    {
      ui_out_field_string (uiout, "pending", b->addr_string);
      ui_out_field_string (uiout, "pending", b->addr_string);
    }
    }
  else
  else
    {
    {
      print_address_symbolic (loc->address, stb->stream, demangle, "");
      print_address_symbolic (loc->address, stb->stream, demangle, "");
      ui_out_field_stream (uiout, "at", stb);
      ui_out_field_stream (uiout, "at", stb);
    }
    }
}
}
 
 
/* Print B to gdb_stdout. */
/* Print B to gdb_stdout. */
static void
static void
print_one_breakpoint_location (struct breakpoint *b,
print_one_breakpoint_location (struct breakpoint *b,
                               struct bp_location *loc,
                               struct bp_location *loc,
                               int loc_number,
                               int loc_number,
                               CORE_ADDR *last_addr)
                               CORE_ADDR *last_addr)
{
{
  struct command_line *l;
  struct command_line *l;
  struct symbol *sym;
  struct symbol *sym;
  struct ep_type_description
  struct ep_type_description
    {
    {
      enum bptype type;
      enum bptype type;
      char *description;
      char *description;
    };
    };
  static struct ep_type_description bptypes[] =
  static struct ep_type_description bptypes[] =
  {
  {
    {bp_none, "?deleted?"},
    {bp_none, "?deleted?"},
    {bp_breakpoint, "breakpoint"},
    {bp_breakpoint, "breakpoint"},
    {bp_hardware_breakpoint, "hw breakpoint"},
    {bp_hardware_breakpoint, "hw breakpoint"},
    {bp_until, "until"},
    {bp_until, "until"},
    {bp_finish, "finish"},
    {bp_finish, "finish"},
    {bp_watchpoint, "watchpoint"},
    {bp_watchpoint, "watchpoint"},
    {bp_hardware_watchpoint, "hw watchpoint"},
    {bp_hardware_watchpoint, "hw watchpoint"},
    {bp_read_watchpoint, "read watchpoint"},
    {bp_read_watchpoint, "read watchpoint"},
    {bp_access_watchpoint, "acc watchpoint"},
    {bp_access_watchpoint, "acc watchpoint"},
    {bp_longjmp, "longjmp"},
    {bp_longjmp, "longjmp"},
    {bp_longjmp_resume, "longjmp resume"},
    {bp_longjmp_resume, "longjmp resume"},
    {bp_step_resume, "step resume"},
    {bp_step_resume, "step resume"},
    {bp_watchpoint_scope, "watchpoint scope"},
    {bp_watchpoint_scope, "watchpoint scope"},
    {bp_call_dummy, "call dummy"},
    {bp_call_dummy, "call dummy"},
    {bp_shlib_event, "shlib events"},
    {bp_shlib_event, "shlib events"},
    {bp_thread_event, "thread events"},
    {bp_thread_event, "thread events"},
    {bp_overlay_event, "overlay events"},
    {bp_overlay_event, "overlay events"},
    {bp_catch_load, "catch load"},
    {bp_catch_load, "catch load"},
    {bp_catch_unload, "catch unload"},
    {bp_catch_unload, "catch unload"},
    {bp_catch_fork, "catch fork"},
    {bp_catch_fork, "catch fork"},
    {bp_catch_vfork, "catch vfork"},
    {bp_catch_vfork, "catch vfork"},
    {bp_catch_exec, "catch exec"}
    {bp_catch_exec, "catch exec"}
  };
  };
 
 
  static char *bpdisps[] =
  static char *bpdisps[] =
  {"del", "dstp", "dis", "keep"};
  {"del", "dstp", "dis", "keep"};
  static char bpenables[] = "nynny";
  static char bpenables[] = "nynny";
  char wrap_indent[80];
  char wrap_indent[80];
  struct ui_stream *stb = ui_out_stream_new (uiout);
  struct ui_stream *stb = ui_out_stream_new (uiout);
  struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb);
  struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb);
  struct cleanup *bkpt_chain;
  struct cleanup *bkpt_chain;
 
 
  int header_of_multiple = 0;
  int header_of_multiple = 0;
  int part_of_multiple = (loc != NULL);
  int part_of_multiple = (loc != NULL);
 
 
  gdb_assert (!loc || loc_number != 0);
  gdb_assert (!loc || loc_number != 0);
  /* See comment in print_one_breakpoint concerning
  /* See comment in print_one_breakpoint concerning
     treatment of breakpoints with single disabled
     treatment of breakpoints with single disabled
     location.  */
     location.  */
  if (loc == NULL
  if (loc == NULL
      && (b->loc != NULL
      && (b->loc != NULL
          && (b->loc->next != NULL || !b->loc->enabled)))
          && (b->loc->next != NULL || !b->loc->enabled)))
    header_of_multiple = 1;
    header_of_multiple = 1;
  if (loc == NULL)
  if (loc == NULL)
    loc = b->loc;
    loc = b->loc;
 
 
  annotate_record ();
  annotate_record ();
  bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
  bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
 
 
  /* 1 */
  /* 1 */
  annotate_field (0);
  annotate_field (0);
  if (part_of_multiple)
  if (part_of_multiple)
    {
    {
      char *formatted;
      char *formatted;
      formatted = xstrprintf ("%d.%d", b->number, loc_number);
      formatted = xstrprintf ("%d.%d", b->number, loc_number);
      ui_out_field_string (uiout, "number", formatted);
      ui_out_field_string (uiout, "number", formatted);
      xfree (formatted);
      xfree (formatted);
    }
    }
  else
  else
    {
    {
      ui_out_field_int (uiout, "number", b->number);
      ui_out_field_int (uiout, "number", b->number);
    }
    }
 
 
  /* 2 */
  /* 2 */
  annotate_field (1);
  annotate_field (1);
  if (part_of_multiple)
  if (part_of_multiple)
    ui_out_field_skip (uiout, "type");
    ui_out_field_skip (uiout, "type");
  else
  else
    {
    {
      if (((int) b->type >= (sizeof (bptypes) / sizeof (bptypes[0])))
      if (((int) b->type >= (sizeof (bptypes) / sizeof (bptypes[0])))
          || ((int) b->type != bptypes[(int) b->type].type))
          || ((int) b->type != bptypes[(int) b->type].type))
        internal_error (__FILE__, __LINE__,
        internal_error (__FILE__, __LINE__,
                        _("bptypes table does not describe type #%d."),
                        _("bptypes table does not describe type #%d."),
                        (int) b->type);
                        (int) b->type);
      ui_out_field_string (uiout, "type", bptypes[(int) b->type].description);
      ui_out_field_string (uiout, "type", bptypes[(int) b->type].description);
    }
    }
 
 
  /* 3 */
  /* 3 */
  annotate_field (2);
  annotate_field (2);
  if (part_of_multiple)
  if (part_of_multiple)
    ui_out_field_skip (uiout, "disp");
    ui_out_field_skip (uiout, "disp");
  else
  else
    ui_out_field_string (uiout, "disp", bpdisps[(int) b->disposition]);
    ui_out_field_string (uiout, "disp", bpdisps[(int) b->disposition]);
 
 
 
 
  /* 4 */
  /* 4 */
  annotate_field (3);
  annotate_field (3);
  if (part_of_multiple)
  if (part_of_multiple)
    ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n");
    ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n");
  else
  else
      ui_out_field_fmt (uiout, "enabled", "%c",
      ui_out_field_fmt (uiout, "enabled", "%c",
                        bpenables[(int) b->enable_state]);
                        bpenables[(int) b->enable_state]);
  ui_out_spaces (uiout, 2);
  ui_out_spaces (uiout, 2);
 
 
 
 
  /* 5 and 6 */
  /* 5 and 6 */
  strcpy (wrap_indent, "                           ");
  strcpy (wrap_indent, "                           ");
  if (addressprint)
  if (addressprint)
    {
    {
      if (gdbarch_addr_bit (current_gdbarch) <= 32)
      if (gdbarch_addr_bit (current_gdbarch) <= 32)
        strcat (wrap_indent, "           ");
        strcat (wrap_indent, "           ");
      else
      else
        strcat (wrap_indent, "                   ");
        strcat (wrap_indent, "                   ");
    }
    }
 
 
  if (b->ops != NULL && b->ops->print_one != NULL)
  if (b->ops != NULL && b->ops->print_one != NULL)
    {
    {
      /* Although the print_one can possibly print
      /* Although the print_one can possibly print
         all locations,  calling it here is not likely
         all locations,  calling it here is not likely
         to get any nice result.  So, make sure there's
         to get any nice result.  So, make sure there's
         just one location.  */
         just one location.  */
      gdb_assert (b->loc == NULL || b->loc->next == NULL);
      gdb_assert (b->loc == NULL || b->loc->next == NULL);
      b->ops->print_one (b, last_addr);
      b->ops->print_one (b, last_addr);
    }
    }
  else
  else
    switch (b->type)
    switch (b->type)
      {
      {
      case bp_none:
      case bp_none:
        internal_error (__FILE__, __LINE__,
        internal_error (__FILE__, __LINE__,
                        _("print_one_breakpoint: bp_none encountered\n"));
                        _("print_one_breakpoint: bp_none encountered\n"));
        break;
        break;
 
 
      case bp_watchpoint:
      case bp_watchpoint:
      case bp_hardware_watchpoint:
      case bp_hardware_watchpoint:
      case bp_read_watchpoint:
      case bp_read_watchpoint:
      case bp_access_watchpoint:
      case bp_access_watchpoint:
        /* Field 4, the address, is omitted (which makes the columns
        /* Field 4, the address, is omitted (which makes the columns
           not line up too nicely with the headers, but the effect
           not line up too nicely with the headers, but the effect
           is relatively readable).  */
           is relatively readable).  */
        if (addressprint)
        if (addressprint)
          ui_out_field_skip (uiout, "addr");
          ui_out_field_skip (uiout, "addr");
        annotate_field (5);
        annotate_field (5);
        print_expression (b->exp, stb->stream);
        print_expression (b->exp, stb->stream);
        ui_out_field_stream (uiout, "what", stb);
        ui_out_field_stream (uiout, "what", stb);
        break;
        break;
 
 
      case bp_catch_load:
      case bp_catch_load:
      case bp_catch_unload:
      case bp_catch_unload:
        /* Field 4, the address, is omitted (which makes the columns
        /* Field 4, the address, is omitted (which makes the columns
           not line up too nicely with the headers, but the effect
           not line up too nicely with the headers, but the effect
           is relatively readable).  */
           is relatively readable).  */
        if (addressprint)
        if (addressprint)
          ui_out_field_skip (uiout, "addr");
          ui_out_field_skip (uiout, "addr");
        annotate_field (5);
        annotate_field (5);
        if (b->dll_pathname == NULL)
        if (b->dll_pathname == NULL)
          {
          {
            ui_out_field_string (uiout, "what", "<any library>");
            ui_out_field_string (uiout, "what", "<any library>");
            ui_out_spaces (uiout, 1);
            ui_out_spaces (uiout, 1);
          }
          }
        else
        else
          {
          {
            ui_out_text (uiout, "library \"");
            ui_out_text (uiout, "library \"");
            ui_out_field_string (uiout, "what", b->dll_pathname);
            ui_out_field_string (uiout, "what", b->dll_pathname);
            ui_out_text (uiout, "\" ");
            ui_out_text (uiout, "\" ");
          }
          }
        break;
        break;
 
 
      case bp_catch_fork:
      case bp_catch_fork:
      case bp_catch_vfork:
      case bp_catch_vfork:
        /* Field 4, the address, is omitted (which makes the columns
        /* Field 4, the address, is omitted (which makes the columns
           not line up too nicely with the headers, but the effect
           not line up too nicely with the headers, but the effect
           is relatively readable).  */
           is relatively readable).  */
        if (addressprint)
        if (addressprint)
          ui_out_field_skip (uiout, "addr");
          ui_out_field_skip (uiout, "addr");
        annotate_field (5);
        annotate_field (5);
        if (b->forked_inferior_pid != 0)
        if (b->forked_inferior_pid != 0)
          {
          {
            ui_out_text (uiout, "process ");
            ui_out_text (uiout, "process ");
            ui_out_field_int (uiout, "what", b->forked_inferior_pid);
            ui_out_field_int (uiout, "what", b->forked_inferior_pid);
            ui_out_spaces (uiout, 1);
            ui_out_spaces (uiout, 1);
          }
          }
        break;
        break;
 
 
      case bp_catch_exec:
      case bp_catch_exec:
        /* Field 4, the address, is omitted (which makes the columns
        /* Field 4, the address, is omitted (which makes the columns
           not line up too nicely with the headers, but the effect
           not line up too nicely with the headers, but the effect
           is relatively readable).  */
           is relatively readable).  */
        if (addressprint)
        if (addressprint)
          ui_out_field_skip (uiout, "addr");
          ui_out_field_skip (uiout, "addr");
        annotate_field (5);
        annotate_field (5);
        if (b->exec_pathname != NULL)
        if (b->exec_pathname != NULL)
          {
          {
            ui_out_text (uiout, "program \"");
            ui_out_text (uiout, "program \"");
            ui_out_field_string (uiout, "what", b->exec_pathname);
            ui_out_field_string (uiout, "what", b->exec_pathname);
            ui_out_text (uiout, "\" ");
            ui_out_text (uiout, "\" ");
          }
          }
        break;
        break;
 
 
      case bp_breakpoint:
      case bp_breakpoint:
      case bp_hardware_breakpoint:
      case bp_hardware_breakpoint:
      case bp_until:
      case bp_until:
      case bp_finish:
      case bp_finish:
      case bp_longjmp:
      case bp_longjmp:
      case bp_longjmp_resume:
      case bp_longjmp_resume:
      case bp_step_resume:
      case bp_step_resume:
      case bp_watchpoint_scope:
      case bp_watchpoint_scope:
      case bp_call_dummy:
      case bp_call_dummy:
      case bp_shlib_event:
      case bp_shlib_event:
      case bp_thread_event:
      case bp_thread_event:
      case bp_overlay_event:
      case bp_overlay_event:
        if (addressprint)
        if (addressprint)
          {
          {
            annotate_field (4);
            annotate_field (4);
            if (header_of_multiple)
            if (header_of_multiple)
              ui_out_field_string (uiout, "addr", "<MULTIPLE>");
              ui_out_field_string (uiout, "addr", "<MULTIPLE>");
            if (b->loc == NULL || loc->shlib_disabled)
            if (b->loc == NULL || loc->shlib_disabled)
              ui_out_field_string (uiout, "addr", "<PENDING>");
              ui_out_field_string (uiout, "addr", "<PENDING>");
            else
            else
              ui_out_field_core_addr (uiout, "addr", loc->address);
              ui_out_field_core_addr (uiout, "addr", loc->address);
          }
          }
        annotate_field (5);
        annotate_field (5);
        if (!header_of_multiple)
        if (!header_of_multiple)
          print_breakpoint_location (b, loc, wrap_indent, stb);
          print_breakpoint_location (b, loc, wrap_indent, stb);
        if (b->loc)
        if (b->loc)
          *last_addr = b->loc->address;
          *last_addr = b->loc->address;
        break;
        break;
      }
      }
 
 
  if (!part_of_multiple && b->thread != -1)
  if (!part_of_multiple && b->thread != -1)
    {
    {
      /* FIXME: This seems to be redundant and lost here; see the
      /* FIXME: This seems to be redundant and lost here; see the
         "stop only in" line a little further down. */
         "stop only in" line a little further down. */
      ui_out_text (uiout, " thread ");
      ui_out_text (uiout, " thread ");
      ui_out_field_int (uiout, "thread", b->thread);
      ui_out_field_int (uiout, "thread", b->thread);
    }
    }
 
 
  ui_out_text (uiout, "\n");
  ui_out_text (uiout, "\n");
 
 
  if (part_of_multiple && frame_id_p (b->frame_id))
  if (part_of_multiple && frame_id_p (b->frame_id))
    {
    {
      annotate_field (6);
      annotate_field (6);
      ui_out_text (uiout, "\tstop only in stack frame at ");
      ui_out_text (uiout, "\tstop only in stack frame at ");
      /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside
      /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside
         the frame ID.  */
         the frame ID.  */
      ui_out_field_core_addr (uiout, "frame", b->frame_id.stack_addr);
      ui_out_field_core_addr (uiout, "frame", b->frame_id.stack_addr);
      ui_out_text (uiout, "\n");
      ui_out_text (uiout, "\n");
    }
    }
 
 
  if (!part_of_multiple && b->cond_string && !ada_exception_catchpoint_p (b))
  if (!part_of_multiple && b->cond_string && !ada_exception_catchpoint_p (b))
    {
    {
      /* We do not print the condition for Ada exception catchpoints
      /* We do not print the condition for Ada exception catchpoints
         because the condition is an internal implementation detail
         because the condition is an internal implementation detail
         that we do not want to expose to the user.  */
         that we do not want to expose to the user.  */
      annotate_field (7);
      annotate_field (7);
      ui_out_text (uiout, "\tstop only if ");
      ui_out_text (uiout, "\tstop only if ");
      ui_out_field_string (uiout, "cond", b->cond_string);
      ui_out_field_string (uiout, "cond", b->cond_string);
      ui_out_text (uiout, "\n");
      ui_out_text (uiout, "\n");
    }
    }
 
 
  if (!part_of_multiple && b->thread != -1)
  if (!part_of_multiple && b->thread != -1)
    {
    {
      /* FIXME should make an annotation for this */
      /* FIXME should make an annotation for this */
      ui_out_text (uiout, "\tstop only in thread ");
      ui_out_text (uiout, "\tstop only in thread ");
      ui_out_field_int (uiout, "thread", b->thread);
      ui_out_field_int (uiout, "thread", b->thread);
      ui_out_text (uiout, "\n");
      ui_out_text (uiout, "\n");
    }
    }
 
 
  if (!part_of_multiple && show_breakpoint_hit_counts && b->hit_count)
  if (!part_of_multiple && show_breakpoint_hit_counts && b->hit_count)
    {
    {
      /* FIXME should make an annotation for this */
      /* FIXME should make an annotation for this */
      if (ep_is_catchpoint (b))
      if (ep_is_catchpoint (b))
        ui_out_text (uiout, "\tcatchpoint");
        ui_out_text (uiout, "\tcatchpoint");
      else
      else
        ui_out_text (uiout, "\tbreakpoint");
        ui_out_text (uiout, "\tbreakpoint");
      ui_out_text (uiout, " already hit ");
      ui_out_text (uiout, " already hit ");
      ui_out_field_int (uiout, "times", b->hit_count);
      ui_out_field_int (uiout, "times", b->hit_count);
      if (b->hit_count == 1)
      if (b->hit_count == 1)
        ui_out_text (uiout, " time\n");
        ui_out_text (uiout, " time\n");
      else
      else
        ui_out_text (uiout, " times\n");
        ui_out_text (uiout, " times\n");
    }
    }
 
 
  /* Output the count also if it is zero, but only if this is
  /* Output the count also if it is zero, but only if this is
     mi. FIXME: Should have a better test for this. */
     mi. FIXME: Should have a better test for this. */
  if (ui_out_is_mi_like_p (uiout))
  if (ui_out_is_mi_like_p (uiout))
    if (!part_of_multiple && show_breakpoint_hit_counts && b->hit_count == 0)
    if (!part_of_multiple && show_breakpoint_hit_counts && b->hit_count == 0)
      ui_out_field_int (uiout, "times", b->hit_count);
      ui_out_field_int (uiout, "times", b->hit_count);
 
 
  if (!part_of_multiple && b->ignore_count)
  if (!part_of_multiple && b->ignore_count)
    {
    {
      annotate_field (8);
      annotate_field (8);
      ui_out_text (uiout, "\tignore next ");
      ui_out_text (uiout, "\tignore next ");
      ui_out_field_int (uiout, "ignore", b->ignore_count);
      ui_out_field_int (uiout, "ignore", b->ignore_count);
      ui_out_text (uiout, " hits\n");
      ui_out_text (uiout, " hits\n");
    }
    }
 
 
  if (!part_of_multiple && (l = b->commands))
  if (!part_of_multiple && (l = b->commands))
    {
    {
      struct cleanup *script_chain;
      struct cleanup *script_chain;
 
 
      annotate_field (9);
      annotate_field (9);
      script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
      script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
      print_command_lines (uiout, l, 4);
      print_command_lines (uiout, l, 4);
      do_cleanups (script_chain);
      do_cleanups (script_chain);
    }
    }
  do_cleanups (bkpt_chain);
  do_cleanups (bkpt_chain);
  do_cleanups (old_chain);
  do_cleanups (old_chain);
}
}
 
 
static void
static void
print_one_breakpoint (struct breakpoint *b,
print_one_breakpoint (struct breakpoint *b,
                      CORE_ADDR *last_addr)
                      CORE_ADDR *last_addr)
{
{
  print_one_breakpoint_location (b, NULL, 0, last_addr);
  print_one_breakpoint_location (b, NULL, 0, last_addr);
 
 
  /* If this breakpoint has custom print function,
  /* If this breakpoint has custom print function,
     it's already printed.  Otherwise, print individual
     it's already printed.  Otherwise, print individual
     locations, if any.  */
     locations, if any.  */
  if (b->ops == NULL || b->ops->print_one == NULL)
  if (b->ops == NULL || b->ops->print_one == NULL)
    {
    {
      /* If breakpoint has a single location that is
      /* If breakpoint has a single location that is
         disabled, we print it as if it had
         disabled, we print it as if it had
         several locations, since otherwise it's hard to
         several locations, since otherwise it's hard to
         represent "breakpoint enabled, location disabled"
         represent "breakpoint enabled, location disabled"
         situation.
         situation.
         Note that while hardware watchpoints have
         Note that while hardware watchpoints have
         several locations internally, that's no a property
         several locations internally, that's no a property
         exposed to user.  */
         exposed to user.  */
      if (b->loc
      if (b->loc
          && !is_hardware_watchpoint (b)
          && !is_hardware_watchpoint (b)
          && (b->loc->next || !b->loc->enabled)
          && (b->loc->next || !b->loc->enabled)
          && !ui_out_is_mi_like_p (uiout))
          && !ui_out_is_mi_like_p (uiout))
        {
        {
          struct bp_location *loc;
          struct bp_location *loc;
          int n = 1;
          int n = 1;
          for (loc = b->loc; loc; loc = loc->next, ++n)
          for (loc = b->loc; loc; loc = loc->next, ++n)
            print_one_breakpoint_location (b, loc, n, last_addr);
            print_one_breakpoint_location (b, loc, n, last_addr);
        }
        }
    }
    }
}
}
 
 
 
 
struct captured_breakpoint_query_args
struct captured_breakpoint_query_args
  {
  {
    int bnum;
    int bnum;
  };
  };
 
 
static int
static int
do_captured_breakpoint_query (struct ui_out *uiout, void *data)
do_captured_breakpoint_query (struct ui_out *uiout, void *data)
{
{
  struct captured_breakpoint_query_args *args = data;
  struct captured_breakpoint_query_args *args = data;
  struct breakpoint *b;
  struct breakpoint *b;
  CORE_ADDR dummy_addr = 0;
  CORE_ADDR dummy_addr = 0;
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    {
    {
      if (args->bnum == b->number)
      if (args->bnum == b->number)
        {
        {
          print_one_breakpoint (b, &dummy_addr);
          print_one_breakpoint (b, &dummy_addr);
          return GDB_RC_OK;
          return GDB_RC_OK;
        }
        }
    }
    }
  return GDB_RC_NONE;
  return GDB_RC_NONE;
}
}
 
 
enum gdb_rc
enum gdb_rc
gdb_breakpoint_query (struct ui_out *uiout, int bnum, char **error_message)
gdb_breakpoint_query (struct ui_out *uiout, int bnum, char **error_message)
{
{
  struct captured_breakpoint_query_args args;
  struct captured_breakpoint_query_args args;
  args.bnum = bnum;
  args.bnum = bnum;
  /* For the moment we don't trust print_one_breakpoint() to not throw
  /* For the moment we don't trust print_one_breakpoint() to not throw
     an error. */
     an error. */
  if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
  if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
                                 error_message, RETURN_MASK_ALL) < 0)
                                 error_message, RETURN_MASK_ALL) < 0)
    return GDB_RC_FAIL;
    return GDB_RC_FAIL;
  else
  else
    return GDB_RC_OK;
    return GDB_RC_OK;
}
}
 
 
/* Return non-zero if B is user settable (breakpoints, watchpoints,
/* Return non-zero if B is user settable (breakpoints, watchpoints,
   catchpoints, et.al.). */
   catchpoints, et.al.). */
 
 
static int
static int
user_settable_breakpoint (const struct breakpoint *b)
user_settable_breakpoint (const struct breakpoint *b)
{
{
  return (b->type == bp_breakpoint
  return (b->type == bp_breakpoint
          || b->type == bp_catch_load
          || b->type == bp_catch_load
          || b->type == bp_catch_unload
          || b->type == bp_catch_unload
          || b->type == bp_catch_fork
          || b->type == bp_catch_fork
          || b->type == bp_catch_vfork
          || b->type == bp_catch_vfork
          || b->type == bp_catch_exec
          || b->type == bp_catch_exec
          || b->type == bp_hardware_breakpoint
          || b->type == bp_hardware_breakpoint
          || b->type == bp_watchpoint
          || b->type == bp_watchpoint
          || b->type == bp_read_watchpoint
          || b->type == bp_read_watchpoint
          || b->type == bp_access_watchpoint
          || b->type == bp_access_watchpoint
          || b->type == bp_hardware_watchpoint);
          || b->type == bp_hardware_watchpoint);
}
}
 
 
/* Print information on user settable breakpoint (watchpoint, etc)
/* Print information on user settable breakpoint (watchpoint, etc)
   number BNUM.  If BNUM is -1 print all user settable breakpoints.
   number BNUM.  If BNUM is -1 print all user settable breakpoints.
   If ALLFLAG is non-zero, include non- user settable breakpoints. */
   If ALLFLAG is non-zero, include non- user settable breakpoints. */
 
 
static void
static void
breakpoint_1 (int bnum, int allflag)
breakpoint_1 (int bnum, int allflag)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  CORE_ADDR last_addr = (CORE_ADDR) -1;
  CORE_ADDR last_addr = (CORE_ADDR) -1;
  int nr_printable_breakpoints;
  int nr_printable_breakpoints;
  struct cleanup *bkpttbl_chain;
  struct cleanup *bkpttbl_chain;
 
 
  /* Compute the number of rows in the table. */
  /* Compute the number of rows in the table. */
  nr_printable_breakpoints = 0;
  nr_printable_breakpoints = 0;
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (bnum == -1
    if (bnum == -1
        || bnum == b->number)
        || bnum == b->number)
      {
      {
        if (allflag || user_settable_breakpoint (b))
        if (allflag || user_settable_breakpoint (b))
          nr_printable_breakpoints++;
          nr_printable_breakpoints++;
      }
      }
 
 
  if (addressprint)
  if (addressprint)
    bkpttbl_chain
    bkpttbl_chain
      = make_cleanup_ui_out_table_begin_end (uiout, 6, nr_printable_breakpoints,
      = make_cleanup_ui_out_table_begin_end (uiout, 6, nr_printable_breakpoints,
                                             "BreakpointTable");
                                             "BreakpointTable");
  else
  else
    bkpttbl_chain
    bkpttbl_chain
      = make_cleanup_ui_out_table_begin_end (uiout, 5, nr_printable_breakpoints,
      = make_cleanup_ui_out_table_begin_end (uiout, 5, nr_printable_breakpoints,
                                             "BreakpointTable");
                                             "BreakpointTable");
 
 
  if (nr_printable_breakpoints > 0)
  if (nr_printable_breakpoints > 0)
    annotate_breakpoints_headers ();
    annotate_breakpoints_headers ();
  if (nr_printable_breakpoints > 0)
  if (nr_printable_breakpoints > 0)
    annotate_field (0);
    annotate_field (0);
  ui_out_table_header (uiout, 7, ui_left, "number", "Num");             /* 1 */
  ui_out_table_header (uiout, 7, ui_left, "number", "Num");             /* 1 */
  if (nr_printable_breakpoints > 0)
  if (nr_printable_breakpoints > 0)
    annotate_field (1);
    annotate_field (1);
  ui_out_table_header (uiout, 14, ui_left, "type", "Type");             /* 2 */
  ui_out_table_header (uiout, 14, ui_left, "type", "Type");             /* 2 */
  if (nr_printable_breakpoints > 0)
  if (nr_printable_breakpoints > 0)
    annotate_field (2);
    annotate_field (2);
  ui_out_table_header (uiout, 4, ui_left, "disp", "Disp");              /* 3 */
  ui_out_table_header (uiout, 4, ui_left, "disp", "Disp");              /* 3 */
  if (nr_printable_breakpoints > 0)
  if (nr_printable_breakpoints > 0)
    annotate_field (3);
    annotate_field (3);
  ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb");    /* 4 */
  ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb");    /* 4 */
  if (addressprint)
  if (addressprint)
        {
        {
          if (nr_printable_breakpoints > 0)
          if (nr_printable_breakpoints > 0)
            annotate_field (4);
            annotate_field (4);
          if (gdbarch_addr_bit (current_gdbarch) <= 32)
          if (gdbarch_addr_bit (current_gdbarch) <= 32)
            ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
            ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
          else
          else
            ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
            ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
        }
        }
  if (nr_printable_breakpoints > 0)
  if (nr_printable_breakpoints > 0)
    annotate_field (5);
    annotate_field (5);
  ui_out_table_header (uiout, 40, ui_noalign, "what", "What");  /* 6 */
  ui_out_table_header (uiout, 40, ui_noalign, "what", "What");  /* 6 */
  ui_out_table_body (uiout);
  ui_out_table_body (uiout);
  if (nr_printable_breakpoints > 0)
  if (nr_printable_breakpoints > 0)
    annotate_breakpoints_table ();
    annotate_breakpoints_table ();
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (bnum == -1
    if (bnum == -1
        || bnum == b->number)
        || bnum == b->number)
      {
      {
        /* We only print out user settable breakpoints unless the
        /* We only print out user settable breakpoints unless the
           allflag is set. */
           allflag is set. */
        if (allflag || user_settable_breakpoint (b))
        if (allflag || user_settable_breakpoint (b))
          print_one_breakpoint (b, &last_addr);
          print_one_breakpoint (b, &last_addr);
      }
      }
 
 
  do_cleanups (bkpttbl_chain);
  do_cleanups (bkpttbl_chain);
 
 
  if (nr_printable_breakpoints == 0)
  if (nr_printable_breakpoints == 0)
    {
    {
      if (bnum == -1)
      if (bnum == -1)
        ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
        ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
      else
      else
        ui_out_message (uiout, 0, "No breakpoint or watchpoint number %d.\n",
        ui_out_message (uiout, 0, "No breakpoint or watchpoint number %d.\n",
                        bnum);
                        bnum);
    }
    }
  else
  else
    {
    {
      /* Compare against (CORE_ADDR)-1 in case some compiler decides
      /* Compare against (CORE_ADDR)-1 in case some compiler decides
         that a comparison of an unsigned with -1 is always false.  */
         that a comparison of an unsigned with -1 is always false.  */
      if (last_addr != (CORE_ADDR) -1 && !server_command)
      if (last_addr != (CORE_ADDR) -1 && !server_command)
        set_next_address (last_addr);
        set_next_address (last_addr);
    }
    }
 
 
  /* FIXME? Should this be moved up so that it is only called when
  /* FIXME? Should this be moved up so that it is only called when
     there have been breakpoints? */
     there have been breakpoints? */
  annotate_breakpoints_table_end ();
  annotate_breakpoints_table_end ();
}
}
 
 
static void
static void
breakpoints_info (char *bnum_exp, int from_tty)
breakpoints_info (char *bnum_exp, int from_tty)
{
{
  int bnum = -1;
  int bnum = -1;
 
 
  if (bnum_exp)
  if (bnum_exp)
    bnum = parse_and_eval_long (bnum_exp);
    bnum = parse_and_eval_long (bnum_exp);
 
 
  breakpoint_1 (bnum, 0);
  breakpoint_1 (bnum, 0);
}
}
 
 
static void
static void
maintenance_info_breakpoints (char *bnum_exp, int from_tty)
maintenance_info_breakpoints (char *bnum_exp, int from_tty)
{
{
  int bnum = -1;
  int bnum = -1;
 
 
  if (bnum_exp)
  if (bnum_exp)
    bnum = parse_and_eval_long (bnum_exp);
    bnum = parse_and_eval_long (bnum_exp);
 
 
  breakpoint_1 (bnum, 1);
  breakpoint_1 (bnum, 1);
}
}
 
 
static int
static int
breakpoint_has_pc (struct breakpoint *b, CORE_ADDR pc, asection *section)
breakpoint_has_pc (struct breakpoint *b, CORE_ADDR pc, asection *section)
{
{
  struct bp_location *bl = b->loc;
  struct bp_location *bl = b->loc;
  for (; bl; bl = bl->next)
  for (; bl; bl = bl->next)
    {
    {
      if (bl->address == pc
      if (bl->address == pc
          && (!overlay_debugging || bl->section == section))
          && (!overlay_debugging || bl->section == section))
        return 1;
        return 1;
    }
    }
  return 0;
  return 0;
}
}
 
 
/* Print a message describing any breakpoints set at PC.  */
/* Print a message describing any breakpoints set at PC.  */
 
 
static void
static void
describe_other_breakpoints (CORE_ADDR pc, asection *section, int thread)
describe_other_breakpoints (CORE_ADDR pc, asection *section, int thread)
{
{
  int others = 0;
  int others = 0;
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    others += breakpoint_has_pc (b, pc, section);
    others += breakpoint_has_pc (b, pc, section);
  if (others > 0)
  if (others > 0)
    {
    {
      if (others == 1)
      if (others == 1)
        printf_filtered (_("Note: breakpoint "));
        printf_filtered (_("Note: breakpoint "));
      else /* if (others == ???) */
      else /* if (others == ???) */
        printf_filtered (_("Note: breakpoints "));
        printf_filtered (_("Note: breakpoints "));
      ALL_BREAKPOINTS (b)
      ALL_BREAKPOINTS (b)
        if (breakpoint_has_pc (b, pc, section))
        if (breakpoint_has_pc (b, pc, section))
          {
          {
            others--;
            others--;
            printf_filtered ("%d", b->number);
            printf_filtered ("%d", b->number);
            if (b->thread == -1 && thread != -1)
            if (b->thread == -1 && thread != -1)
              printf_filtered (" (all threads)");
              printf_filtered (" (all threads)");
            else if (b->thread != -1)
            else if (b->thread != -1)
              printf_filtered (" (thread %d)", b->thread);
              printf_filtered (" (thread %d)", b->thread);
            printf_filtered ("%s%s ",
            printf_filtered ("%s%s ",
                             ((b->enable_state == bp_disabled ||
                             ((b->enable_state == bp_disabled ||
                               b->enable_state == bp_call_disabled)
                               b->enable_state == bp_call_disabled)
                              ? " (disabled)"
                              ? " (disabled)"
                              : b->enable_state == bp_permanent
                              : b->enable_state == bp_permanent
                              ? " (permanent)"
                              ? " (permanent)"
                              : ""),
                              : ""),
                             (others > 1) ? ","
                             (others > 1) ? ","
                             : ((others == 1) ? " and" : ""));
                             : ((others == 1) ? " and" : ""));
          }
          }
      printf_filtered (_("also set at pc "));
      printf_filtered (_("also set at pc "));
      fputs_filtered (paddress (pc), gdb_stdout);
      fputs_filtered (paddress (pc), gdb_stdout);
      printf_filtered (".\n");
      printf_filtered (".\n");
    }
    }
}
}


/* Set the default place to put a breakpoint
/* Set the default place to put a breakpoint
   for the `break' command with no arguments.  */
   for the `break' command with no arguments.  */
 
 
void
void
set_default_breakpoint (int valid, CORE_ADDR addr, struct symtab *symtab,
set_default_breakpoint (int valid, CORE_ADDR addr, struct symtab *symtab,
                        int line)
                        int line)
{
{
  default_breakpoint_valid = valid;
  default_breakpoint_valid = valid;
  default_breakpoint_address = addr;
  default_breakpoint_address = addr;
  default_breakpoint_symtab = symtab;
  default_breakpoint_symtab = symtab;
  default_breakpoint_line = line;
  default_breakpoint_line = line;
}
}
 
 
/* Return true iff it is meaningful to use the address member of
/* Return true iff it is meaningful to use the address member of
   BPT.  For some breakpoint types, the address member is irrelevant
   BPT.  For some breakpoint types, the address member is irrelevant
   and it makes no sense to attempt to compare it to other addresses
   and it makes no sense to attempt to compare it to other addresses
   (or use it for any other purpose either).
   (or use it for any other purpose either).
 
 
   More specifically, each of the following breakpoint types will always
   More specifically, each of the following breakpoint types will always
   have a zero valued address and we don't want check_duplicates() to mark
   have a zero valued address and we don't want check_duplicates() to mark
   breakpoints of any of these types to be a duplicate of an actual
   breakpoints of any of these types to be a duplicate of an actual
   breakpoint at address zero:
   breakpoint at address zero:
 
 
      bp_watchpoint
      bp_watchpoint
      bp_hardware_watchpoint
      bp_hardware_watchpoint
      bp_read_watchpoint
      bp_read_watchpoint
      bp_access_watchpoint
      bp_access_watchpoint
      bp_catch_exec
      bp_catch_exec
      bp_longjmp_resume
      bp_longjmp_resume
      bp_catch_fork
      bp_catch_fork
      bp_catch_vork */
      bp_catch_vork */
 
 
static int
static int
breakpoint_address_is_meaningful (struct breakpoint *bpt)
breakpoint_address_is_meaningful (struct breakpoint *bpt)
{
{
  enum bptype type = bpt->type;
  enum bptype type = bpt->type;
 
 
  return (type != bp_watchpoint
  return (type != bp_watchpoint
          && type != bp_hardware_watchpoint
          && type != bp_hardware_watchpoint
          && type != bp_read_watchpoint
          && type != bp_read_watchpoint
          && type != bp_access_watchpoint
          && type != bp_access_watchpoint
          && type != bp_catch_exec
          && type != bp_catch_exec
          && type != bp_longjmp_resume
          && type != bp_longjmp_resume
          && type != bp_catch_fork
          && type != bp_catch_fork
          && type != bp_catch_vfork);
          && type != bp_catch_vfork);
}
}
 
 
/* Rescan breakpoints at the same address and section as BPT,
/* Rescan breakpoints at the same address and section as BPT,
   marking the first one as "first" and any others as "duplicates".
   marking the first one as "first" and any others as "duplicates".
   This is so that the bpt instruction is only inserted once.
   This is so that the bpt instruction is only inserted once.
   If we have a permanent breakpoint at the same place as BPT, make
   If we have a permanent breakpoint at the same place as BPT, make
   that one the official one, and the rest as duplicates.  */
   that one the official one, and the rest as duplicates.  */
 
 
static void
static void
check_duplicates_for (CORE_ADDR address, asection *section)
check_duplicates_for (CORE_ADDR address, asection *section)
{
{
  struct bp_location *b;
  struct bp_location *b;
  int count = 0;
  int count = 0;
  struct bp_location *perm_bp = 0;
  struct bp_location *perm_bp = 0;
 
 
  ALL_BP_LOCATIONS (b)
  ALL_BP_LOCATIONS (b)
    if (b->owner->enable_state != bp_disabled
    if (b->owner->enable_state != bp_disabled
        && b->owner->enable_state != bp_call_disabled
        && b->owner->enable_state != bp_call_disabled
        && b->enabled
        && b->enabled
        && !b->shlib_disabled
        && !b->shlib_disabled
        && b->address == address        /* address / overlay match */
        && b->address == address        /* address / overlay match */
        && (!overlay_debugging || b->section == section)
        && (!overlay_debugging || b->section == section)
        && breakpoint_address_is_meaningful (b->owner))
        && breakpoint_address_is_meaningful (b->owner))
    {
    {
      /* Have we found a permanent breakpoint?  */
      /* Have we found a permanent breakpoint?  */
      if (b->owner->enable_state == bp_permanent)
      if (b->owner->enable_state == bp_permanent)
        {
        {
          perm_bp = b;
          perm_bp = b;
          break;
          break;
        }
        }
 
 
      count++;
      count++;
      b->duplicate = count > 1;
      b->duplicate = count > 1;
    }
    }
 
 
  /* If we found a permanent breakpoint at this address, go over the
  /* If we found a permanent breakpoint at this address, go over the
     list again and declare all the other breakpoints there to be the
     list again and declare all the other breakpoints there to be the
     duplicates.  */
     duplicates.  */
  if (perm_bp)
  if (perm_bp)
    {
    {
      perm_bp->duplicate = 0;
      perm_bp->duplicate = 0;
 
 
      /* Permanent breakpoint should always be inserted.  */
      /* Permanent breakpoint should always be inserted.  */
      if (! perm_bp->inserted)
      if (! perm_bp->inserted)
        internal_error (__FILE__, __LINE__,
        internal_error (__FILE__, __LINE__,
                        _("allegedly permanent breakpoint is not "
                        _("allegedly permanent breakpoint is not "
                        "actually inserted"));
                        "actually inserted"));
 
 
      ALL_BP_LOCATIONS (b)
      ALL_BP_LOCATIONS (b)
        if (b != perm_bp)
        if (b != perm_bp)
          {
          {
            if (b->owner->enable_state != bp_disabled
            if (b->owner->enable_state != bp_disabled
                && b->owner->enable_state != bp_call_disabled
                && b->owner->enable_state != bp_call_disabled
                && b->enabled && !b->shlib_disabled
                && b->enabled && !b->shlib_disabled
                && b->address == address        /* address / overlay match */
                && b->address == address        /* address / overlay match */
                && (!overlay_debugging || b->section == section)
                && (!overlay_debugging || b->section == section)
                && breakpoint_address_is_meaningful (b->owner))
                && breakpoint_address_is_meaningful (b->owner))
              {
              {
                if (b->inserted)
                if (b->inserted)
                  internal_error (__FILE__, __LINE__,
                  internal_error (__FILE__, __LINE__,
                                  _("another breakpoint was inserted on top of "
                                  _("another breakpoint was inserted on top of "
                                  "a permanent breakpoint"));
                                  "a permanent breakpoint"));
 
 
                b->duplicate = 1;
                b->duplicate = 1;
              }
              }
          }
          }
    }
    }
}
}
 
 
static void
static void
check_duplicates (struct breakpoint *bpt)
check_duplicates (struct breakpoint *bpt)
{
{
  struct bp_location *bl = bpt->loc;
  struct bp_location *bl = bpt->loc;
 
 
  if (! breakpoint_address_is_meaningful (bpt))
  if (! breakpoint_address_is_meaningful (bpt))
    return;
    return;
 
 
  for (; bl; bl = bl->next)
  for (; bl; bl = bl->next)
    check_duplicates_for (bl->address, bl->section);
    check_duplicates_for (bl->address, bl->section);
}
}
 
 
static void
static void
breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
                               int bnum, int have_bnum)
                               int bnum, int have_bnum)
{
{
  char astr1[40];
  char astr1[40];
  char astr2[40];
  char astr2[40];
 
 
  strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
  strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
  strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
  strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
  if (have_bnum)
  if (have_bnum)
    warning (_("Breakpoint %d address previously adjusted from %s to %s."),
    warning (_("Breakpoint %d address previously adjusted from %s to %s."),
             bnum, astr1, astr2);
             bnum, astr1, astr2);
  else
  else
    warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
    warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
}
}
 
 
/* Adjust a breakpoint's address to account for architectural constraints
/* Adjust a breakpoint's address to account for architectural constraints
   on breakpoint placement.  Return the adjusted address.  Note: Very
   on breakpoint placement.  Return the adjusted address.  Note: Very
   few targets require this kind of adjustment.  For most targets,
   few targets require this kind of adjustment.  For most targets,
   this function is simply the identity function.  */
   this function is simply the identity function.  */
 
 
static CORE_ADDR
static CORE_ADDR
adjust_breakpoint_address (CORE_ADDR bpaddr, enum bptype bptype)
adjust_breakpoint_address (CORE_ADDR bpaddr, enum bptype bptype)
{
{
  if (!gdbarch_adjust_breakpoint_address_p (current_gdbarch))
  if (!gdbarch_adjust_breakpoint_address_p (current_gdbarch))
    {
    {
      /* Very few targets need any kind of breakpoint adjustment.  */
      /* Very few targets need any kind of breakpoint adjustment.  */
      return bpaddr;
      return bpaddr;
    }
    }
  else if (bptype == bp_watchpoint
  else if (bptype == bp_watchpoint
           || bptype == bp_hardware_watchpoint
           || bptype == bp_hardware_watchpoint
           || bptype == bp_read_watchpoint
           || bptype == bp_read_watchpoint
           || bptype == bp_access_watchpoint
           || bptype == bp_access_watchpoint
           || bptype == bp_catch_fork
           || bptype == bp_catch_fork
           || bptype == bp_catch_vfork
           || bptype == bp_catch_vfork
           || bptype == bp_catch_exec)
           || bptype == bp_catch_exec)
    {
    {
      /* Watchpoints and the various bp_catch_* eventpoints should not
      /* Watchpoints and the various bp_catch_* eventpoints should not
         have their addresses modified.  */
         have their addresses modified.  */
      return bpaddr;
      return bpaddr;
    }
    }
  else
  else
    {
    {
      CORE_ADDR adjusted_bpaddr;
      CORE_ADDR adjusted_bpaddr;
 
 
      /* Some targets have architectural constraints on the placement
      /* Some targets have architectural constraints on the placement
         of breakpoint instructions.  Obtain the adjusted address.  */
         of breakpoint instructions.  Obtain the adjusted address.  */
      adjusted_bpaddr = gdbarch_adjust_breakpoint_address (current_gdbarch,
      adjusted_bpaddr = gdbarch_adjust_breakpoint_address (current_gdbarch,
                                                           bpaddr);
                                                           bpaddr);
 
 
      /* An adjusted breakpoint address can significantly alter
      /* An adjusted breakpoint address can significantly alter
         a user's expectations.  Print a warning if an adjustment
         a user's expectations.  Print a warning if an adjustment
         is required.  */
         is required.  */
      if (adjusted_bpaddr != bpaddr)
      if (adjusted_bpaddr != bpaddr)
        breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
        breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
 
 
      return adjusted_bpaddr;
      return adjusted_bpaddr;
    }
    }
}
}
 
 
/* Allocate a struct bp_location.  */
/* Allocate a struct bp_location.  */
 
 
static struct bp_location *
static struct bp_location *
allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type)
allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type)
{
{
  struct bp_location *loc, *loc_p;
  struct bp_location *loc, *loc_p;
 
 
  loc = xmalloc (sizeof (struct bp_location));
  loc = xmalloc (sizeof (struct bp_location));
  memset (loc, 0, sizeof (*loc));
  memset (loc, 0, sizeof (*loc));
 
 
  loc->owner = bpt;
  loc->owner = bpt;
  loc->cond = NULL;
  loc->cond = NULL;
  loc->shlib_disabled = 0;
  loc->shlib_disabled = 0;
  loc->enabled = 1;
  loc->enabled = 1;
 
 
  switch (bp_type)
  switch (bp_type)
    {
    {
    case bp_breakpoint:
    case bp_breakpoint:
    case bp_until:
    case bp_until:
    case bp_finish:
    case bp_finish:
    case bp_longjmp:
    case bp_longjmp:
    case bp_longjmp_resume:
    case bp_longjmp_resume:
    case bp_step_resume:
    case bp_step_resume:
    case bp_watchpoint_scope:
    case bp_watchpoint_scope:
    case bp_call_dummy:
    case bp_call_dummy:
    case bp_shlib_event:
    case bp_shlib_event:
    case bp_thread_event:
    case bp_thread_event:
    case bp_overlay_event:
    case bp_overlay_event:
    case bp_catch_load:
    case bp_catch_load:
    case bp_catch_unload:
    case bp_catch_unload:
      loc->loc_type = bp_loc_software_breakpoint;
      loc->loc_type = bp_loc_software_breakpoint;
      break;
      break;
    case bp_hardware_breakpoint:
    case bp_hardware_breakpoint:
      loc->loc_type = bp_loc_hardware_breakpoint;
      loc->loc_type = bp_loc_hardware_breakpoint;
      break;
      break;
    case bp_hardware_watchpoint:
    case bp_hardware_watchpoint:
    case bp_read_watchpoint:
    case bp_read_watchpoint:
    case bp_access_watchpoint:
    case bp_access_watchpoint:
      loc->loc_type = bp_loc_hardware_watchpoint;
      loc->loc_type = bp_loc_hardware_watchpoint;
      break;
      break;
    case bp_watchpoint:
    case bp_watchpoint:
    case bp_catch_fork:
    case bp_catch_fork:
    case bp_catch_vfork:
    case bp_catch_vfork:
    case bp_catch_exec:
    case bp_catch_exec:
      loc->loc_type = bp_loc_other;
      loc->loc_type = bp_loc_other;
      break;
      break;
    default:
    default:
      internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
      internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
    }
    }
 
 
  /* Add this breakpoint to the end of the chain.  */
  /* Add this breakpoint to the end of the chain.  */
 
 
  loc_p = bp_location_chain;
  loc_p = bp_location_chain;
  if (loc_p == 0)
  if (loc_p == 0)
    bp_location_chain = loc;
    bp_location_chain = loc;
  else
  else
    {
    {
      while (loc_p->global_next)
      while (loc_p->global_next)
        loc_p = loc_p->global_next;
        loc_p = loc_p->global_next;
      loc_p->global_next = loc;
      loc_p->global_next = loc;
    }
    }
 
 
  return loc;
  return loc;
}
}
 
 
static void free_bp_location (struct bp_location *loc)
static void free_bp_location (struct bp_location *loc)
{
{
  if (loc->cond)
  if (loc->cond)
    xfree (loc->cond);
    xfree (loc->cond);
  xfree (loc);
  xfree (loc);
}
}
 
 
/* Helper to set_raw_breakpoint below.  Creates a breakpoint
/* Helper to set_raw_breakpoint below.  Creates a breakpoint
   that has type BPTYPE and has no locations as yet.  */
   that has type BPTYPE and has no locations as yet.  */
 
 
static struct breakpoint *
static struct breakpoint *
set_raw_breakpoint_without_location (enum bptype bptype)
set_raw_breakpoint_without_location (enum bptype bptype)
{
{
  struct breakpoint *b, *b1;
  struct breakpoint *b, *b1;
 
 
  b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
  b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
  memset (b, 0, sizeof (*b));
  memset (b, 0, sizeof (*b));
 
 
  b->type = bptype;
  b->type = bptype;
  b->language = current_language->la_language;
  b->language = current_language->la_language;
  b->input_radix = input_radix;
  b->input_radix = input_radix;
  b->thread = -1;
  b->thread = -1;
  b->enable_state = bp_enabled;
  b->enable_state = bp_enabled;
  b->next = 0;
  b->next = 0;
  b->silent = 0;
  b->silent = 0;
  b->ignore_count = 0;
  b->ignore_count = 0;
  b->commands = NULL;
  b->commands = NULL;
  b->frame_id = null_frame_id;
  b->frame_id = null_frame_id;
  b->dll_pathname = NULL;
  b->dll_pathname = NULL;
  b->triggered_dll_pathname = NULL;
  b->triggered_dll_pathname = NULL;
  b->forked_inferior_pid = 0;
  b->forked_inferior_pid = 0;
  b->exec_pathname = NULL;
  b->exec_pathname = NULL;
  b->ops = NULL;
  b->ops = NULL;
  b->condition_not_parsed = 0;
  b->condition_not_parsed = 0;
 
 
  /* Add this breakpoint to the end of the chain
  /* Add this breakpoint to the end of the chain
     so that a list of breakpoints will come out in order
     so that a list of breakpoints will come out in order
     of increasing numbers.  */
     of increasing numbers.  */
 
 
  b1 = breakpoint_chain;
  b1 = breakpoint_chain;
  if (b1 == 0)
  if (b1 == 0)
    breakpoint_chain = b;
    breakpoint_chain = b;
  else
  else
    {
    {
      while (b1->next)
      while (b1->next)
        b1 = b1->next;
        b1 = b1->next;
      b1->next = b;
      b1->next = b;
    }
    }
  return b;
  return b;
}
}
 
 
/* Initialize loc->function_name.  */
/* Initialize loc->function_name.  */
static void
static void
set_breakpoint_location_function (struct bp_location *loc)
set_breakpoint_location_function (struct bp_location *loc)
{
{
  if (loc->owner->type == bp_breakpoint
  if (loc->owner->type == bp_breakpoint
      || loc->owner->type == bp_hardware_breakpoint)
      || loc->owner->type == bp_hardware_breakpoint)
    {
    {
      find_pc_partial_function (loc->address, &(loc->function_name),
      find_pc_partial_function (loc->address, &(loc->function_name),
                                NULL, NULL);
                                NULL, NULL);
      if (loc->function_name)
      if (loc->function_name)
        loc->function_name = xstrdup (loc->function_name);
        loc->function_name = xstrdup (loc->function_name);
    }
    }
}
}
 
 
/* set_raw_breakpoint is a low level routine for allocating and
/* set_raw_breakpoint is a low level routine for allocating and
   partially initializing a breakpoint of type BPTYPE.  The newly
   partially initializing a breakpoint of type BPTYPE.  The newly
   created breakpoint's address, section, source file name, and line
   created breakpoint's address, section, source file name, and line
   number are provided by SAL.  The newly created and partially
   number are provided by SAL.  The newly created and partially
   initialized breakpoint is added to the breakpoint chain and
   initialized breakpoint is added to the breakpoint chain and
   is also returned as the value of this function.
   is also returned as the value of this function.
 
 
   It is expected that the caller will complete the initialization of
   It is expected that the caller will complete the initialization of
   the newly created breakpoint struct as well as output any status
   the newly created breakpoint struct as well as output any status
   information regarding the creation of a new breakpoint.  In
   information regarding the creation of a new breakpoint.  In
   particular, set_raw_breakpoint does NOT set the breakpoint
   particular, set_raw_breakpoint does NOT set the breakpoint
   number!  Care should be taken to not allow an error to occur
   number!  Care should be taken to not allow an error to occur
   prior to completing the initialization of the breakpoint.  If this
   prior to completing the initialization of the breakpoint.  If this
   should happen, a bogus breakpoint will be left on the chain.  */
   should happen, a bogus breakpoint will be left on the chain.  */
 
 
struct breakpoint *
struct breakpoint *
set_raw_breakpoint (struct symtab_and_line sal, enum bptype bptype)
set_raw_breakpoint (struct symtab_and_line sal, enum bptype bptype)
{
{
  struct breakpoint *b = set_raw_breakpoint_without_location (bptype);
  struct breakpoint *b = set_raw_breakpoint_without_location (bptype);
  CORE_ADDR adjusted_address;
  CORE_ADDR adjusted_address;
 
 
  /* Adjust the breakpoint's address prior to allocating a location.
  /* Adjust the breakpoint's address prior to allocating a location.
     Once we call allocate_bp_location(), that mostly uninitialized
     Once we call allocate_bp_location(), that mostly uninitialized
     location will be placed on the location chain.  Adjustment of the
     location will be placed on the location chain.  Adjustment of the
     breakpoint may cause read_memory_nobpt() to be called and we do
     breakpoint may cause read_memory_nobpt() to be called and we do
     not want its scan of the location chain to find a breakpoint and
     not want its scan of the location chain to find a breakpoint and
     location that's only been partially initialized.  */
     location that's only been partially initialized.  */
  adjusted_address = adjust_breakpoint_address (sal.pc, bptype);
  adjusted_address = adjust_breakpoint_address (sal.pc, bptype);
 
 
  b->loc = allocate_bp_location (b, bptype);
  b->loc = allocate_bp_location (b, bptype);
  b->loc->requested_address = sal.pc;
  b->loc->requested_address = sal.pc;
  b->loc->address = adjusted_address;
  b->loc->address = adjusted_address;
 
 
  if (sal.symtab == NULL)
  if (sal.symtab == NULL)
    b->source_file = NULL;
    b->source_file = NULL;
  else
  else
    b->source_file = savestring (sal.symtab->filename,
    b->source_file = savestring (sal.symtab->filename,
                                 strlen (sal.symtab->filename));
                                 strlen (sal.symtab->filename));
  b->loc->section = sal.section;
  b->loc->section = sal.section;
  b->line_number = sal.line;
  b->line_number = sal.line;
 
 
  set_breakpoint_location_function (b->loc);
  set_breakpoint_location_function (b->loc);
 
 
  check_duplicates (b);
  check_duplicates (b);
  breakpoints_changed ();
  breakpoints_changed ();
 
 
  return b;
  return b;
}
}
 
 
 
 
/* Note that the breakpoint object B describes a permanent breakpoint
/* Note that the breakpoint object B describes a permanent breakpoint
   instruction, hard-wired into the inferior's code.  */
   instruction, hard-wired into the inferior's code.  */
void
void
make_breakpoint_permanent (struct breakpoint *b)
make_breakpoint_permanent (struct breakpoint *b)
{
{
  struct bp_location *bl;
  struct bp_location *bl;
  b->enable_state = bp_permanent;
  b->enable_state = bp_permanent;
 
 
  /* By definition, permanent breakpoints are already present in the code.
  /* By definition, permanent breakpoints are already present in the code.
     Mark all locations as inserted.  For now, make_breakpoint_permanent
     Mark all locations as inserted.  For now, make_breakpoint_permanent
     is called in just one place, so it's hard to say if it's reasonable
     is called in just one place, so it's hard to say if it's reasonable
     to have permanent breakpoint with multiple locations or not,
     to have permanent breakpoint with multiple locations or not,
     but it's easy to implmement.  */
     but it's easy to implmement.  */
  for (bl = b->loc; bl; bl = bl->next)
  for (bl = b->loc; bl; bl = bl->next)
    bl->inserted = 1;
    bl->inserted = 1;
}
}
 
 
static struct breakpoint *
static struct breakpoint *
create_internal_breakpoint (CORE_ADDR address, enum bptype type)
create_internal_breakpoint (CORE_ADDR address, enum bptype type)
{
{
  static int internal_breakpoint_number = -1;
  static int internal_breakpoint_number = -1;
  struct symtab_and_line sal;
  struct symtab_and_line sal;
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  init_sal (&sal);              /* initialize to zeroes */
  init_sal (&sal);              /* initialize to zeroes */
 
 
  sal.pc = address;
  sal.pc = address;
  sal.section = find_pc_overlay (sal.pc);
  sal.section = find_pc_overlay (sal.pc);
 
 
  b = set_raw_breakpoint (sal, type);
  b = set_raw_breakpoint (sal, type);
  b->number = internal_breakpoint_number--;
  b->number = internal_breakpoint_number--;
  b->disposition = disp_donttouch;
  b->disposition = disp_donttouch;
 
 
  return b;
  return b;
}
}
 
 
 
 
static void
static void
create_longjmp_breakpoint (char *func_name)
create_longjmp_breakpoint (char *func_name)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  struct minimal_symbol *m;
  struct minimal_symbol *m;
 
 
  if (func_name == NULL)
  if (func_name == NULL)
    b = create_internal_breakpoint (0, bp_longjmp_resume);
    b = create_internal_breakpoint (0, bp_longjmp_resume);
  else
  else
    {
    {
      if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
      if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
        return;
        return;
 
 
      b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m), bp_longjmp);
      b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m), bp_longjmp);
    }
    }
 
 
  b->enable_state = bp_disabled;
  b->enable_state = bp_disabled;
  b->silent = 1;
  b->silent = 1;
  if (func_name)
  if (func_name)
    b->addr_string = xstrdup (func_name);
    b->addr_string = xstrdup (func_name);
}
}
 
 
/* Call this routine when stepping and nexting to enable a breakpoint
/* Call this routine when stepping and nexting to enable a breakpoint
   if we do a longjmp().  When we hit that breakpoint, call
   if we do a longjmp().  When we hit that breakpoint, call
   set_longjmp_resume_breakpoint() to figure out where we are going. */
   set_longjmp_resume_breakpoint() to figure out where we are going. */
 
 
void
void
enable_longjmp_breakpoint (void)
enable_longjmp_breakpoint (void)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->type == bp_longjmp)
    if (b->type == bp_longjmp)
    {
    {
      b->enable_state = bp_enabled;
      b->enable_state = bp_enabled;
      check_duplicates (b);
      check_duplicates (b);
    }
    }
}
}
 
 
void
void
disable_longjmp_breakpoint (void)
disable_longjmp_breakpoint (void)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->type == bp_longjmp
    if (b->type == bp_longjmp
        || b->type == bp_longjmp_resume)
        || b->type == bp_longjmp_resume)
    {
    {
      b->enable_state = bp_disabled;
      b->enable_state = bp_disabled;
      check_duplicates (b);
      check_duplicates (b);
    }
    }
}
}
 
 
static void
static void
create_overlay_event_breakpoint (char *func_name)
create_overlay_event_breakpoint (char *func_name)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  struct minimal_symbol *m;
  struct minimal_symbol *m;
 
 
  if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
  if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
    return;
    return;
 
 
  b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m),
  b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m),
                                  bp_overlay_event);
                                  bp_overlay_event);
  b->addr_string = xstrdup (func_name);
  b->addr_string = xstrdup (func_name);
 
 
  if (overlay_debugging == ovly_auto)
  if (overlay_debugging == ovly_auto)
    {
    {
      b->enable_state = bp_enabled;
      b->enable_state = bp_enabled;
      overlay_events_enabled = 1;
      overlay_events_enabled = 1;
    }
    }
  else
  else
    {
    {
      b->enable_state = bp_disabled;
      b->enable_state = bp_disabled;
      overlay_events_enabled = 0;
      overlay_events_enabled = 0;
    }
    }
}
}
 
 
void
void
enable_overlay_breakpoints (void)
enable_overlay_breakpoints (void)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->type == bp_overlay_event)
    if (b->type == bp_overlay_event)
    {
    {
      b->enable_state = bp_enabled;
      b->enable_state = bp_enabled;
      check_duplicates (b);
      check_duplicates (b);
      overlay_events_enabled = 1;
      overlay_events_enabled = 1;
    }
    }
}
}
 
 
void
void
disable_overlay_breakpoints (void)
disable_overlay_breakpoints (void)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->type == bp_overlay_event)
    if (b->type == bp_overlay_event)
    {
    {
      b->enable_state = bp_disabled;
      b->enable_state = bp_disabled;
      check_duplicates (b);
      check_duplicates (b);
      overlay_events_enabled = 0;
      overlay_events_enabled = 0;
    }
    }
}
}
 
 
struct breakpoint *
struct breakpoint *
create_thread_event_breakpoint (CORE_ADDR address)
create_thread_event_breakpoint (CORE_ADDR address)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  b = create_internal_breakpoint (address, bp_thread_event);
  b = create_internal_breakpoint (address, bp_thread_event);
 
 
  b->enable_state = bp_enabled;
  b->enable_state = bp_enabled;
  /* addr_string has to be used or breakpoint_re_set will delete me.  */
  /* addr_string has to be used or breakpoint_re_set will delete me.  */
  b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address));
  b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address));
 
 
  return b;
  return b;
}
}
 
 
void
void
remove_thread_event_breakpoints (void)
remove_thread_event_breakpoints (void)
{
{
  struct breakpoint *b, *temp;
  struct breakpoint *b, *temp;
 
 
  ALL_BREAKPOINTS_SAFE (b, temp)
  ALL_BREAKPOINTS_SAFE (b, temp)
    if (b->type == bp_thread_event)
    if (b->type == bp_thread_event)
      delete_breakpoint (b);
      delete_breakpoint (b);
}
}
 
 
struct captured_parse_breakpoint_args
struct captured_parse_breakpoint_args
  {
  {
    char **arg_p;
    char **arg_p;
    struct symtabs_and_lines *sals_p;
    struct symtabs_and_lines *sals_p;
    char ***addr_string_p;
    char ***addr_string_p;
    int *not_found_ptr;
    int *not_found_ptr;
  };
  };
 
 
struct lang_and_radix
struct lang_and_radix
  {
  {
    enum language lang;
    enum language lang;
    int radix;
    int radix;
  };
  };
 
 
 
 
void
void
remove_solib_event_breakpoints (void)
remove_solib_event_breakpoints (void)
{
{
  struct breakpoint *b, *temp;
  struct breakpoint *b, *temp;
 
 
  ALL_BREAKPOINTS_SAFE (b, temp)
  ALL_BREAKPOINTS_SAFE (b, temp)
    if (b->type == bp_shlib_event)
    if (b->type == bp_shlib_event)
      delete_breakpoint (b);
      delete_breakpoint (b);
}
}
 
 
struct breakpoint *
struct breakpoint *
create_solib_event_breakpoint (CORE_ADDR address)
create_solib_event_breakpoint (CORE_ADDR address)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  b = create_internal_breakpoint (address, bp_shlib_event);
  b = create_internal_breakpoint (address, bp_shlib_event);
  return b;
  return b;
}
}
 
 
/* Disable any breakpoints that are on code in shared libraries.  Only
/* Disable any breakpoints that are on code in shared libraries.  Only
   apply to enabled breakpoints, disabled ones can just stay disabled.  */
   apply to enabled breakpoints, disabled ones can just stay disabled.  */
 
 
void
void
disable_breakpoints_in_shlibs (void)
disable_breakpoints_in_shlibs (void)
{
{
  struct bp_location *loc;
  struct bp_location *loc;
  int disabled_shlib_breaks = 0;
  int disabled_shlib_breaks = 0;
 
 
  ALL_BP_LOCATIONS (loc)
  ALL_BP_LOCATIONS (loc)
  {
  {
    struct breakpoint *b = loc->owner;
    struct breakpoint *b = loc->owner;
    /* We apply the check to all breakpoints, including disabled
    /* We apply the check to all breakpoints, including disabled
       for those with loc->duplicate set.  This is so that when breakpoint
       for those with loc->duplicate set.  This is so that when breakpoint
       becomes enabled, or the duplicate is removed, gdb will try to insert
       becomes enabled, or the duplicate is removed, gdb will try to insert
       all breakpoints.  If we don't set shlib_disabled here, we'll try
       all breakpoints.  If we don't set shlib_disabled here, we'll try
       to insert those breakpoints and fail.  */
       to insert those breakpoints and fail.  */
    if (((b->type == bp_breakpoint) || (b->type == bp_hardware_breakpoint))
    if (((b->type == bp_breakpoint) || (b->type == bp_hardware_breakpoint))
        && !loc->shlib_disabled
        && !loc->shlib_disabled
#ifdef PC_SOLIB
#ifdef PC_SOLIB
        && PC_SOLIB (loc->address)
        && PC_SOLIB (loc->address)
#else
#else
        && solib_address (loc->address)
        && solib_address (loc->address)
#endif
#endif
        )
        )
      {
      {
        loc->shlib_disabled = 1;
        loc->shlib_disabled = 1;
      }
      }
  }
  }
}
}
 
 
/* Disable any breakpoints that are in in an unloaded shared library.  Only
/* Disable any breakpoints that are in in an unloaded shared library.  Only
   apply to enabled breakpoints, disabled ones can just stay disabled.  */
   apply to enabled breakpoints, disabled ones can just stay disabled.  */
 
 
static void
static void
disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
{
{
  struct bp_location *loc;
  struct bp_location *loc;
  int disabled_shlib_breaks = 0;
  int disabled_shlib_breaks = 0;
 
 
  ALL_BP_LOCATIONS (loc)
  ALL_BP_LOCATIONS (loc)
  {
  {
    struct breakpoint *b = loc->owner;
    struct breakpoint *b = loc->owner;
    if ((loc->loc_type == bp_loc_hardware_breakpoint
    if ((loc->loc_type == bp_loc_hardware_breakpoint
         || loc->loc_type == bp_loc_software_breakpoint)
         || loc->loc_type == bp_loc_software_breakpoint)
        && !loc->shlib_disabled)
        && !loc->shlib_disabled)
      {
      {
#ifdef PC_SOLIB
#ifdef PC_SOLIB
        char *so_name = PC_SOLIB (loc->address);
        char *so_name = PC_SOLIB (loc->address);
#else
#else
        char *so_name = solib_address (loc->address);
        char *so_name = solib_address (loc->address);
#endif
#endif
        if (so_name && !strcmp (so_name, solib->so_name))
        if (so_name && !strcmp (so_name, solib->so_name))
          {
          {
            loc->shlib_disabled = 1;
            loc->shlib_disabled = 1;
            /* At this point, we cannot rely on remove_breakpoint
            /* At this point, we cannot rely on remove_breakpoint
               succeeding so we must mark the breakpoint as not inserted
               succeeding so we must mark the breakpoint as not inserted
               to prevent future errors occurring in remove_breakpoints.  */
               to prevent future errors occurring in remove_breakpoints.  */
            loc->inserted = 0;
            loc->inserted = 0;
            if (!disabled_shlib_breaks)
            if (!disabled_shlib_breaks)
              {
              {
                target_terminal_ours_for_output ();
                target_terminal_ours_for_output ();
                warning (_("Temporarily disabling breakpoints for unloaded shared library \"%s\""),
                warning (_("Temporarily disabling breakpoints for unloaded shared library \"%s\""),
                          so_name);
                          so_name);
              }
              }
            disabled_shlib_breaks = 1;
            disabled_shlib_breaks = 1;
          }
          }
      }
      }
  }
  }
}
}
 
 
static void
static void
create_fork_vfork_event_catchpoint (int tempflag, char *cond_string,
create_fork_vfork_event_catchpoint (int tempflag, char *cond_string,
                                    enum bptype bp_kind)
                                    enum bptype bp_kind)
{
{
  struct symtab_and_line sal;
  struct symtab_and_line sal;
  struct breakpoint *b;
  struct breakpoint *b;
  int thread = -1;              /* All threads. */
  int thread = -1;              /* All threads. */
 
 
  init_sal (&sal);
  init_sal (&sal);
  sal.pc = 0;
  sal.pc = 0;
  sal.symtab = NULL;
  sal.symtab = NULL;
  sal.line = 0;
  sal.line = 0;
 
 
  b = set_raw_breakpoint (sal, bp_kind);
  b = set_raw_breakpoint (sal, bp_kind);
  set_breakpoint_count (breakpoint_count + 1);
  set_breakpoint_count (breakpoint_count + 1);
  b->number = breakpoint_count;
  b->number = breakpoint_count;
  b->cond_string = (cond_string == NULL) ?
  b->cond_string = (cond_string == NULL) ?
    NULL : savestring (cond_string, strlen (cond_string));
    NULL : savestring (cond_string, strlen (cond_string));
  b->thread = thread;
  b->thread = thread;
  b->addr_string = NULL;
  b->addr_string = NULL;
  b->enable_state = bp_enabled;
  b->enable_state = bp_enabled;
  b->disposition = tempflag ? disp_del : disp_donttouch;
  b->disposition = tempflag ? disp_del : disp_donttouch;
  b->forked_inferior_pid = 0;
  b->forked_inferior_pid = 0;
 
 
  mention (b);
  mention (b);
}
}
 
 
static void
static void
create_fork_event_catchpoint (int tempflag, char *cond_string)
create_fork_event_catchpoint (int tempflag, char *cond_string)
{
{
  create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
  create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
}
}
 
 
static void
static void
create_vfork_event_catchpoint (int tempflag, char *cond_string)
create_vfork_event_catchpoint (int tempflag, char *cond_string)
{
{
  create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
  create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
}
}
 
 
static void
static void
create_exec_event_catchpoint (int tempflag, char *cond_string)
create_exec_event_catchpoint (int tempflag, char *cond_string)
{
{
  struct symtab_and_line sal;
  struct symtab_and_line sal;
  struct breakpoint *b;
  struct breakpoint *b;
  int thread = -1;              /* All threads. */
  int thread = -1;              /* All threads. */
 
 
  init_sal (&sal);
  init_sal (&sal);
  sal.pc = 0;
  sal.pc = 0;
  sal.symtab = NULL;
  sal.symtab = NULL;
  sal.line = 0;
  sal.line = 0;
 
 
  b = set_raw_breakpoint (sal, bp_catch_exec);
  b = set_raw_breakpoint (sal, bp_catch_exec);
  set_breakpoint_count (breakpoint_count + 1);
  set_breakpoint_count (breakpoint_count + 1);
  b->number = breakpoint_count;
  b->number = breakpoint_count;
  b->cond_string = (cond_string == NULL) ?
  b->cond_string = (cond_string == NULL) ?
    NULL : savestring (cond_string, strlen (cond_string));
    NULL : savestring (cond_string, strlen (cond_string));
  b->thread = thread;
  b->thread = thread;
  b->addr_string = NULL;
  b->addr_string = NULL;
  b->enable_state = bp_enabled;
  b->enable_state = bp_enabled;
  b->disposition = tempflag ? disp_del : disp_donttouch;
  b->disposition = tempflag ? disp_del : disp_donttouch;
 
 
  mention (b);
  mention (b);
}
}
 
 
static int
static int
hw_breakpoint_used_count (void)
hw_breakpoint_used_count (void)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  int i = 0;
  int i = 0;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
  {
  {
    if (b->type == bp_hardware_breakpoint && b->enable_state == bp_enabled)
    if (b->type == bp_hardware_breakpoint && b->enable_state == bp_enabled)
      i++;
      i++;
  }
  }
 
 
  return i;
  return i;
}
}
 
 
static int
static int
hw_watchpoint_used_count (enum bptype type, int *other_type_used)
hw_watchpoint_used_count (enum bptype type, int *other_type_used)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  int i = 0;
  int i = 0;
 
 
  *other_type_used = 0;
  *other_type_used = 0;
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
  {
  {
    if (breakpoint_enabled (b))
    if (breakpoint_enabled (b))
      {
      {
        if (b->type == type)
        if (b->type == type)
          i++;
          i++;
        else if ((b->type == bp_hardware_watchpoint ||
        else if ((b->type == bp_hardware_watchpoint ||
                  b->type == bp_read_watchpoint ||
                  b->type == bp_read_watchpoint ||
                  b->type == bp_access_watchpoint))
                  b->type == bp_access_watchpoint))
          *other_type_used = 1;
          *other_type_used = 1;
      }
      }
  }
  }
  return i;
  return i;
}
}
 
 
/* Call this after hitting the longjmp() breakpoint.  Use this to set
/* Call this after hitting the longjmp() breakpoint.  Use this to set
   a new breakpoint at the target of the jmp_buf.
   a new breakpoint at the target of the jmp_buf.
 
 
   FIXME - This ought to be done by setting a temporary breakpoint
   FIXME - This ought to be done by setting a temporary breakpoint
   that gets deleted automatically... */
   that gets deleted automatically... */
 
 
void
void
set_longjmp_resume_breakpoint (CORE_ADDR pc, struct frame_id frame_id)
set_longjmp_resume_breakpoint (CORE_ADDR pc, struct frame_id frame_id)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->type == bp_longjmp_resume)
    if (b->type == bp_longjmp_resume)
    {
    {
      b->loc->requested_address = pc;
      b->loc->requested_address = pc;
      b->loc->address = adjust_breakpoint_address (b->loc->requested_address,
      b->loc->address = adjust_breakpoint_address (b->loc->requested_address,
                                                   b->type);
                                                   b->type);
      b->enable_state = bp_enabled;
      b->enable_state = bp_enabled;
      b->frame_id = frame_id;
      b->frame_id = frame_id;
      check_duplicates (b);
      check_duplicates (b);
      return;
      return;
    }
    }
}
}
 
 
void
void
disable_watchpoints_before_interactive_call_start (void)
disable_watchpoints_before_interactive_call_start (void)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
  {
  {
    if (((b->type == bp_watchpoint)
    if (((b->type == bp_watchpoint)
         || (b->type == bp_hardware_watchpoint)
         || (b->type == bp_hardware_watchpoint)
         || (b->type == bp_read_watchpoint)
         || (b->type == bp_read_watchpoint)
         || (b->type == bp_access_watchpoint))
         || (b->type == bp_access_watchpoint))
        && breakpoint_enabled (b))
        && breakpoint_enabled (b))
      {
      {
        b->enable_state = bp_call_disabled;
        b->enable_state = bp_call_disabled;
        check_duplicates (b);
        check_duplicates (b);
      }
      }
  }
  }
}
}
 
 
void
void
enable_watchpoints_after_interactive_call_stop (void)
enable_watchpoints_after_interactive_call_stop (void)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
  {
  {
    if (((b->type == bp_watchpoint)
    if (((b->type == bp_watchpoint)
         || (b->type == bp_hardware_watchpoint)
         || (b->type == bp_hardware_watchpoint)
         || (b->type == bp_read_watchpoint)
         || (b->type == bp_read_watchpoint)
         || (b->type == bp_access_watchpoint))
         || (b->type == bp_access_watchpoint))
        && (b->enable_state == bp_call_disabled))
        && (b->enable_state == bp_call_disabled))
      {
      {
        b->enable_state = bp_enabled;
        b->enable_state = bp_enabled;
        check_duplicates (b);
        check_duplicates (b);
      }
      }
  }
  }
}
}
 
 
 
 
/* Set a breakpoint that will evaporate an end of command
/* Set a breakpoint that will evaporate an end of command
   at address specified by SAL.
   at address specified by SAL.
   Restrict it to frame FRAME if FRAME is nonzero.  */
   Restrict it to frame FRAME if FRAME is nonzero.  */
 
 
struct breakpoint *
struct breakpoint *
set_momentary_breakpoint (struct symtab_and_line sal, struct frame_id frame_id,
set_momentary_breakpoint (struct symtab_and_line sal, struct frame_id frame_id,
                          enum bptype type)
                          enum bptype type)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  b = set_raw_breakpoint (sal, type);
  b = set_raw_breakpoint (sal, type);
  b->enable_state = bp_enabled;
  b->enable_state = bp_enabled;
  b->disposition = disp_donttouch;
  b->disposition = disp_donttouch;
  b->frame_id = frame_id;
  b->frame_id = frame_id;
 
 
  /* If we're debugging a multi-threaded program, then we
  /* If we're debugging a multi-threaded program, then we
     want momentary breakpoints to be active in only a
     want momentary breakpoints to be active in only a
     single thread of control.  */
     single thread of control.  */
  if (in_thread_list (inferior_ptid))
  if (in_thread_list (inferior_ptid))
    b->thread = pid_to_thread_id (inferior_ptid);
    b->thread = pid_to_thread_id (inferior_ptid);
 
 
  return b;
  return b;
}
}


 
 
/* Tell the user we have just set a breakpoint B.  */
/* Tell the user we have just set a breakpoint B.  */
 
 
static void
static void
mention (struct breakpoint *b)
mention (struct breakpoint *b)
{
{
  int say_where = 0;
  int say_where = 0;
  struct cleanup *old_chain, *ui_out_chain;
  struct cleanup *old_chain, *ui_out_chain;
  struct ui_stream *stb;
  struct ui_stream *stb;
 
 
  stb = ui_out_stream_new (uiout);
  stb = ui_out_stream_new (uiout);
  old_chain = make_cleanup_ui_out_stream_delete (stb);
  old_chain = make_cleanup_ui_out_stream_delete (stb);
 
 
  /* FIXME: This is misplaced; mention() is called by things (like
  /* FIXME: This is misplaced; mention() is called by things (like
     hitting a watchpoint) other than breakpoint creation.  It should
     hitting a watchpoint) other than breakpoint creation.  It should
     be possible to clean this up and at the same time replace the
     be possible to clean this up and at the same time replace the
     random calls to breakpoint_changed with this hook, as has already
     random calls to breakpoint_changed with this hook, as has already
     been done for deprecated_delete_breakpoint_hook and so on.  */
     been done for deprecated_delete_breakpoint_hook and so on.  */
  if (deprecated_create_breakpoint_hook)
  if (deprecated_create_breakpoint_hook)
    deprecated_create_breakpoint_hook (b);
    deprecated_create_breakpoint_hook (b);
  breakpoint_create_event (b->number);
  breakpoint_create_event (b->number);
 
 
  if (b->ops != NULL && b->ops->print_mention != NULL)
  if (b->ops != NULL && b->ops->print_mention != NULL)
    b->ops->print_mention (b);
    b->ops->print_mention (b);
  else
  else
    switch (b->type)
    switch (b->type)
      {
      {
      case bp_none:
      case bp_none:
        printf_filtered (_("(apparently deleted?) Eventpoint %d: "), b->number);
        printf_filtered (_("(apparently deleted?) Eventpoint %d: "), b->number);
        break;
        break;
      case bp_watchpoint:
      case bp_watchpoint:
        ui_out_text (uiout, "Watchpoint ");
        ui_out_text (uiout, "Watchpoint ");
        ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
        ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
        ui_out_field_int (uiout, "number", b->number);
        ui_out_field_int (uiout, "number", b->number);
        ui_out_text (uiout, ": ");
        ui_out_text (uiout, ": ");
        print_expression (b->exp, stb->stream);
        print_expression (b->exp, stb->stream);
        ui_out_field_stream (uiout, "exp", stb);
        ui_out_field_stream (uiout, "exp", stb);
        do_cleanups (ui_out_chain);
        do_cleanups (ui_out_chain);
        break;
        break;
      case bp_hardware_watchpoint:
      case bp_hardware_watchpoint:
        ui_out_text (uiout, "Hardware watchpoint ");
        ui_out_text (uiout, "Hardware watchpoint ");
        ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
        ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
        ui_out_field_int (uiout, "number", b->number);
        ui_out_field_int (uiout, "number", b->number);
        ui_out_text (uiout, ": ");
        ui_out_text (uiout, ": ");
        print_expression (b->exp, stb->stream);
        print_expression (b->exp, stb->stream);
        ui_out_field_stream (uiout, "exp", stb);
        ui_out_field_stream (uiout, "exp", stb);
        do_cleanups (ui_out_chain);
        do_cleanups (ui_out_chain);
        break;
        break;
      case bp_read_watchpoint:
      case bp_read_watchpoint:
        ui_out_text (uiout, "Hardware read watchpoint ");
        ui_out_text (uiout, "Hardware read watchpoint ");
        ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
        ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
        ui_out_field_int (uiout, "number", b->number);
        ui_out_field_int (uiout, "number", b->number);
        ui_out_text (uiout, ": ");
        ui_out_text (uiout, ": ");
        print_expression (b->exp, stb->stream);
        print_expression (b->exp, stb->stream);
        ui_out_field_stream (uiout, "exp", stb);
        ui_out_field_stream (uiout, "exp", stb);
        do_cleanups (ui_out_chain);
        do_cleanups (ui_out_chain);
        break;
        break;
      case bp_access_watchpoint:
      case bp_access_watchpoint:
        ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
        ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
        ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
        ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
        ui_out_field_int (uiout, "number", b->number);
        ui_out_field_int (uiout, "number", b->number);
        ui_out_text (uiout, ": ");
        ui_out_text (uiout, ": ");
        print_expression (b->exp, stb->stream);
        print_expression (b->exp, stb->stream);
        ui_out_field_stream (uiout, "exp", stb);
        ui_out_field_stream (uiout, "exp", stb);
        do_cleanups (ui_out_chain);
        do_cleanups (ui_out_chain);
        break;
        break;
      case bp_breakpoint:
      case bp_breakpoint:
        if (ui_out_is_mi_like_p (uiout))
        if (ui_out_is_mi_like_p (uiout))
          {
          {
            say_where = 0;
            say_where = 0;
            break;
            break;
          }
          }
        printf_filtered (_("Breakpoint %d"), b->number);
        printf_filtered (_("Breakpoint %d"), b->number);
        say_where = 1;
        say_where = 1;
        break;
        break;
      case bp_hardware_breakpoint:
      case bp_hardware_breakpoint:
        if (ui_out_is_mi_like_p (uiout))
        if (ui_out_is_mi_like_p (uiout))
          {
          {
            say_where = 0;
            say_where = 0;
            break;
            break;
          }
          }
        printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
        printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
        say_where = 1;
        say_where = 1;
        break;
        break;
      case bp_catch_load:
      case bp_catch_load:
      case bp_catch_unload:
      case bp_catch_unload:
        printf_filtered (_("Catchpoint %d (%s %s)"),
        printf_filtered (_("Catchpoint %d (%s %s)"),
                         b->number,
                         b->number,
                         (b->type == bp_catch_load) ? "load" : "unload",
                         (b->type == bp_catch_load) ? "load" : "unload",
                         (b->dll_pathname != NULL) ?
                         (b->dll_pathname != NULL) ?
                         b->dll_pathname : "<any library>");
                         b->dll_pathname : "<any library>");
        break;
        break;
      case bp_catch_fork:
      case bp_catch_fork:
      case bp_catch_vfork:
      case bp_catch_vfork:
        printf_filtered (_("Catchpoint %d (%s)"),
        printf_filtered (_("Catchpoint %d (%s)"),
                         b->number,
                         b->number,
                         (b->type == bp_catch_fork) ? "fork" : "vfork");
                         (b->type == bp_catch_fork) ? "fork" : "vfork");
        break;
        break;
      case bp_catch_exec:
      case bp_catch_exec:
        printf_filtered (_("Catchpoint %d (exec)"),
        printf_filtered (_("Catchpoint %d (exec)"),
                         b->number);
                         b->number);
        break;
        break;
 
 
      case bp_until:
      case bp_until:
      case bp_finish:
      case bp_finish:
      case bp_longjmp:
      case bp_longjmp:
      case bp_longjmp_resume:
      case bp_longjmp_resume:
      case bp_step_resume:
      case bp_step_resume:
      case bp_call_dummy:
      case bp_call_dummy:
      case bp_watchpoint_scope:
      case bp_watchpoint_scope:
      case bp_shlib_event:
      case bp_shlib_event:
      case bp_thread_event:
      case bp_thread_event:
      case bp_overlay_event:
      case bp_overlay_event:
        break;
        break;
      }
      }
 
 
  if (say_where)
  if (say_where)
    {
    {
      /* i18n: cagney/2005-02-11: Below needs to be merged into a
      /* i18n: cagney/2005-02-11: Below needs to be merged into a
         single string.  */
         single string.  */
      if (b->loc == NULL)
      if (b->loc == NULL)
        {
        {
          printf_filtered (_(" (%s) pending."), b->addr_string);
          printf_filtered (_(" (%s) pending."), b->addr_string);
        }
        }
      else
      else
        {
        {
          if (addressprint || b->source_file == NULL)
          if (addressprint || b->source_file == NULL)
            {
            {
              printf_filtered (" at ");
              printf_filtered (" at ");
              fputs_filtered (paddress (b->loc->address), gdb_stdout);
              fputs_filtered (paddress (b->loc->address), gdb_stdout);
            }
            }
          if (b->source_file)
          if (b->source_file)
            printf_filtered (": file %s, line %d.",
            printf_filtered (": file %s, line %d.",
                             b->source_file, b->line_number);
                             b->source_file, b->line_number);
 
 
          if (b->loc->next)
          if (b->loc->next)
            {
            {
              struct bp_location *loc = b->loc;
              struct bp_location *loc = b->loc;
              int n = 0;
              int n = 0;
              for (; loc; loc = loc->next)
              for (; loc; loc = loc->next)
                ++n;
                ++n;
              printf_filtered (" (%d locations)", n);
              printf_filtered (" (%d locations)", n);
            }
            }
 
 
        }
        }
    }
    }
  do_cleanups (old_chain);
  do_cleanups (old_chain);
  if (ui_out_is_mi_like_p (uiout))
  if (ui_out_is_mi_like_p (uiout))
    return;
    return;
  printf_filtered ("\n");
  printf_filtered ("\n");
}
}


 
 
static struct bp_location *
static struct bp_location *
add_location_to_breakpoint (struct breakpoint *b, enum bptype bptype,
add_location_to_breakpoint (struct breakpoint *b, enum bptype bptype,
                            const struct symtab_and_line *sal)
                            const struct symtab_and_line *sal)
{
{
  struct bp_location *loc, **tmp;
  struct bp_location *loc, **tmp;
 
 
  loc = allocate_bp_location (b, bptype);
  loc = allocate_bp_location (b, bptype);
  for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
  for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
    ;
    ;
  *tmp = loc;
  *tmp = loc;
  loc->requested_address = sal->pc;
  loc->requested_address = sal->pc;
  loc->address = adjust_breakpoint_address (loc->requested_address,
  loc->address = adjust_breakpoint_address (loc->requested_address,
                                            bptype);
                                            bptype);
  loc->section = sal->section;
  loc->section = sal->section;
 
 
  set_breakpoint_location_function (loc);
  set_breakpoint_location_function (loc);
  return loc;
  return loc;
}
}
 
 
/* Create a breakpoint with SAL as location.  Use ADDR_STRING
/* Create a breakpoint with SAL as location.  Use ADDR_STRING
   as textual description of the location, and COND_STRING
   as textual description of the location, and COND_STRING
   as condition expression.  */
   as condition expression.  */
 
 
static void
static void
create_breakpoint (struct symtabs_and_lines sals, char *addr_string,
create_breakpoint (struct symtabs_and_lines sals, char *addr_string,
                   char *cond_string,
                   char *cond_string,
                   enum bptype type, enum bpdisp disposition,
                   enum bptype type, enum bpdisp disposition,
                   int thread, int ignore_count, int from_tty)
                   int thread, int ignore_count, int from_tty)
{
{
  struct breakpoint *b = NULL;
  struct breakpoint *b = NULL;
  int i;
  int i;
 
 
  if (type == bp_hardware_breakpoint)
  if (type == bp_hardware_breakpoint)
    {
    {
      int i = hw_breakpoint_used_count ();
      int i = hw_breakpoint_used_count ();
      int target_resources_ok =
      int target_resources_ok =
        TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
        TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
                                            i + 1, 0);
                                            i + 1, 0);
      if (target_resources_ok == 0)
      if (target_resources_ok == 0)
        error (_("No hardware breakpoint support in the target."));
        error (_("No hardware breakpoint support in the target."));
      else if (target_resources_ok < 0)
      else if (target_resources_ok < 0)
        error (_("Hardware breakpoints used exceeds limit."));
        error (_("Hardware breakpoints used exceeds limit."));
    }
    }
 
 
  for (i = 0; i < sals.nelts; ++i)
  for (i = 0; i < sals.nelts; ++i)
    {
    {
      struct symtab_and_line sal = sals.sals[i];
      struct symtab_and_line sal = sals.sals[i];
      struct bp_location *loc;
      struct bp_location *loc;
 
 
      if (from_tty)
      if (from_tty)
        describe_other_breakpoints (sal.pc, sal.section, thread);
        describe_other_breakpoints (sal.pc, sal.section, thread);
 
 
      if (i == 0)
      if (i == 0)
        {
        {
          b = set_raw_breakpoint (sal, type);
          b = set_raw_breakpoint (sal, type);
          set_breakpoint_count (breakpoint_count + 1);
          set_breakpoint_count (breakpoint_count + 1);
          b->number = breakpoint_count;
          b->number = breakpoint_count;
          b->thread = thread;
          b->thread = thread;
 
 
          b->cond_string = cond_string;
          b->cond_string = cond_string;
          b->ignore_count = ignore_count;
          b->ignore_count = ignore_count;
          b->enable_state = bp_enabled;
          b->enable_state = bp_enabled;
          b->disposition = disposition;
          b->disposition = disposition;
 
 
          loc = b->loc;
          loc = b->loc;
        }
        }
      else
      else
        {
        {
          loc = add_location_to_breakpoint (b, type, &sal);
          loc = add_location_to_breakpoint (b, type, &sal);
        }
        }
 
 
      if (b->cond_string)
      if (b->cond_string)
        {
        {
          char *arg = b->cond_string;
          char *arg = b->cond_string;
          loc->cond = parse_exp_1 (&arg, block_for_pc (loc->address), 0);
          loc->cond = parse_exp_1 (&arg, block_for_pc (loc->address), 0);
          if (*arg)
          if (*arg)
              error (_("Garbage %s follows condition"), arg);
              error (_("Garbage %s follows condition"), arg);
        }
        }
    }
    }
 
 
  if (addr_string)
  if (addr_string)
    b->addr_string = addr_string;
    b->addr_string = addr_string;
  else
  else
    /* addr_string has to be used or breakpoint_re_set will delete
    /* addr_string has to be used or breakpoint_re_set will delete
       me.  */
       me.  */
    b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address));
    b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address));
 
 
  mention (b);
  mention (b);
}
}
 
 
/* Remove element at INDEX_TO_REMOVE from SAL, shifting other
/* Remove element at INDEX_TO_REMOVE from SAL, shifting other
   elements to fill the void space.  */
   elements to fill the void space.  */
static void remove_sal (struct symtabs_and_lines *sal, int index_to_remove)
static void remove_sal (struct symtabs_and_lines *sal, int index_to_remove)
{
{
  int i = index_to_remove+1;
  int i = index_to_remove+1;
  int last_index = sal->nelts-1;
  int last_index = sal->nelts-1;
 
 
  for (;i <= last_index; ++i)
  for (;i <= last_index; ++i)
    sal->sals[i-1] = sal->sals[i];
    sal->sals[i-1] = sal->sals[i];
 
 
  --(sal->nelts);
  --(sal->nelts);
}
}
 
 
/* If appropriate, obtains all sals that correspond
/* If appropriate, obtains all sals that correspond
   to the same file and line as SAL.  This is done
   to the same file and line as SAL.  This is done
   only if SAL does not have explicit PC and has
   only if SAL does not have explicit PC and has
   line and file information.  If we got just a single
   line and file information.  If we got just a single
   expanded sal, return the original.
   expanded sal, return the original.
 
 
   Otherwise, if SAL.explicit_line is not set, filter out
   Otherwise, if SAL.explicit_line is not set, filter out
   all sals for which the name of enclosing function
   all sals for which the name of enclosing function
   is different from SAL. This makes sure that if we have
   is different from SAL. This makes sure that if we have
   breakpoint originally set in template instantiation, say
   breakpoint originally set in template instantiation, say
   foo<int>(), we won't expand SAL to locations at the same
   foo<int>(), we won't expand SAL to locations at the same
   line in all existing instantiations of 'foo'.
   line in all existing instantiations of 'foo'.
 
 
*/
*/
struct symtabs_and_lines
struct symtabs_and_lines
expand_line_sal_maybe (struct symtab_and_line sal)
expand_line_sal_maybe (struct symtab_and_line sal)
{
{
  struct symtabs_and_lines expanded;
  struct symtabs_and_lines expanded;
  CORE_ADDR original_pc = sal.pc;
  CORE_ADDR original_pc = sal.pc;
  char *original_function = NULL;
  char *original_function = NULL;
  int found;
  int found;
  int i;
  int i;
 
 
  /* If we have explicit pc, don't expand.
  /* If we have explicit pc, don't expand.
     If we have no line number, we can't expand.  */
     If we have no line number, we can't expand.  */
  if (sal.explicit_pc || sal.line == 0 || sal.symtab == NULL)
  if (sal.explicit_pc || sal.line == 0 || sal.symtab == NULL)
    {
    {
      expanded.nelts = 1;
      expanded.nelts = 1;
      expanded.sals = xmalloc (sizeof (struct symtab_and_line));
      expanded.sals = xmalloc (sizeof (struct symtab_and_line));
      expanded.sals[0] = sal;
      expanded.sals[0] = sal;
      return expanded;
      return expanded;
    }
    }
 
 
  sal.pc = 0;
  sal.pc = 0;
  find_pc_partial_function (original_pc, &original_function, NULL, NULL);
  find_pc_partial_function (original_pc, &original_function, NULL, NULL);
 
 
  expanded = expand_line_sal (sal);
  expanded = expand_line_sal (sal);
  if (expanded.nelts == 1)
  if (expanded.nelts == 1)
    {
    {
      /* We had one sal, we got one sal.  Without futher
      /* We had one sal, we got one sal.  Without futher
         processing, just return the original sal.  */
         processing, just return the original sal.  */
      xfree (expanded.sals);
      xfree (expanded.sals);
      expanded.nelts = 1;
      expanded.nelts = 1;
      expanded.sals = xmalloc (sizeof (struct symtab_and_line));
      expanded.sals = xmalloc (sizeof (struct symtab_and_line));
      sal.pc = original_pc;
      sal.pc = original_pc;
      expanded.sals[0] = sal;
      expanded.sals[0] = sal;
      return expanded;
      return expanded;
    }
    }
 
 
  if (!sal.explicit_line)
  if (!sal.explicit_line)
    {
    {
      CORE_ADDR func_addr, func_end;
      CORE_ADDR func_addr, func_end;
      for (i = 0; i < expanded.nelts; ++i)
      for (i = 0; i < expanded.nelts; ++i)
        {
        {
          CORE_ADDR pc = expanded.sals[i].pc;
          CORE_ADDR pc = expanded.sals[i].pc;
          char *this_function;
          char *this_function;
          if (find_pc_partial_function (pc, &this_function,
          if (find_pc_partial_function (pc, &this_function,
                                        &func_addr, &func_end))
                                        &func_addr, &func_end))
            {
            {
              if (this_function &&
              if (this_function &&
                  strcmp (this_function, original_function) != 0)
                  strcmp (this_function, original_function) != 0)
                {
                {
                  remove_sal (&expanded, i);
                  remove_sal (&expanded, i);
                  --i;
                  --i;
                }
                }
              else if (func_addr == pc)
              else if (func_addr == pc)
                {
                {
                  /* We're at beginning of a function, and should
                  /* We're at beginning of a function, and should
                     skip prologue.  */
                     skip prologue.  */
                  struct symbol *sym = find_pc_function (pc);
                  struct symbol *sym = find_pc_function (pc);
                  if (sym)
                  if (sym)
                    expanded.sals[i] = find_function_start_sal (sym, 1);
                    expanded.sals[i] = find_function_start_sal (sym, 1);
                  else
                  else
                    expanded.sals[i].pc
                    expanded.sals[i].pc
                      = gdbarch_skip_prologue (current_gdbarch, pc);
                      = gdbarch_skip_prologue (current_gdbarch, pc);
                }
                }
            }
            }
        }
        }
    }
    }
 
 
 
 
  if (expanded.nelts <= 1)
  if (expanded.nelts <= 1)
    {
    {
      /* This is un ugly workaround. If we get zero
      /* This is un ugly workaround. If we get zero
       expanded sals then something is really wrong.
       expanded sals then something is really wrong.
      Fix that by returnign the original sal. */
      Fix that by returnign the original sal. */
      xfree (expanded.sals);
      xfree (expanded.sals);
      expanded.nelts = 1;
      expanded.nelts = 1;
      expanded.sals = xmalloc (sizeof (struct symtab_and_line));
      expanded.sals = xmalloc (sizeof (struct symtab_and_line));
      sal.pc = original_pc;
      sal.pc = original_pc;
      expanded.sals[0] = sal;
      expanded.sals[0] = sal;
      return expanded;
      return expanded;
    }
    }
 
 
  if (original_pc)
  if (original_pc)
    {
    {
      found = 0;
      found = 0;
      for (i = 0; i < expanded.nelts; ++i)
      for (i = 0; i < expanded.nelts; ++i)
        if (expanded.sals[i].pc == original_pc)
        if (expanded.sals[i].pc == original_pc)
          {
          {
            found = 1;
            found = 1;
            break;
            break;
          }
          }
      gdb_assert (found);
      gdb_assert (found);
    }
    }
 
 
  return expanded;
  return expanded;
}
}
 
 
/* Add SALS.nelts breakpoints to the breakpoint table.  For each
/* Add SALS.nelts breakpoints to the breakpoint table.  For each
   SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
   SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
   value.  COND_STRING, if not NULL, specified the condition to be
   value.  COND_STRING, if not NULL, specified the condition to be
   used for all breakpoints.  Essentially the only case where
   used for all breakpoints.  Essentially the only case where
   SALS.nelts is not 1 is when we set a breakpoint on an overloaded
   SALS.nelts is not 1 is when we set a breakpoint on an overloaded
   function.  In that case, it's still not possible to specify
   function.  In that case, it's still not possible to specify
   separate conditions for different overloaded functions, so
   separate conditions for different overloaded functions, so
   we take just a single condition string.
   we take just a single condition string.
 
 
   NOTE: If the function succeeds, the caller is expected to cleanup
   NOTE: If the function succeeds, the caller is expected to cleanup
   the arrays ADDR_STRING, COND_STRING, and SALS (but not the
   the arrays ADDR_STRING, COND_STRING, and SALS (but not the
   array contents).  If the function fails (error() is called), the
   array contents).  If the function fails (error() is called), the
   caller is expected to cleanups both the ADDR_STRING, COND_STRING,
   caller is expected to cleanups both the ADDR_STRING, COND_STRING,
   COND and SALS arrays and each of those arrays contents. */
   COND and SALS arrays and each of those arrays contents. */
 
 
static void
static void
create_breakpoints (struct symtabs_and_lines sals, char **addr_string,
create_breakpoints (struct symtabs_and_lines sals, char **addr_string,
                    char *cond_string,
                    char *cond_string,
                    enum bptype type, enum bpdisp disposition,
                    enum bptype type, enum bpdisp disposition,
                    int thread, int ignore_count, int from_tty)
                    int thread, int ignore_count, int from_tty)
{
{
  int i;
  int i;
  for (i = 0; i < sals.nelts; ++i)
  for (i = 0; i < sals.nelts; ++i)
    {
    {
      struct symtabs_and_lines expanded =
      struct symtabs_and_lines expanded =
        expand_line_sal_maybe (sals.sals[i]);
        expand_line_sal_maybe (sals.sals[i]);
 
 
      create_breakpoint (expanded, addr_string[i],
      create_breakpoint (expanded, addr_string[i],
                         cond_string, type, disposition,
                         cond_string, type, disposition,
                         thread, ignore_count, from_tty);
                         thread, ignore_count, from_tty);
    }
    }
}
}
 
 
/* Parse ARG which is assumed to be a SAL specification possibly
/* Parse ARG which is assumed to be a SAL specification possibly
   followed by conditionals.  On return, SALS contains an array of SAL
   followed by conditionals.  On return, SALS contains an array of SAL
   addresses found. ADDR_STRING contains a vector of (canonical)
   addresses found. ADDR_STRING contains a vector of (canonical)
   address strings. ARG points to the end of the SAL. */
   address strings. ARG points to the end of the SAL. */
 
 
static void
static void
parse_breakpoint_sals (char **address,
parse_breakpoint_sals (char **address,
                       struct symtabs_and_lines *sals,
                       struct symtabs_and_lines *sals,
                       char ***addr_string,
                       char ***addr_string,
                       int *not_found_ptr)
                       int *not_found_ptr)
{
{
  char *addr_start = *address;
  char *addr_start = *address;
  *addr_string = NULL;
  *addr_string = NULL;
  /* If no arg given, or if first arg is 'if ', use the default
  /* If no arg given, or if first arg is 'if ', use the default
     breakpoint. */
     breakpoint. */
  if ((*address) == NULL
  if ((*address) == NULL
      || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
      || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
    {
    {
      if (default_breakpoint_valid)
      if (default_breakpoint_valid)
        {
        {
          struct symtab_and_line sal;
          struct symtab_and_line sal;
          init_sal (&sal);              /* initialize to zeroes */
          init_sal (&sal);              /* initialize to zeroes */
          sals->sals = (struct symtab_and_line *)
          sals->sals = (struct symtab_and_line *)
            xmalloc (sizeof (struct symtab_and_line));
            xmalloc (sizeof (struct symtab_and_line));
          sal.pc = default_breakpoint_address;
          sal.pc = default_breakpoint_address;
          sal.line = default_breakpoint_line;
          sal.line = default_breakpoint_line;
          sal.symtab = default_breakpoint_symtab;
          sal.symtab = default_breakpoint_symtab;
          sal.section = find_pc_overlay (sal.pc);
          sal.section = find_pc_overlay (sal.pc);
          sals->sals[0] = sal;
          sals->sals[0] = sal;
          sals->nelts = 1;
          sals->nelts = 1;
        }
        }
      else
      else
        error (_("No default breakpoint address now."));
        error (_("No default breakpoint address now."));
    }
    }
  else
  else
    {
    {
      /* Force almost all breakpoints to be in terms of the
      /* Force almost all breakpoints to be in terms of the
         current_source_symtab (which is decode_line_1's default).  This
         current_source_symtab (which is decode_line_1's default).  This
         should produce the results we want almost all of the time while
         should produce the results we want almost all of the time while
         leaving default_breakpoint_* alone.
         leaving default_breakpoint_* alone.
         ObjC: However, don't match an Objective-C method name which
         ObjC: However, don't match an Objective-C method name which
         may have a '+' or '-' succeeded by a '[' */
         may have a '+' or '-' succeeded by a '[' */
 
 
      struct symtab_and_line cursal = get_current_source_symtab_and_line ();
      struct symtab_and_line cursal = get_current_source_symtab_and_line ();
 
 
      if (default_breakpoint_valid
      if (default_breakpoint_valid
          && (!cursal.symtab
          && (!cursal.symtab
              || ((strchr ("+-", (*address)[0]) != NULL)
              || ((strchr ("+-", (*address)[0]) != NULL)
                  && ((*address)[1] != '['))))
                  && ((*address)[1] != '['))))
        *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
        *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
                               default_breakpoint_line, addr_string,
                               default_breakpoint_line, addr_string,
                               not_found_ptr);
                               not_found_ptr);
      else
      else
        *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0,
        *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0,
                               addr_string, not_found_ptr);
                               addr_string, not_found_ptr);
    }
    }
  /* For any SAL that didn't have a canonical string, fill one in. */
  /* For any SAL that didn't have a canonical string, fill one in. */
  if (sals->nelts > 0 && *addr_string == NULL)
  if (sals->nelts > 0 && *addr_string == NULL)
    *addr_string = xcalloc (sals->nelts, sizeof (char **));
    *addr_string = xcalloc (sals->nelts, sizeof (char **));
  if (addr_start != (*address))
  if (addr_start != (*address))
    {
    {
      int i;
      int i;
      for (i = 0; i < sals->nelts; i++)
      for (i = 0; i < sals->nelts; i++)
        {
        {
          /* Add the string if not present. */
          /* Add the string if not present. */
          if ((*addr_string)[i] == NULL)
          if ((*addr_string)[i] == NULL)
            (*addr_string)[i] = savestring (addr_start, (*address) - addr_start);
            (*addr_string)[i] = savestring (addr_start, (*address) - addr_start);
        }
        }
    }
    }
}
}
 
 
 
 
/* Convert each SAL into a real PC.  Verify that the PC can be
/* Convert each SAL into a real PC.  Verify that the PC can be
   inserted as a breakpoint.  If it can't throw an error. */
   inserted as a breakpoint.  If it can't throw an error. */
 
 
static void
static void
breakpoint_sals_to_pc (struct symtabs_and_lines *sals,
breakpoint_sals_to_pc (struct symtabs_and_lines *sals,
                       char *address)
                       char *address)
{
{
  int i;
  int i;
  for (i = 0; i < sals->nelts; i++)
  for (i = 0; i < sals->nelts; i++)
    resolve_sal_pc (&sals->sals[i]);
    resolve_sal_pc (&sals->sals[i]);
}
}
 
 
static void
static void
do_captured_parse_breakpoint (struct ui_out *ui, void *data)
do_captured_parse_breakpoint (struct ui_out *ui, void *data)
{
{
  struct captured_parse_breakpoint_args *args = data;
  struct captured_parse_breakpoint_args *args = data;
 
 
  parse_breakpoint_sals (args->arg_p, args->sals_p, args->addr_string_p,
  parse_breakpoint_sals (args->arg_p, args->sals_p, args->addr_string_p,
                         args->not_found_ptr);
                         args->not_found_ptr);
}
}
 
 
/* Given TOK, a string specification of condition and thread, as
/* Given TOK, a string specification of condition and thread, as
   accepted by the 'break' command, extract the condition
   accepted by the 'break' command, extract the condition
   string and thread number and set *COND_STRING and *THREAD.
   string and thread number and set *COND_STRING and *THREAD.
   PC identifies the context at which the condition should be parsed.
   PC identifies the context at which the condition should be parsed.
   If no condition is found, *COND_STRING is set to NULL.
   If no condition is found, *COND_STRING is set to NULL.
   If no thread is found, *THREAD is set to -1.  */
   If no thread is found, *THREAD is set to -1.  */
static void
static void
find_condition_and_thread (char *tok, CORE_ADDR pc,
find_condition_and_thread (char *tok, CORE_ADDR pc,
                           char **cond_string, int *thread)
                           char **cond_string, int *thread)
{
{
  *cond_string = NULL;
  *cond_string = NULL;
  *thread = -1;
  *thread = -1;
  while (tok && *tok)
  while (tok && *tok)
    {
    {
      char *end_tok;
      char *end_tok;
      int toklen;
      int toklen;
      char *cond_start = NULL;
      char *cond_start = NULL;
      char *cond_end = NULL;
      char *cond_end = NULL;
      while (*tok == ' ' || *tok == '\t')
      while (*tok == ' ' || *tok == '\t')
        tok++;
        tok++;
 
 
      end_tok = tok;
      end_tok = tok;
 
 
      while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
      while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
        end_tok++;
        end_tok++;
 
 
      toklen = end_tok - tok;
      toklen = end_tok - tok;
 
 
      if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
      if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
        {
        {
          tok = cond_start = end_tok + 1;
          tok = cond_start = end_tok + 1;
          parse_exp_1 (&tok, block_for_pc (pc), 0);
          parse_exp_1 (&tok, block_for_pc (pc), 0);
          cond_end = tok;
          cond_end = tok;
          *cond_string = savestring (cond_start,
          *cond_string = savestring (cond_start,
                                     cond_end - cond_start);
                                     cond_end - cond_start);
        }
        }
      else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
      else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
        {
        {
          char *tmptok;
          char *tmptok;
 
 
          tok = end_tok + 1;
          tok = end_tok + 1;
          tmptok = tok;
          tmptok = tok;
          *thread = strtol (tok, &tok, 0);
          *thread = strtol (tok, &tok, 0);
          if (tok == tmptok)
          if (tok == tmptok)
            error (_("Junk after thread keyword."));
            error (_("Junk after thread keyword."));
          if (!valid_thread_id (*thread))
          if (!valid_thread_id (*thread))
            error (_("Unknown thread %d."), *thread);
            error (_("Unknown thread %d."), *thread);
        }
        }
      else
      else
        error (_("Junk at end of arguments."));
        error (_("Junk at end of arguments."));
    }
    }
}
}
 
 
/* Set a breakpoint.  This function is shared between
/* Set a breakpoint.  This function is shared between
   CLI and MI functions for setting a breakpoint.
   CLI and MI functions for setting a breakpoint.
   This function has two major modes of operations,
   This function has two major modes of operations,
   selected by the PARSE_CONDITION_AND_THREAD parameter.
   selected by the PARSE_CONDITION_AND_THREAD parameter.
   If non-zero, the function will parse arg, extracting
   If non-zero, the function will parse arg, extracting
   breakpoint location, address and thread. Otherwise,
   breakpoint location, address and thread. Otherwise,
   ARG is just the location of breakpoint, with condition
   ARG is just the location of breakpoint, with condition
   and thread specified by the COND_STRING and THREAD
   and thread specified by the COND_STRING and THREAD
   parameters.  */
   parameters.  */
 
 
static void
static void
break_command_really (char *arg, char *cond_string, int thread,
break_command_really (char *arg, char *cond_string, int thread,
                      int parse_condition_and_thread,
                      int parse_condition_and_thread,
                      int tempflag, int hardwareflag,
                      int tempflag, int hardwareflag,
                      int ignore_count,
                      int ignore_count,
                      enum auto_boolean pending_break_support,
                      enum auto_boolean pending_break_support,
                      int from_tty)
                      int from_tty)
{
{
  struct gdb_exception e;
  struct gdb_exception e;
  struct symtabs_and_lines sals;
  struct symtabs_and_lines sals;
  struct symtab_and_line pending_sal;
  struct symtab_and_line pending_sal;
  char *copy_arg;
  char *copy_arg;
  char *err_msg;
  char *err_msg;
  char *addr_start = arg;
  char *addr_start = arg;
  char **addr_string;
  char **addr_string;
  struct cleanup *old_chain;
  struct cleanup *old_chain;
  struct cleanup *breakpoint_chain = NULL;
  struct cleanup *breakpoint_chain = NULL;
  struct captured_parse_breakpoint_args parse_args;
  struct captured_parse_breakpoint_args parse_args;
  int i;
  int i;
  int pending = 0;
  int pending = 0;
  int not_found = 0;
  int not_found = 0;
 
 
  sals.sals = NULL;
  sals.sals = NULL;
  sals.nelts = 0;
  sals.nelts = 0;
  addr_string = NULL;
  addr_string = NULL;
 
 
  parse_args.arg_p = &arg;
  parse_args.arg_p = &arg;
  parse_args.sals_p = &sals;
  parse_args.sals_p = &sals;
  parse_args.addr_string_p = &addr_string;
  parse_args.addr_string_p = &addr_string;
  parse_args.not_found_ptr = &not_found;
  parse_args.not_found_ptr = &not_found;
 
 
  e = catch_exception (uiout, do_captured_parse_breakpoint,
  e = catch_exception (uiout, do_captured_parse_breakpoint,
                       &parse_args, RETURN_MASK_ALL);
                       &parse_args, RETURN_MASK_ALL);
 
 
  /* If caller is interested in rc value from parse, set value.  */
  /* If caller is interested in rc value from parse, set value.  */
  switch (e.reason)
  switch (e.reason)
    {
    {
    case RETURN_QUIT:
    case RETURN_QUIT:
      throw_exception (e);
      throw_exception (e);
    case RETURN_ERROR:
    case RETURN_ERROR:
      switch (e.error)
      switch (e.error)
        {
        {
        case NOT_FOUND_ERROR:
        case NOT_FOUND_ERROR:
 
 
          /* If pending breakpoint support is turned off, throw
          /* If pending breakpoint support is turned off, throw
             error.  */
             error.  */
 
 
          if (pending_break_support == AUTO_BOOLEAN_FALSE)
          if (pending_break_support == AUTO_BOOLEAN_FALSE)
            throw_exception (e);
            throw_exception (e);
 
 
          exception_print (gdb_stderr, e);
          exception_print (gdb_stderr, e);
 
 
          /* If pending breakpoint support is auto query and the user
          /* If pending breakpoint support is auto query and the user
             selects no, then simply return the error code.  */
             selects no, then simply return the error code.  */
          if (pending_break_support == AUTO_BOOLEAN_AUTO &&
          if (pending_break_support == AUTO_BOOLEAN_AUTO &&
              !nquery ("Make breakpoint pending on future shared library load? "))
              !nquery ("Make breakpoint pending on future shared library load? "))
            return;
            return;
 
 
          /* At this point, either the user was queried about setting
          /* At this point, either the user was queried about setting
             a pending breakpoint and selected yes, or pending
             a pending breakpoint and selected yes, or pending
             breakpoint behavior is on and thus a pending breakpoint
             breakpoint behavior is on and thus a pending breakpoint
             is defaulted on behalf of the user.  */
             is defaulted on behalf of the user.  */
          copy_arg = xstrdup (addr_start);
          copy_arg = xstrdup (addr_start);
          addr_string = &copy_arg;
          addr_string = &copy_arg;
          sals.nelts = 1;
          sals.nelts = 1;
          sals.sals = &pending_sal;
          sals.sals = &pending_sal;
          pending_sal.pc = 0;
          pending_sal.pc = 0;
          pending = 1;
          pending = 1;
          break;
          break;
        default:
        default:
          throw_exception (e);
          throw_exception (e);
        }
        }
    default:
    default:
      if (!sals.nelts)
      if (!sals.nelts)
        return;
        return;
    }
    }
 
 
  /* Create a chain of things that always need to be cleaned up. */
  /* Create a chain of things that always need to be cleaned up. */
  old_chain = make_cleanup (null_cleanup, 0);
  old_chain = make_cleanup (null_cleanup, 0);
 
 
  if (!pending)
  if (!pending)
    {
    {
      /* Make sure that all storage allocated to SALS gets freed.  */
      /* Make sure that all storage allocated to SALS gets freed.  */
      make_cleanup (xfree, sals.sals);
      make_cleanup (xfree, sals.sals);
 
 
      /* Cleanup the addr_string array but not its contents. */
      /* Cleanup the addr_string array but not its contents. */
      make_cleanup (xfree, addr_string);
      make_cleanup (xfree, addr_string);
    }
    }
 
 
  /* ----------------------------- SNIP -----------------------------
  /* ----------------------------- SNIP -----------------------------
     Anything added to the cleanup chain beyond this point is assumed
     Anything added to the cleanup chain beyond this point is assumed
     to be part of a breakpoint.  If the breakpoint create succeeds
     to be part of a breakpoint.  If the breakpoint create succeeds
     then the memory is not reclaimed. */
     then the memory is not reclaimed. */
  breakpoint_chain = make_cleanup (null_cleanup, 0);
  breakpoint_chain = make_cleanup (null_cleanup, 0);
 
 
  /* Mark the contents of the addr_string for cleanup.  These go on
  /* Mark the contents of the addr_string for cleanup.  These go on
     the breakpoint_chain and only occure if the breakpoint create
     the breakpoint_chain and only occure if the breakpoint create
     fails. */
     fails. */
  for (i = 0; i < sals.nelts; i++)
  for (i = 0; i < sals.nelts; i++)
    {
    {
      if (addr_string[i] != NULL)
      if (addr_string[i] != NULL)
        make_cleanup (xfree, addr_string[i]);
        make_cleanup (xfree, addr_string[i]);
    }
    }
 
 
  /* Resolve all line numbers to PC's and verify that the addresses
  /* Resolve all line numbers to PC's and verify that the addresses
     are ok for the target.  */
     are ok for the target.  */
  if (!pending)
  if (!pending)
    breakpoint_sals_to_pc (&sals, addr_start);
    breakpoint_sals_to_pc (&sals, addr_start);
 
 
  /* Verify that condition can be parsed, before setting any
  /* Verify that condition can be parsed, before setting any
     breakpoints.  Allocate a separate condition expression for each
     breakpoints.  Allocate a separate condition expression for each
     breakpoint. */
     breakpoint. */
  if (!pending)
  if (!pending)
    {
    {
        if (parse_condition_and_thread)
        if (parse_condition_and_thread)
        {
        {
            /* Here we only parse 'arg' to separate condition
            /* Here we only parse 'arg' to separate condition
               from thread number, so parsing in context of first
               from thread number, so parsing in context of first
               sal is OK.  When setting the breakpoint we'll
               sal is OK.  When setting the breakpoint we'll
               re-parse it in context of each sal.  */
               re-parse it in context of each sal.  */
            cond_string = NULL;
            cond_string = NULL;
            thread = -1;
            thread = -1;
            find_condition_and_thread (arg, sals.sals[0].pc, &cond_string, &thread);
            find_condition_and_thread (arg, sals.sals[0].pc, &cond_string, &thread);
            if (cond_string)
            if (cond_string)
                make_cleanup (xfree, cond_string);
                make_cleanup (xfree, cond_string);
        }
        }
        else
        else
        {
        {
            /* Create a private copy of condition string.  */
            /* Create a private copy of condition string.  */
            if (cond_string)
            if (cond_string)
            {
            {
                cond_string = xstrdup (cond_string);
                cond_string = xstrdup (cond_string);
                make_cleanup (xfree, cond_string);
                make_cleanup (xfree, cond_string);
            }
            }
        }
        }
      create_breakpoints (sals, addr_string, cond_string,
      create_breakpoints (sals, addr_string, cond_string,
                          hardwareflag ? bp_hardware_breakpoint
                          hardwareflag ? bp_hardware_breakpoint
                          : bp_breakpoint,
                          : bp_breakpoint,
                          tempflag ? disp_del : disp_donttouch,
                          tempflag ? disp_del : disp_donttouch,
                          thread, ignore_count, from_tty);
                          thread, ignore_count, from_tty);
    }
    }
  else
  else
    {
    {
      struct symtab_and_line sal = {0};
      struct symtab_and_line sal = {0};
      struct breakpoint *b;
      struct breakpoint *b;
 
 
      make_cleanup (xfree, copy_arg);
      make_cleanup (xfree, copy_arg);
 
 
      b = set_raw_breakpoint_without_location (hardwareflag
      b = set_raw_breakpoint_without_location (hardwareflag
                                               ? bp_hardware_breakpoint
                                               ? bp_hardware_breakpoint
                                               : bp_breakpoint);
                                               : bp_breakpoint);
      set_breakpoint_count (breakpoint_count + 1);
      set_breakpoint_count (breakpoint_count + 1);
      b->number = breakpoint_count;
      b->number = breakpoint_count;
      b->thread = -1;
      b->thread = -1;
      b->addr_string = addr_string[0];
      b->addr_string = addr_string[0];
      b->cond_string = NULL;
      b->cond_string = NULL;
      b->ignore_count = ignore_count;
      b->ignore_count = ignore_count;
      b->disposition = tempflag ? disp_del : disp_donttouch;
      b->disposition = tempflag ? disp_del : disp_donttouch;
      b->condition_not_parsed = 1;
      b->condition_not_parsed = 1;
      mention (b);
      mention (b);
    }
    }
 
 
  if (sals.nelts > 1)
  if (sals.nelts > 1)
    warning (_("Multiple breakpoints were set.\n"
    warning (_("Multiple breakpoints were set.\n"
               "Use the \"delete\" command to delete unwanted breakpoints."));
               "Use the \"delete\" command to delete unwanted breakpoints."));
  /* That's it. Discard the cleanups for data inserted into the
  /* That's it. Discard the cleanups for data inserted into the
     breakpoint. */
     breakpoint. */
  discard_cleanups (breakpoint_chain);
  discard_cleanups (breakpoint_chain);
  /* But cleanup everything else. */
  /* But cleanup everything else. */
  do_cleanups (old_chain);
  do_cleanups (old_chain);
}
}
 
 
/* Set a breakpoint.
/* Set a breakpoint.
   ARG is a string describing breakpoint address,
   ARG is a string describing breakpoint address,
   condition, and thread.
   condition, and thread.
   FLAG specifies if a breakpoint is hardware on,
   FLAG specifies if a breakpoint is hardware on,
   and if breakpoint is temporary, using BP_HARDWARE_FLAG
   and if breakpoint is temporary, using BP_HARDWARE_FLAG
   and BP_TEMPFLAG.  */
   and BP_TEMPFLAG.  */
 
 
static void
static void
break_command_1 (char *arg, int flag, int from_tty)
break_command_1 (char *arg, int flag, int from_tty)
{
{
  int hardwareflag = flag & BP_HARDWAREFLAG;
  int hardwareflag = flag & BP_HARDWAREFLAG;
  int tempflag = flag & BP_TEMPFLAG;
  int tempflag = flag & BP_TEMPFLAG;
 
 
  break_command_really (arg,
  break_command_really (arg,
                        NULL, 0, 1 /* parse arg */,
                        NULL, 0, 1 /* parse arg */,
                        tempflag, hardwareflag,
                        tempflag, hardwareflag,
                        0 /* Ignore count */,
                        0 /* Ignore count */,
                        pending_break_support, from_tty);
                        pending_break_support, from_tty);
}
}
 
 
 
 
void
void
set_breakpoint (char *address, char *condition,
set_breakpoint (char *address, char *condition,
                int hardwareflag, int tempflag,
                int hardwareflag, int tempflag,
                int thread, int ignore_count,
                int thread, int ignore_count,
                int pending)
                int pending)
{
{
  break_command_really (address, condition, thread,
  break_command_really (address, condition, thread,
                        0 /* condition and thread are valid.  */,
                        0 /* condition and thread are valid.  */,
                        tempflag, hardwareflag,
                        tempflag, hardwareflag,
                        ignore_count,
                        ignore_count,
                        pending
                        pending
                        ? AUTO_BOOLEAN_TRUE : AUTO_BOOLEAN_FALSE,
                        ? AUTO_BOOLEAN_TRUE : AUTO_BOOLEAN_FALSE,
                        0);
                        0);
}
}
 
 
 
 
/* Helper function for break_command_1 and disassemble_command.  */
/* Helper function for break_command_1 and disassemble_command.  */
 
 
void
void
resolve_sal_pc (struct symtab_and_line *sal)
resolve_sal_pc (struct symtab_and_line *sal)
{
{
  CORE_ADDR pc;
  CORE_ADDR pc;
 
 
  if (sal->pc == 0 && sal->symtab != NULL)
  if (sal->pc == 0 && sal->symtab != NULL)
    {
    {
      if (!find_line_pc (sal->symtab, sal->line, &pc))
      if (!find_line_pc (sal->symtab, sal->line, &pc))
        error (_("No line %d in file \"%s\"."),
        error (_("No line %d in file \"%s\"."),
               sal->line, sal->symtab->filename);
               sal->line, sal->symtab->filename);
      sal->pc = pc;
      sal->pc = pc;
    }
    }
 
 
  if (sal->section == 0 && sal->symtab != NULL)
  if (sal->section == 0 && sal->symtab != NULL)
    {
    {
      struct blockvector *bv;
      struct blockvector *bv;
      struct block *b;
      struct block *b;
      struct symbol *sym;
      struct symbol *sym;
 
 
      bv = blockvector_for_pc_sect (sal->pc, 0, &b, sal->symtab);
      bv = blockvector_for_pc_sect (sal->pc, 0, &b, sal->symtab);
      if (bv != NULL)
      if (bv != NULL)
        {
        {
          sym = block_function (b);
          sym = block_function (b);
          if (sym != NULL)
          if (sym != NULL)
            {
            {
              fixup_symbol_section (sym, sal->symtab->objfile);
              fixup_symbol_section (sym, sal->symtab->objfile);
              sal->section = SYMBOL_BFD_SECTION (sym);
              sal->section = SYMBOL_BFD_SECTION (sym);
            }
            }
          else
          else
            {
            {
              /* It really is worthwhile to have the section, so we'll just
              /* It really is worthwhile to have the section, so we'll just
                 have to look harder. This case can be executed if we have
                 have to look harder. This case can be executed if we have
                 line numbers but no functions (as can happen in assembly
                 line numbers but no functions (as can happen in assembly
                 source).  */
                 source).  */
 
 
              struct minimal_symbol *msym;
              struct minimal_symbol *msym;
 
 
              msym = lookup_minimal_symbol_by_pc (sal->pc);
              msym = lookup_minimal_symbol_by_pc (sal->pc);
              if (msym)
              if (msym)
                sal->section = SYMBOL_BFD_SECTION (msym);
                sal->section = SYMBOL_BFD_SECTION (msym);
            }
            }
        }
        }
    }
    }
}
}
 
 
void
void
break_command (char *arg, int from_tty)
break_command (char *arg, int from_tty)
{
{
  break_command_1 (arg, 0, from_tty);
  break_command_1 (arg, 0, from_tty);
}
}
 
 
void
void
tbreak_command (char *arg, int from_tty)
tbreak_command (char *arg, int from_tty)
{
{
  break_command_1 (arg, BP_TEMPFLAG, from_tty);
  break_command_1 (arg, BP_TEMPFLAG, from_tty);
}
}
 
 
static void
static void
hbreak_command (char *arg, int from_tty)
hbreak_command (char *arg, int from_tty)
{
{
  break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
  break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
}
}
 
 
static void
static void
thbreak_command (char *arg, int from_tty)
thbreak_command (char *arg, int from_tty)
{
{
  break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
  break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
}
}
 
 
static void
static void
stop_command (char *arg, int from_tty)
stop_command (char *arg, int from_tty)
{
{
  printf_filtered (_("Specify the type of breakpoint to set.\n\
  printf_filtered (_("Specify the type of breakpoint to set.\n\
Usage: stop in <function | address>\n\
Usage: stop in <function | address>\n\
       stop at <line>\n"));
       stop at <line>\n"));
}
}
 
 
static void
static void
stopin_command (char *arg, int from_tty)
stopin_command (char *arg, int from_tty)
{
{
  int badInput = 0;
  int badInput = 0;
 
 
  if (arg == (char *) NULL)
  if (arg == (char *) NULL)
    badInput = 1;
    badInput = 1;
  else if (*arg != '*')
  else if (*arg != '*')
    {
    {
      char *argptr = arg;
      char *argptr = arg;
      int hasColon = 0;
      int hasColon = 0;
 
 
      /* look for a ':'.  If this is a line number specification, then
      /* look for a ':'.  If this is a line number specification, then
         say it is bad, otherwise, it should be an address or
         say it is bad, otherwise, it should be an address or
         function/method name */
         function/method name */
      while (*argptr && !hasColon)
      while (*argptr && !hasColon)
        {
        {
          hasColon = (*argptr == ':');
          hasColon = (*argptr == ':');
          argptr++;
          argptr++;
        }
        }
 
 
      if (hasColon)
      if (hasColon)
        badInput = (*argptr != ':');    /* Not a class::method */
        badInput = (*argptr != ':');    /* Not a class::method */
      else
      else
        badInput = isdigit (*arg);      /* a simple line number */
        badInput = isdigit (*arg);      /* a simple line number */
    }
    }
 
 
  if (badInput)
  if (badInput)
    printf_filtered (_("Usage: stop in <function | address>\n"));
    printf_filtered (_("Usage: stop in <function | address>\n"));
  else
  else
    break_command_1 (arg, 0, from_tty);
    break_command_1 (arg, 0, from_tty);
}
}
 
 
static void
static void
stopat_command (char *arg, int from_tty)
stopat_command (char *arg, int from_tty)
{
{
  int badInput = 0;
  int badInput = 0;
 
 
  if (arg == (char *) NULL || *arg == '*')      /* no line number */
  if (arg == (char *) NULL || *arg == '*')      /* no line number */
    badInput = 1;
    badInput = 1;
  else
  else
    {
    {
      char *argptr = arg;
      char *argptr = arg;
      int hasColon = 0;
      int hasColon = 0;
 
 
      /* look for a ':'.  If there is a '::' then get out, otherwise
      /* look for a ':'.  If there is a '::' then get out, otherwise
         it is probably a line number. */
         it is probably a line number. */
      while (*argptr && !hasColon)
      while (*argptr && !hasColon)
        {
        {
          hasColon = (*argptr == ':');
          hasColon = (*argptr == ':');
          argptr++;
          argptr++;
        }
        }
 
 
      if (hasColon)
      if (hasColon)
        badInput = (*argptr == ':');    /* we have class::method */
        badInput = (*argptr == ':');    /* we have class::method */
      else
      else
        badInput = !isdigit (*arg);     /* not a line number */
        badInput = !isdigit (*arg);     /* not a line number */
    }
    }
 
 
  if (badInput)
  if (badInput)
    printf_filtered (_("Usage: stop at <line>\n"));
    printf_filtered (_("Usage: stop at <line>\n"));
  else
  else
    break_command_1 (arg, 0, from_tty);
    break_command_1 (arg, 0, from_tty);
}
}
 
 
/* accessflag:  hw_write:  watch write,
/* accessflag:  hw_write:  watch write,
                hw_read:   watch read,
                hw_read:   watch read,
                hw_access: watch access (read or write) */
                hw_access: watch access (read or write) */
static void
static void
watch_command_1 (char *arg, int accessflag, int from_tty)
watch_command_1 (char *arg, int accessflag, int from_tty)
{
{
  struct breakpoint *b, *scope_breakpoint = NULL;
  struct breakpoint *b, *scope_breakpoint = NULL;
  struct symtab_and_line sal;
  struct symtab_and_line sal;
  struct expression *exp;
  struct expression *exp;
  struct block *exp_valid_block;
  struct block *exp_valid_block;
  struct value *val, *mark;
  struct value *val, *mark;
  struct frame_info *frame;
  struct frame_info *frame;
  struct frame_info *prev_frame = NULL;
  struct frame_info *prev_frame = NULL;
  char *exp_start = NULL;
  char *exp_start = NULL;
  char *exp_end = NULL;
  char *exp_end = NULL;
  char *tok, *id_tok_start, *end_tok;
  char *tok, *id_tok_start, *end_tok;
  int toklen;
  int toklen;
  char *cond_start = NULL;
  char *cond_start = NULL;
  char *cond_end = NULL;
  char *cond_end = NULL;
  struct expression *cond = NULL;
  struct expression *cond = NULL;
  int i, other_type_used, target_resources_ok = 0;
  int i, other_type_used, target_resources_ok = 0;
  enum bptype bp_type;
  enum bptype bp_type;
  int mem_cnt = 0;
  int mem_cnt = 0;
  int thread = -1;
  int thread = -1;
 
 
  init_sal (&sal);              /* initialize to zeroes */
  init_sal (&sal);              /* initialize to zeroes */
 
 
  /* Make sure that we actually have parameters to parse.  */
  /* Make sure that we actually have parameters to parse.  */
  if (arg != NULL && arg[0] != '\0')
  if (arg != NULL && arg[0] != '\0')
    {
    {
      toklen = strlen (arg); /* Size of argument list.  */
      toklen = strlen (arg); /* Size of argument list.  */
 
 
      /* Points tok to the end of the argument list.  */
      /* Points tok to the end of the argument list.  */
      tok = arg + toklen - 1;
      tok = arg + toklen - 1;
 
 
      /* Go backwards in the parameters list. Skip the last parameter.
      /* Go backwards in the parameters list. Skip the last parameter.
         If we're expecting a 'thread <thread_num>' parameter, this should
         If we're expecting a 'thread <thread_num>' parameter, this should
         be the thread identifier.  */
         be the thread identifier.  */
      while (tok > arg && (*tok == ' ' || *tok == '\t'))
      while (tok > arg && (*tok == ' ' || *tok == '\t'))
        tok--;
        tok--;
      while (tok > arg && (*tok != ' ' && *tok != '\t'))
      while (tok > arg && (*tok != ' ' && *tok != '\t'))
        tok--;
        tok--;
 
 
      /* Points end_tok to the beginning of the last token.  */
      /* Points end_tok to the beginning of the last token.  */
      id_tok_start = tok + 1;
      id_tok_start = tok + 1;
 
 
      /* Go backwards in the parameters list. Skip one more parameter.
      /* Go backwards in the parameters list. Skip one more parameter.
         If we're expecting a 'thread <thread_num>' parameter, we should
         If we're expecting a 'thread <thread_num>' parameter, we should
         reach a "thread" token.  */
         reach a "thread" token.  */
      while (tok > arg && (*tok == ' ' || *tok == '\t'))
      while (tok > arg && (*tok == ' ' || *tok == '\t'))
        tok--;
        tok--;
 
 
      end_tok = tok;
      end_tok = tok;
 
 
      while (tok > arg && (*tok != ' ' && *tok != '\t'))
      while (tok > arg && (*tok != ' ' && *tok != '\t'))
        tok--;
        tok--;
 
 
      /* Move the pointer forward to skip the whitespace and
      /* Move the pointer forward to skip the whitespace and
         calculate the length of the token.  */
         calculate the length of the token.  */
      tok++;
      tok++;
      toklen = end_tok - tok;
      toklen = end_tok - tok;
 
 
      if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
      if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
        {
        {
          /* At this point we've found a "thread" token, which means
          /* At this point we've found a "thread" token, which means
             the user is trying to set a watchpoint that triggers
             the user is trying to set a watchpoint that triggers
             only in a specific thread.  */
             only in a specific thread.  */
          char *endp;
          char *endp;
 
 
          /* Extract the thread ID from the next token.  */
          /* Extract the thread ID from the next token.  */
          thread = strtol (id_tok_start, &endp, 0);
          thread = strtol (id_tok_start, &endp, 0);
 
 
          /* Check if the user provided a valid numeric value for the
          /* Check if the user provided a valid numeric value for the
             thread ID.  */
             thread ID.  */
          if (*endp != ' ' && *endp != '\t' && *endp != '\0')
          if (*endp != ' ' && *endp != '\t' && *endp != '\0')
            error (_("Invalid thread ID specification %s."), id_tok_start);
            error (_("Invalid thread ID specification %s."), id_tok_start);
 
 
          /* Check if the thread actually exists.  */
          /* Check if the thread actually exists.  */
          if (!valid_thread_id (thread))
          if (!valid_thread_id (thread))
            error (_("Unknown thread %d."), thread);
            error (_("Unknown thread %d."), thread);
 
 
          /* Truncate the string and get rid of the thread <thread_num>
          /* Truncate the string and get rid of the thread <thread_num>
             parameter before the parameter list is parsed by the
             parameter before the parameter list is parsed by the
             evaluate_expression() function.  */
             evaluate_expression() function.  */
          *tok = '\0';
          *tok = '\0';
        }
        }
    }
    }
 
 
  /* Parse the rest of the arguments.  */
  /* Parse the rest of the arguments.  */
  innermost_block = NULL;
  innermost_block = NULL;
  exp_start = arg;
  exp_start = arg;
  exp = parse_exp_1 (&arg, 0, 0);
  exp = parse_exp_1 (&arg, 0, 0);
  exp_end = arg;
  exp_end = arg;
  exp_valid_block = innermost_block;
  exp_valid_block = innermost_block;
  mark = value_mark ();
  mark = value_mark ();
  val = evaluate_expression (exp);
  val = evaluate_expression (exp);
  release_value (val);
  release_value (val);
  if (value_lazy (val))
  if (value_lazy (val))
    value_fetch_lazy (val);
    value_fetch_lazy (val);
 
 
  tok = arg;
  tok = arg;
  while (*tok == ' ' || *tok == '\t')
  while (*tok == ' ' || *tok == '\t')
    tok++;
    tok++;
  end_tok = tok;
  end_tok = tok;
 
 
  while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
  while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
    end_tok++;
    end_tok++;
 
 
  toklen = end_tok - tok;
  toklen = end_tok - tok;
  if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
  if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
    {
    {
      tok = cond_start = end_tok + 1;
      tok = cond_start = end_tok + 1;
      cond = parse_exp_1 (&tok, 0, 0);
      cond = parse_exp_1 (&tok, 0, 0);
      cond_end = tok;
      cond_end = tok;
    }
    }
  if (*tok)
  if (*tok)
    error (_("Junk at end of command."));
    error (_("Junk at end of command."));
 
 
  if (accessflag == hw_read)
  if (accessflag == hw_read)
    bp_type = bp_read_watchpoint;
    bp_type = bp_read_watchpoint;
  else if (accessflag == hw_access)
  else if (accessflag == hw_access)
    bp_type = bp_access_watchpoint;
    bp_type = bp_access_watchpoint;
  else
  else
    bp_type = bp_hardware_watchpoint;
    bp_type = bp_hardware_watchpoint;
 
 
  mem_cnt = can_use_hardware_watchpoint (val);
  mem_cnt = can_use_hardware_watchpoint (val);
  if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
  if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
    error (_("Expression cannot be implemented with read/access watchpoint."));
    error (_("Expression cannot be implemented with read/access watchpoint."));
  if (mem_cnt != 0)
  if (mem_cnt != 0)
    {
    {
      i = hw_watchpoint_used_count (bp_type, &other_type_used);
      i = hw_watchpoint_used_count (bp_type, &other_type_used);
      target_resources_ok =
      target_resources_ok =
        TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt,
        TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt,
                                            other_type_used);
                                            other_type_used);
      if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
      if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
        error (_("Target does not support this type of hardware watchpoint."));
        error (_("Target does not support this type of hardware watchpoint."));
 
 
      if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
      if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
        error (_("Target can only support one kind of HW watchpoint at a time."));
        error (_("Target can only support one kind of HW watchpoint at a time."));
    }
    }
 
 
  /* Change the type of breakpoint to an ordinary watchpoint if a hardware
  /* Change the type of breakpoint to an ordinary watchpoint if a hardware
     watchpoint could not be set.  */
     watchpoint could not be set.  */
  if (!mem_cnt || target_resources_ok <= 0)
  if (!mem_cnt || target_resources_ok <= 0)
    bp_type = bp_watchpoint;
    bp_type = bp_watchpoint;
 
 
  frame = block_innermost_frame (exp_valid_block);
  frame = block_innermost_frame (exp_valid_block);
  if (frame)
  if (frame)
    prev_frame = get_prev_frame (frame);
    prev_frame = get_prev_frame (frame);
  else
  else
    prev_frame = NULL;
    prev_frame = NULL;
 
 
  /* If the expression is "local", then set up a "watchpoint scope"
  /* If the expression is "local", then set up a "watchpoint scope"
     breakpoint at the point where we've left the scope of the watchpoint
     breakpoint at the point where we've left the scope of the watchpoint
     expression.  Create the scope breakpoint before the watchpoint, so
     expression.  Create the scope breakpoint before the watchpoint, so
     that we will encounter it first in bpstat_stop_status.  */
     that we will encounter it first in bpstat_stop_status.  */
  if (innermost_block && prev_frame)
  if (innermost_block && prev_frame)
    {
    {
      scope_breakpoint = create_internal_breakpoint (get_frame_pc (prev_frame),
      scope_breakpoint = create_internal_breakpoint (get_frame_pc (prev_frame),
                                                     bp_watchpoint_scope);
                                                     bp_watchpoint_scope);
 
 
      scope_breakpoint->enable_state = bp_enabled;
      scope_breakpoint->enable_state = bp_enabled;
 
 
      /* Automatically delete the breakpoint when it hits.  */
      /* Automatically delete the breakpoint when it hits.  */
      scope_breakpoint->disposition = disp_del;
      scope_breakpoint->disposition = disp_del;
 
 
      /* Only break in the proper frame (help with recursion).  */
      /* Only break in the proper frame (help with recursion).  */
      scope_breakpoint->frame_id = get_frame_id (prev_frame);
      scope_breakpoint->frame_id = get_frame_id (prev_frame);
 
 
      /* Set the address at which we will stop.  */
      /* Set the address at which we will stop.  */
      scope_breakpoint->loc->requested_address
      scope_breakpoint->loc->requested_address
        = get_frame_pc (prev_frame);
        = get_frame_pc (prev_frame);
      scope_breakpoint->loc->address
      scope_breakpoint->loc->address
        = adjust_breakpoint_address (scope_breakpoint->loc->requested_address,
        = adjust_breakpoint_address (scope_breakpoint->loc->requested_address,
                                     scope_breakpoint->type);
                                     scope_breakpoint->type);
    }
    }
 
 
  /* Now set up the breakpoint.  */
  /* Now set up the breakpoint.  */
  b = set_raw_breakpoint (sal, bp_type);
  b = set_raw_breakpoint (sal, bp_type);
  set_breakpoint_count (breakpoint_count + 1);
  set_breakpoint_count (breakpoint_count + 1);
  b->number = breakpoint_count;
  b->number = breakpoint_count;
  b->thread = thread;
  b->thread = thread;
  b->disposition = disp_donttouch;
  b->disposition = disp_donttouch;
  b->exp = exp;
  b->exp = exp;
  b->exp_valid_block = exp_valid_block;
  b->exp_valid_block = exp_valid_block;
  b->exp_string = savestring (exp_start, exp_end - exp_start);
  b->exp_string = savestring (exp_start, exp_end - exp_start);
  b->val = val;
  b->val = val;
  b->loc->cond = cond;
  b->loc->cond = cond;
  if (cond_start)
  if (cond_start)
    b->cond_string = savestring (cond_start, cond_end - cond_start);
    b->cond_string = savestring (cond_start, cond_end - cond_start);
  else
  else
    b->cond_string = 0;
    b->cond_string = 0;
 
 
  if (frame)
  if (frame)
    b->watchpoint_frame = get_frame_id (frame);
    b->watchpoint_frame = get_frame_id (frame);
  else
  else
    b->watchpoint_frame = null_frame_id;
    b->watchpoint_frame = null_frame_id;
 
 
  if (scope_breakpoint != NULL)
  if (scope_breakpoint != NULL)
    {
    {
      /* The scope breakpoint is related to the watchpoint.  We will
      /* The scope breakpoint is related to the watchpoint.  We will
         need to act on them together.  */
         need to act on them together.  */
      b->related_breakpoint = scope_breakpoint;
      b->related_breakpoint = scope_breakpoint;
      scope_breakpoint->related_breakpoint = b;
      scope_breakpoint->related_breakpoint = b;
    }
    }
 
 
  value_free_to_mark (mark);
  value_free_to_mark (mark);
  mention (b);
  mention (b);
}
}
 
 
/* Return count of locations need to be watched and can be handled
/* Return count of locations need to be watched and can be handled
   in hardware.  If the watchpoint can not be handled
   in hardware.  If the watchpoint can not be handled
   in hardware return zero.  */
   in hardware return zero.  */
 
 
static int
static int
can_use_hardware_watchpoint (struct value *v)
can_use_hardware_watchpoint (struct value *v)
{
{
  int found_memory_cnt = 0;
  int found_memory_cnt = 0;
  struct value *head = v;
  struct value *head = v;
 
 
  /* Did the user specifically forbid us to use hardware watchpoints? */
  /* Did the user specifically forbid us to use hardware watchpoints? */
  if (!can_use_hw_watchpoints)
  if (!can_use_hw_watchpoints)
    return 0;
    return 0;
 
 
  /* Make sure that the value of the expression depends only upon
  /* Make sure that the value of the expression depends only upon
     memory contents, and values computed from them within GDB.  If we
     memory contents, and values computed from them within GDB.  If we
     find any register references or function calls, we can't use a
     find any register references or function calls, we can't use a
     hardware watchpoint.
     hardware watchpoint.
 
 
     The idea here is that evaluating an expression generates a series
     The idea here is that evaluating an expression generates a series
     of values, one holding the value of every subexpression.  (The
     of values, one holding the value of every subexpression.  (The
     expression a*b+c has five subexpressions: a, b, a*b, c, and
     expression a*b+c has five subexpressions: a, b, a*b, c, and
     a*b+c.)  GDB's values hold almost enough information to establish
     a*b+c.)  GDB's values hold almost enough information to establish
     the criteria given above --- they identify memory lvalues,
     the criteria given above --- they identify memory lvalues,
     register lvalues, computed values, etcetera.  So we can evaluate
     register lvalues, computed values, etcetera.  So we can evaluate
     the expression, and then scan the chain of values that leaves
     the expression, and then scan the chain of values that leaves
     behind to decide whether we can detect any possible change to the
     behind to decide whether we can detect any possible change to the
     expression's final value using only hardware watchpoints.
     expression's final value using only hardware watchpoints.
 
 
     However, I don't think that the values returned by inferior
     However, I don't think that the values returned by inferior
     function calls are special in any way.  So this function may not
     function calls are special in any way.  So this function may not
     notice that an expression involving an inferior function call
     notice that an expression involving an inferior function call
     can't be watched with hardware watchpoints.  FIXME.  */
     can't be watched with hardware watchpoints.  FIXME.  */
  for (; v; v = value_next (v))
  for (; v; v = value_next (v))
    {
    {
      if (VALUE_LVAL (v) == lval_memory)
      if (VALUE_LVAL (v) == lval_memory)
        {
        {
          if (value_lazy (v))
          if (value_lazy (v))
            /* A lazy memory lvalue is one that GDB never needed to fetch;
            /* A lazy memory lvalue is one that GDB never needed to fetch;
               we either just used its address (e.g., `a' in `a.b') or
               we either just used its address (e.g., `a' in `a.b') or
               we never needed it at all (e.g., `a' in `a,b').  */
               we never needed it at all (e.g., `a' in `a,b').  */
            ;
            ;
          else
          else
            {
            {
              /* Ahh, memory we actually used!  Check if we can cover
              /* Ahh, memory we actually used!  Check if we can cover
                 it with hardware watchpoints.  */
                 it with hardware watchpoints.  */
              struct type *vtype = check_typedef (value_type (v));
              struct type *vtype = check_typedef (value_type (v));
 
 
              /* We only watch structs and arrays if user asked for it
              /* We only watch structs and arrays if user asked for it
                 explicitly, never if they just happen to appear in a
                 explicitly, never if they just happen to appear in a
                 middle of some value chain.  */
                 middle of some value chain.  */
              if (v == head
              if (v == head
                  || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
                  || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
                      && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
                      && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
                {
                {
                  CORE_ADDR vaddr = VALUE_ADDRESS (v) + value_offset (v);
                  CORE_ADDR vaddr = VALUE_ADDRESS (v) + value_offset (v);
                  int       len   = TYPE_LENGTH (value_type (v));
                  int       len   = TYPE_LENGTH (value_type (v));
 
 
                  if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len))
                  if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len))
                    return 0;
                    return 0;
                  else
                  else
                    found_memory_cnt++;
                    found_memory_cnt++;
                }
                }
            }
            }
        }
        }
      else if (VALUE_LVAL (v) != not_lval
      else if (VALUE_LVAL (v) != not_lval
               && deprecated_value_modifiable (v) == 0)
               && deprecated_value_modifiable (v) == 0)
        return 0;        /* ??? What does this represent? */
        return 0;        /* ??? What does this represent? */
      else if (VALUE_LVAL (v) == lval_register)
      else if (VALUE_LVAL (v) == lval_register)
        return 0;        /* cannot watch a register with a HW watchpoint */
        return 0;        /* cannot watch a register with a HW watchpoint */
    }
    }
 
 
  /* The expression itself looks suitable for using a hardware
  /* The expression itself looks suitable for using a hardware
     watchpoint, but give the target machine a chance to reject it.  */
     watchpoint, but give the target machine a chance to reject it.  */
  return found_memory_cnt;
  return found_memory_cnt;
}
}
 
 
void
void
watch_command_wrapper (char *arg, int from_tty)
watch_command_wrapper (char *arg, int from_tty)
{
{
  watch_command (arg, from_tty);
  watch_command (arg, from_tty);
}
}
 
 
static void
static void
watch_command (char *arg, int from_tty)
watch_command (char *arg, int from_tty)
{
{
  watch_command_1 (arg, hw_write, from_tty);
  watch_command_1 (arg, hw_write, from_tty);
}
}
 
 
void
void
rwatch_command_wrapper (char *arg, int from_tty)
rwatch_command_wrapper (char *arg, int from_tty)
{
{
  rwatch_command (arg, from_tty);
  rwatch_command (arg, from_tty);
}
}
 
 
static void
static void
rwatch_command (char *arg, int from_tty)
rwatch_command (char *arg, int from_tty)
{
{
  watch_command_1 (arg, hw_read, from_tty);
  watch_command_1 (arg, hw_read, from_tty);
}
}
 
 
void
void
awatch_command_wrapper (char *arg, int from_tty)
awatch_command_wrapper (char *arg, int from_tty)
{
{
  awatch_command (arg, from_tty);
  awatch_command (arg, from_tty);
}
}
 
 
static void
static void
awatch_command (char *arg, int from_tty)
awatch_command (char *arg, int from_tty)
{
{
  watch_command_1 (arg, hw_access, from_tty);
  watch_command_1 (arg, hw_access, from_tty);
}
}


 
 
/* Helper routines for the until_command routine in infcmd.c.  Here
/* Helper routines for the until_command routine in infcmd.c.  Here
   because it uses the mechanisms of breakpoints.  */
   because it uses the mechanisms of breakpoints.  */
 
 
/* This function is called by fetch_inferior_event via the
/* This function is called by fetch_inferior_event via the
   cmd_continuation pointer, to complete the until command. It takes
   cmd_continuation pointer, to complete the until command. It takes
   care of cleaning up the temporary breakpoints set up by the until
   care of cleaning up the temporary breakpoints set up by the until
   command. */
   command. */
static void
static void
until_break_command_continuation (struct continuation_arg *arg)
until_break_command_continuation (struct continuation_arg *arg)
{
{
  struct cleanup *cleanups;
  struct cleanup *cleanups;
 
 
  cleanups = (struct cleanup *) arg->data.pointer;
  cleanups = (struct cleanup *) arg->data.pointer;
  do_exec_cleanups (cleanups);
  do_exec_cleanups (cleanups);
}
}
 
 
void
void
until_break_command (char *arg, int from_tty, int anywhere)
until_break_command (char *arg, int from_tty, int anywhere)
{
{
  struct symtabs_and_lines sals;
  struct symtabs_and_lines sals;
  struct symtab_and_line sal;
  struct symtab_and_line sal;
  struct frame_info *frame = get_selected_frame (NULL);
  struct frame_info *frame = get_selected_frame (NULL);
  struct frame_info *prev_frame = get_prev_frame (frame);
  struct frame_info *prev_frame = get_prev_frame (frame);
  struct breakpoint *breakpoint;
  struct breakpoint *breakpoint;
  struct cleanup *old_chain;
  struct cleanup *old_chain;
  struct continuation_arg *arg1;
  struct continuation_arg *arg1;
 
 
 
 
  clear_proceed_status ();
  clear_proceed_status ();
 
 
  /* Set a breakpoint where the user wants it and at return from
  /* Set a breakpoint where the user wants it and at return from
     this function */
     this function */
 
 
  if (default_breakpoint_valid)
  if (default_breakpoint_valid)
    sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
    sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
                          default_breakpoint_line, (char ***) NULL, NULL);
                          default_breakpoint_line, (char ***) NULL, NULL);
  else
  else
    sals = decode_line_1 (&arg, 1, (struct symtab *) NULL,
    sals = decode_line_1 (&arg, 1, (struct symtab *) NULL,
                          0, (char ***) NULL, NULL);
                          0, (char ***) NULL, NULL);
 
 
  if (sals.nelts != 1)
  if (sals.nelts != 1)
    error (_("Couldn't get information on specified line."));
    error (_("Couldn't get information on specified line."));
 
 
  sal = sals.sals[0];
  sal = sals.sals[0];
  xfree (sals.sals);    /* malloc'd, so freed */
  xfree (sals.sals);    /* malloc'd, so freed */
 
 
  if (*arg)
  if (*arg)
    error (_("Junk at end of arguments."));
    error (_("Junk at end of arguments."));
 
 
  resolve_sal_pc (&sal);
  resolve_sal_pc (&sal);
 
 
  if (anywhere)
  if (anywhere)
    /* If the user told us to continue until a specified location,
    /* If the user told us to continue until a specified location,
       we don't specify a frame at which we need to stop.  */
       we don't specify a frame at which we need to stop.  */
    breakpoint = set_momentary_breakpoint (sal, null_frame_id, bp_until);
    breakpoint = set_momentary_breakpoint (sal, null_frame_id, bp_until);
  else
  else
    /* Otherwise, specify the current frame, because we want to stop only
    /* Otherwise, specify the current frame, because we want to stop only
       at the very same frame.  */
       at the very same frame.  */
    breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame),
    breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame),
                                           bp_until);
                                           bp_until);
 
 
  if (!target_can_async_p ())
  if (!target_can_async_p ())
    old_chain = make_cleanup_delete_breakpoint (breakpoint);
    old_chain = make_cleanup_delete_breakpoint (breakpoint);
  else
  else
    old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
    old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
 
 
  /* If we are running asynchronously, and the target supports async
  /* If we are running asynchronously, and the target supports async
     execution, we are not waiting for the target to stop, in the call
     execution, we are not waiting for the target to stop, in the call
     tp proceed, below. This means that we cannot delete the
     tp proceed, below. This means that we cannot delete the
     brekpoints until the target has actually stopped. The only place
     brekpoints until the target has actually stopped. The only place
     where we get a chance to do that is in fetch_inferior_event, so
     where we get a chance to do that is in fetch_inferior_event, so
     we must set things up for that. */
     we must set things up for that. */
 
 
  if (target_can_async_p ())
  if (target_can_async_p ())
    {
    {
      /* In this case the arg for the continuation is just the point
      /* In this case the arg for the continuation is just the point
         in the exec_cleanups chain from where to start doing
         in the exec_cleanups chain from where to start doing
         cleanups, because all the continuation does is the cleanups in
         cleanups, because all the continuation does is the cleanups in
         the exec_cleanup_chain. */
         the exec_cleanup_chain. */
      arg1 =
      arg1 =
        (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
        (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
      arg1->next         = NULL;
      arg1->next         = NULL;
      arg1->data.pointer = old_chain;
      arg1->data.pointer = old_chain;
 
 
      add_continuation (until_break_command_continuation, arg1);
      add_continuation (until_break_command_continuation, arg1);
    }
    }
 
 
  /* Keep within the current frame, or in frames called by the current
  /* Keep within the current frame, or in frames called by the current
     one.  */
     one.  */
  if (prev_frame)
  if (prev_frame)
    {
    {
      sal = find_pc_line (get_frame_pc (prev_frame), 0);
      sal = find_pc_line (get_frame_pc (prev_frame), 0);
      sal.pc = get_frame_pc (prev_frame);
      sal.pc = get_frame_pc (prev_frame);
      breakpoint = set_momentary_breakpoint (sal, get_frame_id (prev_frame),
      breakpoint = set_momentary_breakpoint (sal, get_frame_id (prev_frame),
                                             bp_until);
                                             bp_until);
      if (!target_can_async_p ())
      if (!target_can_async_p ())
        make_cleanup_delete_breakpoint (breakpoint);
        make_cleanup_delete_breakpoint (breakpoint);
      else
      else
        make_exec_cleanup_delete_breakpoint (breakpoint);
        make_exec_cleanup_delete_breakpoint (breakpoint);
    }
    }
 
 
  proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
  proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
  /* Do the cleanups now, anly if we are not running asynchronously,
  /* Do the cleanups now, anly if we are not running asynchronously,
     of if we are, but the target is still synchronous. */
     of if we are, but the target is still synchronous. */
  if (!target_can_async_p ())
  if (!target_can_async_p ())
    do_cleanups (old_chain);
    do_cleanups (old_chain);
}
}
 
 
static void
static void
ep_skip_leading_whitespace (char **s)
ep_skip_leading_whitespace (char **s)
{
{
  if ((s == NULL) || (*s == NULL))
  if ((s == NULL) || (*s == NULL))
    return;
    return;
  while (isspace (**s))
  while (isspace (**s))
    *s += 1;
    *s += 1;
}
}
 
 
/* This function examines a string, and attempts to find a token
/* This function examines a string, and attempts to find a token
   that might be an event name in the leading characters.  If a
   that might be an event name in the leading characters.  If a
   possible match is found, a pointer to the last character of
   possible match is found, a pointer to the last character of
   the token is returned.  Else, NULL is returned. */
   the token is returned.  Else, NULL is returned. */
 
 
static char *
static char *
ep_find_event_name_end (char *arg)
ep_find_event_name_end (char *arg)
{
{
  char *s = arg;
  char *s = arg;
  char *event_name_end = NULL;
  char *event_name_end = NULL;
 
 
  /* If we could depend upon the presense of strrpbrk, we'd use that... */
  /* If we could depend upon the presense of strrpbrk, we'd use that... */
  if (arg == NULL)
  if (arg == NULL)
    return NULL;
    return NULL;
 
 
  /* We break out of the loop when we find a token delimiter.
  /* We break out of the loop when we find a token delimiter.
     Basically, we're looking for alphanumerics and underscores;
     Basically, we're looking for alphanumerics and underscores;
     anything else delimites the token. */
     anything else delimites the token. */
  while (*s != '\0')
  while (*s != '\0')
    {
    {
      if (!isalnum (*s) && (*s != '_'))
      if (!isalnum (*s) && (*s != '_'))
        break;
        break;
      event_name_end = s;
      event_name_end = s;
      s++;
      s++;
    }
    }
 
 
  return event_name_end;
  return event_name_end;
}
}
 
 
 
 
/* This function attempts to parse an optional "if <cond>" clause
/* This function attempts to parse an optional "if <cond>" clause
   from the arg string.  If one is not found, it returns NULL.
   from the arg string.  If one is not found, it returns NULL.
 
 
   Else, it returns a pointer to the condition string.  (It does not
   Else, it returns a pointer to the condition string.  (It does not
   attempt to evaluate the string against a particular block.)  And,
   attempt to evaluate the string against a particular block.)  And,
   it updates arg to point to the first character following the parsed
   it updates arg to point to the first character following the parsed
   if clause in the arg string. */
   if clause in the arg string. */
 
 
static char *
static char *
ep_parse_optional_if_clause (char **arg)
ep_parse_optional_if_clause (char **arg)
{
{
  char *cond_string;
  char *cond_string;
 
 
  if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
  if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
    return NULL;
    return NULL;
 
 
  /* Skip the "if" keyword. */
  /* Skip the "if" keyword. */
  (*arg) += 2;
  (*arg) += 2;
 
 
  /* Skip any extra leading whitespace, and record the start of the
  /* Skip any extra leading whitespace, and record the start of the
     condition string. */
     condition string. */
  ep_skip_leading_whitespace (arg);
  ep_skip_leading_whitespace (arg);
  cond_string = *arg;
  cond_string = *arg;
 
 
  /* Assume that the condition occupies the remainder of the arg string. */
  /* Assume that the condition occupies the remainder of the arg string. */
  (*arg) += strlen (cond_string);
  (*arg) += strlen (cond_string);
 
 
  return cond_string;
  return cond_string;
}
}
 
 
/* This function attempts to parse an optional filename from the arg
/* This function attempts to parse an optional filename from the arg
   string.  If one is not found, it returns NULL.
   string.  If one is not found, it returns NULL.
 
 
   Else, it returns a pointer to the parsed filename.  (This function
   Else, it returns a pointer to the parsed filename.  (This function
   makes no attempt to verify that a file of that name exists, or is
   makes no attempt to verify that a file of that name exists, or is
   accessible.)  And, it updates arg to point to the first character
   accessible.)  And, it updates arg to point to the first character
   following the parsed filename in the arg string.
   following the parsed filename in the arg string.
 
 
   Note that clients needing to preserve the returned filename for
   Note that clients needing to preserve the returned filename for
   future access should copy it to their own buffers. */
   future access should copy it to their own buffers. */
static char *
static char *
ep_parse_optional_filename (char **arg)
ep_parse_optional_filename (char **arg)
{
{
  static char filename[1024];
  static char filename[1024];
  char *arg_p = *arg;
  char *arg_p = *arg;
  int i;
  int i;
  char c;
  char c;
 
 
  if ((*arg_p == '\0') || isspace (*arg_p))
  if ((*arg_p == '\0') || isspace (*arg_p))
    return NULL;
    return NULL;
 
 
  for (i = 0;; i++)
  for (i = 0;; i++)
    {
    {
      c = *arg_p;
      c = *arg_p;
      if (isspace (c))
      if (isspace (c))
        c = '\0';
        c = '\0';
      filename[i] = c;
      filename[i] = c;
      if (c == '\0')
      if (c == '\0')
        break;
        break;
      arg_p++;
      arg_p++;
    }
    }
  *arg = arg_p;
  *arg = arg_p;
 
 
  return filename;
  return filename;
}
}
 
 
/* Commands to deal with catching events, such as signals, exceptions,
/* Commands to deal with catching events, such as signals, exceptions,
   process start/exit, etc.  */
   process start/exit, etc.  */
 
 
typedef enum
typedef enum
{
{
  catch_fork, catch_vfork
  catch_fork, catch_vfork
}
}
catch_fork_kind;
catch_fork_kind;
 
 
static void
static void
catch_fork_command_1 (catch_fork_kind fork_kind, char *arg, int tempflag,
catch_fork_command_1 (catch_fork_kind fork_kind, char *arg, int tempflag,
                      int from_tty)
                      int from_tty)
{
{
  char *cond_string = NULL;
  char *cond_string = NULL;
 
 
  ep_skip_leading_whitespace (&arg);
  ep_skip_leading_whitespace (&arg);
 
 
  /* The allowed syntax is:
  /* The allowed syntax is:
     catch [v]fork
     catch [v]fork
     catch [v]fork if <cond>
     catch [v]fork if <cond>
 
 
     First, check if there's an if clause. */
     First, check if there's an if clause. */
  cond_string = ep_parse_optional_if_clause (&arg);
  cond_string = ep_parse_optional_if_clause (&arg);
 
 
  if ((*arg != '\0') && !isspace (*arg))
  if ((*arg != '\0') && !isspace (*arg))
    error (_("Junk at end of arguments."));
    error (_("Junk at end of arguments."));
 
 
  /* If this target supports it, create a fork or vfork catchpoint
  /* If this target supports it, create a fork or vfork catchpoint
     and enable reporting of such events. */
     and enable reporting of such events. */
  switch (fork_kind)
  switch (fork_kind)
    {
    {
    case catch_fork:
    case catch_fork:
      create_fork_event_catchpoint (tempflag, cond_string);
      create_fork_event_catchpoint (tempflag, cond_string);
      break;
      break;
    case catch_vfork:
    case catch_vfork:
      create_vfork_event_catchpoint (tempflag, cond_string);
      create_vfork_event_catchpoint (tempflag, cond_string);
      break;
      break;
    default:
    default:
      error (_("unsupported or unknown fork kind; cannot catch it"));
      error (_("unsupported or unknown fork kind; cannot catch it"));
      break;
      break;
    }
    }
}
}
 
 
static void
static void
catch_exec_command_1 (char *arg, int tempflag, int from_tty)
catch_exec_command_1 (char *arg, int tempflag, int from_tty)
{
{
  char *cond_string = NULL;
  char *cond_string = NULL;
 
 
  ep_skip_leading_whitespace (&arg);
  ep_skip_leading_whitespace (&arg);
 
 
  /* The allowed syntax is:
  /* The allowed syntax is:
     catch exec
     catch exec
     catch exec if <cond>
     catch exec if <cond>
 
 
     First, check if there's an if clause. */
     First, check if there's an if clause. */
  cond_string = ep_parse_optional_if_clause (&arg);
  cond_string = ep_parse_optional_if_clause (&arg);
 
 
  if ((*arg != '\0') && !isspace (*arg))
  if ((*arg != '\0') && !isspace (*arg))
    error (_("Junk at end of arguments."));
    error (_("Junk at end of arguments."));
 
 
  /* If this target supports it, create an exec catchpoint
  /* If this target supports it, create an exec catchpoint
     and enable reporting of such events. */
     and enable reporting of such events. */
  create_exec_event_catchpoint (tempflag, cond_string);
  create_exec_event_catchpoint (tempflag, cond_string);
}
}
 
 
static void
static void
catch_load_command_1 (char *arg, int tempflag, int from_tty)
catch_load_command_1 (char *arg, int tempflag, int from_tty)
{
{
  char *dll_pathname = NULL;
  char *dll_pathname = NULL;
  char *cond_string = NULL;
  char *cond_string = NULL;
 
 
  ep_skip_leading_whitespace (&arg);
  ep_skip_leading_whitespace (&arg);
 
 
  /* The allowed syntax is:
  /* The allowed syntax is:
     catch load
     catch load
     catch load if <cond>
     catch load if <cond>
     catch load <filename>
     catch load <filename>
     catch load <filename> if <cond>
     catch load <filename> if <cond>
 
 
     The user is not allowed to specify the <filename> after an
     The user is not allowed to specify the <filename> after an
     if clause.
     if clause.
 
 
     We'll ignore the pathological case of a file named "if".
     We'll ignore the pathological case of a file named "if".
 
 
     First, check if there's an if clause.  If so, then there
     First, check if there's an if clause.  If so, then there
     cannot be a filename. */
     cannot be a filename. */
  cond_string = ep_parse_optional_if_clause (&arg);
  cond_string = ep_parse_optional_if_clause (&arg);
 
 
  /* If there was an if clause, then there cannot be a filename.
  /* If there was an if clause, then there cannot be a filename.
     Else, there might be a filename and an if clause. */
     Else, there might be a filename and an if clause. */
  if (cond_string == NULL)
  if (cond_string == NULL)
    {
    {
      dll_pathname = ep_parse_optional_filename (&arg);
      dll_pathname = ep_parse_optional_filename (&arg);
      ep_skip_leading_whitespace (&arg);
      ep_skip_leading_whitespace (&arg);
      cond_string = ep_parse_optional_if_clause (&arg);
      cond_string = ep_parse_optional_if_clause (&arg);
    }
    }
 
 
  if ((*arg != '\0') && !isspace (*arg))
  if ((*arg != '\0') && !isspace (*arg))
    error (_("Junk at end of arguments."));
    error (_("Junk at end of arguments."));
 
 
  /* Create a load breakpoint that only triggers when a load of
  /* Create a load breakpoint that only triggers when a load of
     the specified dll (or any dll, if no pathname was specified)
     the specified dll (or any dll, if no pathname was specified)
     occurs. */
     occurs. */
  SOLIB_CREATE_CATCH_LOAD_HOOK (PIDGET (inferior_ptid), tempflag,
  SOLIB_CREATE_CATCH_LOAD_HOOK (PIDGET (inferior_ptid), tempflag,
                                dll_pathname, cond_string);
                                dll_pathname, cond_string);
}
}
 
 
static void
static void
catch_unload_command_1 (char *arg, int tempflag, int from_tty)
catch_unload_command_1 (char *arg, int tempflag, int from_tty)
{
{
  char *dll_pathname = NULL;
  char *dll_pathname = NULL;
  char *cond_string = NULL;
  char *cond_string = NULL;
 
 
  ep_skip_leading_whitespace (&arg);
  ep_skip_leading_whitespace (&arg);
 
 
  /* The allowed syntax is:
  /* The allowed syntax is:
     catch unload
     catch unload
     catch unload if <cond>
     catch unload if <cond>
     catch unload <filename>
     catch unload <filename>
     catch unload <filename> if <cond>
     catch unload <filename> if <cond>
 
 
     The user is not allowed to specify the <filename> after an
     The user is not allowed to specify the <filename> after an
     if clause.
     if clause.
 
 
     We'll ignore the pathological case of a file named "if".
     We'll ignore the pathological case of a file named "if".
 
 
     First, check if there's an if clause.  If so, then there
     First, check if there's an if clause.  If so, then there
     cannot be a filename. */
     cannot be a filename. */
  cond_string = ep_parse_optional_if_clause (&arg);
  cond_string = ep_parse_optional_if_clause (&arg);
 
 
  /* If there was an if clause, then there cannot be a filename.
  /* If there was an if clause, then there cannot be a filename.
     Else, there might be a filename and an if clause. */
     Else, there might be a filename and an if clause. */
  if (cond_string == NULL)
  if (cond_string == NULL)
    {
    {
      dll_pathname = ep_parse_optional_filename (&arg);
      dll_pathname = ep_parse_optional_filename (&arg);
      ep_skip_leading_whitespace (&arg);
      ep_skip_leading_whitespace (&arg);
      cond_string = ep_parse_optional_if_clause (&arg);
      cond_string = ep_parse_optional_if_clause (&arg);
    }
    }
 
 
  if ((*arg != '\0') && !isspace (*arg))
  if ((*arg != '\0') && !isspace (*arg))
    error (_("Junk at end of arguments."));
    error (_("Junk at end of arguments."));
 
 
  /* Create an unload breakpoint that only triggers when an unload of
  /* Create an unload breakpoint that only triggers when an unload of
     the specified dll (or any dll, if no pathname was specified)
     the specified dll (or any dll, if no pathname was specified)
     occurs. */
     occurs. */
  SOLIB_CREATE_CATCH_UNLOAD_HOOK (PIDGET (inferior_ptid), tempflag,
  SOLIB_CREATE_CATCH_UNLOAD_HOOK (PIDGET (inferior_ptid), tempflag,
                                  dll_pathname, cond_string);
                                  dll_pathname, cond_string);
}
}
 
 
static enum print_stop_action
static enum print_stop_action
print_exception_catchpoint (struct breakpoint *b)
print_exception_catchpoint (struct breakpoint *b)
{
{
  annotate_catchpoint (b->number);
  annotate_catchpoint (b->number);
 
 
  if (strstr (b->addr_string, "throw") != NULL)
  if (strstr (b->addr_string, "throw") != NULL)
    printf_filtered (_("\nCatchpoint %d (exception thrown)\n"),
    printf_filtered (_("\nCatchpoint %d (exception thrown)\n"),
                     b->number);
                     b->number);
  else
  else
    printf_filtered (_("\nCatchpoint %d (exception caught)\n"),
    printf_filtered (_("\nCatchpoint %d (exception caught)\n"),
                     b->number);
                     b->number);
 
 
  return PRINT_SRC_AND_LOC;
  return PRINT_SRC_AND_LOC;
}
}
 
 
static void
static void
print_one_exception_catchpoint (struct breakpoint *b, CORE_ADDR *last_addr)
print_one_exception_catchpoint (struct breakpoint *b, CORE_ADDR *last_addr)
{
{
  if (addressprint)
  if (addressprint)
    {
    {
      annotate_field (4);
      annotate_field (4);
      ui_out_field_core_addr (uiout, "addr", b->loc->address);
      ui_out_field_core_addr (uiout, "addr", b->loc->address);
    }
    }
  annotate_field (5);
  annotate_field (5);
  *last_addr = b->loc->address;
  *last_addr = b->loc->address;
  if (strstr (b->addr_string, "throw") != NULL)
  if (strstr (b->addr_string, "throw") != NULL)
    ui_out_field_string (uiout, "what", "exception throw");
    ui_out_field_string (uiout, "what", "exception throw");
  else
  else
    ui_out_field_string (uiout, "what", "exception catch");
    ui_out_field_string (uiout, "what", "exception catch");
}
}
 
 
static void
static void
print_mention_exception_catchpoint (struct breakpoint *b)
print_mention_exception_catchpoint (struct breakpoint *b)
{
{
  if (strstr (b->addr_string, "throw") != NULL)
  if (strstr (b->addr_string, "throw") != NULL)
    printf_filtered (_("Catchpoint %d (throw)"), b->number);
    printf_filtered (_("Catchpoint %d (throw)"), b->number);
  else
  else
    printf_filtered (_("Catchpoint %d (catch)"), b->number);
    printf_filtered (_("Catchpoint %d (catch)"), b->number);
}
}
 
 
static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = {
static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = {
  print_exception_catchpoint,
  print_exception_catchpoint,
  print_one_exception_catchpoint,
  print_one_exception_catchpoint,
  print_mention_exception_catchpoint
  print_mention_exception_catchpoint
};
};
 
 
static int
static int
handle_gnu_v3_exceptions (int tempflag, char *cond_string,
handle_gnu_v3_exceptions (int tempflag, char *cond_string,
                          enum exception_event_kind ex_event, int from_tty)
                          enum exception_event_kind ex_event, int from_tty)
{
{
  char *trigger_func_name, *nameptr;
  char *trigger_func_name, *nameptr;
  struct symtabs_and_lines sals;
  struct symtabs_and_lines sals;
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  if (ex_event == EX_EVENT_CATCH)
  if (ex_event == EX_EVENT_CATCH)
    trigger_func_name = xstrdup ("__cxa_begin_catch");
    trigger_func_name = xstrdup ("__cxa_begin_catch");
  else
  else
    trigger_func_name = xstrdup ("__cxa_throw");
    trigger_func_name = xstrdup ("__cxa_throw");
 
 
  nameptr = trigger_func_name;
  nameptr = trigger_func_name;
  sals = decode_line_1 (&nameptr, 1, NULL, 0, NULL, NULL);
  sals = decode_line_1 (&nameptr, 1, NULL, 0, NULL, NULL);
  if (sals.nelts == 0)
  if (sals.nelts == 0)
    {
    {
      xfree (trigger_func_name);
      xfree (trigger_func_name);
      return 0;
      return 0;
    }
    }
 
 
  b = set_raw_breakpoint (sals.sals[0], bp_breakpoint);
  b = set_raw_breakpoint (sals.sals[0], bp_breakpoint);
  set_breakpoint_count (breakpoint_count + 1);
  set_breakpoint_count (breakpoint_count + 1);
  b->number = breakpoint_count;
  b->number = breakpoint_count;
  b->cond_string = (cond_string == NULL) ?
  b->cond_string = (cond_string == NULL) ?
    NULL : savestring (cond_string, strlen (cond_string));
    NULL : savestring (cond_string, strlen (cond_string));
  b->thread = -1;
  b->thread = -1;
  b->addr_string = trigger_func_name;
  b->addr_string = trigger_func_name;
  b->enable_state = bp_enabled;
  b->enable_state = bp_enabled;
  b->disposition = tempflag ? disp_del : disp_donttouch;
  b->disposition = tempflag ? disp_del : disp_donttouch;
  b->ops = &gnu_v3_exception_catchpoint_ops;
  b->ops = &gnu_v3_exception_catchpoint_ops;
 
 
  xfree (sals.sals);
  xfree (sals.sals);
  mention (b);
  mention (b);
  return 1;
  return 1;
}
}
 
 
/* Deal with "catch catch" and "catch throw" commands */
/* Deal with "catch catch" and "catch throw" commands */
 
 
static void
static void
catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
                           int tempflag, int from_tty)
                           int tempflag, int from_tty)
{
{
  char *cond_string = NULL;
  char *cond_string = NULL;
  struct symtab_and_line *sal = NULL;
  struct symtab_and_line *sal = NULL;
 
 
  ep_skip_leading_whitespace (&arg);
  ep_skip_leading_whitespace (&arg);
 
 
  cond_string = ep_parse_optional_if_clause (&arg);
  cond_string = ep_parse_optional_if_clause (&arg);
 
 
  if ((*arg != '\0') && !isspace (*arg))
  if ((*arg != '\0') && !isspace (*arg))
    error (_("Junk at end of arguments."));
    error (_("Junk at end of arguments."));
 
 
  if ((ex_event != EX_EVENT_THROW) &&
  if ((ex_event != EX_EVENT_THROW) &&
      (ex_event != EX_EVENT_CATCH))
      (ex_event != EX_EVENT_CATCH))
    error (_("Unsupported or unknown exception event; cannot catch it"));
    error (_("Unsupported or unknown exception event; cannot catch it"));
 
 
  if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty))
  if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty))
    return;
    return;
 
 
  warning (_("Unsupported with this platform/compiler combination."));
  warning (_("Unsupported with this platform/compiler combination."));
}
}
 
 
/* Create a breakpoint struct for Ada exception catchpoints.  */
/* Create a breakpoint struct for Ada exception catchpoints.  */
 
 
static void
static void
create_ada_exception_breakpoint (struct symtab_and_line sal,
create_ada_exception_breakpoint (struct symtab_and_line sal,
                                 char *addr_string,
                                 char *addr_string,
                                 char *exp_string,
                                 char *exp_string,
                                 char *cond_string,
                                 char *cond_string,
                                 struct expression *cond,
                                 struct expression *cond,
                                 struct breakpoint_ops *ops,
                                 struct breakpoint_ops *ops,
                                 int tempflag,
                                 int tempflag,
                                 int from_tty)
                                 int from_tty)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  if (from_tty)
  if (from_tty)
    {
    {
      describe_other_breakpoints (sal.pc, sal.section, -1);
      describe_other_breakpoints (sal.pc, sal.section, -1);
      /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
      /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
         version for exception catchpoints, because two catchpoints
         version for exception catchpoints, because two catchpoints
         used for different exception names will use the same address.
         used for different exception names will use the same address.
         In this case, a "breakpoint ... also set at..." warning is
         In this case, a "breakpoint ... also set at..." warning is
         unproductive.  Besides. the warning phrasing is also a bit
         unproductive.  Besides. the warning phrasing is also a bit
         inapropriate, we should use the word catchpoint, and tell
         inapropriate, we should use the word catchpoint, and tell
         the user what type of catchpoint it is.  The above is good
         the user what type of catchpoint it is.  The above is good
         enough for now, though.  */
         enough for now, though.  */
    }
    }
 
 
  b = set_raw_breakpoint (sal, bp_breakpoint);
  b = set_raw_breakpoint (sal, bp_breakpoint);
  set_breakpoint_count (breakpoint_count + 1);
  set_breakpoint_count (breakpoint_count + 1);
 
 
  b->enable_state = bp_enabled;
  b->enable_state = bp_enabled;
  b->disposition = tempflag ? disp_del : disp_donttouch;
  b->disposition = tempflag ? disp_del : disp_donttouch;
  b->number = breakpoint_count;
  b->number = breakpoint_count;
  b->ignore_count = 0;
  b->ignore_count = 0;
  b->loc->cond = cond;
  b->loc->cond = cond;
  b->addr_string = addr_string;
  b->addr_string = addr_string;
  b->language = language_ada;
  b->language = language_ada;
  b->cond_string = cond_string;
  b->cond_string = cond_string;
  b->exp_string = exp_string;
  b->exp_string = exp_string;
  b->thread = -1;
  b->thread = -1;
  b->ops = ops;
  b->ops = ops;
 
 
  mention (b);
  mention (b);
}
}
 
 
/* Implement the "catch exception" command.  */
/* Implement the "catch exception" command.  */
 
 
static void
static void
catch_ada_exception_command (char *arg, int tempflag, int from_tty)
catch_ada_exception_command (char *arg, int tempflag, int from_tty)
{
{
  struct symtab_and_line sal;
  struct symtab_and_line sal;
  enum bptype type;
  enum bptype type;
  char *addr_string = NULL;
  char *addr_string = NULL;
  char *exp_string = NULL;
  char *exp_string = NULL;
  char *cond_string = NULL;
  char *cond_string = NULL;
  struct expression *cond = NULL;
  struct expression *cond = NULL;
  struct breakpoint_ops *ops = NULL;
  struct breakpoint_ops *ops = NULL;
 
 
  sal = ada_decode_exception_location (arg, &addr_string, &exp_string,
  sal = ada_decode_exception_location (arg, &addr_string, &exp_string,
                                       &cond_string, &cond, &ops);
                                       &cond_string, &cond, &ops);
  create_ada_exception_breakpoint (sal, addr_string, exp_string,
  create_ada_exception_breakpoint (sal, addr_string, exp_string,
                                   cond_string, cond, ops, tempflag,
                                   cond_string, cond, ops, tempflag,
                                   from_tty);
                                   from_tty);
}
}
 
 
/* Implement the "catch assert" command.  */
/* Implement the "catch assert" command.  */
 
 
static void
static void
catch_assert_command (char *arg, int tempflag, int from_tty)
catch_assert_command (char *arg, int tempflag, int from_tty)
{
{
  struct symtab_and_line sal;
  struct symtab_and_line sal;
  char *addr_string = NULL;
  char *addr_string = NULL;
  struct breakpoint_ops *ops = NULL;
  struct breakpoint_ops *ops = NULL;
 
 
  sal = ada_decode_assert_location (arg, &addr_string, &ops);
  sal = ada_decode_assert_location (arg, &addr_string, &ops);
  create_ada_exception_breakpoint (sal, addr_string, NULL, NULL, NULL, ops,
  create_ada_exception_breakpoint (sal, addr_string, NULL, NULL, NULL, ops,
                                   tempflag, from_tty);
                                   tempflag, from_tty);
}
}
 
 
static void
static void
catch_command_1 (char *arg, int tempflag, int from_tty)
catch_command_1 (char *arg, int tempflag, int from_tty)
{
{
 
 
  /* The first argument may be an event name, such as "start" or "load".
  /* The first argument may be an event name, such as "start" or "load".
     If so, then handle it as such.  If it doesn't match an event name,
     If so, then handle it as such.  If it doesn't match an event name,
     then attempt to interpret it as an exception name.  (This latter is
     then attempt to interpret it as an exception name.  (This latter is
     the v4.16-and-earlier GDB meaning of the "catch" command.)
     the v4.16-and-earlier GDB meaning of the "catch" command.)
 
 
     First, try to find the bounds of what might be an event name. */
     First, try to find the bounds of what might be an event name. */
  char *arg1_start = arg;
  char *arg1_start = arg;
  char *arg1_end;
  char *arg1_end;
  int arg1_length;
  int arg1_length;
 
 
  if (arg1_start == NULL)
  if (arg1_start == NULL)
    {
    {
      /* Old behaviour was to use pre-v-4.16 syntax */
      /* Old behaviour was to use pre-v-4.16 syntax */
      /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
      /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
      /* return; */
      /* return; */
      /* Now, this is not allowed */
      /* Now, this is not allowed */
      error (_("Catch requires an event name."));
      error (_("Catch requires an event name."));
 
 
    }
    }
  arg1_end = ep_find_event_name_end (arg1_start);
  arg1_end = ep_find_event_name_end (arg1_start);
  if (arg1_end == NULL)
  if (arg1_end == NULL)
    error (_("catch requires an event"));
    error (_("catch requires an event"));
  arg1_length = arg1_end + 1 - arg1_start;
  arg1_length = arg1_end + 1 - arg1_start;
 
 
  /* Try to match what we found against known event names. */
  /* Try to match what we found against known event names. */
  if (strncmp (arg1_start, "signal", arg1_length) == 0)
  if (strncmp (arg1_start, "signal", arg1_length) == 0)
    {
    {
      error (_("Catch of signal not yet implemented"));
      error (_("Catch of signal not yet implemented"));
    }
    }
  else if (strncmp (arg1_start, "catch", arg1_length) == 0)
  else if (strncmp (arg1_start, "catch", arg1_length) == 0)
    {
    {
      catch_exception_command_1 (EX_EVENT_CATCH, arg1_end + 1,
      catch_exception_command_1 (EX_EVENT_CATCH, arg1_end + 1,
                                 tempflag, from_tty);
                                 tempflag, from_tty);
    }
    }
  else if (strncmp (arg1_start, "throw", arg1_length) == 0)
  else if (strncmp (arg1_start, "throw", arg1_length) == 0)
    {
    {
      catch_exception_command_1 (EX_EVENT_THROW, arg1_end + 1,
      catch_exception_command_1 (EX_EVENT_THROW, arg1_end + 1,
                                 tempflag, from_tty);
                                 tempflag, from_tty);
    }
    }
  else if (strncmp (arg1_start, "thread_start", arg1_length) == 0)
  else if (strncmp (arg1_start, "thread_start", arg1_length) == 0)
    {
    {
      error (_("Catch of thread_start not yet implemented"));
      error (_("Catch of thread_start not yet implemented"));
    }
    }
  else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0)
  else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0)
    {
    {
      error (_("Catch of thread_exit not yet implemented"));
      error (_("Catch of thread_exit not yet implemented"));
    }
    }
  else if (strncmp (arg1_start, "thread_join", arg1_length) == 0)
  else if (strncmp (arg1_start, "thread_join", arg1_length) == 0)
    {
    {
      error (_("Catch of thread_join not yet implemented"));
      error (_("Catch of thread_join not yet implemented"));
    }
    }
  else if (strncmp (arg1_start, "start", arg1_length) == 0)
  else if (strncmp (arg1_start, "start", arg1_length) == 0)
    {
    {
      error (_("Catch of start not yet implemented"));
      error (_("Catch of start not yet implemented"));
    }
    }
  else if (strncmp (arg1_start, "exit", arg1_length) == 0)
  else if (strncmp (arg1_start, "exit", arg1_length) == 0)
    {
    {
      error (_("Catch of exit not yet implemented"));
      error (_("Catch of exit not yet implemented"));
    }
    }
  else if (strncmp (arg1_start, "fork", arg1_length) == 0)
  else if (strncmp (arg1_start, "fork", arg1_length) == 0)
    {
    {
      catch_fork_command_1 (catch_fork, arg1_end + 1, tempflag, from_tty);
      catch_fork_command_1 (catch_fork, arg1_end + 1, tempflag, from_tty);
    }
    }
  else if (strncmp (arg1_start, "vfork", arg1_length) == 0)
  else if (strncmp (arg1_start, "vfork", arg1_length) == 0)
    {
    {
      catch_fork_command_1 (catch_vfork, arg1_end + 1, tempflag, from_tty);
      catch_fork_command_1 (catch_vfork, arg1_end + 1, tempflag, from_tty);
    }
    }
  else if (strncmp (arg1_start, "exec", arg1_length) == 0)
  else if (strncmp (arg1_start, "exec", arg1_length) == 0)
    {
    {
      catch_exec_command_1 (arg1_end + 1, tempflag, from_tty);
      catch_exec_command_1 (arg1_end + 1, tempflag, from_tty);
    }
    }
  else if (strncmp (arg1_start, "load", arg1_length) == 0)
  else if (strncmp (arg1_start, "load", arg1_length) == 0)
    {
    {
      catch_load_command_1 (arg1_end + 1, tempflag, from_tty);
      catch_load_command_1 (arg1_end + 1, tempflag, from_tty);
    }
    }
  else if (strncmp (arg1_start, "unload", arg1_length) == 0)
  else if (strncmp (arg1_start, "unload", arg1_length) == 0)
    {
    {
      catch_unload_command_1 (arg1_end + 1, tempflag, from_tty);
      catch_unload_command_1 (arg1_end + 1, tempflag, from_tty);
    }
    }
  else if (strncmp (arg1_start, "stop", arg1_length) == 0)
  else if (strncmp (arg1_start, "stop", arg1_length) == 0)
    {
    {
      error (_("Catch of stop not yet implemented"));
      error (_("Catch of stop not yet implemented"));
    }
    }
  else if (strncmp (arg1_start, "exception", arg1_length) == 0)
  else if (strncmp (arg1_start, "exception", arg1_length) == 0)
    {
    {
      catch_ada_exception_command (arg1_end + 1, tempflag, from_tty);
      catch_ada_exception_command (arg1_end + 1, tempflag, from_tty);
    }
    }
 
 
  else if (strncmp (arg1_start, "assert", arg1_length) == 0)
  else if (strncmp (arg1_start, "assert", arg1_length) == 0)
    {
    {
      catch_assert_command (arg1_end + 1, tempflag, from_tty);
      catch_assert_command (arg1_end + 1, tempflag, from_tty);
    }
    }
 
 
  /* This doesn't appear to be an event name */
  /* This doesn't appear to be an event name */
 
 
  else
  else
    {
    {
      /* Pre-v.4.16 behaviour was to treat the argument
      /* Pre-v.4.16 behaviour was to treat the argument
         as the name of an exception */
         as the name of an exception */
      /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
      /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
      /* Now this is not allowed */
      /* Now this is not allowed */
      error (_("Unknown event kind specified for catch"));
      error (_("Unknown event kind specified for catch"));
 
 
    }
    }
}
}
 
 
static void
static void
catch_command (char *arg, int from_tty)
catch_command (char *arg, int from_tty)
{
{
  catch_command_1 (arg, 0, from_tty);
  catch_command_1 (arg, 0, from_tty);
}
}


 
 
static void
static void
tcatch_command (char *arg, int from_tty)
tcatch_command (char *arg, int from_tty)
{
{
  catch_command_1 (arg, 1, from_tty);
  catch_command_1 (arg, 1, from_tty);
}
}
 
 
/* Delete breakpoints by address or line.  */
/* Delete breakpoints by address or line.  */
 
 
static void
static void
clear_command (char *arg, int from_tty)
clear_command (char *arg, int from_tty)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  VEC(breakpoint_p) *found = 0;
  VEC(breakpoint_p) *found = 0;
  int ix;
  int ix;
  int default_match;
  int default_match;
  struct symtabs_and_lines sals;
  struct symtabs_and_lines sals;
  struct symtab_and_line sal;
  struct symtab_and_line sal;
  int i;
  int i;
 
 
  if (arg)
  if (arg)
    {
    {
      sals = decode_line_spec (arg, 1);
      sals = decode_line_spec (arg, 1);
      default_match = 0;
      default_match = 0;
    }
    }
  else
  else
    {
    {
      sals.sals = (struct symtab_and_line *)
      sals.sals = (struct symtab_and_line *)
        xmalloc (sizeof (struct symtab_and_line));
        xmalloc (sizeof (struct symtab_and_line));
      make_cleanup (xfree, sals.sals);
      make_cleanup (xfree, sals.sals);
      init_sal (&sal);          /* initialize to zeroes */
      init_sal (&sal);          /* initialize to zeroes */
      sal.line = default_breakpoint_line;
      sal.line = default_breakpoint_line;
      sal.symtab = default_breakpoint_symtab;
      sal.symtab = default_breakpoint_symtab;
      sal.pc = default_breakpoint_address;
      sal.pc = default_breakpoint_address;
      if (sal.symtab == 0)
      if (sal.symtab == 0)
        error (_("No source file specified."));
        error (_("No source file specified."));
 
 
      sals.sals[0] = sal;
      sals.sals[0] = sal;
      sals.nelts = 1;
      sals.nelts = 1;
 
 
      default_match = 1;
      default_match = 1;
    }
    }
 
 
  /* We don't call resolve_sal_pc here. That's not
  /* We don't call resolve_sal_pc here. That's not
     as bad as it seems, because all existing breakpoints
     as bad as it seems, because all existing breakpoints
     typically have both file/line and pc set.  So, if
     typically have both file/line and pc set.  So, if
     clear is given file/line, we can match this to existing
     clear is given file/line, we can match this to existing
     breakpoint without obtaining pc at all.
     breakpoint without obtaining pc at all.
 
 
     We only support clearing given the address explicitly
     We only support clearing given the address explicitly
     present in breakpoint table.  Say, we've set breakpoint
     present in breakpoint table.  Say, we've set breakpoint
     at file:line. There were several PC values for that file:line,
     at file:line. There were several PC values for that file:line,
     due to optimization, all in one block.
     due to optimization, all in one block.
     We've picked one PC value. If "clear" is issued with another
     We've picked one PC value. If "clear" is issued with another
     PC corresponding to the same file:line, the breakpoint won't
     PC corresponding to the same file:line, the breakpoint won't
     be cleared.  We probably can still clear the breakpoint, but
     be cleared.  We probably can still clear the breakpoint, but
     since the other PC value is never presented to user, user
     since the other PC value is never presented to user, user
     can only find it by guessing, and it does not seem important
     can only find it by guessing, and it does not seem important
     to support that.  */
     to support that.  */
 
 
  /* For each line spec given, delete bps which correspond
  /* For each line spec given, delete bps which correspond
     to it.  Do it in two passes, solely to preserve the current
     to it.  Do it in two passes, solely to preserve the current
     behavior that from_tty is forced true if we delete more than
     behavior that from_tty is forced true if we delete more than
     one breakpoint.  */
     one breakpoint.  */
 
 
  found = NULL;
  found = NULL;
  for (i = 0; i < sals.nelts; i++)
  for (i = 0; i < sals.nelts; i++)
    {
    {
      /* If exact pc given, clear bpts at that pc.
      /* If exact pc given, clear bpts at that pc.
         If line given (pc == 0), clear all bpts on specified line.
         If line given (pc == 0), clear all bpts on specified line.
         If defaulting, clear all bpts on default line
         If defaulting, clear all bpts on default line
         or at default pc.
         or at default pc.
 
 
         defaulting    sal.pc != 0    tests to do
         defaulting    sal.pc != 0    tests to do
 
 
         0              1             pc
         0              1             pc
         1              1             pc _and_ line
         1              1             pc _and_ line
         0              0             line
         0              0             line
         1              0             <can't happen> */
         1              0             <can't happen> */
 
 
      sal = sals.sals[i];
      sal = sals.sals[i];
 
 
      /* Find all matching breakpoints and add them to
      /* Find all matching breakpoints and add them to
         'found'.  */
         'found'.  */
      ALL_BREAKPOINTS (b)
      ALL_BREAKPOINTS (b)
        {
        {
          int match = 0;
          int match = 0;
          /* Are we going to delete b? */
          /* Are we going to delete b? */
          if (b->type != bp_none
          if (b->type != bp_none
              && b->type != bp_watchpoint
              && b->type != bp_watchpoint
              && b->type != bp_hardware_watchpoint
              && b->type != bp_hardware_watchpoint
              && b->type != bp_read_watchpoint
              && b->type != bp_read_watchpoint
              && b->type != bp_access_watchpoint)
              && b->type != bp_access_watchpoint)
            {
            {
              struct bp_location *loc = b->loc;
              struct bp_location *loc = b->loc;
              for (; loc; loc = loc->next)
              for (; loc; loc = loc->next)
                {
                {
                  int pc_match = sal.pc
                  int pc_match = sal.pc
                    && (loc->address == sal.pc)
                    && (loc->address == sal.pc)
                    && (!section_is_overlay (loc->section)
                    && (!section_is_overlay (loc->section)
                        || loc->section == sal.section);
                        || loc->section == sal.section);
                  int line_match = ((default_match || (0 == sal.pc))
                  int line_match = ((default_match || (0 == sal.pc))
                                    && b->source_file != NULL
                                    && b->source_file != NULL
                                    && sal.symtab != NULL
                                    && sal.symtab != NULL
                                    && strcmp (b->source_file, sal.symtab->filename) == 0
                                    && strcmp (b->source_file, sal.symtab->filename) == 0
                                    && b->line_number == sal.line);
                                    && b->line_number == sal.line);
                  if (pc_match || line_match)
                  if (pc_match || line_match)
                    {
                    {
                      match = 1;
                      match = 1;
                      break;
                      break;
                    }
                    }
                }
                }
            }
            }
 
 
          if (match)
          if (match)
            VEC_safe_push(breakpoint_p, found, b);
            VEC_safe_push(breakpoint_p, found, b);
        }
        }
    }
    }
  /* Now go thru the 'found' chain and delete them.  */
  /* Now go thru the 'found' chain and delete them.  */
  if (VEC_empty(breakpoint_p, found))
  if (VEC_empty(breakpoint_p, found))
    {
    {
      if (arg)
      if (arg)
        error (_("No breakpoint at %s."), arg);
        error (_("No breakpoint at %s."), arg);
      else
      else
        error (_("No breakpoint at this line."));
        error (_("No breakpoint at this line."));
    }
    }
 
 
  if (VEC_length(breakpoint_p, found) > 1)
  if (VEC_length(breakpoint_p, found) > 1)
    from_tty = 1;               /* Always report if deleted more than one */
    from_tty = 1;               /* Always report if deleted more than one */
  if (from_tty)
  if (from_tty)
    {
    {
      if (VEC_length(breakpoint_p, found) == 1)
      if (VEC_length(breakpoint_p, found) == 1)
        printf_unfiltered (_("Deleted breakpoint "));
        printf_unfiltered (_("Deleted breakpoint "));
      else
      else
        printf_unfiltered (_("Deleted breakpoints "));
        printf_unfiltered (_("Deleted breakpoints "));
    }
    }
  breakpoints_changed ();
  breakpoints_changed ();
 
 
  for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
  for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
    {
    {
      if (from_tty)
      if (from_tty)
        printf_unfiltered ("%d ", b->number);
        printf_unfiltered ("%d ", b->number);
      delete_breakpoint (b);
      delete_breakpoint (b);
    }
    }
  if (from_tty)
  if (from_tty)
    putchar_unfiltered ('\n');
    putchar_unfiltered ('\n');
}
}


/* Delete breakpoint in BS if they are `delete' breakpoints and
/* Delete breakpoint in BS if they are `delete' breakpoints and
   all breakpoints that are marked for deletion, whether hit or not.
   all breakpoints that are marked for deletion, whether hit or not.
   This is called after any breakpoint is hit, or after errors.  */
   This is called after any breakpoint is hit, or after errors.  */
 
 
void
void
breakpoint_auto_delete (bpstat bs)
breakpoint_auto_delete (bpstat bs)
{
{
  struct breakpoint *b, *temp;
  struct breakpoint *b, *temp;
 
 
  for (; bs; bs = bs->next)
  for (; bs; bs = bs->next)
    if (bs->breakpoint_at && bs->breakpoint_at->owner->disposition == disp_del
    if (bs->breakpoint_at && bs->breakpoint_at->owner->disposition == disp_del
        && bs->stop)
        && bs->stop)
      delete_breakpoint (bs->breakpoint_at->owner);
      delete_breakpoint (bs->breakpoint_at->owner);
 
 
  ALL_BREAKPOINTS_SAFE (b, temp)
  ALL_BREAKPOINTS_SAFE (b, temp)
  {
  {
    if (b->disposition == disp_del_at_next_stop)
    if (b->disposition == disp_del_at_next_stop)
      delete_breakpoint (b);
      delete_breakpoint (b);
  }
  }
}
}
 
 
/* Remove locations of breakpoint BPT from
/* Remove locations of breakpoint BPT from
   the global list of breakpoint locations.  */
   the global list of breakpoint locations.  */
 
 
static void
static void
unlink_locations_from_global_list (struct breakpoint *bpt)
unlink_locations_from_global_list (struct breakpoint *bpt)
{
{
  /* This code assumes that the locations
  /* This code assumes that the locations
     of a breakpoint are found in the global list
     of a breakpoint are found in the global list
     in the same order,  but not necessary adjacent.  */
     in the same order,  but not necessary adjacent.  */
  struct bp_location **tmp = &bp_location_chain;
  struct bp_location **tmp = &bp_location_chain;
  struct bp_location *here = bpt->loc;
  struct bp_location *here = bpt->loc;
 
 
  if (here == NULL)
  if (here == NULL)
    return;
    return;
 
 
  for (; *tmp && here;)
  for (; *tmp && here;)
    {
    {
      if (*tmp == here)
      if (*tmp == here)
        {
        {
          *tmp = here->global_next;
          *tmp = here->global_next;
          here = here->next;
          here = here->next;
        }
        }
      else
      else
        {
        {
          tmp = &((*tmp)->global_next);
          tmp = &((*tmp)->global_next);
        }
        }
    }
    }
}
}
 
 
/* Delete a breakpoint and clean up all traces of it in the data
/* Delete a breakpoint and clean up all traces of it in the data
   structures. */
   structures. */
 
 
void
void
delete_breakpoint (struct breakpoint *bpt)
delete_breakpoint (struct breakpoint *bpt)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
  bpstat bs;
  bpstat bs;
  struct bp_location *loc;
  struct bp_location *loc;
 
 
  gdb_assert (bpt != NULL);
  gdb_assert (bpt != NULL);
 
 
  /* Has this bp already been deleted?  This can happen because multiple
  /* Has this bp already been deleted?  This can happen because multiple
     lists can hold pointers to bp's.  bpstat lists are especial culprits.
     lists can hold pointers to bp's.  bpstat lists are especial culprits.
 
 
     One example of this happening is a watchpoint's scope bp.  When the
     One example of this happening is a watchpoint's scope bp.  When the
     scope bp triggers, we notice that the watchpoint is out of scope, and
     scope bp triggers, we notice that the watchpoint is out of scope, and
     delete it.  We also delete its scope bp.  But the scope bp is marked
     delete it.  We also delete its scope bp.  But the scope bp is marked
     "auto-deleting", and is already on a bpstat.  That bpstat is then
     "auto-deleting", and is already on a bpstat.  That bpstat is then
     checked for auto-deleting bp's, which are deleted.
     checked for auto-deleting bp's, which are deleted.
 
 
     A real solution to this problem might involve reference counts in bp's,
     A real solution to this problem might involve reference counts in bp's,
     and/or giving them pointers back to their referencing bpstat's, and
     and/or giving them pointers back to their referencing bpstat's, and
     teaching delete_breakpoint to only free a bp's storage when no more
     teaching delete_breakpoint to only free a bp's storage when no more
     references were extent.  A cheaper bandaid was chosen.  */
     references were extent.  A cheaper bandaid was chosen.  */
  if (bpt->type == bp_none)
  if (bpt->type == bp_none)
    return;
    return;
 
 
  if (deprecated_delete_breakpoint_hook)
  if (deprecated_delete_breakpoint_hook)
    deprecated_delete_breakpoint_hook (bpt);
    deprecated_delete_breakpoint_hook (bpt);
  breakpoint_delete_event (bpt->number);
  breakpoint_delete_event (bpt->number);
 
 
  for (loc = bpt->loc; loc; loc = loc->next)
  for (loc = bpt->loc; loc; loc = loc->next)
    {
    {
      if (loc->inserted)
      if (loc->inserted)
        remove_breakpoint (loc, mark_inserted);
        remove_breakpoint (loc, mark_inserted);
 
 
      if (loc->cond)
      if (loc->cond)
        xfree (loc->cond);
        xfree (loc->cond);
 
 
      if (loc->function_name)
      if (loc->function_name)
        xfree (loc->function_name);
        xfree (loc->function_name);
    }
    }
 
 
  if (breakpoint_chain == bpt)
  if (breakpoint_chain == bpt)
    breakpoint_chain = bpt->next;
    breakpoint_chain = bpt->next;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->next == bpt)
    if (b->next == bpt)
    {
    {
      b->next = bpt->next;
      b->next = bpt->next;
      break;
      break;
    }
    }
 
 
  unlink_locations_from_global_list (bpt);
  unlink_locations_from_global_list (bpt);
 
 
  check_duplicates (bpt);
  check_duplicates (bpt);
 
 
  if (bpt->type != bp_hardware_watchpoint
  if (bpt->type != bp_hardware_watchpoint
      && bpt->type != bp_read_watchpoint
      && bpt->type != bp_read_watchpoint
      && bpt->type != bp_access_watchpoint
      && bpt->type != bp_access_watchpoint
      && bpt->type != bp_catch_fork
      && bpt->type != bp_catch_fork
      && bpt->type != bp_catch_vfork
      && bpt->type != bp_catch_vfork
      && bpt->type != bp_catch_exec)
      && bpt->type != bp_catch_exec)
    for (loc = bpt->loc; loc; loc = loc->next)
    for (loc = bpt->loc; loc; loc = loc->next)
      {
      {
        /* If this breakpoint location was inserted, and there is
        /* If this breakpoint location was inserted, and there is
           another breakpoint at the same address, we need to
           another breakpoint at the same address, we need to
           insert the other breakpoint.  */
           insert the other breakpoint.  */
        if (loc->inserted)
        if (loc->inserted)
          {
          {
            struct bp_location *loc2;
            struct bp_location *loc2;
            ALL_BP_LOCATIONS (loc2)
            ALL_BP_LOCATIONS (loc2)
              if (loc2->address == loc->address
              if (loc2->address == loc->address
                  && loc2->section == loc->section
                  && loc2->section == loc->section
                  && !loc->duplicate
                  && !loc->duplicate
                  && loc2->owner->enable_state != bp_disabled
                  && loc2->owner->enable_state != bp_disabled
                  && loc2->enabled
                  && loc2->enabled
                  && !loc2->shlib_disabled
                  && !loc2->shlib_disabled
                  && loc2->owner->enable_state != bp_call_disabled)
                  && loc2->owner->enable_state != bp_call_disabled)
                {
                {
                  int val;
                  int val;
 
 
                  /* We should never reach this point if there is a permanent
                  /* We should never reach this point if there is a permanent
                     breakpoint at the same address as the one being deleted.
                     breakpoint at the same address as the one being deleted.
                     If there is a permanent breakpoint somewhere, it should
                     If there is a permanent breakpoint somewhere, it should
                     always be the only one inserted.  */
                     always be the only one inserted.  */
                  if (loc2->owner->enable_state == bp_permanent)
                  if (loc2->owner->enable_state == bp_permanent)
                    internal_error (__FILE__, __LINE__,
                    internal_error (__FILE__, __LINE__,
                                    _("another breakpoint was inserted on top of "
                                    _("another breakpoint was inserted on top of "
                                      "a permanent breakpoint"));
                                      "a permanent breakpoint"));
 
 
                  memset (&loc2->target_info, 0, sizeof (loc2->target_info));
                  memset (&loc2->target_info, 0, sizeof (loc2->target_info));
                  loc2->target_info.placed_address = loc2->address;
                  loc2->target_info.placed_address = loc2->address;
                  if (b->type == bp_hardware_breakpoint)
                  if (b->type == bp_hardware_breakpoint)
                    val = target_insert_hw_breakpoint (&loc2->target_info);
                    val = target_insert_hw_breakpoint (&loc2->target_info);
                  else
                  else
                    val = target_insert_breakpoint (&loc2->target_info);
                    val = target_insert_breakpoint (&loc2->target_info);
 
 
                  /* If there was an error in the insert, print a message, then stop execution.  */
                  /* If there was an error in the insert, print a message, then stop execution.  */
                  if (val != 0)
                  if (val != 0)
                    {
                    {
                      struct ui_file *tmp_error_stream = mem_fileopen ();
                      struct ui_file *tmp_error_stream = mem_fileopen ();
                      make_cleanup_ui_file_delete (tmp_error_stream);
                      make_cleanup_ui_file_delete (tmp_error_stream);
 
 
 
 
                      if (b->type == bp_hardware_breakpoint)
                      if (b->type == bp_hardware_breakpoint)
                        {
                        {
                          fprintf_unfiltered (tmp_error_stream,
                          fprintf_unfiltered (tmp_error_stream,
                                              "Cannot insert hardware breakpoint %d.\n"
                                              "Cannot insert hardware breakpoint %d.\n"
                                              "You may have requested too many hardware breakpoints.\n",
                                              "You may have requested too many hardware breakpoints.\n",
                                              b->number);
                                              b->number);
                        }
                        }
                      else
                      else
                        {
                        {
                          fprintf_unfiltered (tmp_error_stream, "Cannot insert breakpoint %d.\n", b->number);
                          fprintf_unfiltered (tmp_error_stream, "Cannot insert breakpoint %d.\n", b->number);
                          fprintf_filtered (tmp_error_stream, "Error accessing memory address ");
                          fprintf_filtered (tmp_error_stream, "Error accessing memory address ");
                          fputs_filtered (paddress (loc2->address),
                          fputs_filtered (paddress (loc2->address),
                                          tmp_error_stream);
                                          tmp_error_stream);
                          fprintf_filtered (tmp_error_stream, ": %s.\n",
                          fprintf_filtered (tmp_error_stream, ": %s.\n",
                                            safe_strerror (val));
                                            safe_strerror (val));
                        }
                        }
 
 
                      fprintf_unfiltered (tmp_error_stream,"The same program may be running in another process.");
                      fprintf_unfiltered (tmp_error_stream,"The same program may be running in another process.");
                      target_terminal_ours_for_output ();
                      target_terminal_ours_for_output ();
                      error_stream(tmp_error_stream);
                      error_stream(tmp_error_stream);
                    }
                    }
                  else
                  else
                    loc2->inserted = 1;
                    loc2->inserted = 1;
                }
                }
          }
          }
      }
      }
 
 
  free_command_lines (&bpt->commands);
  free_command_lines (&bpt->commands);
  if (bpt->cond_string != NULL)
  if (bpt->cond_string != NULL)
    xfree (bpt->cond_string);
    xfree (bpt->cond_string);
  if (bpt->addr_string != NULL)
  if (bpt->addr_string != NULL)
    xfree (bpt->addr_string);
    xfree (bpt->addr_string);
  if (bpt->exp != NULL)
  if (bpt->exp != NULL)
    xfree (bpt->exp);
    xfree (bpt->exp);
  if (bpt->exp_string != NULL)
  if (bpt->exp_string != NULL)
    xfree (bpt->exp_string);
    xfree (bpt->exp_string);
  if (bpt->val != NULL)
  if (bpt->val != NULL)
    value_free (bpt->val);
    value_free (bpt->val);
  if (bpt->source_file != NULL)
  if (bpt->source_file != NULL)
    xfree (bpt->source_file);
    xfree (bpt->source_file);
  if (bpt->dll_pathname != NULL)
  if (bpt->dll_pathname != NULL)
    xfree (bpt->dll_pathname);
    xfree (bpt->dll_pathname);
  if (bpt->triggered_dll_pathname != NULL)
  if (bpt->triggered_dll_pathname != NULL)
    xfree (bpt->triggered_dll_pathname);
    xfree (bpt->triggered_dll_pathname);
  if (bpt->exec_pathname != NULL)
  if (bpt->exec_pathname != NULL)
    xfree (bpt->exec_pathname);
    xfree (bpt->exec_pathname);
 
 
  /* Be sure no bpstat's are pointing at it after it's been freed.  */
  /* Be sure no bpstat's are pointing at it after it's been freed.  */
  /* FIXME, how can we find all bpstat's?
  /* FIXME, how can we find all bpstat's?
     We just check stop_bpstat for now.  Note that we cannot just
     We just check stop_bpstat for now.  Note that we cannot just
     remove bpstats pointing at bpt from the stop_bpstat list
     remove bpstats pointing at bpt from the stop_bpstat list
     entirely, as breakpoint commands are associated with the bpstat;
     entirely, as breakpoint commands are associated with the bpstat;
     if we remove it here, then the later call to
     if we remove it here, then the later call to
         bpstat_do_actions (&stop_bpstat);
         bpstat_do_actions (&stop_bpstat);
     in event-top.c won't do anything, and temporary breakpoints
     in event-top.c won't do anything, and temporary breakpoints
     with commands won't work.  */
     with commands won't work.  */
  for (bs = stop_bpstat; bs; bs = bs->next)
  for (bs = stop_bpstat; bs; bs = bs->next)
    if (bs->breakpoint_at && bs->breakpoint_at->owner == bpt)
    if (bs->breakpoint_at && bs->breakpoint_at->owner == bpt)
      {
      {
        bs->breakpoint_at = NULL;
        bs->breakpoint_at = NULL;
        bs->old_val = NULL;
        bs->old_val = NULL;
        /* bs->commands will be freed later.  */
        /* bs->commands will be freed later.  */
      }
      }
  /* On the chance that someone will soon try again to delete this same
  /* On the chance that someone will soon try again to delete this same
     bp, we mark it as deleted before freeing its storage. */
     bp, we mark it as deleted before freeing its storage. */
  bpt->type = bp_none;
  bpt->type = bp_none;
 
 
  for (loc = bpt->loc; loc;)
  for (loc = bpt->loc; loc;)
    {
    {
      struct bp_location *loc_next = loc->next;
      struct bp_location *loc_next = loc->next;
      xfree (loc);
      xfree (loc);
      loc = loc_next;
      loc = loc_next;
    }
    }
  xfree (bpt);
  xfree (bpt);
}
}
 
 
static void
static void
do_delete_breakpoint_cleanup (void *b)
do_delete_breakpoint_cleanup (void *b)
{
{
  delete_breakpoint (b);
  delete_breakpoint (b);
}
}
 
 
struct cleanup *
struct cleanup *
make_cleanup_delete_breakpoint (struct breakpoint *b)
make_cleanup_delete_breakpoint (struct breakpoint *b)
{
{
  return make_cleanup (do_delete_breakpoint_cleanup, b);
  return make_cleanup (do_delete_breakpoint_cleanup, b);
}
}
 
 
struct cleanup *
struct cleanup *
make_exec_cleanup_delete_breakpoint (struct breakpoint *b)
make_exec_cleanup_delete_breakpoint (struct breakpoint *b)
{
{
  return make_exec_cleanup (do_delete_breakpoint_cleanup, b);
  return make_exec_cleanup (do_delete_breakpoint_cleanup, b);
}
}
 
 
void
void
delete_command (char *arg, int from_tty)
delete_command (char *arg, int from_tty)
{
{
  struct breakpoint *b, *temp;
  struct breakpoint *b, *temp;
 
 
  dont_repeat ();
  dont_repeat ();
 
 
  if (arg == 0)
  if (arg == 0)
    {
    {
      int breaks_to_delete = 0;
      int breaks_to_delete = 0;
 
 
      /* Delete all breakpoints if no argument.
      /* Delete all breakpoints if no argument.
         Do not delete internal or call-dummy breakpoints, these
         Do not delete internal or call-dummy breakpoints, these
         have to be deleted with an explicit breakpoint number argument.  */
         have to be deleted with an explicit breakpoint number argument.  */
      ALL_BREAKPOINTS (b)
      ALL_BREAKPOINTS (b)
      {
      {
        if (b->type != bp_call_dummy &&
        if (b->type != bp_call_dummy &&
            b->type != bp_shlib_event &&
            b->type != bp_shlib_event &&
            b->type != bp_thread_event &&
            b->type != bp_thread_event &&
            b->type != bp_overlay_event &&
            b->type != bp_overlay_event &&
            b->number >= 0)
            b->number >= 0)
          {
          {
            breaks_to_delete = 1;
            breaks_to_delete = 1;
            break;
            break;
          }
          }
      }
      }
 
 
      /* Ask user only if there are some breakpoints to delete.  */
      /* Ask user only if there are some breakpoints to delete.  */
      if (!from_tty
      if (!from_tty
          || (breaks_to_delete && query (_("Delete all breakpoints? "))))
          || (breaks_to_delete && query (_("Delete all breakpoints? "))))
        {
        {
          ALL_BREAKPOINTS_SAFE (b, temp)
          ALL_BREAKPOINTS_SAFE (b, temp)
          {
          {
            if (b->type != bp_call_dummy &&
            if (b->type != bp_call_dummy &&
                b->type != bp_shlib_event &&
                b->type != bp_shlib_event &&
                b->type != bp_thread_event &&
                b->type != bp_thread_event &&
                b->type != bp_overlay_event &&
                b->type != bp_overlay_event &&
                b->number >= 0)
                b->number >= 0)
              delete_breakpoint (b);
              delete_breakpoint (b);
          }
          }
        }
        }
    }
    }
  else
  else
    map_breakpoint_numbers (arg, delete_breakpoint);
    map_breakpoint_numbers (arg, delete_breakpoint);
}
}
 
 
static int
static int
all_locations_are_pending (struct bp_location *loc)
all_locations_are_pending (struct bp_location *loc)
{
{
  for (; loc; loc = loc->next)
  for (; loc; loc = loc->next)
    if (!loc->shlib_disabled)
    if (!loc->shlib_disabled)
      return 0;
      return 0;
  return 1;
  return 1;
}
}
 
 
/* Subroutine of update_breakpoint_locations to simplify it.
/* Subroutine of update_breakpoint_locations to simplify it.
   Return non-zero if multiple fns in list LOC have the same name.
   Return non-zero if multiple fns in list LOC have the same name.
   Null names are ignored.  */
   Null names are ignored.  */
 
 
static int
static int
ambiguous_names_p (struct bp_location *loc)
ambiguous_names_p (struct bp_location *loc)
{
{
  struct bp_location *l;
  struct bp_location *l;
  htab_t htab = htab_create_alloc (13, htab_hash_string,
  htab_t htab = htab_create_alloc (13, htab_hash_string,
                                   (int (*) (const void *, const void *)) streq,
                                   (int (*) (const void *, const void *)) streq,
                                   NULL, xcalloc, xfree);
                                   NULL, xcalloc, xfree);
 
 
  for (l = loc; l != NULL; l = l->next)
  for (l = loc; l != NULL; l = l->next)
    {
    {
      const char **slot;
      const char **slot;
      const char *name = l->function_name;
      const char *name = l->function_name;
 
 
      /* Allow for some names to be NULL, ignore them.  */
      /* Allow for some names to be NULL, ignore them.  */
      if (name == NULL)
      if (name == NULL)
        continue;
        continue;
 
 
      slot = (const char **) htab_find_slot (htab, (const void *) name,
      slot = (const char **) htab_find_slot (htab, (const void *) name,
                                             INSERT);
                                             INSERT);
      /* NOTE: We can assume slot != NULL here because xcalloc never returns
      /* NOTE: We can assume slot != NULL here because xcalloc never returns
         NULL.  */
         NULL.  */
      if (*slot != NULL)
      if (*slot != NULL)
        {
        {
          htab_delete (htab);
          htab_delete (htab);
          return 1;
          return 1;
        }
        }
      *slot = name;
      *slot = name;
    }
    }
 
 
  htab_delete (htab);
  htab_delete (htab);
  return 0;
  return 0;
}
}
 
 
static void
static void
update_breakpoint_locations (struct breakpoint *b,
update_breakpoint_locations (struct breakpoint *b,
                             struct symtabs_and_lines sals)
                             struct symtabs_and_lines sals)
{
{
  int i;
  int i;
  char *s;
  char *s;
  struct bp_location *existing_locations = b->loc;
  struct bp_location *existing_locations = b->loc;
 
 
  /* If there's no new locations, and all existing locations
  /* If there's no new locations, and all existing locations
     are pending, don't do anything.  This optimizes
     are pending, don't do anything.  This optimizes
     the common case where all locations are in the same
     the common case where all locations are in the same
     shared library, that was unloaded. We'd like to
     shared library, that was unloaded. We'd like to
     retain the location, so that when the library
     retain the location, so that when the library
     is loaded again, we don't loose the enabled/disabled
     is loaded again, we don't loose the enabled/disabled
     status of the individual locations.  */
     status of the individual locations.  */
  if (all_locations_are_pending (existing_locations) && sals.nelts == 0)
  if (all_locations_are_pending (existing_locations) && sals.nelts == 0)
    return;
    return;
 
 
  unlink_locations_from_global_list (b);
  unlink_locations_from_global_list (b);
  b->loc = NULL;
  b->loc = NULL;
 
 
  for (i = 0; i < sals.nelts; ++i)
  for (i = 0; i < sals.nelts; ++i)
    {
    {
      struct bp_location *new_loc =
      struct bp_location *new_loc =
        add_location_to_breakpoint (b, b->type, &(sals.sals[i]));
        add_location_to_breakpoint (b, b->type, &(sals.sals[i]));
 
 
      /* Reparse conditions, they might contain references to the
      /* Reparse conditions, they might contain references to the
         old symtab.  */
         old symtab.  */
      if (b->cond_string != NULL)
      if (b->cond_string != NULL)
        {
        {
          struct gdb_exception e;
          struct gdb_exception e;
 
 
          s = b->cond_string;
          s = b->cond_string;
          TRY_CATCH (e, RETURN_MASK_ERROR)
          TRY_CATCH (e, RETURN_MASK_ERROR)
            {
            {
              new_loc->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc),
              new_loc->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc),
                                           0);
                                           0);
            }
            }
          if (e.reason < 0)
          if (e.reason < 0)
            {
            {
              warning (_("failed to reevaluate condition for breakpoint %d: %s"),
              warning (_("failed to reevaluate condition for breakpoint %d: %s"),
                       b->number, e.message);
                       b->number, e.message);
              new_loc->enabled = 0;
              new_loc->enabled = 0;
            }
            }
        }
        }
 
 
      if (b->source_file != NULL)
      if (b->source_file != NULL)
        xfree (b->source_file);
        xfree (b->source_file);
      if (sals.sals[i].symtab == NULL)
      if (sals.sals[i].symtab == NULL)
        b->source_file = NULL;
        b->source_file = NULL;
      else
      else
        b->source_file =
        b->source_file =
          savestring (sals.sals[i].symtab->filename,
          savestring (sals.sals[i].symtab->filename,
                      strlen (sals.sals[i].symtab->filename));
                      strlen (sals.sals[i].symtab->filename));
 
 
      if (b->line_number == 0)
      if (b->line_number == 0)
        b->line_number = sals.sals[i].line;
        b->line_number = sals.sals[i].line;
    }
    }
 
 
  /* If possible, carry over 'disable' status from existing breakpoints.  */
  /* If possible, carry over 'disable' status from existing breakpoints.  */
  {
  {
    struct bp_location *e = existing_locations;
    struct bp_location *e = existing_locations;
    /* If there are multiple breakpoints with the same function name,
    /* If there are multiple breakpoints with the same function name,
       e.g. for inline functions, comparing function names won't work.
       e.g. for inline functions, comparing function names won't work.
       Instead compare pc addresses; this is just a heuristic as things
       Instead compare pc addresses; this is just a heuristic as things
       may have moved, but in practice it gives the correct answer
       may have moved, but in practice it gives the correct answer
       often enough until a better solution is found.  */
       often enough until a better solution is found.  */
    int have_ambiguous_names = ambiguous_names_p (b->loc);
    int have_ambiguous_names = ambiguous_names_p (b->loc);
 
 
    for (; e; e = e->next)
    for (; e; e = e->next)
      {
      {
        if (!e->enabled && e->function_name)
        if (!e->enabled && e->function_name)
          {
          {
            struct bp_location *l = b->loc;
            struct bp_location *l = b->loc;
            if (have_ambiguous_names)
            if (have_ambiguous_names)
              {
              {
                for (; l; l = l->next)
                for (; l; l = l->next)
                  if (e->address == l->address)
                  if (e->address == l->address)
                    {
                    {
                      l->enabled = 0;
                      l->enabled = 0;
                      break;
                      break;
                    }
                    }
              }
              }
            else
            else
              {
              {
                for (; l; l = l->next)
                for (; l; l = l->next)
                  if (l->function_name
                  if (l->function_name
                      && strcmp (e->function_name, l->function_name) == 0)
                      && strcmp (e->function_name, l->function_name) == 0)
                    {
                    {
                      l->enabled = 0;
                      l->enabled = 0;
                      break;
                      break;
                    }
                    }
              }
              }
          }
          }
      }
      }
  }
  }
 
 
  while (existing_locations)
  while (existing_locations)
    {
    {
      struct bp_location *next = existing_locations->next;
      struct bp_location *next = existing_locations->next;
      free_bp_location (existing_locations);
      free_bp_location (existing_locations);
      existing_locations = next;
      existing_locations = next;
    }
    }
}
}
 
 
 
 
/* Reset a breakpoint given it's struct breakpoint * BINT.
/* Reset a breakpoint given it's struct breakpoint * BINT.
   The value we return ends up being the return value from catch_errors.
   The value we return ends up being the return value from catch_errors.
   Unused in this case.  */
   Unused in this case.  */
 
 
static int
static int
breakpoint_re_set_one (void *bint)
breakpoint_re_set_one (void *bint)
{
{
  /* get past catch_errs */
  /* get past catch_errs */
  struct breakpoint *b = (struct breakpoint *) bint;
  struct breakpoint *b = (struct breakpoint *) bint;
  struct value *mark;
  struct value *mark;
  int i;
  int i;
  int not_found = 0;
  int not_found = 0;
  int *not_found_ptr = &not_found;
  int *not_found_ptr = &not_found;
  struct symtabs_and_lines sals = {};
  struct symtabs_and_lines sals = {};
  struct symtabs_and_lines expanded;
  struct symtabs_and_lines expanded;
  char *s;
  char *s;
  enum enable_state save_enable;
  enum enable_state save_enable;
  struct gdb_exception e;
  struct gdb_exception e;
 
 
 
 
  switch (b->type)
  switch (b->type)
    {
    {
    case bp_none:
    case bp_none:
      warning (_("attempted to reset apparently deleted breakpoint #%d?"),
      warning (_("attempted to reset apparently deleted breakpoint #%d?"),
               b->number);
               b->number);
      return 0;
      return 0;
    case bp_breakpoint:
    case bp_breakpoint:
    case bp_hardware_breakpoint:
    case bp_hardware_breakpoint:
    case bp_catch_load:
    case bp_catch_load:
    case bp_catch_unload:
    case bp_catch_unload:
      if (b->addr_string == NULL)
      if (b->addr_string == NULL)
        {
        {
          /* Anything without a string can't be re-set. */
          /* Anything without a string can't be re-set. */
          delete_breakpoint (b);
          delete_breakpoint (b);
          return 0;
          return 0;
        }
        }
 
 
      set_language (b->language);
      set_language (b->language);
      input_radix = b->input_radix;
      input_radix = b->input_radix;
      s = b->addr_string;
      s = b->addr_string;
      TRY_CATCH (e, RETURN_MASK_ERROR)
      TRY_CATCH (e, RETURN_MASK_ERROR)
        {
        {
          sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL,
          sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL,
                                not_found_ptr);
                                not_found_ptr);
        }
        }
      if (e.reason < 0)
      if (e.reason < 0)
        {
        {
          int not_found_and_ok = 0;
          int not_found_and_ok = 0;
          /* For pending breakpoints, it's expected that parsing
          /* For pending breakpoints, it's expected that parsing
             will fail until the right shared library is loaded.
             will fail until the right shared library is loaded.
             User has already told to create pending breakpoints and
             User has already told to create pending breakpoints and
             don't need extra messages.  If breakpoint is in bp_shlib_disabled
             don't need extra messages.  If breakpoint is in bp_shlib_disabled
             state, then user already saw the message about that breakpoint
             state, then user already saw the message about that breakpoint
             being disabled, and don't want to see more errors.  */
             being disabled, and don't want to see more errors.  */
          if (not_found
          if (not_found
              && (b->condition_not_parsed
              && (b->condition_not_parsed
                  || (b->loc && b->loc->shlib_disabled)
                  || (b->loc && b->loc->shlib_disabled)
                  || b->enable_state == bp_disabled))
                  || b->enable_state == bp_disabled))
            not_found_and_ok = 1;
            not_found_and_ok = 1;
 
 
          if (!not_found_and_ok)
          if (!not_found_and_ok)
            {
            {
              /* We surely don't want to warn about the same breakpoint
              /* We surely don't want to warn about the same breakpoint
                 10 times.  One solution, implemented here, is disable
                 10 times.  One solution, implemented here, is disable
                 the breakpoint on error.  Another solution would be to
                 the breakpoint on error.  Another solution would be to
                 have separate 'warning emitted' flag.  Since this
                 have separate 'warning emitted' flag.  Since this
                 happens only when a binary has changed, I don't know
                 happens only when a binary has changed, I don't know
                 which approach is better.  */
                 which approach is better.  */
              b->enable_state = bp_disabled;
              b->enable_state = bp_disabled;
              throw_exception (e);
              throw_exception (e);
            }
            }
        }
        }
 
 
      if (not_found)
      if (not_found)
        break;
        break;
 
 
      gdb_assert (sals.nelts == 1);
      gdb_assert (sals.nelts == 1);
      resolve_sal_pc (&sals.sals[0]);
      resolve_sal_pc (&sals.sals[0]);
      if (b->condition_not_parsed && s && s[0])
      if (b->condition_not_parsed && s && s[0])
        {
        {
          char *cond_string = 0;
          char *cond_string = 0;
          int thread = -1;
          int thread = -1;
          find_condition_and_thread (s, sals.sals[0].pc,
          find_condition_and_thread (s, sals.sals[0].pc,
                                     &cond_string, &thread);
                                     &cond_string, &thread);
          if (cond_string)
          if (cond_string)
            b->cond_string = cond_string;
            b->cond_string = cond_string;
          b->thread = thread;
          b->thread = thread;
          b->condition_not_parsed = 0;
          b->condition_not_parsed = 0;
        }
        }
      expanded = expand_line_sal_maybe (sals.sals[0]);
      expanded = expand_line_sal_maybe (sals.sals[0]);
      update_breakpoint_locations (b, expanded);
      update_breakpoint_locations (b, expanded);
 
 
      /* Now that this is re-enabled, check_duplicates
      /* Now that this is re-enabled, check_duplicates
         can be used. */
         can be used. */
      check_duplicates (b);
      check_duplicates (b);
 
 
      xfree (sals.sals);
      xfree (sals.sals);
      break;
      break;
 
 
    case bp_watchpoint:
    case bp_watchpoint:
    case bp_hardware_watchpoint:
    case bp_hardware_watchpoint:
    case bp_read_watchpoint:
    case bp_read_watchpoint:
    case bp_access_watchpoint:
    case bp_access_watchpoint:
      /* Watchpoint can be either on expression using entirely global variables,
      /* Watchpoint can be either on expression using entirely global variables,
         or it can be on local variables.
         or it can be on local variables.
 
 
         Watchpoints of the first kind are never auto-deleted, and even persist
         Watchpoints of the first kind are never auto-deleted, and even persist
         across program restarts. Since they can use variables from shared
         across program restarts. Since they can use variables from shared
         libraries, we need to reparse expression as libraries are loaded
         libraries, we need to reparse expression as libraries are loaded
         and unloaded.
         and unloaded.
 
 
         Watchpoints on local variables can also change meaning as result
         Watchpoints on local variables can also change meaning as result
         of solib event. For example, if a watchpoint uses both a local and
         of solib event. For example, if a watchpoint uses both a local and
         a global variables in expression, it's a local watchpoint, but
         a global variables in expression, it's a local watchpoint, but
         unloading of a shared library will make the expression invalid.
         unloading of a shared library will make the expression invalid.
         This is not a very common use case, but we still re-evaluate
         This is not a very common use case, but we still re-evaluate
         expression, to avoid surprises to the user.
         expression, to avoid surprises to the user.
 
 
         Note that for local watchpoints, we re-evaluate it only if
         Note that for local watchpoints, we re-evaluate it only if
         watchpoints frame id is still valid.  If it's not, it means
         watchpoints frame id is still valid.  If it's not, it means
         the watchpoint is out of scope and will be deleted soon. In fact,
         the watchpoint is out of scope and will be deleted soon. In fact,
         I'm not sure we'll ever be called in this case.
         I'm not sure we'll ever be called in this case.
 
 
         If a local watchpoint's frame id is still valid, then
         If a local watchpoint's frame id is still valid, then
         b->exp_valid_block is likewise valid, and we can safely use it.
         b->exp_valid_block is likewise valid, and we can safely use it.
 
 
         Don't do anything about disabled watchpoints, since they will
         Don't do anything about disabled watchpoints, since they will
         be reevaluated again when enabled.  */
         be reevaluated again when enabled.  */
      update_watchpoint (b, 1 /* reparse */);
      update_watchpoint (b, 1 /* reparse */);
      break;
      break;
      /* We needn't really do anything to reset these, since the mask
      /* We needn't really do anything to reset these, since the mask
         that requests them is unaffected by e.g., new libraries being
         that requests them is unaffected by e.g., new libraries being
         loaded. */
         loaded. */
    case bp_catch_fork:
    case bp_catch_fork:
    case bp_catch_vfork:
    case bp_catch_vfork:
    case bp_catch_exec:
    case bp_catch_exec:
      break;
      break;
 
 
    default:
    default:
      printf_filtered (_("Deleting unknown breakpoint type %d\n"), b->type);
      printf_filtered (_("Deleting unknown breakpoint type %d\n"), b->type);
      /* fall through */
      /* fall through */
      /* Delete longjmp and overlay event breakpoints; they will be
      /* Delete longjmp and overlay event breakpoints; they will be
         reset later by breakpoint_re_set.  */
         reset later by breakpoint_re_set.  */
    case bp_longjmp:
    case bp_longjmp:
    case bp_longjmp_resume:
    case bp_longjmp_resume:
    case bp_overlay_event:
    case bp_overlay_event:
      delete_breakpoint (b);
      delete_breakpoint (b);
      break;
      break;
 
 
      /* This breakpoint is special, it's set up when the inferior
      /* This breakpoint is special, it's set up when the inferior
         starts and we really don't want to touch it.  */
         starts and we really don't want to touch it.  */
    case bp_shlib_event:
    case bp_shlib_event:
 
 
      /* Like bp_shlib_event, this breakpoint type is special.
      /* Like bp_shlib_event, this breakpoint type is special.
         Once it is set up, we do not want to touch it.  */
         Once it is set up, we do not want to touch it.  */
    case bp_thread_event:
    case bp_thread_event:
 
 
      /* Keep temporary breakpoints, which can be encountered when we step
      /* Keep temporary breakpoints, which can be encountered when we step
         over a dlopen call and SOLIB_ADD is resetting the breakpoints.
         over a dlopen call and SOLIB_ADD is resetting the breakpoints.
         Otherwise these should have been blown away via the cleanup chain
         Otherwise these should have been blown away via the cleanup chain
         or by breakpoint_init_inferior when we rerun the executable.  */
         or by breakpoint_init_inferior when we rerun the executable.  */
    case bp_until:
    case bp_until:
    case bp_finish:
    case bp_finish:
    case bp_watchpoint_scope:
    case bp_watchpoint_scope:
    case bp_call_dummy:
    case bp_call_dummy:
    case bp_step_resume:
    case bp_step_resume:
      break;
      break;
    }
    }
 
 
  return 0;
  return 0;
}
}
 
 
/* Re-set all breakpoints after symbols have been re-loaded.  */
/* Re-set all breakpoints after symbols have been re-loaded.  */
void
void
breakpoint_re_set (void)
breakpoint_re_set (void)
{
{
  struct breakpoint *b, *temp;
  struct breakpoint *b, *temp;
  enum language save_language;
  enum language save_language;
  int save_input_radix;
  int save_input_radix;
 
 
  save_language = current_language->la_language;
  save_language = current_language->la_language;
  save_input_radix = input_radix;
  save_input_radix = input_radix;
  ALL_BREAKPOINTS_SAFE (b, temp)
  ALL_BREAKPOINTS_SAFE (b, temp)
  {
  {
    /* Format possible error msg */
    /* Format possible error msg */
    char *message = xstrprintf ("Error in re-setting breakpoint %d: ",
    char *message = xstrprintf ("Error in re-setting breakpoint %d: ",
                                b->number);
                                b->number);
    struct cleanup *cleanups = make_cleanup (xfree, message);
    struct cleanup *cleanups = make_cleanup (xfree, message);
    catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
    catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
    do_cleanups (cleanups);
    do_cleanups (cleanups);
  }
  }
  set_language (save_language);
  set_language (save_language);
  input_radix = save_input_radix;
  input_radix = save_input_radix;
 
 
  if (gdbarch_get_longjmp_target_p (current_gdbarch))
  if (gdbarch_get_longjmp_target_p (current_gdbarch))
    {
    {
      create_longjmp_breakpoint ("longjmp");
      create_longjmp_breakpoint ("longjmp");
      create_longjmp_breakpoint ("_longjmp");
      create_longjmp_breakpoint ("_longjmp");
      create_longjmp_breakpoint ("siglongjmp");
      create_longjmp_breakpoint ("siglongjmp");
      create_longjmp_breakpoint ("_siglongjmp");
      create_longjmp_breakpoint ("_siglongjmp");
      create_longjmp_breakpoint (NULL);
      create_longjmp_breakpoint (NULL);
    }
    }
 
 
  create_overlay_event_breakpoint ("_ovly_debug_event");
  create_overlay_event_breakpoint ("_ovly_debug_event");
}
}


/* Reset the thread number of this breakpoint:
/* Reset the thread number of this breakpoint:
 
 
   - If the breakpoint is for all threads, leave it as-is.
   - If the breakpoint is for all threads, leave it as-is.
   - Else, reset it to the current thread for inferior_ptid. */
   - Else, reset it to the current thread for inferior_ptid. */
void
void
breakpoint_re_set_thread (struct breakpoint *b)
breakpoint_re_set_thread (struct breakpoint *b)
{
{
  if (b->thread != -1)
  if (b->thread != -1)
    {
    {
      if (in_thread_list (inferior_ptid))
      if (in_thread_list (inferior_ptid))
        b->thread = pid_to_thread_id (inferior_ptid);
        b->thread = pid_to_thread_id (inferior_ptid);
    }
    }
}
}
 
 
/* Set ignore-count of breakpoint number BPTNUM to COUNT.
/* Set ignore-count of breakpoint number BPTNUM to COUNT.
   If from_tty is nonzero, it prints a message to that effect,
   If from_tty is nonzero, it prints a message to that effect,
   which ends with a period (no newline).  */
   which ends with a period (no newline).  */
 
 
void
void
set_ignore_count (int bptnum, int count, int from_tty)
set_ignore_count (int bptnum, int count, int from_tty)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  if (count < 0)
  if (count < 0)
    count = 0;
    count = 0;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->number == bptnum)
    if (b->number == bptnum)
    {
    {
      b->ignore_count = count;
      b->ignore_count = count;
      if (from_tty)
      if (from_tty)
        {
        {
          if (count == 0)
          if (count == 0)
            printf_filtered (_("Will stop next time breakpoint %d is reached."),
            printf_filtered (_("Will stop next time breakpoint %d is reached."),
                             bptnum);
                             bptnum);
          else if (count == 1)
          else if (count == 1)
            printf_filtered (_("Will ignore next crossing of breakpoint %d."),
            printf_filtered (_("Will ignore next crossing of breakpoint %d."),
                             bptnum);
                             bptnum);
          else
          else
            printf_filtered (_("Will ignore next %d crossings of breakpoint %d."),
            printf_filtered (_("Will ignore next %d crossings of breakpoint %d."),
                             count, bptnum);
                             count, bptnum);
        }
        }
      breakpoints_changed ();
      breakpoints_changed ();
      breakpoint_modify_event (b->number);
      breakpoint_modify_event (b->number);
      return;
      return;
    }
    }
 
 
  error (_("No breakpoint number %d."), bptnum);
  error (_("No breakpoint number %d."), bptnum);
}
}
 
 
/* Clear the ignore counts of all breakpoints.  */
/* Clear the ignore counts of all breakpoints.  */
void
void
breakpoint_clear_ignore_counts (void)
breakpoint_clear_ignore_counts (void)
{
{
  struct breakpoint *b;
  struct breakpoint *b;
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    b->ignore_count = 0;
    b->ignore_count = 0;
}
}
 
 
/* Command to set ignore-count of breakpoint N to COUNT.  */
/* Command to set ignore-count of breakpoint N to COUNT.  */
 
 
static void
static void
ignore_command (char *args, int from_tty)
ignore_command (char *args, int from_tty)
{
{
  char *p = args;
  char *p = args;
  int num;
  int num;
 
 
  if (p == 0)
  if (p == 0)
    error_no_arg (_("a breakpoint number"));
    error_no_arg (_("a breakpoint number"));
 
 
  num = get_number (&p);
  num = get_number (&p);
  if (num == 0)
  if (num == 0)
    error (_("bad breakpoint number: '%s'"), args);
    error (_("bad breakpoint number: '%s'"), args);
  if (*p == 0)
  if (*p == 0)
    error (_("Second argument (specified ignore-count) is missing."));
    error (_("Second argument (specified ignore-count) is missing."));
 
 
  set_ignore_count (num,
  set_ignore_count (num,
                    longest_to_int (value_as_long (parse_and_eval (p))),
                    longest_to_int (value_as_long (parse_and_eval (p))),
                    from_tty);
                    from_tty);
  if (from_tty)
  if (from_tty)
    printf_filtered ("\n");
    printf_filtered ("\n");
}
}


/* Call FUNCTION on each of the breakpoints
/* Call FUNCTION on each of the breakpoints
   whose numbers are given in ARGS.  */
   whose numbers are given in ARGS.  */
 
 
static void
static void
map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *))
map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *))
{
{
  char *p = args;
  char *p = args;
  char *p1;
  char *p1;
  int num;
  int num;
  struct breakpoint *b, *tmp;
  struct breakpoint *b, *tmp;
  int match;
  int match;
 
 
  if (p == 0)
  if (p == 0)
    error_no_arg (_("one or more breakpoint numbers"));
    error_no_arg (_("one or more breakpoint numbers"));
 
 
  while (*p)
  while (*p)
    {
    {
      match = 0;
      match = 0;
      p1 = p;
      p1 = p;
 
 
      num = get_number_or_range (&p1);
      num = get_number_or_range (&p1);
      if (num == 0)
      if (num == 0)
        {
        {
          warning (_("bad breakpoint number at or near '%s'"), p);
          warning (_("bad breakpoint number at or near '%s'"), p);
        }
        }
      else
      else
        {
        {
          ALL_BREAKPOINTS_SAFE (b, tmp)
          ALL_BREAKPOINTS_SAFE (b, tmp)
            if (b->number == num)
            if (b->number == num)
              {
              {
                struct breakpoint *related_breakpoint = b->related_breakpoint;
                struct breakpoint *related_breakpoint = b->related_breakpoint;
                match = 1;
                match = 1;
                function (b);
                function (b);
                if (related_breakpoint)
                if (related_breakpoint)
                  function (related_breakpoint);
                  function (related_breakpoint);
                break;
                break;
              }
              }
          if (match == 0)
          if (match == 0)
            printf_unfiltered (_("No breakpoint number %d.\n"), num);
            printf_unfiltered (_("No breakpoint number %d.\n"), num);
        }
        }
      p = p1;
      p = p1;
    }
    }
}
}
 
 
static struct bp_location *
static struct bp_location *
find_location_by_number (char *number)
find_location_by_number (char *number)
{
{
  char *dot = strchr (number, '.');
  char *dot = strchr (number, '.');
  char *p1;
  char *p1;
  int bp_num;
  int bp_num;
  int loc_num;
  int loc_num;
  struct breakpoint *b;
  struct breakpoint *b;
  struct bp_location *loc;
  struct bp_location *loc;
 
 
  *dot = '\0';
  *dot = '\0';
 
 
  p1 = number;
  p1 = number;
  bp_num = get_number_or_range (&p1);
  bp_num = get_number_or_range (&p1);
  if (bp_num == 0)
  if (bp_num == 0)
    error (_("Bad breakpoint number '%s'"), number);
    error (_("Bad breakpoint number '%s'"), number);
 
 
  ALL_BREAKPOINTS (b)
  ALL_BREAKPOINTS (b)
    if (b->number == bp_num)
    if (b->number == bp_num)
      {
      {
        break;
        break;
      }
      }
 
 
  if (!b || b->number != bp_num)
  if (!b || b->number != bp_num)
    error (_("Bad breakpoint number '%s'"), number);
    error (_("Bad breakpoint number '%s'"), number);
 
 
  p1 = dot+1;
  p1 = dot+1;
  loc_num = get_number_or_range (&p1);
  loc_num = get_number_or_range (&p1);
  if (loc_num == 0)
  if (loc_num == 0)
    error (_("Bad breakpoint location number '%s'"), number);
    error (_("Bad breakpoint location number '%s'"), number);
 
 
  --loc_num;
  --loc_num;
  loc = b->loc;
  loc = b->loc;
  for (;loc_num && loc; --loc_num, loc = loc->next)
  for (;loc_num && loc; --loc_num, loc = loc->next)
    ;
    ;
  if (!loc)
  if (!loc)
    error (_("Bad breakpoint location number '%s'"), dot+1);
    error (_("Bad breakpoint location number '%s'"), dot+1);
 
 
  return loc;
  return loc;
}
}
 
 
 
 
/* Set ignore-count of breakpoint number BPTNUM to COUNT.
/* Set ignore-count of breakpoint number BPTNUM to COUNT.
   If from_tty is nonzero, it prints a message to that effect,
   If from_tty is nonzero, it prints a message to that effect,
   which ends with a period (no newline).  */
   which ends with a period (no newline).  */
 
 
void
void
disable_breakpoint (struct breakpoint *bpt)
disable_breakpoint (struct breakpoint *bpt)
{
{
  /* Never disable a watchpoint scope breakpoint; we want to
  /* Never disable a watchpoint scope breakpoint; we want to
     hit them when we leave scope so we can delete both the
     hit them when we leave scope so we can delete both the
     watchpoint and its scope breakpoint at that time.  */
     watchpoint and its scope breakpoint at that time.  */
  if (bpt->type == bp_watchpoint_scope)
  if (bpt->type == bp_watchpoint_scope)
    return;
    return;
 
 
  /* You can't disable permanent breakpoints.  */
  /* You can't disable permanent breakpoints.  */
  if (bpt->enable_state == bp_permanent)
  if (bpt->enable_state == bp_permanent)
    return;
    return;
 
 
  bpt->enable_state = bp_disabled;
  bpt->enable_state = bp_disabled;
 
 
  check_duplicates (bpt);
  check_duplicates (bpt);
 
 
  if (deprecated_modify_breakpoint_hook)
  if (deprecated_modify_breakpoint_hook)
    deprecated_modify_breakpoint_hook (bpt);
    deprecated_modify_breakpoint_hook (bpt);
  breakpoint_modify_event (bpt->number);
  breakpoint_modify_event (bpt->number);
}
}
 
 
static void
static void
disable_command (char *args, int from_tty)
disable_command (char *args, int from_tty)
{
{
  struct breakpoint *bpt;
  struct breakpoint *bpt;
  if (args == 0)
  if (args == 0)
    ALL_BREAKPOINTS (bpt)
    ALL_BREAKPOINTS (bpt)
      switch (bpt->type)
      switch (bpt->type)
      {
      {
      case bp_none:
      case bp_none:
        warning (_("attempted to disable apparently deleted breakpoint #%d?"),
        warning (_("attempted to disable apparently deleted breakpoint #%d?"),
                 bpt->number);
                 bpt->number);
        continue;
        continue;
      case bp_breakpoint:
      case bp_breakpoint:
      case bp_catch_load:
      case bp_catch_load:
      case bp_catch_unload:
      case bp_catch_unload:
      case bp_catch_fork:
      case bp_catch_fork:
      case bp_catch_vfork:
      case bp_catch_vfork:
      case bp_catch_exec:
      case bp_catch_exec:
      case bp_hardware_breakpoint:
      case bp_hardware_breakpoint:
      case bp_watchpoint:
      case bp_watchpoint:
      case bp_hardware_watchpoint:
      case bp_hardware_watchpoint:
      case bp_read_watchpoint:
      case bp_read_watchpoint:
      case bp_access_watchpoint:
      case bp_access_watchpoint:
        disable_breakpoint (bpt);
        disable_breakpoint (bpt);
      default:
      default:
        continue;
        continue;
      }
      }
  else if (strchr (args, '.'))
  else if (strchr (args, '.'))
    {
    {
      struct bp_location *loc = find_location_by_number (args);
      struct bp_location *loc = find_location_by_number (args);
      if (loc)
      if (loc)
        loc->enabled = 0;
        loc->enabled = 0;
      check_duplicates (loc->owner);
      check_duplicates (loc->owner);
    }
    }
  else
  else
    map_breakpoint_numbers (args, disable_breakpoint);
    map_breakpoint_numbers (args, disable_breakpoint);
}
}
 
 
static void
static void
do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
{
{
  int target_resources_ok, other_type_used;
  int target_resources_ok, other_type_used;
  struct value *mark;
  struct value *mark;
 
 
  if (bpt->type == bp_hardware_breakpoint)
  if (bpt->type == bp_hardware_breakpoint)
    {
    {
      int i;
      int i;
      i = hw_breakpoint_used_count ();
      i = hw_breakpoint_used_count ();
      target_resources_ok =
      target_resources_ok =
        TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
        TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
                                            i + 1, 0);
                                            i + 1, 0);
      if (target_resources_ok == 0)
      if (target_resources_ok == 0)
        error (_("No hardware breakpoint support in the target."));
        error (_("No hardware breakpoint support in the target."));
      else if (target_resources_ok < 0)
      else if (target_resources_ok < 0)
        error (_("Hardware breakpoints used exceeds limit."));
        error (_("Hardware breakpoints used exceeds limit."));
    }
    }
 
 
  if (bpt->type == bp_watchpoint ||
  if (bpt->type == bp_watchpoint ||
      bpt->type == bp_hardware_watchpoint ||
      bpt->type == bp_hardware_watchpoint ||
      bpt->type == bp_read_watchpoint ||
      bpt->type == bp_read_watchpoint ||
      bpt->type == bp_access_watchpoint)
      bpt->type == bp_access_watchpoint)
    {
    {
      struct frame_id saved_frame_id;
      struct frame_id saved_frame_id;
 
 
      saved_frame_id = get_frame_id (get_selected_frame (NULL));
      saved_frame_id = get_frame_id (get_selected_frame (NULL));
      if (bpt->exp_valid_block != NULL)
      if (bpt->exp_valid_block != NULL)
        {
        {
          struct frame_info *fr =
          struct frame_info *fr =
            fr = frame_find_by_id (bpt->watchpoint_frame);
            fr = frame_find_by_id (bpt->watchpoint_frame);
          if (fr == NULL)
          if (fr == NULL)
            {
            {
              printf_filtered (_("\
              printf_filtered (_("\
Cannot enable watchpoint %d because the block in which its expression\n\
Cannot enable watchpoint %d because the block in which its expression\n\
is valid is not currently in scope.\n"), bpt->number);
is valid is not currently in scope.\n"), bpt->number);
              return;
              return;
            }
            }
          select_frame (fr);
          select_frame (fr);
        }
        }
 
 
      if (bpt->val)
      if (bpt->val)
        value_free (bpt->val);
        value_free (bpt->val);
      mark = value_mark ();
      mark = value_mark ();
      bpt->val = evaluate_expression (bpt->exp);
      bpt->val = evaluate_expression (bpt->exp);
      release_value (bpt->val);
      release_value (bpt->val);
      if (value_lazy (bpt->val))
      if (value_lazy (bpt->val))
        value_fetch_lazy (bpt->val);
        value_fetch_lazy (bpt->val);
 
 
      if (bpt->type == bp_hardware_watchpoint ||
      if (bpt->type == bp_hardware_watchpoint ||
          bpt->type == bp_read_watchpoint ||
          bpt->type == bp_read_watchpoint ||
          bpt->type == bp_access_watchpoint)
          bpt->type == bp_access_watchpoint)
        {
        {
          int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
          int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
          int mem_cnt = can_use_hardware_watchpoint (bpt->val);
          int mem_cnt = can_use_hardware_watchpoint (bpt->val);
 
 
          /* Hack around 'unused var' error for some targets here */
          /* Hack around 'unused var' error for some targets here */
          (void) mem_cnt, (void) i;
          (void) mem_cnt, (void) i;
          target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
          target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
                                                                    bpt->type, i + mem_cnt, other_type_used);
                                                                    bpt->type, i + mem_cnt, other_type_used);
          /* we can consider of type is bp_hardware_watchpoint, convert to
          /* we can consider of type is bp_hardware_watchpoint, convert to
             bp_watchpoint in the following condition */
             bp_watchpoint in the following condition */
          if (target_resources_ok < 0)
          if (target_resources_ok < 0)
            {
            {
              printf_filtered (_("\
              printf_filtered (_("\
Cannot enable watchpoint %d because target watch resources\n\
Cannot enable watchpoint %d because target watch resources\n\
have been allocated for other watchpoints.\n"), bpt->number);
have been allocated for other watchpoints.\n"), bpt->number);
              value_free_to_mark (mark);
              value_free_to_mark (mark);
              return;
              return;
            }
            }
        }
        }
 
 
      select_frame (frame_find_by_id (saved_frame_id));
      select_frame (frame_find_by_id (saved_frame_id));
      value_free_to_mark (mark);
      value_free_to_mark (mark);
    }
    }
 
 
  if (bpt->enable_state != bp_permanent)
  if (bpt->enable_state != bp_permanent)
    bpt->enable_state = bp_enabled;
    bpt->enable_state = bp_enabled;
  bpt->disposition = disposition;
  bpt->disposition = disposition;
  check_duplicates (bpt);
  check_duplicates (bpt);
  breakpoints_changed ();
  breakpoints_changed ();
 
 
  if (deprecated_modify_breakpoint_hook)
  if (deprecated_modify_breakpoint_hook)
    deprecated_modify_breakpoint_hook (bpt);
    deprecated_modify_breakpoint_hook (bpt);
  breakpoint_modify_event (bpt->number);
  breakpoint_modify_event (bpt->number);
}
}
 
 
 
 
void
void
enable_breakpoint (struct breakpoint *bpt)
enable_breakpoint (struct breakpoint *bpt)
{
{
  do_enable_breakpoint (bpt, bpt->disposition);
  do_enable_breakpoint (bpt, bpt->disposition);
}
}
 
 
/* The enable command enables the specified breakpoints (or all defined
/* The enable command enables the specified breakpoints (or all defined
   breakpoints) so they once again become (or continue to be) effective
   breakpoints) so they once again become (or continue to be) effective
   in stopping the inferior.  */
   in stopping the inferior.  */
 
 
static void
static void
enable_command (char *args, int from_tty)
enable_command (char *args, int from_tty)
{
{
  struct breakpoint *bpt;
  struct breakpoint *bpt;
  if (args == 0)
  if (args == 0)
    ALL_BREAKPOINTS (bpt)
    ALL_BREAKPOINTS (bpt)
      switch (bpt->type)
      switch (bpt->type)
      {
      {
      case bp_none:
      case bp_none:
        warning (_("attempted to enable apparently deleted breakpoint #%d?"),
        warning (_("attempted to enable apparently deleted breakpoint #%d?"),
                 bpt->number);
                 bpt->number);
        continue;
        continue;
      case bp_breakpoint:
      case bp_breakpoint:
      case bp_catch_load:
      case bp_catch_load:
      case bp_catch_unload:
      case bp_catch_unload:
      case bp_catch_fork:
      case bp_catch_fork:
      case bp_catch_vfork:
      case bp_catch_vfork:
      case bp_catch_exec:
      case bp_catch_exec:
      case bp_hardware_breakpoint:
      case bp_hardware_breakpoint:
      case bp_watchpoint:
      case bp_watchpoint:
      case bp_hardware_watchpoint:
      case bp_hardware_watchpoint:
      case bp_read_watchpoint:
      case bp_read_watchpoint:
      case bp_access_watchpoint:
      case bp_access_watchpoint:
        enable_breakpoint (bpt);
        enable_breakpoint (bpt);
      default:
      default:
        continue;
        continue;
      }
      }
  else if (strchr (args, '.'))
  else if (strchr (args, '.'))
    {
    {
      struct bp_location *loc = find_location_by_number (args);
      struct bp_location *loc = find_location_by_number (args);
      if (loc)
      if (loc)
        loc->enabled = 1;
        loc->enabled = 1;
      check_duplicates (loc->owner);
      check_duplicates (loc->owner);
    }
    }
  else
  else
    map_breakpoint_numbers (args, enable_breakpoint);
    map_breakpoint_numbers (args, enable_breakpoint);
}
}
 
 
static void
static void
enable_once_breakpoint (struct breakpoint *bpt)
enable_once_breakpoint (struct breakpoint *bpt)
{
{
  do_enable_breakpoint (bpt, disp_disable);
  do_enable_breakpoint (bpt, disp_disable);
}
}
 
 
static void
static void
enable_once_command (char *args, int from_tty)
enable_once_command (char *args, int from_tty)
{
{
  map_breakpoint_numbers (args, enable_once_breakpoint);
  map_breakpoint_numbers (args, enable_once_breakpoint);
}
}
 
 
static void
static void
enable_delete_breakpoint (struct breakpoint *bpt)
enable_delete_breakpoint (struct breakpoint *bpt)
{
{
  do_enable_breakpoint (bpt, disp_del);
  do_enable_breakpoint (bpt, disp_del);
}
}
 
 
static void
static void
enable_delete_command (char *args, int from_tty)
enable_delete_command (char *args, int from_tty)
{
{
  map_breakpoint_numbers (args, enable_delete_breakpoint);
  map_breakpoint_numbers (args, enable_delete_breakpoint);
}
}


static void
static void
set_breakpoint_cmd (char *args, int from_tty)
set_breakpoint_cmd (char *args, int from_tty)
{
{
}
}
 
 
static void
static void
show_breakpoint_cmd (char *args, int from_tty)
show_breakpoint_cmd (char *args, int from_tty)
{
{
}
}
 
 
/* Use default_breakpoint_'s, or nothing if they aren't valid.  */
/* Use default_breakpoint_'s, or nothing if they aren't valid.  */
 
 
struct symtabs_and_lines
struct symtabs_and_lines
decode_line_spec_1 (char *string, int funfirstline)
decode_line_spec_1 (char *string, int funfirstline)
{
{
  struct symtabs_and_lines sals;
  struct symtabs_and_lines sals;
  if (string == 0)
  if (string == 0)
    error (_("Empty line specification."));
    error (_("Empty line specification."));
  if (default_breakpoint_valid)
  if (default_breakpoint_valid)
    sals = decode_line_1 (&string, funfirstline,
    sals = decode_line_1 (&string, funfirstline,
                          default_breakpoint_symtab,
                          default_breakpoint_symtab,
                          default_breakpoint_line,
                          default_breakpoint_line,
                          (char ***) NULL, NULL);
                          (char ***) NULL, NULL);
  else
  else
    sals = decode_line_1 (&string, funfirstline,
    sals = decode_line_1 (&string, funfirstline,
                          (struct symtab *) NULL, 0, (char ***) NULL, NULL);
                          (struct symtab *) NULL, 0, (char ***) NULL, NULL);
  if (*string)
  if (*string)
    error (_("Junk at end of line specification: %s"), string);
    error (_("Junk at end of line specification: %s"), string);
  return sals;
  return sals;
}
}
 
 
/* Create and insert a raw software breakpoint at PC.  Return an
/* Create and insert a raw software breakpoint at PC.  Return an
   identifier, which should be used to remove the breakpoint later.
   identifier, which should be used to remove the breakpoint later.
   In general, places which call this should be using something on the
   In general, places which call this should be using something on the
   breakpoint chain instead; this function should be eliminated
   breakpoint chain instead; this function should be eliminated
   someday.  */
   someday.  */
 
 
void *
void *
deprecated_insert_raw_breakpoint (CORE_ADDR pc)
deprecated_insert_raw_breakpoint (CORE_ADDR pc)
{
{
  struct bp_target_info *bp_tgt;
  struct bp_target_info *bp_tgt;
 
 
  bp_tgt = xmalloc (sizeof (struct bp_target_info));
  bp_tgt = xmalloc (sizeof (struct bp_target_info));
  memset (bp_tgt, 0, sizeof (struct bp_target_info));
  memset (bp_tgt, 0, sizeof (struct bp_target_info));
 
 
  bp_tgt->placed_address = pc;
  bp_tgt->placed_address = pc;
  if (target_insert_breakpoint (bp_tgt) != 0)
  if (target_insert_breakpoint (bp_tgt) != 0)
    {
    {
      /* Could not insert the breakpoint.  */
      /* Could not insert the breakpoint.  */
      xfree (bp_tgt);
      xfree (bp_tgt);
      return NULL;
      return NULL;
    }
    }
 
 
  return bp_tgt;
  return bp_tgt;
}
}
 
 
/* Remove a breakpoint BP inserted by deprecated_insert_raw_breakpoint.  */
/* Remove a breakpoint BP inserted by deprecated_insert_raw_breakpoint.  */
 
 
int
int
deprecated_remove_raw_breakpoint (void *bp)
deprecated_remove_raw_breakpoint (void *bp)
{
{
  struct bp_target_info *bp_tgt = bp;
  struct bp_target_info *bp_tgt = bp;
  int ret;
  int ret;
 
 
  ret = target_remove_breakpoint (bp_tgt);
  ret = target_remove_breakpoint (bp_tgt);
  xfree (bp_tgt);
  xfree (bp_tgt);
 
 
  return ret;
  return ret;
}
}
 
 
/* One (or perhaps two) breakpoints used for software single stepping.  */
/* One (or perhaps two) breakpoints used for software single stepping.  */
 
 
static void *single_step_breakpoints[2];
static void *single_step_breakpoints[2];
 
 
/* Create and insert a breakpoint for software single step.  */
/* Create and insert a breakpoint for software single step.  */
 
 
void
void
insert_single_step_breakpoint (CORE_ADDR next_pc)
insert_single_step_breakpoint (CORE_ADDR next_pc)
{
{
  void **bpt_p;
  void **bpt_p;
 
 
  if (single_step_breakpoints[0] == NULL)
  if (single_step_breakpoints[0] == NULL)
    bpt_p = &single_step_breakpoints[0];
    bpt_p = &single_step_breakpoints[0];
  else
  else
    {
    {
      gdb_assert (single_step_breakpoints[1] == NULL);
      gdb_assert (single_step_breakpoints[1] == NULL);
      bpt_p = &single_step_breakpoints[1];
      bpt_p = &single_step_breakpoints[1];
    }
    }
 
 
  /* NOTE drow/2006-04-11: A future improvement to this function would be
  /* NOTE drow/2006-04-11: A future improvement to this function would be
     to only create the breakpoints once, and actually put them on the
     to only create the breakpoints once, and actually put them on the
     breakpoint chain.  That would let us use set_raw_breakpoint.  We could
     breakpoint chain.  That would let us use set_raw_breakpoint.  We could
     adjust the addresses each time they were needed.  Doing this requires
     adjust the addresses each time they were needed.  Doing this requires
     corresponding changes elsewhere where single step breakpoints are
     corresponding changes elsewhere where single step breakpoints are
     handled, however.  So, for now, we use this.  */
     handled, however.  So, for now, we use this.  */
 
 
  *bpt_p = deprecated_insert_raw_breakpoint (next_pc);
  *bpt_p = deprecated_insert_raw_breakpoint (next_pc);
  if (*bpt_p == NULL)
  if (*bpt_p == NULL)
    error (_("Could not insert single-step breakpoint at 0x%s"),
    error (_("Could not insert single-step breakpoint at 0x%s"),
             paddr_nz (next_pc));
             paddr_nz (next_pc));
}
}
 
 
/* Remove and delete any breakpoints used for software single step.  */
/* Remove and delete any breakpoints used for software single step.  */
 
 
void
void
remove_single_step_breakpoints (void)
remove_single_step_breakpoints (void)
{
{
  gdb_assert (single_step_breakpoints[0] != NULL);
  gdb_assert (single_step_breakpoints[0] != NULL);
 
 
  /* See insert_single_step_breakpoint for more about this deprecated
  /* See insert_single_step_breakpoint for more about this deprecated
     call.  */
     call.  */
  deprecated_remove_raw_breakpoint (single_step_breakpoints[0]);
  deprecated_remove_raw_breakpoint (single_step_breakpoints[0]);
  single_step_breakpoints[0] = NULL;
  single_step_breakpoints[0] = NULL;
 
 
  if (single_step_breakpoints[1] != NULL)
  if (single_step_breakpoints[1] != NULL)
    {
    {
      deprecated_remove_raw_breakpoint (single_step_breakpoints[1]);
      deprecated_remove_raw_breakpoint (single_step_breakpoints[1]);
      single_step_breakpoints[1] = NULL;
      single_step_breakpoints[1] = NULL;
    }
    }
}
}
 
 
/* Check whether a software single-step breakpoint is inserted at PC.  */
/* Check whether a software single-step breakpoint is inserted at PC.  */
 
 
static int
static int
single_step_breakpoint_inserted_here_p (CORE_ADDR pc)
single_step_breakpoint_inserted_here_p (CORE_ADDR pc)
{
{
  int i;
  int i;
 
 
  for (i = 0; i < 2; i++)
  for (i = 0; i < 2; i++)
    {
    {
      struct bp_target_info *bp_tgt = single_step_breakpoints[i];
      struct bp_target_info *bp_tgt = single_step_breakpoints[i];
      if (bp_tgt && bp_tgt->placed_address == pc)
      if (bp_tgt && bp_tgt->placed_address == pc)
        return 1;
        return 1;
    }
    }
 
 
  return 0;
  return 0;
}
}
 
 


/* This help string is used for the break, hbreak, tbreak and thbreak commands.
/* This help string is used for the break, hbreak, tbreak and thbreak commands.
   It is defined as a macro to prevent duplication.
   It is defined as a macro to prevent duplication.
   COMMAND should be a string constant containing the name of the command.  */
   COMMAND should be a string constant containing the name of the command.  */
#define BREAK_ARGS_HELP(command) \
#define BREAK_ARGS_HELP(command) \
command" [LOCATION] [thread THREADNUM] [if CONDITION]\n\
command" [LOCATION] [thread THREADNUM] [if CONDITION]\n\
LOCATION may be a line number, function name, or \"*\" and an address.\n\
LOCATION may be a line number, function name, or \"*\" and an address.\n\
If a line number is specified, break at start of code for that line.\n\
If a line number is specified, break at start of code for that line.\n\
If a function is specified, break at start of code for that function.\n\
If a function is specified, break at start of code for that function.\n\
If an address is specified, break at that exact address.\n\
If an address is specified, break at that exact address.\n\
With no LOCATION, uses current execution address of selected stack frame.\n\
With no LOCATION, uses current execution address of selected stack frame.\n\
This is useful for breaking on return to a stack frame.\n\
This is useful for breaking on return to a stack frame.\n\
\n\
\n\
THREADNUM is the number from \"info threads\".\n\
THREADNUM is the number from \"info threads\".\n\
CONDITION is a boolean expression.\n\
CONDITION is a boolean expression.\n\
\n\
\n\
Multiple breakpoints at one place are permitted, and useful if conditional.\n\
Multiple breakpoints at one place are permitted, and useful if conditional.\n\
\n\
\n\
Do \"help breakpoints\" for info on other commands dealing with breakpoints."
Do \"help breakpoints\" for info on other commands dealing with breakpoints."
 
 
void
void
_initialize_breakpoint (void)
_initialize_breakpoint (void)
{
{
  static struct cmd_list_element *breakpoint_set_cmdlist;
  static struct cmd_list_element *breakpoint_set_cmdlist;
  static struct cmd_list_element *breakpoint_show_cmdlist;
  static struct cmd_list_element *breakpoint_show_cmdlist;
  struct cmd_list_element *c;
  struct cmd_list_element *c;
 
 
  observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
  observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
 
 
  breakpoint_chain = 0;
  breakpoint_chain = 0;
  /* Don't bother to call set_breakpoint_count.  $bpnum isn't useful
  /* Don't bother to call set_breakpoint_count.  $bpnum isn't useful
     before a breakpoint is set.  */
     before a breakpoint is set.  */
  breakpoint_count = 0;
  breakpoint_count = 0;
 
 
  add_com ("ignore", class_breakpoint, ignore_command, _("\
  add_com ("ignore", class_breakpoint, ignore_command, _("\
Set ignore-count of breakpoint number N to COUNT.\n\
Set ignore-count of breakpoint number N to COUNT.\n\
Usage is `ignore N COUNT'."));
Usage is `ignore N COUNT'."));
  if (xdb_commands)
  if (xdb_commands)
    add_com_alias ("bc", "ignore", class_breakpoint, 1);
    add_com_alias ("bc", "ignore", class_breakpoint, 1);
 
 
  add_com ("commands", class_breakpoint, commands_command, _("\
  add_com ("commands", class_breakpoint, commands_command, _("\
Set commands to be executed when a breakpoint is hit.\n\
Set commands to be executed when a breakpoint is hit.\n\
Give breakpoint number as argument after \"commands\".\n\
Give breakpoint number as argument after \"commands\".\n\
With no argument, the targeted breakpoint is the last one set.\n\
With no argument, the targeted breakpoint is the last one set.\n\
The commands themselves follow starting on the next line.\n\
The commands themselves follow starting on the next line.\n\
Type a line containing \"end\" to indicate the end of them.\n\
Type a line containing \"end\" to indicate the end of them.\n\
Give \"silent\" as the first line to make the breakpoint silent;\n\
Give \"silent\" as the first line to make the breakpoint silent;\n\
then no output is printed when it is hit, except what the commands print."));
then no output is printed when it is hit, except what the commands print."));
 
 
  add_com ("condition", class_breakpoint, condition_command, _("\
  add_com ("condition", class_breakpoint, condition_command, _("\
Specify breakpoint number N to break only if COND is true.\n\
Specify breakpoint number N to break only if COND is true.\n\
Usage is `condition N COND', where N is an integer and COND is an\n\
Usage is `condition N COND', where N is an integer and COND is an\n\
expression to be evaluated whenever breakpoint N is reached."));
expression to be evaluated whenever breakpoint N is reached."));
 
 
  c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
  c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
Set a temporary breakpoint.\n\
Set a temporary breakpoint.\n\
Like \"break\" except the breakpoint is only temporary,\n\
Like \"break\" except the breakpoint is only temporary,\n\
so it will be deleted when hit.  Equivalent to \"break\" followed\n\
so it will be deleted when hit.  Equivalent to \"break\" followed\n\
by using \"enable delete\" on the breakpoint number.\n\
by using \"enable delete\" on the breakpoint number.\n\
\n"
\n"
BREAK_ARGS_HELP ("tbreak")));
BREAK_ARGS_HELP ("tbreak")));
  set_cmd_completer (c, location_completer);
  set_cmd_completer (c, location_completer);
 
 
  c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
  c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
Set a hardware assisted  breakpoint.\n\
Set a hardware assisted  breakpoint.\n\
Like \"break\" except the breakpoint requires hardware support,\n\
Like \"break\" except the breakpoint requires hardware support,\n\
some target hardware may not have this support.\n\
some target hardware may not have this support.\n\
\n"
\n"
BREAK_ARGS_HELP ("hbreak")));
BREAK_ARGS_HELP ("hbreak")));
  set_cmd_completer (c, location_completer);
  set_cmd_completer (c, location_completer);
 
 
  c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
  c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
Set a temporary hardware assisted breakpoint.\n\
Set a temporary hardware assisted breakpoint.\n\
Like \"hbreak\" except the breakpoint is only temporary,\n\
Like \"hbreak\" except the breakpoint is only temporary,\n\
so it will be deleted when hit.\n\
so it will be deleted when hit.\n\
\n"
\n"
BREAK_ARGS_HELP ("thbreak")));
BREAK_ARGS_HELP ("thbreak")));
  set_cmd_completer (c, location_completer);
  set_cmd_completer (c, location_completer);
 
 
  add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
  add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
Enable some breakpoints.\n\
Enable some breakpoints.\n\
Give breakpoint numbers (separated by spaces) as arguments.\n\
Give breakpoint numbers (separated by spaces) as arguments.\n\
With no subcommand, breakpoints are enabled until you command otherwise.\n\
With no subcommand, breakpoints are enabled until you command otherwise.\n\
This is used to cancel the effect of the \"disable\" command.\n\
This is used to cancel the effect of the \"disable\" command.\n\
With a subcommand you can enable temporarily."),
With a subcommand you can enable temporarily."),
                  &enablelist, "enable ", 1, &cmdlist);
                  &enablelist, "enable ", 1, &cmdlist);
  if (xdb_commands)
  if (xdb_commands)
    add_com ("ab", class_breakpoint, enable_command, _("\
    add_com ("ab", class_breakpoint, enable_command, _("\
Enable some breakpoints.\n\
Enable some breakpoints.\n\
Give breakpoint numbers (separated by spaces) as arguments.\n\
Give breakpoint numbers (separated by spaces) as arguments.\n\
With no subcommand, breakpoints are enabled until you command otherwise.\n\
With no subcommand, breakpoints are enabled until you command otherwise.\n\
This is used to cancel the effect of the \"disable\" command.\n\
This is used to cancel the effect of the \"disable\" command.\n\
With a subcommand you can enable temporarily."));
With a subcommand you can enable temporarily."));
 
 
  add_com_alias ("en", "enable", class_breakpoint, 1);
  add_com_alias ("en", "enable", class_breakpoint, 1);
 
 
  add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
  add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
Enable some breakpoints.\n\
Enable some breakpoints.\n\
Give breakpoint numbers (separated by spaces) as arguments.\n\
Give breakpoint numbers (separated by spaces) as arguments.\n\
This is used to cancel the effect of the \"disable\" command.\n\
This is used to cancel the effect of the \"disable\" command.\n\
May be abbreviated to simply \"enable\".\n"),
May be abbreviated to simply \"enable\".\n"),
                   &enablebreaklist, "enable breakpoints ", 1, &enablelist);
                   &enablebreaklist, "enable breakpoints ", 1, &enablelist);
 
 
  add_cmd ("once", no_class, enable_once_command, _("\
  add_cmd ("once", no_class, enable_once_command, _("\
Enable breakpoints for one hit.  Give breakpoint numbers.\n\
Enable breakpoints for one hit.  Give breakpoint numbers.\n\
If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
           &enablebreaklist);
           &enablebreaklist);
 
 
  add_cmd ("delete", no_class, enable_delete_command, _("\
  add_cmd ("delete", no_class, enable_delete_command, _("\
Enable breakpoints and delete when hit.  Give breakpoint numbers.\n\
Enable breakpoints and delete when hit.  Give breakpoint numbers.\n\
If a breakpoint is hit while enabled in this fashion, it is deleted."),
If a breakpoint is hit while enabled in this fashion, it is deleted."),
           &enablebreaklist);
           &enablebreaklist);
 
 
  add_cmd ("delete", no_class, enable_delete_command, _("\
  add_cmd ("delete", no_class, enable_delete_command, _("\
Enable breakpoints and delete when hit.  Give breakpoint numbers.\n\
Enable breakpoints and delete when hit.  Give breakpoint numbers.\n\
If a breakpoint is hit while enabled in this fashion, it is deleted."),
If a breakpoint is hit while enabled in this fashion, it is deleted."),
           &enablelist);
           &enablelist);
 
 
  add_cmd ("once", no_class, enable_once_command, _("\
  add_cmd ("once", no_class, enable_once_command, _("\
Enable breakpoints for one hit.  Give breakpoint numbers.\n\
Enable breakpoints for one hit.  Give breakpoint numbers.\n\
If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
           &enablelist);
           &enablelist);
 
 
  add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
  add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
Disable some breakpoints.\n\
Disable some breakpoints.\n\
Arguments are breakpoint numbers with spaces in between.\n\
Arguments are breakpoint numbers with spaces in between.\n\
To disable all breakpoints, give no argument.\n\
To disable all breakpoints, give no argument.\n\
A disabled breakpoint is not forgotten, but has no effect until reenabled."),
A disabled breakpoint is not forgotten, but has no effect until reenabled."),
                  &disablelist, "disable ", 1, &cmdlist);
                  &disablelist, "disable ", 1, &cmdlist);
  add_com_alias ("dis", "disable", class_breakpoint, 1);
  add_com_alias ("dis", "disable", class_breakpoint, 1);
  add_com_alias ("disa", "disable", class_breakpoint, 1);
  add_com_alias ("disa", "disable", class_breakpoint, 1);
  if (xdb_commands)
  if (xdb_commands)
    add_com ("sb", class_breakpoint, disable_command, _("\
    add_com ("sb", class_breakpoint, disable_command, _("\
Disable some breakpoints.\n\
Disable some breakpoints.\n\
Arguments are breakpoint numbers with spaces in between.\n\
Arguments are breakpoint numbers with spaces in between.\n\
To disable all breakpoints, give no argument.\n\
To disable all breakpoints, give no argument.\n\
A disabled breakpoint is not forgotten, but has no effect until reenabled."));
A disabled breakpoint is not forgotten, but has no effect until reenabled."));
 
 
  add_cmd ("breakpoints", class_alias, disable_command, _("\
  add_cmd ("breakpoints", class_alias, disable_command, _("\
Disable some breakpoints.\n\
Disable some breakpoints.\n\
Arguments are breakpoint numbers with spaces in between.\n\
Arguments are breakpoint numbers with spaces in between.\n\
To disable all breakpoints, give no argument.\n\
To disable all breakpoints, give no argument.\n\
A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
This command may be abbreviated \"disable\"."),
This command may be abbreviated \"disable\"."),
           &disablelist);
           &disablelist);
 
 
  add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
  add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
Delete some breakpoints or auto-display expressions.\n\
Delete some breakpoints or auto-display expressions.\n\
Arguments are breakpoint numbers with spaces in between.\n\
Arguments are breakpoint numbers with spaces in between.\n\
To delete all breakpoints, give no argument.\n\
To delete all breakpoints, give no argument.\n\
\n\
\n\
Also a prefix command for deletion of other GDB objects.\n\
Also a prefix command for deletion of other GDB objects.\n\
The \"unset\" command is also an alias for \"delete\"."),
The \"unset\" command is also an alias for \"delete\"."),
                  &deletelist, "delete ", 1, &cmdlist);
                  &deletelist, "delete ", 1, &cmdlist);
  add_com_alias ("d", "delete", class_breakpoint, 1);
  add_com_alias ("d", "delete", class_breakpoint, 1);
  add_com_alias ("del", "delete", class_breakpoint, 1);
  add_com_alias ("del", "delete", class_breakpoint, 1);
  if (xdb_commands)
  if (xdb_commands)
    add_com ("db", class_breakpoint, delete_command, _("\
    add_com ("db", class_breakpoint, delete_command, _("\
Delete some breakpoints.\n\
Delete some breakpoints.\n\
Arguments are breakpoint numbers with spaces in between.\n\
Arguments are breakpoint numbers with spaces in between.\n\
To delete all breakpoints, give no argument.\n"));
To delete all breakpoints, give no argument.\n"));
 
 
  add_cmd ("breakpoints", class_alias, delete_command, _("\
  add_cmd ("breakpoints", class_alias, delete_command, _("\
Delete some breakpoints or auto-display expressions.\n\
Delete some breakpoints or auto-display expressions.\n\
Arguments are breakpoint numbers with spaces in between.\n\
Arguments are breakpoint numbers with spaces in between.\n\
To delete all breakpoints, give no argument.\n\
To delete all breakpoints, give no argument.\n\
This command may be abbreviated \"delete\"."),
This command may be abbreviated \"delete\"."),
           &deletelist);
           &deletelist);
 
 
  add_com ("clear", class_breakpoint, clear_command, _("\
  add_com ("clear", class_breakpoint, clear_command, _("\
Clear breakpoint at specified line or function.\n\
Clear breakpoint at specified line or function.\n\
Argument may be line number, function name, or \"*\" and an address.\n\
Argument may be line number, function name, or \"*\" and an address.\n\
If line number is specified, all breakpoints in that line are cleared.\n\
If line number is specified, all breakpoints in that line are cleared.\n\
If function is specified, breakpoints at beginning of function are cleared.\n\
If function is specified, breakpoints at beginning of function are cleared.\n\
If an address is specified, breakpoints at that address are cleared.\n\
If an address is specified, breakpoints at that address are cleared.\n\
\n\
\n\
With no argument, clears all breakpoints in the line that the selected frame\n\
With no argument, clears all breakpoints in the line that the selected frame\n\
is executing in.\n\
is executing in.\n\
\n\
\n\
See also the \"delete\" command which clears breakpoints by number."));
See also the \"delete\" command which clears breakpoints by number."));
 
 
  c = add_com ("break", class_breakpoint, break_command, _("\
  c = add_com ("break", class_breakpoint, break_command, _("\
Set breakpoint at specified line or function.\n"
Set breakpoint at specified line or function.\n"
BREAK_ARGS_HELP ("break")));
BREAK_ARGS_HELP ("break")));
  set_cmd_completer (c, location_completer);
  set_cmd_completer (c, location_completer);
 
 
  add_com_alias ("b", "break", class_run, 1);
  add_com_alias ("b", "break", class_run, 1);
  add_com_alias ("br", "break", class_run, 1);
  add_com_alias ("br", "break", class_run, 1);
  add_com_alias ("bre", "break", class_run, 1);
  add_com_alias ("bre", "break", class_run, 1);
  add_com_alias ("brea", "break", class_run, 1);
  add_com_alias ("brea", "break", class_run, 1);
 
 
 if (xdb_commands)
 if (xdb_commands)
    {
    {
      add_com_alias ("ba", "break", class_breakpoint, 1);
      add_com_alias ("ba", "break", class_breakpoint, 1);
      add_com_alias ("bu", "ubreak", class_breakpoint, 1);
      add_com_alias ("bu", "ubreak", class_breakpoint, 1);
    }
    }
 
 
  if (dbx_commands)
  if (dbx_commands)
    {
    {
      add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
      add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
Break in function/address or break at a line in the current file."),
Break in function/address or break at a line in the current file."),
                             &stoplist, "stop ", 1, &cmdlist);
                             &stoplist, "stop ", 1, &cmdlist);
      add_cmd ("in", class_breakpoint, stopin_command,
      add_cmd ("in", class_breakpoint, stopin_command,
               _("Break in function or address."), &stoplist);
               _("Break in function or address."), &stoplist);
      add_cmd ("at", class_breakpoint, stopat_command,
      add_cmd ("at", class_breakpoint, stopat_command,
               _("Break at a line in the current file."), &stoplist);
               _("Break at a line in the current file."), &stoplist);
      add_com ("status", class_info, breakpoints_info, _("\
      add_com ("status", class_info, breakpoints_info, _("\
Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
The \"Type\" column indicates one of:\n\
The \"Type\" column indicates one of:\n\
\tbreakpoint     - normal breakpoint\n\
\tbreakpoint     - normal breakpoint\n\
\twatchpoint     - watchpoint\n\
\twatchpoint     - watchpoint\n\
The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
address and file/line number respectively.\n\
address and file/line number respectively.\n\
\n\
\n\
Convenience variable \"$_\" and default examine address for \"x\"\n\
Convenience variable \"$_\" and default examine address for \"x\"\n\
are set to the address of the last breakpoint listed unless the command\n\
are set to the address of the last breakpoint listed unless the command\n\
is prefixed with \"server \".\n\n\
is prefixed with \"server \".\n\n\
Convenience variable \"$bpnum\" contains the number of the last\n\
Convenience variable \"$bpnum\" contains the number of the last\n\
breakpoint set."));
breakpoint set."));
    }
    }
 
 
  add_info ("breakpoints", breakpoints_info, _("\
  add_info ("breakpoints", breakpoints_info, _("\
Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
The \"Type\" column indicates one of:\n\
The \"Type\" column indicates one of:\n\
\tbreakpoint     - normal breakpoint\n\
\tbreakpoint     - normal breakpoint\n\
\twatchpoint     - watchpoint\n\
\twatchpoint     - watchpoint\n\
The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
address and file/line number respectively.\n\
address and file/line number respectively.\n\
\n\
\n\
Convenience variable \"$_\" and default examine address for \"x\"\n\
Convenience variable \"$_\" and default examine address for \"x\"\n\
are set to the address of the last breakpoint listed unless the command\n\
are set to the address of the last breakpoint listed unless the command\n\
is prefixed with \"server \".\n\n\
is prefixed with \"server \".\n\n\
Convenience variable \"$bpnum\" contains the number of the last\n\
Convenience variable \"$bpnum\" contains the number of the last\n\
breakpoint set."));
breakpoint set."));
 
 
  if (xdb_commands)
  if (xdb_commands)
    add_com ("lb", class_breakpoint, breakpoints_info, _("\
    add_com ("lb", class_breakpoint, breakpoints_info, _("\
Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
The \"Type\" column indicates one of:\n\
The \"Type\" column indicates one of:\n\
\tbreakpoint     - normal breakpoint\n\
\tbreakpoint     - normal breakpoint\n\
\twatchpoint     - watchpoint\n\
\twatchpoint     - watchpoint\n\
The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
address and file/line number respectively.\n\
address and file/line number respectively.\n\
\n\
\n\
Convenience variable \"$_\" and default examine address for \"x\"\n\
Convenience variable \"$_\" and default examine address for \"x\"\n\
are set to the address of the last breakpoint listed unless the command\n\
are set to the address of the last breakpoint listed unless the command\n\
is prefixed with \"server \".\n\n\
is prefixed with \"server \".\n\n\
Convenience variable \"$bpnum\" contains the number of the last\n\
Convenience variable \"$bpnum\" contains the number of the last\n\
breakpoint set."));
breakpoint set."));
 
 
  add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
  add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
Status of all breakpoints, or breakpoint number NUMBER.\n\
Status of all breakpoints, or breakpoint number NUMBER.\n\
The \"Type\" column indicates one of:\n\
The \"Type\" column indicates one of:\n\
\tbreakpoint     - normal breakpoint\n\
\tbreakpoint     - normal breakpoint\n\
\twatchpoint     - watchpoint\n\
\twatchpoint     - watchpoint\n\
\tlongjmp        - internal breakpoint used to step through longjmp()\n\
\tlongjmp        - internal breakpoint used to step through longjmp()\n\
\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
\tuntil          - internal breakpoint used by the \"until\" command\n\
\tuntil          - internal breakpoint used by the \"until\" command\n\
\tfinish         - internal breakpoint used by the \"finish\" command\n\
\tfinish         - internal breakpoint used by the \"finish\" command\n\
The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
address and file/line number respectively.\n\
address and file/line number respectively.\n\
\n\
\n\
Convenience variable \"$_\" and default examine address for \"x\"\n\
Convenience variable \"$_\" and default examine address for \"x\"\n\
are set to the address of the last breakpoint listed unless the command\n\
are set to the address of the last breakpoint listed unless the command\n\
is prefixed with \"server \".\n\n\
is prefixed with \"server \".\n\n\
Convenience variable \"$bpnum\" contains the number of the last\n\
Convenience variable \"$bpnum\" contains the number of the last\n\
breakpoint set."),
breakpoint set."),
           &maintenanceinfolist);
           &maintenanceinfolist);
 
 
  add_com ("catch", class_breakpoint, catch_command, _("\
  add_com ("catch", class_breakpoint, catch_command, _("\
Set catchpoints to catch events.\n\
Set catchpoints to catch events.\n\
Raised signals may be caught:\n\
Raised signals may be caught:\n\
\tcatch signal              - all signals\n\
\tcatch signal              - all signals\n\
\tcatch signal <signame>    - a particular signal\n\
\tcatch signal <signame>    - a particular signal\n\
Raised exceptions may be caught:\n\
Raised exceptions may be caught:\n\
\tcatch throw               - all exceptions, when thrown\n\
\tcatch throw               - all exceptions, when thrown\n\
\tcatch throw <exceptname>  - a particular exception, when thrown\n\
\tcatch throw <exceptname>  - a particular exception, when thrown\n\
\tcatch catch               - all exceptions, when caught\n\
\tcatch catch               - all exceptions, when caught\n\
\tcatch catch <exceptname>  - a particular exception, when caught\n\
\tcatch catch <exceptname>  - a particular exception, when caught\n\
Thread or process events may be caught:\n\
Thread or process events may be caught:\n\
\tcatch thread_start        - any threads, just after creation\n\
\tcatch thread_start        - any threads, just after creation\n\
\tcatch thread_exit         - any threads, just before expiration\n\
\tcatch thread_exit         - any threads, just before expiration\n\
\tcatch thread_join         - any threads, just after joins\n\
\tcatch thread_join         - any threads, just after joins\n\
Process events may be caught:\n\
Process events may be caught:\n\
\tcatch start               - any processes, just after creation\n\
\tcatch start               - any processes, just after creation\n\
\tcatch exit                - any processes, just before expiration\n\
\tcatch exit                - any processes, just before expiration\n\
\tcatch fork                - calls to fork()\n\
\tcatch fork                - calls to fork()\n\
\tcatch vfork               - calls to vfork()\n\
\tcatch vfork               - calls to vfork()\n\
\tcatch exec                - calls to exec()\n\
\tcatch exec                - calls to exec()\n\
Dynamically-linked library events may be caught:\n\
Dynamically-linked library events may be caught:\n\
\tcatch load                - loads of any library\n\
\tcatch load                - loads of any library\n\
\tcatch load <libname>      - loads of a particular library\n\
\tcatch load <libname>      - loads of a particular library\n\
\tcatch unload              - unloads of any library\n\
\tcatch unload              - unloads of any library\n\
\tcatch unload <libname>    - unloads of a particular library\n\
\tcatch unload <libname>    - unloads of a particular library\n\
The act of your program's execution stopping may also be caught:\n\
The act of your program's execution stopping may also be caught:\n\
\tcatch stop\n\n\
\tcatch stop\n\n\
C++ exceptions may be caught:\n\
C++ exceptions may be caught:\n\
\tcatch throw               - all exceptions, when thrown\n\
\tcatch throw               - all exceptions, when thrown\n\
\tcatch catch               - all exceptions, when caught\n\
\tcatch catch               - all exceptions, when caught\n\
Ada exceptions may be caught:\n\
Ada exceptions may be caught:\n\
\tcatch exception           - all exceptions, when raised\n\
\tcatch exception           - all exceptions, when raised\n\
\tcatch exception <name>    - a particular exception, when raised\n\
\tcatch exception <name>    - a particular exception, when raised\n\
\tcatch exception unhandled - all unhandled exceptions, when raised\n\
\tcatch exception unhandled - all unhandled exceptions, when raised\n\
\tcatch assert              - all failed assertions, when raised\n\
\tcatch assert              - all failed assertions, when raised\n\
\n\
\n\
Do \"help set follow-fork-mode\" for info on debugging your program\n\
Do \"help set follow-fork-mode\" for info on debugging your program\n\
after a fork or vfork is caught.\n\n\
after a fork or vfork is caught.\n\n\
Do \"help breakpoints\" for info on other commands dealing with breakpoints."));
Do \"help breakpoints\" for info on other commands dealing with breakpoints."));
 
 
  add_com ("tcatch", class_breakpoint, tcatch_command, _("\
  add_com ("tcatch", class_breakpoint, tcatch_command, _("\
Set temporary catchpoints to catch events.\n\
Set temporary catchpoints to catch events.\n\
Args like \"catch\" command.\n\
Args like \"catch\" command.\n\
Like \"catch\" except the catchpoint is only temporary,\n\
Like \"catch\" except the catchpoint is only temporary,\n\
so it will be deleted when hit.  Equivalent to \"catch\" followed\n\
so it will be deleted when hit.  Equivalent to \"catch\" followed\n\
by using \"enable delete\" on the catchpoint number."));
by using \"enable delete\" on the catchpoint number."));
 
 
  c = add_com ("watch", class_breakpoint, watch_command, _("\
  c = add_com ("watch", class_breakpoint, watch_command, _("\
Set a watchpoint for an expression.\n\
Set a watchpoint for an expression.\n\
A watchpoint stops execution of your program whenever the value of\n\
A watchpoint stops execution of your program whenever the value of\n\
an expression changes."));
an expression changes."));
  set_cmd_completer (c, location_completer);
  set_cmd_completer (c, location_completer);
 
 
  c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
  c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
Set a read watchpoint for an expression.\n\
Set a read watchpoint for an expression.\n\
A watchpoint stops execution of your program whenever the value of\n\
A watchpoint stops execution of your program whenever the value of\n\
an expression is read."));
an expression is read."));
  set_cmd_completer (c, location_completer);
  set_cmd_completer (c, location_completer);
 
 
  c = add_com ("awatch", class_breakpoint, awatch_command, _("\
  c = add_com ("awatch", class_breakpoint, awatch_command, _("\
Set a watchpoint for an expression.\n\
Set a watchpoint for an expression.\n\
A watchpoint stops execution of your program whenever the value of\n\
A watchpoint stops execution of your program whenever the value of\n\
an expression is either read or written."));
an expression is either read or written."));
  set_cmd_completer (c, location_completer);
  set_cmd_completer (c, location_completer);
 
 
  add_info ("watchpoints", breakpoints_info,
  add_info ("watchpoints", breakpoints_info,
            _("Synonym for ``info breakpoints''."));
            _("Synonym for ``info breakpoints''."));
 
 
 
 
  /* XXX: cagney/2005-02-23: This should be a boolean, and should
  /* XXX: cagney/2005-02-23: This should be a boolean, and should
     respond to changes - contrary to the description.  */
     respond to changes - contrary to the description.  */
  add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
  add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
                            &can_use_hw_watchpoints, _("\
                            &can_use_hw_watchpoints, _("\
Set debugger's willingness to use watchpoint hardware."), _("\
Set debugger's willingness to use watchpoint hardware."), _("\
Show debugger's willingness to use watchpoint hardware."), _("\
Show debugger's willingness to use watchpoint hardware."), _("\
If zero, gdb will not use hardware for new watchpoints, even if\n\
If zero, gdb will not use hardware for new watchpoints, even if\n\
such is available.  (However, any hardware watchpoints that were\n\
such is available.  (However, any hardware watchpoints that were\n\
created before setting this to nonzero, will continue to use watchpoint\n\
created before setting this to nonzero, will continue to use watchpoint\n\
hardware.)"),
hardware.)"),
                            NULL,
                            NULL,
                            show_can_use_hw_watchpoints,
                            show_can_use_hw_watchpoints,
                            &setlist, &showlist);
                            &setlist, &showlist);
 
 
  can_use_hw_watchpoints = 1;
  can_use_hw_watchpoints = 1;
 
 
  add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
  add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
Breakpoint specific settings\n\
Breakpoint specific settings\n\
Configure various breakpoint-specific variables such as\n\
Configure various breakpoint-specific variables such as\n\
pending breakpoint behavior"),
pending breakpoint behavior"),
                  &breakpoint_set_cmdlist, "set breakpoint ",
                  &breakpoint_set_cmdlist, "set breakpoint ",
                  0/*allow-unknown*/, &setlist);
                  0/*allow-unknown*/, &setlist);
  add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
  add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
Breakpoint specific settings\n\
Breakpoint specific settings\n\
Configure various breakpoint-specific variables such as\n\
Configure various breakpoint-specific variables such as\n\
pending breakpoint behavior"),
pending breakpoint behavior"),
                  &breakpoint_show_cmdlist, "show breakpoint ",
                  &breakpoint_show_cmdlist, "show breakpoint ",
                  0/*allow-unknown*/, &showlist);
                  0/*allow-unknown*/, &showlist);
 
 
  add_setshow_auto_boolean_cmd ("pending", no_class,
  add_setshow_auto_boolean_cmd ("pending", no_class,
                                &pending_break_support, _("\
                                &pending_break_support, _("\
Set debugger's behavior regarding pending breakpoints."), _("\
Set debugger's behavior regarding pending breakpoints."), _("\
Show debugger's behavior regarding pending breakpoints."), _("\
Show debugger's behavior regarding pending breakpoints."), _("\
If on, an unrecognized breakpoint location will cause gdb to create a\n\
If on, an unrecognized breakpoint location will cause gdb to create a\n\
pending breakpoint.  If off, an unrecognized breakpoint location results in\n\
pending breakpoint.  If off, an unrecognized breakpoint location results in\n\
an error.  If auto, an unrecognized breakpoint location results in a\n\
an error.  If auto, an unrecognized breakpoint location results in a\n\
user-query to see if a pending breakpoint should be created."),
user-query to see if a pending breakpoint should be created."),
                                NULL,
                                NULL,
                                show_pending_break_support,
                                show_pending_break_support,
                                &breakpoint_set_cmdlist,
                                &breakpoint_set_cmdlist,
                                &breakpoint_show_cmdlist);
                                &breakpoint_show_cmdlist);
 
 
  pending_break_support = AUTO_BOOLEAN_AUTO;
  pending_break_support = AUTO_BOOLEAN_AUTO;
 
 
  add_setshow_boolean_cmd ("auto-hw", no_class,
  add_setshow_boolean_cmd ("auto-hw", no_class,
                           &automatic_hardware_breakpoints, _("\
                           &automatic_hardware_breakpoints, _("\
Set automatic usage of hardware breakpoints."), _("\
Set automatic usage of hardware breakpoints."), _("\
Show automatic usage of hardware breakpoints."), _("\
Show automatic usage of hardware breakpoints."), _("\
If set, the debugger will automatically use hardware breakpoints for\n\
If set, the debugger will automatically use hardware breakpoints for\n\
breakpoints set with \"break\" but falling in read-only memory.  If not set,\n\
breakpoints set with \"break\" but falling in read-only memory.  If not set,\n\
a warning will be emitted for such breakpoints."),
a warning will be emitted for such breakpoints."),
                           NULL,
                           NULL,
                           show_automatic_hardware_breakpoints,
                           show_automatic_hardware_breakpoints,
                           &breakpoint_set_cmdlist,
                           &breakpoint_set_cmdlist,
                           &breakpoint_show_cmdlist);
                           &breakpoint_show_cmdlist);
 
 
  automatic_hardware_breakpoints = 1;
  automatic_hardware_breakpoints = 1;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.