Index: gdb/ppc64-tdep.h |
diff --git a/gdb/xml-tdesc.h b/gdb/ppc64-tdep.h |
similarity index 57% |
copy from gdb/xml-tdesc.h |
copy to gdb/ppc64-tdep.h |
index 00c663b7f8ff2ec11151df729753eb6c41877eb1..62900bab5eecfb32d95a4455bc67b6f629309277 100644 |
--- a/gdb/xml-tdesc.h |
+++ b/gdb/ppc64-tdep.h |
@@ -1,8 +1,6 @@ |
-/* XML target description support for GDB. |
+/* Common target-dependent code for ppc64. |
- Copyright (C) 2006, 2008-2012 Free Software Foundation, Inc. |
- |
- Contributed by CodeSourcery. |
+ Copyright (C) 1986-2013 Free Software Foundation, Inc. |
This file is part of GDB. |
@@ -19,15 +17,20 @@ |
You should have received a copy of the GNU General Public License |
along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
-struct target_ops; |
-struct target_desc; |
+#ifndef PPC64_TDEP_H |
+#define PPC64_TDEP_H |
-/* Read an XML target description from FILENAME. Parse it, and return |
- the parsed description. */ |
+struct gdbarch; |
+struct frame_info; |
+struct target_ops; |
-const struct target_desc *file_read_description_xml (const char *filename); |
+extern CORE_ADDR ppc64_skip_trampoline_code (struct frame_info *frame, |
+ CORE_ADDR pc); |
-/* Read an XML target description using OPS. Parse it, and return the |
- parsed description. */ |
+extern CORE_ADDR ppc64_convert_from_func_ptr_addr (struct gdbarch *gdbarch, |
+ CORE_ADDR addr, |
+ struct target_ops *targ); |
-const struct target_desc *target_read_description_xml (struct target_ops *); |
+extern void ppc64_elf_make_msymbol_special (asymbol *, |
+ struct minimal_symbol *); |
+#endif /* PPC64_TDEP_H */ |