This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[RFC] Add support for Morpho ms1 processor


The patch below adds support for the Morpho Technologies ms1 processor
to GDB.  This code was written by Michael Snyder.  (Though I and
perhaps others have tweaked it here and there...)

It's not quite ready to commit; there are still some bits at the top
level, and in bfd/, opcodes/, and include/ that need to go in first. 
Aldy Hernandez is submitting those portions.

However, it occurs to me that there may be a few things in this GDB
portion that ought to be adjusted before it goes in, so I'm posting it
now for comments.

So... comments?

Kevin

	* Makefile.in (ms1-tdep.o): Add dependencies.
	* configure.tgt: Add ms1-*-* target.
	* ms1-tdep.c: New file.
	* config/ms1/ms1.mt: New file.

Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/Makefile.in,v
retrieving revision 1.735
diff -u -p -r1.735 Makefile.in
--- Makefile.in	2 Jun 2005 16:52:04 -0000	1.735
+++ Makefile.in	4 Jun 2005 00:14:10 -0000
@@ -2313,6 +2313,10 @@ mn10300-tdep.o: mn10300-tdep.c $(defs_h)
 monitor.o: monitor.c $(defs_h) $(gdbcore_h) $(target_h) $(exceptions_h) \
 	$(gdb_string_h) $(command_h) $(serial_h) $(monitor_h) $(gdbcmd_h) \
 	$(inferior_h) $(gdb_regex_h) $(srec_h) $(regcache_h)
+ms1-tdep.o: ms1-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) $(frame_base_h) \
+	$(symtab_h) $(dis_asm_h) $(arch_utils_h) $(gdbtypes_h) \
+	$(gdb_string_h) $(regcache_h) $(reggroups_h) $(gdbcore_h) \
+	$(trad_frame_h) $(inferior_h) $(dwarf2_frame_h) $(infcall_h)
 nbsd-tdep.o: nbsd-tdep.c $(defs_h) $(gdb_string_h) $(solib_svr4_h)
 nlmread.o: nlmread.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \
 	$(objfiles_h) $(buildsym_h) $(stabsread_h) $(block_h)
Index: configure.tgt
===================================================================
RCS file: /cvs/src/src/gdb/configure.tgt,v
retrieving revision 1.167
diff -u -p -r1.167 configure.tgt
--- configure.tgt	28 May 2005 22:09:03 -0000	1.167
+++ configure.tgt	4 Jun 2005 00:14:10 -0000
@@ -19,6 +19,7 @@ m68hc11*|m6811*)	gdb_target_cpu=m68hc11 
 m68*)			gdb_target_cpu=m68k ;;
 m88*)			gdb_target_cpu=m88k ;;
 mips*)			gdb_target_cpu=mips ;;
+ms1*)			gdb_target_cpu=ms1 ;;
 powerpc*)		gdb_target_cpu=powerpc ;;
 sparc*)			gdb_target_cpu=sparc ;;
 thumb*)			gdb_target_cpu=arm ;;
@@ -140,6 +141,8 @@ mips*-*-*)		gdb_target=embed ;;
 
 mn10300-*-*)		gdb_target=mn10300 ;;
 
+ms1-*-*)		gdb_target=ms1 ;;
+
 powerpc-*-netbsd* | powerpc-*-knetbsd*-gnu)
 			gdb_target=nbsd ;;
 powerpc-*-openbsd*)	gdb_target=obsd ;;
