2006-04-14 05:52:53 +00:00
|
|
|
2005-12-14 Jeff Johnston <jjohnstn@redhat.com>
|
|
|
|
|
|
|
|
* symfile-mem.c (read_memory): New static read callback function.
|
|
|
|
(symfile_add_from_memory): Pass read_memory to bfd instead of
|
|
|
|
target_read_memory.
|
|
|
|
* target.c (target_xfer_memory): Add support for LONGEST len and
|
|
|
|
change all callers.
|
|
|
|
(deprecated_debug_xfer_memory, target_read_memory): Ditto.
|
|
|
|
(target_write_memory, do_xfer_memory): Ditto.
|
|
|
|
(target_xfer_memory_partial, target_read_memory_partial): Ditto.
|
|
|
|
(target_write_memory_partial): Ditto.
|
|
|
|
* infptrace.c (child_xfer_memory): Ditto.
|
|
|
|
* linux-nat.c (linux_nat_xfer_memory): Ditto.
|
|
|
|
(linux_nat_proc_xfer_memory): Ditto.
|
|
|
|
* dcache.c (dcache_xfer_memory): Ditto.
|
|
|
|
* exec.c (xfer_memory): Ditto.
|
|
|
|
* remote.c (remote_xfer_memory): Ditto.
|
|
|
|
* remote-sim.c (gdbsim_xfer_interior_memory): Ditto.
|
|
|
|
* target.h: Change prototypes for functions changed above.
|
|
|
|
* linux-nat.h: Ditto.
|
|
|
|
* remote.h: Ditto.
|
|
|
|
* dcache.h: Ditto.
|
|
|
|
|
2007-01-21 01:53:01 +00:00
|
|
|
Index: gdb-6.6/gdb/symfile-mem.c
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2007-01-21 01:53:01 +00:00
|
|
|
--- gdb-6.6.orig/gdb/symfile-mem.c 2007-01-20 16:09:05.000000000 +0100
|
|
|
|
+++ gdb-6.6/gdb/symfile-mem.c 2007-01-20 16:09:17.000000000 +0100
|
2006-07-11 06:33:02 +00:00
|
|
|
@@ -58,6 +58,14 @@
|
2006-04-14 05:52:53 +00:00
|
|
|
#include "elf/common.h"
|
|
|
|
|
|
|
|
|
|
|
|
+/* Local callback routine to pass to bfd to read from target memory,
|
|
|
|
+ using a len constrained to INT_MAX. */
|
|
|
|
+static int
|
2006-07-11 06:33:02 +00:00
|
|
|
+read_target_memory (bfd_vma addr, bfd_byte *buf, int len)
|
2006-04-14 05:52:53 +00:00
|
|
|
+{
|
|
|
|
+ return target_read_memory (addr, buf, (LONGEST)len);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
/* Read inferior memory at ADDR to find the header of a loaded object file
|
|
|
|
and read its in-core symbols out of inferior memory. TEMPL is a bfd
|
2006-07-11 06:33:02 +00:00
|
|
|
representing the target's format. NAME is the name to use for this
|
|
|
|
@@ -78,7 +86,7 @@ symbol_file_add_from_memory (struct bfd
|
|
|
|
error (_("add-symbol-file-from-memory not supported for this target"));
|
2006-04-14 05:52:53 +00:00
|
|
|
|
|
|
|
nbfd = bfd_elf_bfd_from_remote_memory (templ, addr, &loadbase,
|
|
|
|
- target_read_memory);
|
|
|
|
+ read_target_memory);
|
|
|
|
if (nbfd == NULL)
|
2006-07-11 06:33:02 +00:00
|
|
|
error (_("Failed to read a valid object file image from memory."));
|
2006-04-14 05:52:53 +00:00
|
|
|
|
2007-01-21 01:53:01 +00:00
|
|
|
Index: gdb-6.6/gdb/target.c
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2007-01-21 01:53:01 +00:00
|
|
|
--- gdb-6.6.orig/gdb/target.c 2007-01-20 16:09:12.000000000 +0100
|
|
|
|
+++ gdb-6.6/gdb/target.c 2007-01-20 16:09:17.000000000 +0100
|
|
|
|
@@ -56,7 +56,7 @@ static int nosymbol (char *, CORE_ADDR *
|
|
|
|
|
|
|
|
static void tcomplain (void) ATTR_NORETURN;
|
|
|
|
|
|
|
|
-static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
|
|
|
|
+static LONGEST nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
|
|
|
|
|
|
|
|
static int return_zero (void);
|
|
|
|
|
|
|
|
@@ -284,7 +284,7 @@ target_mourn_inferior (void)
|
|
|
|
observer_notify_mourn_inferior (¤t_target);
|
|
|
|
}
|
|
|
|
|
|
|
|
-static int
|
|
|
|
+static LONGEST
|
|
|
|
nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
|
|
|
|
struct target_ops *t)
|
|
|
|
{
|
|
|
|
@@ -517,7 +517,7 @@ update_current_target (void)
|
|
|
|
(void (*) (void))
|
2006-04-14 05:52:53 +00:00
|
|
|
noprocess);
|
2007-01-21 01:53:01 +00:00
|
|
|
de_fault (deprecated_xfer_memory,
|
|
|
|
- (int (*) (CORE_ADDR, gdb_byte *, int, int, struct mem_attrib *, struct target_ops *))
|
2006-07-11 06:33:02 +00:00
|
|
|
+ (LONGEST (*) (CORE_ADDR, gdb_byte *, LONGEST, int, struct mem_attrib *, struct target_ops *))
|
2006-04-14 05:52:53 +00:00
|
|
|
nomemory);
|
2007-01-21 01:53:01 +00:00
|
|
|
de_fault (to_files_info,
|
|
|
|
(void (*) (struct target_ops *))
|
|
|
|
@@ -1178,7 +1178,7 @@ target_xfer_partial (struct target_ops *
|
|
|
|
it makes no progress, and then return how much was transferred). */
|
2006-04-14 05:52:53 +00:00
|
|
|
|
|
|
|
int
|
2006-07-11 06:33:02 +00:00
|
|
|
-target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
|
|
|
|
+target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, LONGEST len)
|
2006-04-14 05:52:53 +00:00
|
|
|
{
|
2007-01-21 01:53:01 +00:00
|
|
|
if (target_read (¤t_target, TARGET_OBJECT_MEMORY, NULL,
|
|
|
|
myaddr, memaddr, len) == len)
|
|
|
|
@@ -1188,7 +1188,7 @@ target_read_memory (CORE_ADDR memaddr, g
|
2006-04-14 05:52:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-07-11 06:33:02 +00:00
|
|
|
-target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
|
|
|
|
+target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, LONGEST len)
|
2006-04-14 05:52:53 +00:00
|
|
|
{
|
2007-01-21 01:53:01 +00:00
|
|
|
if (target_write (¤t_target, TARGET_OBJECT_MEMORY, NULL,
|
|
|
|
myaddr, memaddr, len) == len)
|
|
|
|
@@ -2186,8 +2186,8 @@ debug_to_prepare_to_store (void)
|
2006-04-14 05:52:53 +00:00
|
|
|
fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
-static int
|
2006-07-11 06:33:02 +00:00
|
|
|
-deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
|
2006-04-14 05:52:53 +00:00
|
|
|
+static LONGEST
|
2006-07-11 06:33:02 +00:00
|
|
|
+deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, LONGEST len,
|
2006-04-14 05:52:53 +00:00
|
|
|
int write, struct mem_attrib *attrib,
|
|
|
|
struct target_ops *target)
|
|
|
|
{
|
2007-01-21 01:53:01 +00:00
|
|
|
@@ -2197,9 +2197,9 @@ deprecated_debug_xfer_memory (CORE_ADDR
|
2006-04-14 05:52:53 +00:00
|
|
|
attrib, target);
|
|
|
|
|
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
|
|
|
- "target_xfer_memory (0x%x, xxx, %d, %s, xxx) = %d",
|
|
|
|
+ "target_xfer_memory (0x%x, xxx, %ld, %s, xxx) = %d",
|
|
|
|
(unsigned int) memaddr, /* possable truncate long long */
|
|
|
|
- len, write ? "write" : "read", retval);
|
|
|
|
+ (long)len, write ? "write" : "read", retval);
|
|
|
|
|
|
|
|
if (retval > 0)
|
|
|
|
{
|
2007-01-21 01:53:01 +00:00
|
|
|
Index: gdb-6.6/gdb/target.h
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2007-01-21 01:53:01 +00:00
|
|
|
--- gdb-6.6.orig/gdb/target.h 2007-01-20 16:09:10.000000000 +0100
|
|
|
|
+++ gdb-6.6/gdb/target.h 2007-01-20 16:09:17.000000000 +0100
|
|
|
|
@@ -347,10 +347,10 @@ struct target_ops
|
2006-04-14 05:52:53 +00:00
|
|
|
NOTE: cagney/2004-10-01: This has been entirely superseeded by
|
|
|
|
to_xfer_partial and inferior inheritance. */
|
|
|
|
|
2006-07-11 06:33:02 +00:00
|
|
|
- int (*deprecated_xfer_memory) (CORE_ADDR memaddr, gdb_byte *myaddr,
|
2006-04-14 05:52:53 +00:00
|
|
|
- int len, int write,
|
2006-07-11 06:33:02 +00:00
|
|
|
- struct mem_attrib *attrib,
|
|
|
|
- struct target_ops *target);
|
|
|
|
+ LONGEST (*deprecated_xfer_memory) (CORE_ADDR memaddr, gdb_byte *myaddr,
|
|
|
|
+ LONGEST len, int write,
|
|
|
|
+ struct mem_attrib *attrib,
|
|
|
|
+ struct target_ops *target);
|
2006-04-14 05:52:53 +00:00
|
|
|
|
2006-07-11 06:33:02 +00:00
|
|
|
void (*to_files_info) (struct target_ops *);
|
|
|
|
int (*to_insert_breakpoint) (struct bp_target_info *);
|
2007-01-21 01:53:01 +00:00
|
|
|
@@ -605,16 +605,17 @@ extern DCACHE *target_dcache;
|
2006-04-14 05:52:53 +00:00
|
|
|
|
|
|
|
extern int target_read_string (CORE_ADDR, char **, int, int *);
|
|
|
|
|
2006-07-11 06:33:02 +00:00
|
|
|
-extern int target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len);
|
|
|
|
+extern int target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr,
|
|
|
|
+ LONGEST len);
|
2006-04-14 05:52:53 +00:00
|
|
|
|
2006-07-11 06:33:02 +00:00
|
|
|
extern int target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr,
|
|
|
|
- int len);
|
|
|
|
+ LONGEST len);
|
2006-04-14 05:52:53 +00:00
|
|
|
|
2006-07-11 06:33:02 +00:00
|
|
|
-extern int xfer_memory (CORE_ADDR, gdb_byte *, int, int,
|
2006-04-14 05:52:53 +00:00
|
|
|
- struct mem_attrib *, struct target_ops *);
|
2006-07-11 06:33:02 +00:00
|
|
|
+extern LONGEST xfer_memory (CORE_ADDR, gdb_byte *, LONGEST, int,
|
2006-04-14 05:52:53 +00:00
|
|
|
+ struct mem_attrib *, struct target_ops *);
|
|
|
|
|
2006-07-11 06:33:02 +00:00
|
|
|
-extern int child_xfer_memory (CORE_ADDR, gdb_byte *, int, int,
|
2006-04-14 05:52:53 +00:00
|
|
|
- struct mem_attrib *, struct target_ops *);
|
2006-07-11 06:33:02 +00:00
|
|
|
+extern LONGEST child_xfer_memory (CORE_ADDR, gdb_byte *, LONGEST, int,
|
|
|
|
+ struct mem_attrib *, struct target_ops *);
|
2006-04-14 05:52:53 +00:00
|
|
|
|
2007-01-21 01:53:01 +00:00
|
|
|
/* Fetches the target's memory map. If one is found it is sorted
|
|
|
|
and returned, after some consistency checking. Otherwise, NULL
|
|
|
|
Index: gdb-6.6/gdb/infptrace.c
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2007-01-21 01:53:01 +00:00
|
|
|
--- gdb-6.6.orig/gdb/infptrace.c 2005-12-17 23:34:01.000000000 +0100
|
|
|
|
+++ gdb-6.6/gdb/infptrace.c 2007-01-20 16:09:17.000000000 +0100
|
|
|
|
@@ -331,17 +331,17 @@ store_inferior_registers (int regnum)
|
2006-04-14 05:52:53 +00:00
|
|
|
deprecated_child_ops doesn't allow memory operations to cross below
|
|
|
|
us in the target stack anyway. */
|
|
|
|
|
|
|
|
-int
|
2006-07-11 06:33:02 +00:00
|
|
|
-child_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, int write,
|
2006-04-14 05:52:53 +00:00
|
|
|
+LONGEST
|
2006-07-11 06:33:02 +00:00
|
|
|
+child_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, LONGEST len, int write,
|
2006-04-14 05:52:53 +00:00
|
|
|
struct mem_attrib *attrib, struct target_ops *target)
|
|
|
|
{
|
|
|
|
- int i;
|
|
|
|
+ LONGEST i;
|
|
|
|
/* Round starting address down to longword boundary. */
|
|
|
|
CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_TYPE_RET);
|
|
|
|
/* Round ending address up; get number of longwords that makes. */
|
|
|
|
- int count = ((((memaddr + len) - addr) + sizeof (PTRACE_TYPE_RET) - 1)
|
2006-07-11 06:33:02 +00:00
|
|
|
- / sizeof (PTRACE_TYPE_RET));
|
2006-04-14 05:52:53 +00:00
|
|
|
- int alloc = count * sizeof (PTRACE_TYPE_RET);
|
2006-07-11 06:33:02 +00:00
|
|
|
+ LONGEST count = ((((memaddr + len) - addr) + sizeof (PTRACE_TYPE_RET) - 1)
|
|
|
|
+ / sizeof (PTRACE_TYPE_RET));
|
2006-04-14 05:52:53 +00:00
|
|
|
+ LONGEST alloc = count * sizeof (PTRACE_TYPE_RET);
|
|
|
|
PTRACE_TYPE_RET *buffer;
|
|
|
|
struct cleanup *old_chain = NULL;
|
|
|
|
|
2007-01-21 01:53:01 +00:00
|
|
|
Index: gdb-6.6/gdb/dcache.c
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2007-01-21 01:53:01 +00:00
|
|
|
--- gdb-6.6.orig/gdb/dcache.c 2006-08-15 20:46:24.000000000 +0200
|
|
|
|
+++ gdb-6.6/gdb/dcache.c 2007-01-20 16:09:17.000000000 +0100
|
|
|
|
@@ -519,9 +519,9 @@ dcache_free (DCACHE *dcache)
|
2006-04-14 05:52:53 +00:00
|
|
|
|
|
|
|
This routine is indended to be called by remote_xfer_ functions. */
|
|
|
|
|
|
|
|
-int
|
|
|
|
+LONGEST
|
2006-07-11 06:33:02 +00:00
|
|
|
dcache_xfer_memory (DCACHE *dcache, CORE_ADDR memaddr, gdb_byte *myaddr,
|
|
|
|
- int len, int should_write)
|
2006-04-14 05:52:53 +00:00
|
|
|
+ LONGEST len, int should_write)
|
|
|
|
{
|
|
|
|
int i;
|
2006-07-11 06:33:02 +00:00
|
|
|
int (*xfunc) (DCACHE *dcache, CORE_ADDR addr, gdb_byte *ptr);
|
2007-01-21 01:53:01 +00:00
|
|
|
Index: gdb-6.6/gdb/dcache.h
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2007-01-21 01:53:01 +00:00
|
|
|
--- gdb-6.6.orig/gdb/dcache.h 2005-12-17 23:33:59.000000000 +0100
|
|
|
|
+++ gdb-6.6/gdb/dcache.h 2007-01-20 16:09:17.000000000 +0100
|
2006-04-14 05:52:53 +00:00
|
|
|
@@ -37,7 +37,7 @@ void dcache_free (DCACHE *);
|
|
|
|
|
|
|
|
/* Simple to call from <remote>_xfer_memory */
|
|
|
|
|
2006-07-11 06:33:02 +00:00
|
|
|
-int dcache_xfer_memory (DCACHE *cache, CORE_ADDR mem, gdb_byte *my,
|
|
|
|
- int len, int should_write);
|
|
|
|
+LONGEST dcache_xfer_memory (DCACHE *cache, CORE_ADDR mem, gdb_byte *my,
|
|
|
|
+ LONGEST len, int should_write);
|
2006-04-14 05:52:53 +00:00
|
|
|
|
|
|
|
#endif /* DCACHE_H */
|
2007-01-21 01:53:01 +00:00
|
|
|
Index: gdb-6.6/gdb/exec.c
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2007-01-21 01:53:01 +00:00
|
|
|
--- gdb-6.6.orig/gdb/exec.c 2006-11-10 20:20:35.000000000 +0100
|
|
|
|
+++ gdb-6.6/gdb/exec.c 2007-01-20 16:09:17.000000000 +0100
|
|
|
|
@@ -452,8 +452,8 @@ map_vmap (bfd *abfd, bfd *arch)
|
2006-04-14 05:52:53 +00:00
|
|
|
The same routine is used to handle both core and exec files;
|
|
|
|
we just tail-call it with more arguments to select between them. */
|
|
|
|
|
|
|
|
-int
|
2006-07-11 06:33:02 +00:00
|
|
|
-xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, int write,
|
2006-04-14 05:52:53 +00:00
|
|
|
+LONGEST
|
2006-07-11 06:33:02 +00:00
|
|
|
+xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, LONGEST len, int write,
|
|
|
|
struct mem_attrib *attrib, struct target_ops *target)
|
2006-04-14 05:52:53 +00:00
|
|
|
{
|
2006-07-11 06:33:02 +00:00
|
|
|
int res;
|
2007-01-21 01:53:01 +00:00
|
|
|
Index: gdb-6.6/gdb/linux-nat.c
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2007-01-21 01:53:01 +00:00
|
|
|
--- gdb-6.6.orig/gdb/linux-nat.c 2007-01-20 16:09:14.000000000 +0100
|
|
|
|
+++ gdb-6.6/gdb/linux-nat.c 2007-01-20 16:09:17.000000000 +0100
|
|
|
|
@@ -3266,7 +3266,7 @@ linux_xfer_partial (struct target_ops *o
|
2006-07-11 06:33:02 +00:00
|
|
|
Revert when Bugzilla 147436 is fixed. */
|
|
|
|
if (iterate_over_lwps (ia64_linux_check_stack_region, &range) != NULL)
|
|
|
|
{ /* This region contains ia64 rse registers, we have to re-read. */
|
|
|
|
- int xxfer;
|
|
|
|
+ LONGEST xxfer;
|
|
|
|
|
|
|
|
/* Re-read register stack area. */
|
|
|
|
xxfer = super_xfer_partial (ops, object, annex,
|
2007-01-21 01:53:01 +00:00
|
|
|
Index: gdb-6.6/gdb/remote.c
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2007-01-21 01:53:01 +00:00
|
|
|
--- gdb-6.6.orig/gdb/remote.c 2007-01-20 16:09:12.000000000 +0100
|
|
|
|
+++ gdb-6.6/gdb/remote.c 2007-01-20 16:09:17.000000000 +0100
|
2006-04-14 05:52:53 +00:00
|
|
|
@@ -27,6 +27,7 @@
|
|
|
|
#include "gdb_string.h"
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
+#include <limits.h>
|
|
|
|
#include "inferior.h"
|
|
|
|
#include "bfd.h"
|
|
|
|
#include "symfile.h"
|
2007-01-21 01:53:01 +00:00
|
|
|
@@ -4185,19 +4186,27 @@ remote_read_bytes (CORE_ADDR memaddr, gd
|
2006-07-11 06:33:02 +00:00
|
|
|
if SHOULD_WRITE is nonzero. Returns length of data written or
|
|
|
|
read; 0 for error. TARGET is unused. */
|
2006-04-14 05:52:53 +00:00
|
|
|
|
|
|
|
-static int
|
2006-07-11 06:33:02 +00:00
|
|
|
-remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
|
2006-04-14 05:52:53 +00:00
|
|
|
+static LONGEST
|
2006-07-11 06:33:02 +00:00
|
|
|
+remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, LONGEST mem_len,
|
2006-04-14 05:52:53 +00:00
|
|
|
int should_write, struct mem_attrib *attrib,
|
|
|
|
struct target_ops *target)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
+ int len;
|
|
|
|
+
|
2006-07-11 06:33:02 +00:00
|
|
|
+
|
2006-04-14 05:52:53 +00:00
|
|
|
+ /* This routine is not set up to handle > INT_MAX bytes. */
|
|
|
|
+ if (mem_len >= (LONGEST)INT_MAX)
|
|
|
|
+ return 0;
|
|
|
|
+
|
|
|
|
+ len = (int)mem_len;
|
|
|
|
|
2007-01-21 01:53:01 +00:00
|
|
|
if (should_write)
|
|
|
|
res = remote_write_bytes (mem_addr, buffer, mem_len);
|
2006-04-14 05:52:53 +00:00
|
|
|
else
|
2007-01-21 01:53:01 +00:00
|
|
|
res = remote_read_bytes (mem_addr, buffer, mem_len);
|
2006-04-14 05:52:53 +00:00
|
|
|
|
|
|
|
- return res;
|
|
|
|
+ return (LONGEST)res;
|
|
|
|
}
|
|
|
|
|
2007-01-21 01:53:01 +00:00
|
|
|
/* Sends a packet with content determined by the printf format string
|
|
|
|
Index: gdb-6.6/gdb/remote-sim.c
|
2006-07-11 06:33:02 +00:00
|
|
|
===================================================================
|
2007-01-21 01:53:01 +00:00
|
|
|
--- gdb-6.6.orig/gdb/remote-sim.c 2006-11-10 20:20:36.000000000 +0100
|
|
|
|
+++ gdb-6.6/gdb/remote-sim.c 2007-01-20 16:10:10.000000000 +0100
|
|
|
|
@@ -745,11 +745,14 @@ gdbsim_prepare_to_store (void)
|
2006-04-14 05:52:53 +00:00
|
|
|
|
|
|
|
Returns the number of bytes transferred. */
|
|
|
|
|
|
|
|
-static int
|
2006-07-11 06:33:02 +00:00
|
|
|
-gdbsim_xfer_inferior_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len,
|
2006-04-14 05:52:53 +00:00
|
|
|
+static LONGEST
|
2006-07-11 06:33:02 +00:00
|
|
|
+gdbsim_xfer_inferior_memory (CORE_ADDR memaddr, gdb_byte *myaddr, LONGEST len,
|
2006-04-14 05:52:53 +00:00
|
|
|
int write, struct mem_attrib *attrib,
|
|
|
|
struct target_ops *target)
|
|
|
|
{
|
|
|
|
+ /* Convert to len type that sim_read and sim_write can handle. */
|
|
|
|
+ int xfer_len = (int)len;
|
|
|
|
+
|
2007-01-21 01:53:01 +00:00
|
|
|
/* If no program is running yet, then ignore the simulator for
|
|
|
|
memory. Pass the request down to the next target, hopefully
|
|
|
|
an exec file. */
|
|
|
|
@@ -765,22 +768,22 @@ gdbsim_xfer_inferior_memory (CORE_ADDR m
|
2006-04-14 05:52:53 +00:00
|
|
|
printf_filtered ("gdbsim_xfer_inferior_memory: myaddr 0x");
|
|
|
|
gdb_print_host_address (myaddr, gdb_stdout);
|
|
|
|
printf_filtered (", memaddr 0x%s, len %d, write %d\n",
|
|
|
|
- paddr_nz (memaddr), len, write);
|
|
|
|
+ paddr_nz (memaddr), xfer_len, write);
|
|
|
|
if (sr_get_debug () && write)
|
|
|
|
- dump_mem (myaddr, len);
|
|
|
|
+ dump_mem (myaddr, xfer_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (write)
|
|
|
|
{
|
|
|
|
- len = sim_write (gdbsim_desc, memaddr, myaddr, len);
|
|
|
|
+ xfer_len = sim_write (gdbsim_desc, memaddr, myaddr, xfer_len);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
- len = sim_read (gdbsim_desc, memaddr, myaddr, len);
|
|
|
|
- if (sr_get_debug () && len > 0)
|
|
|
|
- dump_mem (myaddr, len);
|
|
|
|
+ xfer_len = sim_read (gdbsim_desc, memaddr, myaddr, xfer_len);
|
|
|
|
+ if (sr_get_debug () && xfer_len > 0)
|
|
|
|
+ dump_mem (myaddr, xfer_len);
|
|
|
|
}
|
|
|
|
- return len;
|
|
|
|
+ return (LONGEST)xfer_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|