aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-08-12 03:39:11 +0000
committerAndrew Cagney <cagney@redhat.com>2001-08-12 03:39:11 +0000
commit6ca173e32ce4933fec50f130d36dd07e20391af5 (patch)
tree69092a3b71b6b73afd17f8ba477c3bb354174c66 /gdb
parent5ea92dfe6a636f07dfb247509827780fe31f8075 (diff)
downloadgdb-6ca173e32ce4933fec50f130d36dd07e20391af5.zip
gdb-6ca173e32ce4933fec50f130d36dd07e20391af5.tar.gz
gdb-6ca173e32ce4933fec50f130d36dd07e20391af5.tar.bz2
* config/mn10300/mn10300.mt (TM_FILE): Delete.
* configure.tgt: Add mn10300 to list of mulit-arch targets. * config/mn10300/tm-mn10300.h: Delete file. Move contents ... * mn10300-tdep.c: To here.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/config/mn10300/mn10300.mt2
-rw-r--r--gdb/config/mn10300/tm-mn10300.h71
-rw-r--r--gdb/configure.tgt1
-rw-r--r--gdb/mn10300-tdep.c27
5 files changed, 35 insertions, 73 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 6441d57..8b363b4 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,12 @@
2001-08-11 Andrew Cagney <ac131313@redhat.com>
+ * config/mn10300/mn10300.mt (TM_FILE): Delete.
+ * configure.tgt: Add mn10300 to list of mulit-arch targets.
+ * config/mn10300/tm-mn10300.h: Delete file. Move contents ...
+ * mn10300-tdep.c: To here.
+
+2001-08-11 Andrew Cagney <ac131313@redhat.com>
+
* config/i386/tm-symmetry.h (REGISTER_CONVERT_TO_VIRTUAL): Make
val a DOUBLEST. Use floatformat_to_doublest.
(REGISTER_CONVERT_TO_RAW): Ditto. Use foatformat_from_doublest.
diff --git a/gdb/config/mn10300/mn10300.mt b/gdb/config/mn10300/mn10300.mt
index fc503bd..0b54fd5 100644
--- a/gdb/config/mn10300/mn10300.mt
+++ b/gdb/config/mn10300/mn10300.mt
@@ -1,6 +1,4 @@
# Target: Matsushita mn10300
TDEPFILES= mn10300-tdep.o
-TM_FILE= tm-mn10300.h
-
SIM_OBS = remote-sim.o
SIM = ../sim/mn10300/libsim.a
diff --git a/gdb/config/mn10300/tm-mn10300.h b/gdb/config/mn10300/tm-mn10300.h
deleted file mode 100644
index 81cfaab..0000000
--- a/gdb/config/mn10300/tm-mn10300.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/* Parameters for execution on a Matsushita mn10300 processor.
- Copyright 1996, 1997, 1998, 1999, 2000, 2001
- Free Software Foundation, Inc.
-
- Contributed by Geoffrey Noer <noer@cygnus.com>
-
- 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. */
-
-#define GDB_MULTI_ARCH 1
-
-/* The mn10300 is little endian. */
-#define TARGET_BYTE_ORDER_DEFAULT LITTLE_ENDIAN
-
-/* All registers are 32bits (phew!). */
-#if !GDB_MULTI_ARCH
-#define REGISTER_SIZE 4
-#define MAX_REGISTER_RAW_SIZE 4
-#define NUM_REGS 32
-#endif
-
-#if !GDB_MULTI_ARCH
-#define REGISTER_VIRTUAL_TYPE(REG) builtin_type_int
-#endif
-
-#if !GDB_MULTI_ARCH
-#define REGISTER_BYTE(REG) ((REG) * 4)
-#define REGISTER_VIRTUAL_SIZE(REG) 4
-#define REGISTER_RAW_SIZE(REG) 4
-#endif
-
-#define D0_REGNUM 0
-#define D2_REGNUM 2
-#define D3_REGNUM 3
-#define A0_REGNUM 4
-#define A2_REGNUM 6
-#define A3_REGNUM 7
-#define MDR_REGNUM 10
-#define PSW_REGNUM 11
-#define LIR_REGNUM 12
-#define LAR_REGNUM 13
-#define MDRQ_REGNUM 14
-#define E0_REGNUM 15
-#define MCRH_REGNUM 26
-#define MCRL_REGNUM 27
-#define MCVF_REGNUM 28
-
-enum movm_register_bits {
- movm_exother_bit = 0x01,
- movm_exreg1_bit = 0x02,
- movm_exreg0_bit = 0x04,
- movm_other_bit = 0x08,
- movm_a3_bit = 0x10,
- movm_a2_bit = 0x20,
- movm_d3_bit = 0x40,
- movm_d2_bit = 0x80
-};
diff --git a/gdb/configure.tgt b/gdb/configure.tgt
index adbd73d..30942b3 100644
--- a/gdb/configure.tgt
+++ b/gdb/configure.tgt
@@ -324,4 +324,5 @@ case "${gdb_target}" in
cris) gdb_multi_arch=yes ;;
d10v) gdb_multi_arch=yes ;;
m68hc11) gdb_multi_arch=yes ;;
+mn10300) gdb_multi_arch=yes ;;
esac
diff --git a/gdb/mn10300-tdep.c b/gdb/mn10300-tdep.c
index 087f8ef..472e260 100644
--- a/gdb/mn10300-tdep.c
+++ b/gdb/mn10300-tdep.c
@@ -32,6 +32,33 @@
#include "regcache.h"
#include "arch-utils.h"
+#define D0_REGNUM 0
+#define D2_REGNUM 2
+#define D3_REGNUM 3
+#define A0_REGNUM 4
+#define A2_REGNUM 6
+#define A3_REGNUM 7
+#define MDR_REGNUM 10
+#define PSW_REGNUM 11
+#define LIR_REGNUM 12
+#define LAR_REGNUM 13
+#define MDRQ_REGNUM 14
+#define E0_REGNUM 15
+#define MCRH_REGNUM 26
+#define MCRL_REGNUM 27
+#define MCVF_REGNUM 28
+
+enum movm_register_bits {
+ movm_exother_bit = 0x01,
+ movm_exreg1_bit = 0x02,
+ movm_exreg0_bit = 0x04,
+ movm_other_bit = 0x08,
+ movm_a3_bit = 0x10,
+ movm_a2_bit = 0x20,
+ movm_d3_bit = 0x40,
+ movm_d2_bit = 0x80
+};
+
extern void _initialize_mn10300_tdep (void);
static CORE_ADDR mn10300_analyze_prologue (struct frame_info *fi,
CORE_ADDR pc);