Index: ms1-tdep.c
===================================================================
RCS file: ms1-tdep.c
diff -N ms1-tdep.c
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ ms1-tdep.c	4 Jun 2005 00:14:10 -0000
@@ -0,0 +1,1171 @@
+/* Target-dependent code for Morpho ms1-64, for GDB.
+
+   Copyright 2004 Red Hat, 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.  */
+
+/*  Contributed by Michael Snyder, msnyder@redhat.com */
+
+#include "defs.h"
+#include "frame.h"
+#include "frame-unwind.h"
+#include "frame-base.h"
+#include "symtab.h"
+#include "dis-asm.h"
+#include "arch-utils.h"
+#include "gdbtypes.h"
+#include "gdb_string.h"
+#include "regcache.h"
+#include "reggroups.h"
+#include "gdbcore.h"
+#include "trad-frame.h"
+#include "inferior.h"
+#include "dwarf2-frame.h"
+#include "infcall.h"
+
+enum arch_constants {
+  E_MAX_STRUCT_SIZE = 16
+};
+
+enum gdb_regnum {
+  E_R0_REGNUM,			/* 32 bit regs */
+  E_R1_REGNUM,
+  E_1ST_ARGREG = E_R1_REGNUM, 
+  E_R2_REGNUM,
+  E_R3_REGNUM,
+  E_R4_REGNUM,
+  E_LAST_ARGREG = E_R4_REGNUM,
+  E_R5_REGNUM,
+  E_R6_REGNUM,
+  E_R7_REGNUM,
+  E_R8_REGNUM,
+  E_R9_REGNUM,
+  E_R10_REGNUM,
+  E_R11_REGNUM,
+  E_R12_REGNUM,
+  E_FP_REGNUM = E_R12_REGNUM, 
+  E_R13_REGNUM,
+  E_SP_REGNUM = E_R13_REGNUM,
+  E_R14_REGNUM,
+  E_RA_REGNUM = E_R14_REGNUM,
+  E_R15_REGNUM,
+  E_IRA_REGNUM = E_R15_REGNUM,
+  E_PC_REGNUM,
+
+  /*
+   * Interrupt Enable pseudo-register, exported by SID.
+   */
+
+  E_INT_ENABLE_REGNUM, 
+  
+  /*
+   * End of CPU regs.
+   */
+
+  E_NUM_CPU_REGS, 
+
+  /*
+   * Co-processor registers
+   */
+
+  E_COPRO_REGNUM = E_NUM_CPU_REGS, 	/* 16 bit regs */
+  E_CPR0_REGNUM,
+  E_CPR1_REGNUM, 
+  E_CPR2_REGNUM, 
+  E_CPR3_REGNUM, 
+  E_CPR4_REGNUM, 
+  E_CPR5_REGNUM, 
+  E_CPR6_REGNUM, 
+  E_CPR7_REGNUM, 
+  E_CPR8_REGNUM, 
+  E_CPR9_REGNUM, 
+  E_CPR10_REGNUM, 
+  E_CPR11_REGNUM, 
+  E_CPR12_REGNUM, 
+  E_CPR13_REGNUM, 
+  E_CPR14_REGNUM, 
+  E_CPR15_REGNUM, 
+  E_BYPA_REGNUM,	/* 32 bit regs */
+  E_BYPB_REGNUM,
+  E_BYPC_REGNUM,
+  E_FLAG_REGNUM,
+  E_CONTEXT_REGNUM,	/* 38 bits (treat as array of six bytes) */
+  E_MAC_REGNUM,		/* 32 bits */
+  E_Z1_REGNUM, 		/* 16 bits */
+  E_Z2_REGNUM, 		/* 16 bits */
+  E_ICHANNEL_REGNUM,	/* 32 bits */
+  E_ISCRAMB_REGNUM, 	/* 32 bits */
+  E_QSCRAMB_REGNUM, 	/* 32 bits */
+  E_OUT_REGNUM, 	/* 16 bits */
+  E_EXMAC_REGNUM,	/* 32 bits (8 used) */
+  E_QCHANNEL_REGNUM,	/* 32 bits */
+
+  E_LAST_REG,		/* NOTE: must be LAST 
+			   (following all "real" regs).  */
+
+  E_NUM_REGS = E_LAST_REG,	/* number of real registers */
+
+  E_COPRO_PSEUDOREG_REGNUM = E_NUM_REGS, 
+  E_MAC_PSEUDOREG_REGNUM,
+
+  E_NUM_PSEUDO_REGS = 2	/* Two pseudo-regs ('coprocessor' and 'mac').  */
+};
+
+
+/* Function: register_name
+   Returns the name of the standard ms1 register N.  */
+
+static const char *
+ms1_register_name (int regnum)
+{
+  static char *register_names[] = {
+    /* CPU regs */
+    "r0",  "r1",  "r2",  "r3",  "r4",  "r5",  "r6",  "r7",
+    "r8",  "r9",  "r10", "r11", "r12", "r13", "r14", "r15",
+    "pc", "IE", 
+    /* Co-processor regs */
+    "", /* copro register */
+    "cr0", "cr1", "cr2",  "cr3",  "cr4",  "cr5",  "cr6",  "cr7", 
+    "cr8", "cr9", "cr10", "cr11", "cr12", "cr13", "cr14", "cr15", 
+    "bypa", "bypb", "bypc",  "flag", "context", "" /* mac */, "z1", "z2", 
+    "Ichannel", "Iscramb", "Qscramb", "out", "" /* ex-mac */, "Qchannel",
+    "coprocessor",	/* coprocessor pseudo-register */
+    "MAC"		/* MAC pseudo-register */
+  };
+
+  if (regnum >= 0 &&
+      regnum < sizeof (register_names) / sizeof (register_names[0]))
+    {
+      return register_names[regnum];
+    }
+  else
+    internal_error (__FILE__, __LINE__,
+		    "ms1_register_name: illegal register number %d",
+		    regnum);
+}
+
+/* Function: register_type 
+   Returns the default type for register N.  */
+
+static struct type *
+ms1_register_type (struct gdbarch *arch, int regnum)
+{
+  static struct type *void_func_ptr = NULL;
+  static struct type *void_ptr = NULL;
+  static struct type *copro_type;
+
+  if (regnum >= 0 && regnum < E_NUM_REGS + E_NUM_PSEUDO_REGS)
+    {
+      if (void_func_ptr == NULL)
+	{
+	  struct type *temp;
+
+	  void_ptr = lookup_pointer_type (builtin_type_void);
+	  void_func_ptr = 
+	    lookup_pointer_type (lookup_function_type (builtin_type_void));
+	  temp = create_range_type (NULL, builtin_type_unsigned_int, 0, 1);
+	  copro_type = create_array_type (NULL, builtin_type_int16, temp);
+	}
+      switch (regnum) {
+      case E_PC_REGNUM:
+      case E_RA_REGNUM:
+      case E_IRA_REGNUM:
+	return void_func_ptr;
+      case E_SP_REGNUM:
+      case E_FP_REGNUM:
+	return void_ptr;
+      case E_INT_ENABLE_REGNUM:
+      case E_ICHANNEL_REGNUM:
+      case E_QCHANNEL_REGNUM:
+      case E_ISCRAMB_REGNUM:
+      case E_QSCRAMB_REGNUM:
+	return builtin_type_int32;
+      case E_EXMAC_REGNUM:
+      case E_MAC_REGNUM:
+	return builtin_type_uint32;
+      case E_BYPA_REGNUM:
+      case E_BYPB_REGNUM:
+      case E_BYPC_REGNUM:
+      case E_Z1_REGNUM:
+      case E_Z2_REGNUM:
+      case E_OUT_REGNUM:
+	return builtin_type_int16;
+      case E_CONTEXT_REGNUM:
+	return builtin_type_long_long;
+      case E_COPRO_REGNUM:
+      case E_COPRO_PSEUDOREG_REGNUM:
+	return copro_type;
+      case E_MAC_PSEUDOREG_REGNUM:
+	if (gdbarch_bfd_arch_info (arch) -> mach == bfd_mach_mrisc2)
+	  return builtin_type_uint64;
+	else
+	  return builtin_type_uint32;
+      case E_FLAG_REGNUM:
+	return builtin_type_unsigned_char;
+      default:
+	if (regnum >= E_R0_REGNUM && regnum <= E_R15_REGNUM)
+	  return builtin_type_int32;
+	else if (regnum >= E_CPR0_REGNUM && regnum <= E_CPR15_REGNUM)
+	  return builtin_type_int16;
+      }
+    }
+  internal_error (__FILE__, __LINE__, 
+		  "ms1_register_type: illegal register number %d",
+		  regnum);
+}
+
+/* Function: register_reggroup_p
+   Return true if register is a member of reggroup.  */
+
+static int
+ms1_register_reggroup_p (struct gdbarch *gdbarch, int regnum, 
+			 struct reggroup *group)
+{
+  /* Groups of registers that can be displayed via "info reg".  */
+
+  if (group == all_reggroup)
+    return (regnum >= 0
+            && regnum < E_NUM_REGS + E_NUM_PSEUDO_REGS
+	    && ms1_register_name (regnum)[0] != '\0');
+
+  if (group == general_reggroup)
+    return (regnum >= E_R0_REGNUM && regnum <= E_R15_REGNUM);
+
+  if (group == float_reggroup)
+    return 0;	/* No float regs.  */
+
+  if (group == vector_reggroup)
+    return 0;	/* No vector regs.  */
+
+  /* For any that are not handled above.  */
+  return default_register_reggroup_p (gdbarch, regnum, group);
+}
+
+/* Function: read_pc
+   Convert insn pointer to address before returning it.  */
+
+static CORE_ADDR
+ms1_read_pc (ptid_t ptid)
+{
+  return read_register_pid (E_PC_REGNUM, ptid);
+}
+
+/* Function: write_pc
+   Convert address to insn pointer before writing it.  */
+
+static void
+ms1_write_pc (CORE_ADDR new_pc, ptid_t ptid)
+{
+  write_register_pid (E_PC_REGNUM, new_pc, ptid);
+}
+
+static enum return_value_convention
+ms1_return_value (struct gdbarch *gdbarch, struct type *type,
+                  struct regcache *regcache, gdb_byte *readbuf,
+		  const gdb_byte *writebuf)
+{
+  if (TYPE_LENGTH (type) > 4)
+    {
+      /* Return values > 4 bytes are returned in memory, 
+	 pointed to by R11.  */
+      if (readbuf)
+	{
+	  ULONGEST addr;
+
+	  regcache_cooked_read_unsigned (regcache, E_R11_REGNUM, &addr);
+	  read_memory (addr, readbuf, TYPE_LENGTH (type));
+	}
+
+      if (writebuf)
+        {
+	  ULONGEST addr;
+
+	  regcache_cooked_read_unsigned (regcache, E_R11_REGNUM, &addr);
+	  write_memory (addr, writebuf, TYPE_LENGTH (type));
+	}
+
+      return RETURN_VALUE_ABI_RETURNS_ADDRESS;
+    }
+  else
+    {
+      if (readbuf)
+	{
+	  ULONGEST temp;
+
+	  /* Return values of <= 4 bytes are returned in R11.  */
+	  regcache_cooked_read_unsigned (regcache, E_R11_REGNUM, &temp);
+	  store_unsigned_integer (readbuf, TYPE_LENGTH (type), temp);
+	}
+
+      if (writebuf)
+	{
+	  if (TYPE_LENGTH (type) < 4)
+	    {
+	      gdb_byte buf[4];
+	      /* Add leading zeros to the value.  */
+	      memset (buf, 0, sizeof (buf));
+	      memcpy (buf + sizeof (buf) - TYPE_LENGTH (type),
+		      writebuf, TYPE_LENGTH (type));
+	      regcache_cooked_write (regcache, E_R11_REGNUM, buf);
+	    }
+	  else /* (TYPE_LENGTH (type) == 4 */
+	    regcache_cooked_write (regcache, E_R11_REGNUM, writebuf);
+	}
+
+      return RETURN_VALUE_REGISTER_CONVENTION;
+    }
+}
+
+/* Function: skip_prologue
+   If the input address is in a function prologue, 
+   return the address of the end of the prologue;
+   else return the input address.
+
+   Note: the input address is likely to be the function start, 
+   since this function is mainly used for advancing a breakpoint
+   to the first line, or stepping to the first line when we have
+   stepped into a function call.  */
+
+static CORE_ADDR
+ms1_skip_prologue (CORE_ADDR pc)
+{
+  CORE_ADDR func_addr = 0, func_end = 0;
+  char *func_name;
+  unsigned long instr;
+
+  if (find_pc_partial_function (pc, &func_name, &func_addr, &func_end))
+    {
+      struct symtab_and_line sal;
+      struct symbol *sym;
+
+      /* Found a function.  */
+      sym = lookup_symbol (func_name, NULL, VAR_DOMAIN, NULL, NULL);
+      if (sym && SYMBOL_LANGUAGE (sym) != language_asm)
+        {
+	  /* Don't use this trick for assembly source files.  */
+	  sal = find_pc_line (func_addr, 0);
+
+	  if (sal.end && sal.end < func_end)
+	    {
+	      /* Found a line number, use it as end of prologue.  */
+	      return sal.end;
+	    }
+	}
+    }
+
+  /* No function symbol, or no line symbol.
+     Use prologue scanning method.  FIXME use dwarf2 cfi!  */
+  for ( ; ; pc += 4)
+    {
+      instr = read_memory_unsigned_integer (pc, 4);
+      if (instr == 0x12000000)	/* nop */
+	continue;
+      if (instr == 0x12ddc000)	/* copy sp into fp */
+	continue;
+      instr >>= 16;
+      if (instr == 0x05dd)	/* subi sp, sp, imm */
+	continue;
+      if (instr >= 0x43c0 && instr <= 0x43df)	/* push */
+	continue;
+      /* Not an obvious prologue instruction.  */
+      break;
+    }
+
+  return pc;
+}
+
+/* Function: breakpoint_from_pc
+
+   The breakpoint instruction must be the same size as the smallest
+   instruction in the instruction set.
+
+   The BP for ms1 is defined as 0x68000000.  */
+
+static const unsigned char *
+ms1_breakpoint_from_pc (CORE_ADDR *bp_addr, int *bp_size)
+{
+  static char breakpoint[] = {0x68, 0, 0, 0};
+
+  *bp_size = 4;
+  return breakpoint;
+}
+
+/* Function: pseudo_register_read
+
+   There are two pseudo-registers:
+   1) The 'coprocessor' pseudo-register (which mirrors the 
+   "real" coprocessor register sent by the target), and
+   2) The 'MAC' pseudo-register (which represents the union
+   of the original 32 bit target MAC register and the new
+   8-bit extended-MAC register).  */
+
+static void
+ms1_pseudo_register_read (struct gdbarch *gdbarch,
+			  struct regcache *regcache,
+			  int regno, gdb_byte *buf)
+{
+  switch (regno) {
+  case E_COPRO_REGNUM:
+  case E_COPRO_PSEUDOREG_REGNUM:
+    regcache_raw_read (regcache, E_COPRO_REGNUM, buf);
+    break;
+  case E_MAC_REGNUM:
+  case E_MAC_PSEUDOREG_REGNUM:
+    if (gdbarch_bfd_arch_info (gdbarch) -> mach == bfd_mach_mrisc2)
+      {
+	ULONGEST oldmac = 0, ext_mac = 0;
+	ULONGEST newmac;
+
+	regcache_cooked_read_unsigned (regcache, E_MAC_REGNUM, &oldmac);
+	regcache_cooked_read_unsigned (regcache, E_EXMAC_REGNUM, &ext_mac);
+	newmac = (oldmac & 0xffffffff) | ((long long) (ext_mac & 0xff) << 32);
+	store_signed_integer (buf, 8, newmac);
+      }
+    else
+      regcache_raw_read (regcache, E_MAC_REGNUM, buf);
+    break;
+  default:
+    internal_error (__FILE__, __LINE__, 
+		    "ms1_pseudo_register_read: bad reg # (%d)",
+		    regno);
+    break;
+  }
+}
+
+/* Function: pseudo_register_write
+
+   Ms1 pseudo-registers are stored directly to the target.  The
+   'coprocessor' register is special, because when it is modified, all
+   the other coprocessor regs must be flushed from the reg cache.  */
+
+static void
+ms1_pseudo_register_write (struct gdbarch *gdbarch,
+			   struct regcache *regcache,
+			   int regno, const gdb_byte *buf)
+{
+  int i;
+
+  switch (regno) {
+  case E_COPRO_REGNUM:
+  case E_COPRO_PSEUDOREG_REGNUM:
+    regcache_raw_write (regcache, E_COPRO_REGNUM, buf);
+    for (i = E_NUM_CPU_REGS; i < E_NUM_REGS; i++)
+      set_register_cached (i, 0);
+    break;
+  case E_MAC_REGNUM:
+  case E_MAC_PSEUDOREG_REGNUM:
+    if (gdbarch_bfd_arch_info (gdbarch) -> mach == bfd_mach_mrisc2)
+      {
+	/* The 8-byte MAC pseudo-register must be 
+	   broken down into two 32-byte registers.  */
+	unsigned int oldmac, ext_mac;
+	ULONGEST newmac;
+
+	newmac = extract_unsigned_integer (buf, 8);
+	oldmac = newmac & 0xffffffff;
+	ext_mac = (newmac >> 32) & 0xff;
+	regcache_cooked_write_unsigned (regcache, E_MAC_REGNUM, oldmac);
+	regcache_cooked_write_unsigned (regcache, E_EXMAC_REGNUM, ext_mac);
+      }
+    else
+      regcache_raw_write (regcache, E_MAC_REGNUM, buf);
+    break;
+  default:
+    internal_error (__FILE__, __LINE__, 
+		    "ms1_pseudo_register_write: bad reg # (%d)",
+		    regno);
+    break;
+  }
+}
+
+static CORE_ADDR
+ms1_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
+{
+  /* Register size is 4 bytes.  */
+  return align_down (sp, 4);
+}
+
+/* Function: print_registers_info
+   Implements the "info registers" command. 
+   Use the "all" argument to print the coprocessor registers.  */
+
+static void
+ms1_registers_info (struct gdbarch *gdbarch, 
+		    struct ui_file *file, 
+		    struct frame_info *frame, 
+		    int regnum, int all)
+{
+  if (regnum == -1)
+    {
+      int lim;
+
+      lim = all ? E_NUM_REGS : E_NUM_CPU_REGS;
+
+      for (regnum = 0; regnum < lim; regnum++)
+	{
+	  /* Don't display the Qchannel register since it will be displayed
+	     along with Ichannel.  (See below.)  */
+	  if (regnum == E_QCHANNEL_REGNUM)
+	    continue;
+
+	  ms1_registers_info (gdbarch, file, frame, regnum, all);
+
+	  /* Display the Qchannel register immediately after Ichannel.  */
+	  if (regnum == E_ICHANNEL_REGNUM)
+	    ms1_registers_info (gdbarch, file, frame, E_QCHANNEL_REGNUM, all);
+	}
+    }
+  else
+    {
+      struct regcache *regcache;
+
+      if (regnum == E_EXMAC_REGNUM)
+	return;
+      else if (regnum == E_CONTEXT_REGNUM)
+	{
+	  /* Special output handling for 38-bit context register.  */
+	  unsigned char *buff;
+	  unsigned int  *bytes, i, regsize;
+
+	  regsize = register_size (gdbarch, regnum);
+
+	  buff = alloca (regsize);
+	  bytes = alloca (regsize * sizeof (*bytes));
+
+	  frame_register_read (frame, regnum, buff);
+
+	  fputs_filtered (REGISTER_NAME (regnum), file);
+	  print_spaces_filtered (15 - strlen (REGISTER_NAME (regnum)), file);
+	  fputs_filtered ("0x", file);
+
+	  for (i = 0; i < regsize; i++)
+	    fprintf_filtered (file, "%02x", (unsigned int)
+			      extract_unsigned_integer (buff + i, 1));
+	  fputs_filtered ("\t", file);
+	  print_longest (file, 'd', 0, 
+			 extract_unsigned_integer (buff, regsize));
+	  fputs_filtered ("\n", file);
+	}
+      else if (regnum == E_COPRO_REGNUM ||
+	       regnum == E_COPRO_PSEUDOREG_REGNUM)
+	{
+	  /* Special output handling for the 'coprocessor' register.  */
+	  char *buf;
+	  unsigned short copro[2];
+
+	  buf = alloca (register_size (gdbarch, E_COPRO_REGNUM));
+	  frame_register_read (frame, E_COPRO_REGNUM, buf);
+	  /* And print.  */
+	  regnum = E_COPRO_PSEUDOREG_REGNUM;
+	  fputs_filtered (REGISTER_NAME (regnum), file);
+	  print_spaces_filtered (15 - strlen (REGISTER_NAME (regnum)), file);
+	  val_print (register_type (gdbarch, regnum), buf, 
+		     0, 0, file, 0, 1, 0, Val_no_prettyprint);
+	  fputs_filtered ("\n", file);
+	}
+      else if (regnum == E_MAC_REGNUM ||
+	       regnum == E_MAC_PSEUDOREG_REGNUM)
+	{
+	  ULONGEST oldmac, ext_mac, newmac;
+	  char buf[3 * sizeof (LONGEST)];
+
+	  /* Get the two "real" mac registers.  */
+	  frame_register_read (frame, E_MAC_REGNUM, buf);
+	  oldmac = extract_unsigned_integer (buf, 
+					     register_size (gdbarch, 
+							    E_MAC_REGNUM));
+	  if (gdbarch_bfd_arch_info (gdbarch) -> mach == bfd_mach_mrisc2)
+	    {
+	      frame_register_read (frame, E_EXMAC_REGNUM, buf);
+	      ext_mac = extract_unsigned_integer (buf, 
+						  register_size (gdbarch, 
+								 E_EXMAC_REGNUM));
+	    }
+	  else 
+	    ext_mac = 0;
+
+	  /* Add them together.  */
+	  newmac = (oldmac & 0xffffffff) + ((ext_mac & 0xff) << 32);
+
+	  /* And print.  */
+	  regnum = E_MAC_PSEUDOREG_REGNUM;
+	  fputs_filtered (REGISTER_NAME (regnum), file);
+	  print_spaces_filtered (15 - strlen (REGISTER_NAME (regnum)), file);
+	  fputs_filtered ("0x", file);
+	  print_longest (file, 'x', 0, newmac);
+	  fputs_filtered ("\t", file);
+	  print_longest (file, 'u', 0, newmac);
+	  fputs_filtered ("\n", file);
+	}
+      else
+	default_print_registers_info (gdbarch, file, frame, regnum, all);
+    }
+}
+
+/* push_dummy_call -- Part of the replacement for push_arguments.
+   This function must set up the callee's arguments (on the stack
+   or in registers as appropriate), including if necessary the
+   invisible one for returning a struct.  It also sets up the 
+   return address (which points to the call dummy breakpoint).
+
+   Returns the updated (and aligned) stack pointer.
+*/
+
+static CORE_ADDR
+ms1_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
+		     struct regcache *regcache, CORE_ADDR bp_addr,
+		     int nargs, struct value **args, CORE_ADDR sp, 
+		     int struct_return, CORE_ADDR struct_addr)
+{
+#define wordsize 4
+  char buf[E_MAX_STRUCT_SIZE];
+  int argreg = E_1ST_ARGREG;
+  int split_param_len = 0;
+  int stack_dest = sp;
+  int slacklen;
+  int typelen;
+  int i, j;
+  CORE_ADDR func_addr = find_function_addr (function, NULL);
+  
+  /* First handle however many args we can fit into
+     E_1ST_ARGREG thru E_LAST_ARGREG.  */
+  for (i = 0; i < nargs && argreg <= E_LAST_ARGREG; i++)
+    {
+      const char *val;
+      typelen = TYPE_LENGTH (value_type (args[i]));
+      switch (typelen) {
+      case 1:
+      case 2:
+      case 3:
+      case 4:
+	regcache_cooked_write_unsigned (regcache, argreg++, 
+					extract_unsigned_integer (value_contents (args[i]), 
+								  wordsize));
+	break;
+      case 8:
+      case 12:
+      case 16:
+	val = value_contents (args[i]);
+	while (typelen > 0)
+	  {
+	    if (argreg <= E_LAST_ARGREG)
+	      { /* This word of the argument is passed in a register.  */
+		regcache_cooked_write_unsigned (regcache, argreg++, 
+						extract_unsigned_integer (val, 
+									  wordsize));
+		typelen -= wordsize;
+		val += wordsize;
+	      }
+	    else
+	      { /* Remainder of this arg must be passed on the stack 
+		   (deferred to do later).  */
+		split_param_len = typelen;
+		memcpy (buf, val, typelen);
+		break;	/* No more args can be handled in regs.  */
+	      }
+	  }
+	break;
+      default:
+	/* By reverse engineering of gcc output, args bigger than
+	   16 bytes go on the stack, and their address is passed
+	   in the argreg.  */
+	stack_dest -= typelen;
+	write_memory (stack_dest, value_contents (args[i]), typelen);
+	regcache_cooked_write_unsigned (regcache, argreg++, stack_dest);
+	break;
+      }
+    }
+
+  /* Next, the rest of the arguments go onto the stack, in reverse order.  */
+  for (j = nargs - 1; j >= i; j--)
+    {
+      char *val;
+      /* Right-justify the value in an aligned-length buffer.  */
+      typelen  = TYPE_LENGTH (value_type (args[j]));
+      slacklen = (wordsize - (typelen % wordsize)) % wordsize;
+      val = alloca (typelen + slacklen);
+      memcpy (val, value_contents (args[j]), typelen);
+      memset (val + typelen, 0, slacklen);
+      /* Now write this data to the stack.  */
+      stack_dest -= typelen + slacklen;
+      write_memory (stack_dest, val, typelen + slacklen);
+    }
+
+  /* Finally, if a param needs to be split between registers and stack, 
+     write the second half to the stack now.  */
+  if (split_param_len != 0)
+    {
+      stack_dest -= split_param_len;
+      write_memory (stack_dest, buf, split_param_len);
+    }
+
+  /* Set up return address (provided to us as bp_addr).  */
+  regcache_cooked_write_unsigned (regcache, E_RA_REGNUM, bp_addr);
+
+  /* Store struct return address, if given.  */
+  if (struct_return && struct_addr != 0)
+    regcache_cooked_write_unsigned (regcache, E_R11_REGNUM, struct_addr);
+
+  /* Set aside 16 bytes for the callee to save regs 1-4.  */
+  stack_dest -= 16;
+
+  /* Update the stack pointer (caller no longer does this).  */
+  regcache_cooked_write_unsigned (regcache, E_SP_REGNUM, stack_dest);
+  /* FIXME: should I save the FP too?  */
+
+  /* And that should do it.  Return the new stack pointer.  */
+  return stack_dest;
+}
+
+static struct gdbarch *
+ms1_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
+{
+  struct gdbarch *gdbarch;
+  static void ms1_frame_unwind_init (struct gdbarch *);
+
+  /* Find a candidate among the list of pre-declared architectures.  */
+  arches = gdbarch_list_lookup_by_info (arches, &info);
+  if (arches != NULL)
+    return arches->gdbarch;
+
+  /* None found, create a new architecture from the information
+     provided.  */
+  gdbarch = gdbarch_alloc (&info, NULL);
+
+  /* The MAC register for the MS1-16-003 is 8 bits larger
+     than it is for the other machine variants.  */
+  switch (info.bfd_arch_info->mach) {
+  default:
+  case bfd_mach_ms1:
+    break;
+  }
+  
+  switch (info.byte_order)
+    {
+    case BFD_ENDIAN_BIG:
+      set_gdbarch_float_format (gdbarch, &floatformat_ieee_single_big);
+      set_gdbarch_double_format (gdbarch, &floatformat_ieee_double_big);
+      set_gdbarch_long_double_format (gdbarch, &floatformat_ieee_double_big);
+      break;
+    case BFD_ENDIAN_LITTLE:
+      set_gdbarch_float_format (gdbarch, &floatformat_ieee_single_little);
+      set_gdbarch_double_format (gdbarch, &floatformat_ieee_double_little);
+      set_gdbarch_long_double_format (gdbarch, 
+				      &floatformat_ieee_double_little);
+      break;
+    default:
+      internal_error (__FILE__, __LINE__,
+		      "ms1_gdbarch_init: bad byte order for float format");
+    }
+
+  set_gdbarch_register_name (gdbarch, ms1_register_name);
+  set_gdbarch_num_regs      (gdbarch, E_NUM_REGS);
+  set_gdbarch_num_pseudo_regs (gdbarch, E_NUM_PSEUDO_REGS);
+  set_gdbarch_pc_regnum (gdbarch, E_PC_REGNUM);
+  set_gdbarch_sp_regnum (gdbarch, E_SP_REGNUM);
+  set_gdbarch_pseudo_register_read  (gdbarch, ms1_pseudo_register_read);
+  set_gdbarch_pseudo_register_write (gdbarch, ms1_pseudo_register_write);
+  set_gdbarch_skip_prologue (gdbarch, ms1_skip_prologue);
+  set_gdbarch_inner_than    (gdbarch, core_addr_lessthan);
+  set_gdbarch_breakpoint_from_pc    (gdbarch, ms1_breakpoint_from_pc);
+  set_gdbarch_decr_pc_after_break   (gdbarch, 0);
+  set_gdbarch_frame_args_skip (gdbarch, 0);
+  set_gdbarch_print_insn      (gdbarch, print_insn_ms1);
+  set_gdbarch_register_type   (gdbarch, ms1_register_type);
+  set_gdbarch_register_reggroup_p (gdbarch, ms1_register_reggroup_p);
+  
+  set_gdbarch_return_value (gdbarch, ms1_return_value);
+  set_gdbarch_read_pc  (gdbarch, ms1_read_pc);
+  set_gdbarch_write_pc (gdbarch, ms1_write_pc);
+  set_gdbarch_sp_regnum (gdbarch, E_SP_REGNUM);
+
+  set_gdbarch_frame_align (gdbarch, ms1_frame_align);
+
+  set_gdbarch_print_registers_info (gdbarch, ms1_registers_info);
+
+  set_gdbarch_push_dummy_call (gdbarch, ms1_push_dummy_call);
+
+  /*
+   * Target builtin data types.
+   */
+  set_gdbarch_short_bit       (gdbarch, 2 * TARGET_CHAR_BIT);
+  set_gdbarch_int_bit         (gdbarch, 4 * TARGET_CHAR_BIT);
+  set_gdbarch_long_bit        (gdbarch, 4 * TARGET_CHAR_BIT);
+  set_gdbarch_long_long_bit   (gdbarch, 8 * TARGET_CHAR_BIT);
+  set_gdbarch_float_bit       (gdbarch, 4 * TARGET_CHAR_BIT);
+  set_gdbarch_double_bit      (gdbarch, 8 * TARGET_CHAR_BIT);
+  set_gdbarch_long_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
+  set_gdbarch_ptr_bit         (gdbarch, 4 * TARGET_CHAR_BIT);
+
+  ms1_frame_unwind_init (gdbarch);
+
+  return gdbarch;
+}
+
+void
+_initialize_ms1_tdep (void)
+{
+  register_gdbarch_init (bfd_arch_ms1, ms1_gdbarch_init);
+}
+
+
+/*
+ * Frame unwind stuff:
+ */
+
+/* nota bene:
+
+trad_frame_alloc_saved_regs (struct frame_info *);
+trad_frame_prev_register 
+
+*/
+
+/*
+ * The 'unwind_cache' data structure.
+ * This is partly analogous to the old 'extra_frame_info'.
+ * For instance, it can contain the saved_regs array, and
+ * the pointer to the previous frame's stack.
+
+ * This struct is strictly local, so can rename it etc.
+ */
+
+struct ms1_unwind_cache
+{
+  /* The previous frame's inner most stack address.  
+     Used as this frame ID's stack_addr.  */
+  CORE_ADDR prev_sp;
+  CORE_ADDR frame_base;
+  int framesize;
+  int frameless_p;
+
+  /* Table indicating the location of each and every register.  */
+  struct trad_frame_saved_reg *saved_regs;
+};
+
+/* Function: find_last_line_symbol
+
+   Given an address range, first find a line symbol corresponding to
+   the starting address.  Then find the last line symbol within the 
+   range that has a line number less than or equal to the first line.
+
+   For optimized code with code motion, this finds the last address
+   for the lowest-numbered line within the address range.  */
+
+static struct symtab_and_line
+find_last_line_symbol (CORE_ADDR start, CORE_ADDR end)
+{
+  struct symtab_and_line sal = find_pc_line (start, 0);
+  struct symtab_and_line best_sal = sal;
+
+  if (sal.pc == 0 || sal.line == 0 || sal.end == 0)
+    return sal;
+
+  do {
+    if (sal.line && sal.line <= best_sal.line)
+      best_sal = sal;
+    sal = find_pc_line (sal.end, 0);
+  } while (sal.pc && sal.pc < end);
+
+  return best_sal;
+}
+
+/* frame_unwind_cache [old scan_prologue]: initialize an unwind_cache.
+ * Build up the saved_regs table etc. for the frame.
+ */
+
+static struct ms1_unwind_cache *
+ms1_frame_unwind_cache (struct frame_info *next_frame,
+			void **this_prologue_cache)
+{
+  struct gdbarch *gdbarch;
+  struct ms1_unwind_cache *info;
+  CORE_ADDR next_addr, start_addr, end_addr;
+  unsigned long instr, upper_half, delayed_store = 0;
+  int regnum, offset;
+  ULONGEST sp, fp;
+  struct symtab_and_line sal;
+
+  if ((*this_prologue_cache))
+    return (*this_prologue_cache);
+
+  gdbarch = get_frame_arch (next_frame);
+  info = FRAME_OBSTACK_ZALLOC (struct ms1_unwind_cache);
+  (*this_prologue_cache) = info;
+
+  info->prev_sp = 0;
+  info->framesize = 0;
+  info->frame_base = 0;
+  info->frameless_p = 1;
+  info->saved_regs = trad_frame_alloc_saved_regs (next_frame);
+
+  /* Grab the frame-relative values of SP and FP, needed below. 
+     The frame_saved_register function will find them on the
+     stack or in the registers as appropriate.  */
+  frame_unwind_unsigned_register (next_frame, E_SP_REGNUM, &sp);
+  frame_unwind_unsigned_register (next_frame, E_FP_REGNUM, &fp);
+
+  start_addr = frame_func_unwind (next_frame);
+
+  /* Return early if GDB couldn't find the function.  */
+  if (start_addr == 0)
+    return info;
+
+  end_addr = frame_pc_unwind (next_frame);
+  sal = find_last_line_symbol (start_addr, end_addr);
+  for (next_addr = start_addr;
+       next_addr < end_addr;
+       next_addr += 4)
+    {
+      instr = get_frame_memory_unsigned (next_frame, next_addr, 4);
+      if (delayed_store)		/* previous instr was a push */
+	{
+	  upper_half = delayed_store >> 16;
+	  regnum = upper_half & 0xf;
+	  offset = delayed_store & 0xffff;
+	  switch (upper_half & 0xfff0) {
+	  case 0x43c0:	/* push using frame pointer */
+	    info->saved_regs[regnum].addr = offset;
+	    break;
+	  case 0x43d0:	/* push using stack pointer */
+	    info->saved_regs[regnum].addr = offset;
+	    break;
+	  default:		/* lint */
+	    break;
+	  }
+	  delayed_store = 0;
+	}
+
+      switch (instr) {
+      case 0x12000000:		/* NO-OP */
+	continue;
+      case 0x12ddc000:		/* copy sp into fp */
+	info->frameless_p = 0;	/* Record that the frame pointer is in use.  */
+	continue;
+      default:
+	upper_half = instr >> 16;
+	if (upper_half == 0x05dd ||	/* subi  sp, sp, imm */ 
+	    upper_half == 0x07dd)	/* subui sp, sp, imm */ 
+	  {
+	    /* Record the frame size.  */
+	    info->framesize = instr & 0xffff;
+	    continue;
+	  }
+	if ((upper_half & 0xfff0) == 0x43c0 ||	/* frame push */
+	    (upper_half & 0xfff0) == 0x43d0)	/* stack push */
+	  {
+	    /* Save this instruction, but don't record the 
+	       pushed register as 'saved' until we see the
+	       next instruction.  That's because of deferred stores
+	       on this target -- GDB won't be able to read the register
+	       from the stack until one instruction later.  */
+	    delayed_store = instr;
+	    continue;
+	  }
+	/* Not a prologue instruction.  Is this the end of the prologue?
+	   This is the most difficult decision; when to stop scanning. 
+
+	   If we have no line symbol, then the best thing we can do
+	   is to stop scanning when we encounter an instruction that
+	   is not likely to be a part of the prologue. 
+
+	   But if we do have a line symbol, then we should 
+	   keep scanning until we reach it (or we reach end_addr).  */
+
+	  if (sal.end && (sal.end > (next_addr + 4)))
+	    continue;	/* Keep scanning, recording saved_regs etc.  */
+	  else
+	    break;	/* Quit scanning: breakpoint can be set here.  */
+      }
+    }
+
+  /* Special handling for the "saved" address of the SP:
+     The SP is of course never saved on the stack at all, so
+     by convention what we put here is simply the previous 
+     _value_ of the SP (as opposed to an address where the
+     previous value would have been pushed).  This will also
+     give us the frame base address.  */
+
+  if (info->frameless_p)
+    {
+      info->frame_base = sp + info->framesize;
+      info->prev_sp = sp + info->framesize;
+    }
+  else
+    {
+      info->frame_base = fp + info->framesize;
+      info->prev_sp = fp + info->framesize;
+    }
+  /* Save prev_sp in saved_regs as a value, not as an address.  */
+  trad_frame_set_value (info->saved_regs, E_SP_REGNUM, info->prev_sp);
+
+  /* Now convert frame offsets to actual addresses (not offsets).  */
+  for (regnum = 0; regnum < E_NUM_REGS; regnum++)
+    if (trad_frame_addr_p (info->saved_regs, regnum))
+      info->saved_regs[regnum].addr += info->frame_base - info->framesize;
+
+  /* The call instruction moves the caller's PC in the callee's RA reg.
+     Since this is an unwind, do the reverse.  Copy the location of RA
+     into PC (the address / regnum) so that a request for PC will be
+     converted into a request for the RA.  */
+  info->saved_regs[E_PC_REGNUM] = info->saved_regs[E_RA_REGNUM];
+
+  return info;
+}
+
+static CORE_ADDR
+ms1_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
+{
+  ULONGEST pc;
+
+  frame_unwind_unsigned_register (next_frame, E_PC_REGNUM, &pc);
+  return pc;
+}
+
+static CORE_ADDR
+ms1_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
+{
+  ULONGEST sp;
+
+  frame_unwind_unsigned_register (next_frame, E_SP_REGNUM, &sp);
+  return sp;
+}
+
+/* unwind_dummy_id (stolen from d10v-tdep.c):
+
+   Assuming NEXT_FRAME->prev is a dummy, return the frame ID of that
+   dummy frame.  The frame ID's base needs to match the TOS value
+   saved by save_dummy_frame_tos(), and the PC match the dummy frame's
+   breakpoint.  */
+
+static struct frame_id
+ms1_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
+{
+  /* FIXME is this right?  */
+  /* See bottom of ms1_push_dummy_call.  */
+  return frame_id_build (ms1_unwind_sp (gdbarch, next_frame),
+			 frame_pc_unwind (next_frame));
+}
+
+/* frame_this_id (old frame_chain):
+
+   Given a GDB frame, determine the address of the calling function's
+   frame.  This will be used to create a new GDB frame struct.  */
+
+static void
+ms1_frame_this_id (struct frame_info *next_frame,
+		   void **this_prologue_cache,
+		   struct frame_id *this_id)
+{
+  struct ms1_unwind_cache *info =
+    ms1_frame_unwind_cache (next_frame, this_prologue_cache);
+
+  if (!(info == NULL || info->prev_sp == 0))
+    {
+      (*this_id) = frame_id_build (info->prev_sp, 
+				   frame_func_unwind (next_frame));
+    }
+  return;
+}
+
+/* frame_prev_register (old get_saved_register):
+ */
+
+static void
+ms1_frame_prev_register (struct frame_info *next_frame,
+			 void **this_prologue_cache,
+			 int regnum, int *optimizedp,
+			 enum lval_type *lvalp, CORE_ADDR *addrp,
+			 int *realnump, gdb_byte *bufferp)
+{
+  struct ms1_unwind_cache *info =
+    ms1_frame_unwind_cache (next_frame, this_prologue_cache);
+
+  trad_frame_get_prev_register (next_frame, info->saved_regs, regnum,
+			        optimizedp, lvalp, addrp, realnump, bufferp);
+}
+
+/* frame_base_address (old frame_args_address and frame_locals_address).  */
+static CORE_ADDR
+ms1_frame_base_address (struct frame_info *next_frame, 
+			void **this_prologue_cache)
+{
+  struct ms1_unwind_cache *info =
+    ms1_frame_unwind_cache (next_frame, this_prologue_cache);
+
+  return info->frame_base;
+}
+
+/* This is a shared interface: the 'frame_unwind' object
+   is what's returned by the 'sniffer' function, and in turn
+   specifies how to get a frame's ID and prev_regs.
+
+   This exports the 'prev_register' and 'this_id' methods.
+*/
+
+static const struct frame_unwind ms1_frame_unwind = {
+  NORMAL_FRAME,
+  ms1_frame_this_id,
+  ms1_frame_prev_register
+};
+
+/* The sniffer is a registered function that identifies our 
+   family of frame unwind functions (this_id and prev_register).  */
+
+static const struct frame_unwind *
+ms1_frame_sniffer (struct frame_info *next_frame)
+{
+  return &ms1_frame_unwind;
+}
+
+/* Another shared interface: the 'frame_base' object
+   specifies how to unwind a frame and secure the base addresses
+   for frame objects (locals, args).  */
+
+static struct frame_base ms1_frame_base = {
+  &ms1_frame_unwind, 
+  ms1_frame_base_address, 
+  ms1_frame_base_address, 
+  ms1_frame_base_address 
+};
+
+
+
+static void
+ms1_frame_unwind_init (struct gdbarch *gdbarch)
+{
+  /* This is the keystone.  You add your "sniffer" to a 
+     sniffer list, and now you're in the game.  This registers
+     a) the sniffer, b) the 'prev_register', and c) the 'this_id'
+     methods.
+  */
+
+  /* Register the DWARF 2 sniffer first, and then the traditional prologue
+     based sniffer.  */
+  frame_unwind_append_sniffer (gdbarch, dwarf2_frame_sniffer);
+  frame_unwind_append_sniffer (gdbarch, ms1_frame_sniffer);
+  frame_base_set_default (gdbarch, &ms1_frame_base);
+
+  /* Register the 'unwind_pc' method.  */
+  set_gdbarch_unwind_pc (gdbarch, ms1_unwind_pc);
+  set_gdbarch_unwind_sp (gdbarch, ms1_unwind_sp);
+
+  /* Methods for saving / extracting a dummy frame's ID.  
+     The ID's stack address must match the SP value returned by
+     PUSH_DUMMY_CALL, and saved by generic_save_dummy_frame_tos.  */
+  set_gdbarch_unwind_dummy_id (gdbarch, ms1_unwind_dummy_id);
+}
Index: config/ms1/ms1.mt
===================================================================
RCS file: config/ms1/ms1.mt
diff -N config/ms1/ms1.mt
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ config/ms1/ms1.mt	4 Jun 2005 00:14:10 -0000
@@ -0,0 +1,2 @@
+# Target: Morpho Technologies ms1 processor
+TDEPFILES= ms1-tdep.o


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]