Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Michal Ludvig <mludvig@suse.cz>
To: GDB Patches <gdb-patches@sources.redhat.com>
Subject: [patch] gdbserver for x86-64
Date: Wed, 03 Jul 2002 08:02:00 -0000	[thread overview]
Message-ID: <3D230CFA.5060602@suse.cz> (raw)

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

Hi all,
Pretty obvious one. If noone complains, I'll commit it tomorrow.

Michal Ludvig
-- 
* SuSE CR, s.r.o     * mludvig@suse.cz
* +420 2 9654 5373   * http://www.suse.cz

[-- Attachment #2: gdbserver-1.diff --]
[-- Type: text/plain, Size: 1643 bytes --]

2002-07-03  Michal Ludvig  <mludvig@suse.cz>

	* gdbserver/linux-x86-64-low.c (x86_64_fill_gregset): Change type in 
	explicit cast to CORE_ADDR so that pointer arithmetic works.
	(x86_64_store_gregset): Ditto + parameter made const.
	(x86_64_store_fpregset): Parameter made const.

Index: gdbserver/linux-x86-64-low.c
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/linux-x86-64-low.c,v
retrieving revision 1.5
diff -c -3 -p -r1.5 linux-x86-64-low.c
*** gdbserver/linux-x86-64-low.c	11 Jun 2002 17:32:39 -0000	1.5
--- gdbserver/linux-x86-64-low.c	3 Jul 2002 14:36:19 -0000
*************** x86_64_fill_gregset (void *buf)
*** 45,60 ****
    int i;
  
    for (i = 0; i < X86_64_NUM_GREGS; i++)
!     collect_register (i, ((char *) buf) + x86_64_regmap[i]);
  }
  
  static void
! x86_64_store_gregset (void *buf)
  {
    int i;
  
    for (i = 0; i < X86_64_NUM_GREGS; i++)
!     supply_register (i, ((char *) buf) + x86_64_regmap[i]);
  }
  
  static void
--- 45,60 ----
    int i;
  
    for (i = 0; i < X86_64_NUM_GREGS; i++)
!     collect_register (i, ((CORE_ADDR *) buf) + x86_64_regmap[i]);
  }
  
  static void
! x86_64_store_gregset (const void *buf)
  {
    int i;
  
    for (i = 0; i < X86_64_NUM_GREGS; i++)
! 	  supply_register (i, ((CORE_ADDR *) buf) + x86_64_regmap[i]);
  }
  
  static void
*************** x86_64_fill_fpregset (void *buf)
*** 64,70 ****
  }
  
  static void
! x86_64_store_fpregset (void *buf)
  {
    i387_fxsave_to_cache (buf);
  }
--- 64,70 ----
  }
  
  static void
! x86_64_store_fpregset (const void *buf)
  {
    i387_fxsave_to_cache (buf);
  }

             reply	other threads:[~2002-07-03 14:41 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-07-03  8:02 Michal Ludvig [this message]
2002-07-03  8:05 ` Daniel Jacobowitz
2002-07-04  0:22   ` Michal Ludvig
2002-07-04  7:48     ` Daniel Jacobowitz

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=3D230CFA.5060602@suse.cz \
    --to=mludvig@suse.cz \
    --cc=gdb-patches@sources.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