Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Michael Snyder <msnyder@redhat.com>
To: Corinna Vinschen <vinschen@redhat.com>,
	        GDB Patches <gdb-patches@sources.redhat.com>
Subject: [RFA] Xstormy16 -- gdb_byte vs. void.
Date: Tue, 28 Mar 2006 11:24:00 -0000	[thread overview]
Message-ID: <442885E4.1000100@redhat.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 73 bytes --]

Hi Corinna,

A few little tweaks for your favorite target.
OK?

Michael


[-- Attachment #2: xstormy --]
[-- Type: text/plain, Size: 4071 bytes --]

2006-03-27  Michael Snyder  <msnyder@redhat.com>

	* xstormy16-tdep.c (xstormy16_return_value, xstormy16_push_dummy_call,
	xstormy16_pointer_to_address, xstormy16_address_to_pointer, 
	xstormy16_frame_prev_register): Change void* to gdb_byte*.
	(xstormy16_push_dummy_call): Add block-local char* val, 
	to avoid type conflict with outer scope variable.

Index: xstormy16-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/xstormy16-tdep.c,v
retrieving revision 1.89
diff -p -r1.89 xstormy16-tdep.c
*** xstormy16-tdep.c	17 Dec 2005 22:34:03 -0000	1.89
--- xstormy16-tdep.c	28 Mar 2006 00:35:37 -0000
*************** xstormy16_store_return_value (struct typ
*** 202,208 ****
  static enum return_value_convention
  xstormy16_return_value (struct gdbarch *gdbarch, struct type *type,
  			struct regcache *regcache,
! 			void *readbuf, const void *writebuf)
  {
    if (xstormy16_use_struct_convention (type))
      return RETURN_VALUE_STRUCT_CONVENTION;
--- 202,208 ----
  static enum return_value_convention
  xstormy16_return_value (struct gdbarch *gdbarch, struct type *type,
  			struct regcache *regcache,
! 			gdb_byte *readbuf, const gdb_byte *writebuf)
  {
    if (xstormy16_use_struct_convention (type))
      return RETURN_VALUE_STRUCT_CONVENTION;
*************** xstormy16_push_dummy_call (struct gdbarc
*** 239,245 ****
    int argreg = E_1ST_ARG_REGNUM;
    int i, j;
    int typelen, slacklen;
!   char *val;
    char buf[xstormy16_pc_size];
  
    /* If struct_return is true, then the struct return address will
--- 239,245 ----
    int argreg = E_1ST_ARG_REGNUM;
    int i, j;
    int typelen, slacklen;
!   const gdb_byte *val;
    char buf[xstormy16_pc_size];
  
    /* If struct_return is true, then the struct return address will
*************** xstormy16_push_dummy_call (struct gdbarc
*** 278,283 ****
--- 278,285 ----
       wordaligned.  */
    for (j = nargs - 1; j >= i; j--)
      {
+       char *val;
+ 
        typelen = TYPE_LENGTH (value_enclosing_type (args[j]));
        slacklen = typelen & 1;
        val = alloca (typelen + slacklen);
*************** xstormy16_skip_trampoline_code (CORE_ADD
*** 588,594 ****
     and vice versa.  */
  
  static CORE_ADDR
! xstormy16_pointer_to_address (struct type *type, const void *buf)
  {
    enum type_code target = TYPE_CODE (TYPE_TARGET_TYPE (type));
    CORE_ADDR addr = extract_unsigned_integer (buf, TYPE_LENGTH (type));
--- 590,596 ----
     and vice versa.  */
  
  static CORE_ADDR
! xstormy16_pointer_to_address (struct type *type, const gdb_byte *buf)
  {
    enum type_code target = TYPE_CODE (TYPE_TARGET_TYPE (type));
    CORE_ADDR addr = extract_unsigned_integer (buf, TYPE_LENGTH (type));
*************** xstormy16_pointer_to_address (struct typ
*** 604,610 ****
  }
  
  static void
! xstormy16_address_to_pointer (struct type *type, void *buf, CORE_ADDR addr)
  {
    enum type_code target = TYPE_CODE (TYPE_TARGET_TYPE (type));
  
--- 606,612 ----
  }
  
  static void
! xstormy16_address_to_pointer (struct type *type, gdb_byte *buf, CORE_ADDR addr)
  {
    enum type_code target = TYPE_CODE (TYPE_TARGET_TYPE (type));
  
*************** xstormy16_frame_cache (struct frame_info
*** 671,680 ****
  }
  
  static void
! xstormy16_frame_prev_register (struct frame_info *next_frame, void **this_cache,
  			       int regnum, int *optimizedp,
  			       enum lval_type *lvalp, CORE_ADDR *addrp,
! 			       int *realnump, void *valuep)
  {
    struct xstormy16_frame_cache *cache = xstormy16_frame_cache (next_frame,
                                                                 this_cache);
--- 673,683 ----
  }
  
  static void
! xstormy16_frame_prev_register (struct frame_info *next_frame, 
! 			       void **this_cache,
  			       int regnum, int *optimizedp,
  			       enum lval_type *lvalp, CORE_ADDR *addrp,
! 			       int *realnump, gdb_byte *valuep)
  {
    struct xstormy16_frame_cache *cache = xstormy16_frame_cache (next_frame,
                                                                 this_cache);

             reply	other threads:[~2006-03-28  0:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-03-28 11:24 Michael Snyder [this message]
2006-03-28 18:44 ` Corinna Vinschen
2006-03-28 21:23   ` Michael Snyder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=442885E4.1000100@redhat.com \
    --to=msnyder@redhat.com \
    --cc=gdb-patches@sources.redhat.com \
    --cc=vinschen@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox