Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: "J. Johnston" <jjohnstn@redhat.com>
To: Andrew Cagney <ac131313@redhat.com>
Cc: Daniel Jacobowitz <drow@mvista.com>,
	Kevin Buettner <kevinb@redhat.com>,
	Marcel Moolenaar <marcel@xcllnt.net>,
	gdb-patches@sources.redhat.com
Subject: Re: RFA: ia64 portion of libunwind patch
Date: Tue, 04 Nov 2003 19:09:00 -0000	[thread overview]
Message-ID: <3FA7F97B.4090909@redhat.com> (raw)
In-Reply-To: <3FA043B2.6090401@redhat.com>

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

I have chosen the first option to implement the syscall.  I have included a 
patch here regarding this mechanism.

Ok to commit?

-- Jeff J.

2003-11-04  Jeff Johnston  <jjohnstn@redhat.com>

	* config/ia64/nm-linux.h (CHILD_TO_XFER_PARTIAL): New macro to set up   		the 
ia64 linux native target to_xfer_partial method.
	(ia64_linux_xfer_partial): New prototype.
	* ia64-linux-nat.c (ia64_linux_xfer_partial): New function.
	* inftarg.c (init_child_ops)[CHILD_TO_XFER_PARTIAL]: Set up xfer partial 
method if one provided via macro.
	* target.c (init_dummy_target): Initialize to_xfer_partial to default.
	* target.h (target_object): Add new TARGET_OBJECT_UNWIND_TABLE enum.


