gdb/testsuite/
[binutils-gdb.git] / gdb / arch-utils.h
index 9d95d3f2634d213967ff2645378da00e53965a45..dbeb67f737913eb236e767fe0ba7c0814ebeed14 100644 (file)
@@ -1,6 +1,6 @@
 /* Dynamic architecture support for GDB, the GNU debugger.
 
-   Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004, 2007, 2008, 2009
+   Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004, 2007, 2008, 2009, 2010
    Free Software Foundation, Inc.
 
    This file is part of GDB.
@@ -49,6 +49,11 @@ extern void
   simple_displaced_step_free_closure (struct gdbarch *gdbarch,
                                       struct displaced_step_closure *closure);
 
+/* Default implementation of gdbarch_displaced_hw_singlestep.  */
+extern int
+  default_displaced_step_hw_singlestep (struct gdbarch *gdbarch,
+                                       struct displaced_step_closure *closure);
+
 /* Possible value for gdbarch_displaced_step_location:
    Place displaced instructions at the program's entry point,
    leaving space for inferior function call return breakpoints.  */
@@ -148,4 +153,16 @@ extern struct gdbarch *gdbarch_from_bfd (bfd *abfd);
    routines to determine the architecture to execute a command in.  */
 extern struct gdbarch *get_current_arch (void);
 
+extern int default_has_shared_address_space (struct gdbarch *);
+
+extern int default_fast_tracepoint_valid_at (struct gdbarch *gdbarch,
+                                            CORE_ADDR addr,
+                                            int *isize, char **msg);
+
+extern void default_remote_breakpoint_from_pc (struct gdbarch *,
+                                              CORE_ADDR *pcptr, int *kindptr);
+
+extern const char *default_auto_charset (void);
+extern const char *default_auto_wide_charset (void);
+
 #endif