summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/gdb/gdbserver/reg-arm.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/gdb/gdbserver/reg-arm.c')
-rw-r--r--gnu/usr.bin/gdb/gdbserver/reg-arm.c68
1 files changed, 68 insertions, 0 deletions
diff --git a/gnu/usr.bin/gdb/gdbserver/reg-arm.c b/gnu/usr.bin/gdb/gdbserver/reg-arm.c
new file mode 100644
index 0000000..50379bf
--- /dev/null
+++ b/gnu/usr.bin/gdb/gdbserver/reg-arm.c
@@ -0,0 +1,68 @@
+/* *INDENT-OFF* */ /* THIS FILE IS GENERATED */
+
+/* A register protocol for GDB, the GNU debugger.
+ Copyright 2001, 2002 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ 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
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
+
+/* This file was created with the aid of ``regdat.sh'' and ``reg-arm.dat''. */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include "regdef.h"
+#include "regcache.h"
+
+struct reg regs_arm[] = {
+ { "r0", 0, 32 },
+ { "r1", 32, 32 },
+ { "r2", 64, 32 },
+ { "r3", 96, 32 },
+ { "r4", 128, 32 },
+ { "r5", 160, 32 },
+ { "r6", 192, 32 },
+ { "r7", 224, 32 },
+ { "r8", 256, 32 },
+ { "r9", 288, 32 },
+ { "r10", 320, 32 },
+ { "r11", 352, 32 },
+ { "r12", 384, 32 },
+ { "sp", 416, 32 },
+ { "lr", 448, 32 },
+ { "pc", 480, 32 },
+ { "f0", 512, 96 },
+ { "f1", 608, 96 },
+ { "f2", 704, 96 },
+ { "f3", 800, 96 },
+ { "f4", 896, 96 },
+ { "f5", 992, 96 },
+ { "f6", 1088, 96 },
+ { "f7", 1184, 96 },
+ { "fps", 1280, 32 },
+ { "cpsr", 1312, 32 },
+};
+
+const char *expedite_regs_arm[] = { "r11", "sp", "pc", 0 };
+
+void
+init_registers ()
+{
+ set_register_cache (regs_arm,
+ sizeof (regs_arm) / sizeof (regs_arm[0]));
+ gdbserver_expedite_regs = expedite_regs_arm;
+}
OpenPOWER on IntegriCloud