Andrew Cagney wrote:
>> Nothing which involves a syscall is acceptable in a tdep file.  That's
>> what the t means - target support.
> 
> 
> ("tdep" mysteriously means "architecture vector support".  That "t" 
> really no longer makes sense :-()
> 
> Yes, architecture vector shouldn't be directly making syscalls.  Instead 
> the architecture specific code should use the target vector to obtain 
> this system information.  Here I think the best option is to add another 
> TARGET_OBJECT_xxxx variant and then use the target_read() method to pull 
> in the data.
> 
> As for the native target side, ia64-linux-nat should export something 
> like ia64_linux_child_read_partial that performs the syscall.  The 
> tricky [er messy] part is wiring it into child_ops, I see there are lots 
> of choices :-(
> 
> - define a nm-*.c macro and have that enable the assignment (ex #define 
> NATIVE_TO_READ_PARTIAL ia64_linux_child?) (ref KILL_INFERIOR)
> 
> - have a callback set the to_read_partial method in child_ops 
> (exec_set_find_memory_regions)
> 
> - modify all the targets so that each implements the new method
> 
> - others?
> 
> Is this information available via /proc?  In a core file?
> 
> Andrew
> 
> PS: Note this pending patch.  Dependant on the timing you or I may need 
> to tweak the name.
> http://sources.redhat.com/ml/gdb-patches/2003-10/msg00795.html
> 
> 
> 

[-- Attachment #2: xfer_partial.patch --]
[-- Type: text/plain, Size: 4491 bytes --]

Index: config/ia64/nm-linux.h
===================================================================
RCS file: /cvs/src/src/gdb/config/ia64/nm-linux.h,v
retrieving revision 1.10
diff -u -r1.10 nm-linux.h
--- config/ia64/nm-linux.h	20 Jun 2003 13:57:29 -0000	1.10
+++ config/ia64/nm-linux.h	4 Nov 2003 16:53:37 -0000
@@ -69,4 +69,13 @@
 extern int ia64_linux_remove_watchpoint (ptid_t ptid, CORE_ADDR addr,
                                          int len);
 
+#include "target.h"
+
+#define CHILD_TO_XFER_PARTIAL ia64_linux_xfer_partial
+extern LONGEST ia64_linux_xfer_partial (struct target_ops *ops, 
+					enum target_object object,
+					const char *annex, const void *writebuf,
+					void *readbuf,
+					ULONGEST offset, LONGEST len);
+
 #endif /* #ifndef NM_LINUX_H */
Index: ia64-linux-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/ia64-linux-nat.c,v
retrieving revision 1.20
diff -u -r1.20 ia64-linux-nat.c
--- ia64-linux-nat.c	2 Oct 2003 20:28:29 -0000	1.20
+++ ia64-linux-nat.c	4 Nov 2003 16:53:37 -0000
@@ -34,6 +34,7 @@
 #ifdef HAVE_SYS_REG_H
 #include <sys/reg.h>
 #endif
+#include <sys/syscall.h>
 #include <sys/user.h>
 
 #include <asm/ptrace_offsets.h>
@@ -644,4 +645,48 @@
   write_register_pid (IA64_PSR_REGNUM, psr, ptid);
 
   return (CORE_ADDR) siginfo.si_addr;
+}
+
+LONGEST 
+ia64_linux_xfer_partial (struct target_ops *ops,
+			 enum target_object object,
+			 const char *annex, const void *writebuf,
+			 void *readbuf,
+			 ULONGEST offset, LONGEST len)
+{
+  switch (object)
+    {
+    case TARGET_OBJECT_UNWIND_TABLE:
+      return syscall (__NR_getunwind, readbuf, len);
+    case TARGET_OBJECT_MEMORY:
+      if (ops->to_xfer_memory != NULL)
+	/* Fall back to the target's "to_xfer_memory" method.  */
+	{
+	  int xfered = -1;
+	  errno = 0;
+	  if (writebuf != NULL)
+	    {
+	      void *buffer = xmalloc (len);
+	      struct cleanup *cleanup = make_cleanup (xfree, buffer);
+	      memcpy (buffer, writebuf, len);
+	      xfered = ops->to_xfer_memory (offset, buffer, len, 1/*write*/, NULL,
+					    ops);
+	      do_cleanups (cleanup);
+	    }
+	  if (readbuf != NULL)
+	    xfered = ops->to_xfer_memory (offset, readbuf, len, 0/*read*/, NULL,
+					  ops);
+	  
+	  if (xfered > 0)
+	    return xfered;
+	  else if (xfered == 0 && errno == 0)
+	    /* "to_xfer_memory" uses 0, cross checked against ERRNO as one
+	       indication of an error.  */
+	    return 0;
+	  else
+	    return -1;
+	}
+    default:
+      return -1;
+    }
 }
Index: inftarg.c
===================================================================
RCS file: /cvs/src/src/gdb/inftarg.c,v
retrieving revision 1.18
diff -u -r1.18 inftarg.c
--- inftarg.c	21 Sep 2003 01:26:45 -0000	1.18
+++ inftarg.c	4 Nov 2003 16:53:37 -0000
@@ -609,6 +609,9 @@
   child_ops.to_get_current_exception_event = child_get_current_exception_event;
   child_ops.to_pid_to_exec_file = child_pid_to_exec_file;
   child_ops.to_stratum = process_stratum;
+#ifdef CHILD_TO_XFER_PARTIAL
+  child_ops.to_xfer_partial = CHILD_TO_XFER_PARTIAL;
+#endif
   child_ops.to_has_all_memory = 1;
   child_ops.to_has_memory = 1;
   child_ops.to_has_stack = 1;
Index: target.c
===================================================================
RCS file: /cvs/src/src/gdb/target.c,v
retrieving revision 1.64
diff -u -r1.64 target.c
--- target.c	31 Oct 2003 15:25:34 -0000	1.64
+++ target.c	4 Nov 2003 16:53:38 -0000
@@ -1644,6 +1644,7 @@
   dummy_target.to_stratum = dummy_stratum;
   dummy_target.to_find_memory_regions = dummy_find_memory_regions;
   dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
+  dummy_target.to_xfer_partial = default_xfer_partial;
   dummy_target.to_magic = OPS_MAGIC;
 }
 \f
Index: target.h
===================================================================
RCS file: /cvs/src/src/gdb/target.h,v
retrieving revision 1.51
diff -u -r1.51 target.h
--- target.h	31 Oct 2003 19:19:51 -0000	1.51
+++ target.h	4 Nov 2003 16:53:38 -0000
@@ -223,8 +223,10 @@
   /* AVR target specific transfer.  See "avr-tdep.c" and "remote.c".  */
   TARGET_OBJECT_AVR,
   /* Transfer up-to LEN bytes of memory starting at OFFSET.  */
-  TARGET_OBJECT_MEMORY
-  /* Possible future ojbects: TARGET_OJBECT_FILE, TARGET_OBJECT_PROC,
+  TARGET_OBJECT_MEMORY,
+  /* Kernel Unwind Table.  See "ia64-tdep.c".  */
+  TARGET_OBJECT_UNWIND_TABLE,
+  /* Possible future objects: TARGET_OBJECT_FILE, TARGET_OBJECT_PROC,
      TARGET_OBJECT_AUXV, ...  */
 };
 

  reply	other threads:[~2003-11-04 19:09 UTC|newest]

Thread overview: 65+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-10-24  0:11 J. Johnston
2003-10-24 17:57 ` Kevin Buettner
2003-10-24 18:20   ` J. Johnston
2003-10-24 18:56     ` Kevin Buettner
2003-10-24 21:53       ` Marcel Moolenaar
2003-10-24 23:58         ` Kevin Buettner
2003-10-28 23:53       ` J. Johnston
2003-10-29  1:28         ` Daniel Jacobowitz
2003-10-29  4:48           ` Kevin Buettner
2003-10-29 18:43             ` J. Johnston
2003-10-29 22:48           ` Andrew Cagney
2003-11-04 19:09             ` J. Johnston [this message]
2003-11-04 20:48               ` Kevin Buettner
2003-11-06 17:21               ` RFA: ia64 portion of libunwind patch updated J. Johnston
2003-11-14 21:24                 ` J. Johnston
2003-11-17 17:01                   ` Kevin Buettner
2003-11-17 17:03                     ` Kevin Buettner
2003-11-17 17:05                 ` Kevin Buettner
2003-11-17 21:40                   ` J. Johnston
2003-11-17 22:32                     ` Marcel Moolenaar
2003-11-06 20:03               ` [commit] Fix two xfer partial bugs; Was; RFA: ia64 portion of libunwind patch Andrew Cagney
2003-11-06 20:12                 ` J. Johnston
2003-11-06 22:32               ` [patch/rfc] Add child_to_xfer_partial; Was: " Andrew Cagney
2003-11-06 22:47                 ` J. Johnston
2003-11-07 21:40                   ` Andrew Cagney
2003-11-07  1:04                 ` Kevin Buettner
2003-11-14  0:26               ` RFA: " J. Johnston
2003-11-14  1:17                 ` Kevin Buettner
2003-11-14 20:49                   ` J. Johnston
2003-10-29 23:28         ` Andrew Cagney
2003-11-02 20:39         ` Elena Zannoni
2003-10-29 15:18 ` Andrew Cagney
2003-10-31 19:25 J. Johnston
2003-10-31 20:46 ` Andrew Cagney
2003-10-31 22:55   ` David Mosberger
2003-11-07 21:47     ` Andrew Cagney
2003-11-07 22:43       ` David Mosberger
2003-11-07 23:01         ` Andrew Cagney
2003-11-07 23:12           ` David Mosberger
2003-11-07 23:38             ` Andrew Cagney
2003-11-07 23:55               ` David Mosberger
2003-11-08  0:07                 ` Andrew Cagney
2003-11-08  0:13                   ` Kevin Buettner
2003-11-08  0:27                     ` Andrew Cagney
2003-11-08  7:21                       ` David Mosberger
2003-11-09  0:13                         ` Andrew Cagney
2003-11-10 22:10                           ` David Mosberger
2003-11-10 22:43                             ` Andrew Cagney
2003-11-10 23:01                               ` David Mosberger
2003-11-26  0:11                               ` David Mosberger
2003-12-04  2:15                                 ` David Mosberger
2003-12-04  3:15                                   ` Kevin Buettner
2003-12-04 23:57                                   ` J. Johnston
2003-12-05  0:39                                     ` David Mosberger
2003-12-10 20:58                                       ` J. Johnston
2003-12-10 22:15                                         ` David Mosberger
2003-12-12 22:25                                         ` Kevin Buettner
     [not found]                                 ` <davidm@napali.hpl.hp.com>
2003-12-13  4:01                                   ` Kevin Buettner
2003-11-09  1:34             ` Marcel Moolenaar
2003-11-10 21:54               ` David Mosberger
2003-11-10 23:18                 ` Marcel Moolenaar
2003-10-31 21:36 ` Marcel Moolenaar
2003-10-31 23:00   ` David Mosberger
2003-10-31 23:42     ` Andrew Cagney
2003-10-31 23:59       ` David Mosberger

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=3FA7F97B.4090909@redhat.com \
    --to=jjohnstn@redhat.com \
    --cc=ac131313@redhat.com \
    --cc=drow@mvista.com \
    --cc=gdb-patches@sources.redhat.com \
    --cc=kevinb@redhat.com \
    --cc=marcel@xcllnt.net \
    /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