diff options
author | Kevin Buettner <kevinb@redhat.com> | 2002-12-21 06:43:25 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2002-12-21 06:43:25 +0000 |
commit | ef6f9ecc523bac23b4b157ac474410275ab45d7d (patch) | |
tree | ebe7b9f21da0e2aa44d32e255cfd27f0c3ee8f96 | |
parent | 7e9f0e11e47bcee63c04fd22084e1c67f4927aa1 (diff) | |
download | gdb-ef6f9ecc523bac23b4b157ac474410275ab45d7d.tar.gz |
Add DT_MIPS_RLD_MAP case for 64-bit targets.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/solib-svr4.c | 21 |
2 files changed, 23 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f0ce860e0e4..c3ab1847a92 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2002-12-20 Kevin Buettner <kevinb@redhat.com> + * solib-svr4.c (elf_locate_base): Fix sizeof() related bug. Add + DT_MIPS_RLD_MAP case for 64-bit targets. + +2002-12-20 Kevin Buettner <kevinb@redhat.com> + * mips-tdep.c (heuristic_proc_desc): Clear memory associated with ``temp_saved_regs'', not the pointer or other storage contiguous to this pointer. diff --git a/gdb/solib-svr4.c b/gdb/solib-svr4.c index 78161e0d249..8ced5f0129b 100644 --- a/gdb/solib-svr4.c +++ b/gdb/solib-svr4.c @@ -446,15 +446,16 @@ elf_locate_base (void) else if (dyn_tag == DT_MIPS_RLD_MAP) { char *pbuf; + int pbuf_size = TARGET_PTR_BIT / HOST_CHAR_BIT; - pbuf = alloca (TARGET_PTR_BIT / HOST_CHAR_BIT); + pbuf = alloca (pbuf_size); /* DT_MIPS_RLD_MAP contains a pointer to the address of the dynamic link structure. */ dyn_ptr = bfd_h_get_32 (exec_bfd, (bfd_byte *) x_dynp->d_un.d_ptr); - if (target_read_memory (dyn_ptr, pbuf, sizeof (pbuf))) + if (target_read_memory (dyn_ptr, pbuf, pbuf_size)) return 0; - return extract_unsigned_integer (pbuf, sizeof (pbuf)); + return extract_unsigned_integer (pbuf, pbuf_size); } } } @@ -477,6 +478,20 @@ elf_locate_base (void) (bfd_byte *) x_dynp->d_un.d_ptr); return dyn_ptr; } + else if (dyn_tag == DT_MIPS_RLD_MAP) + { + char *pbuf; + int pbuf_size = TARGET_PTR_BIT / HOST_CHAR_BIT; + + pbuf = alloca (pbuf_size); + /* DT_MIPS_RLD_MAP contains a pointer to the address + of the dynamic link structure. */ + dyn_ptr = bfd_h_get_64 (exec_bfd, + (bfd_byte *) x_dynp->d_un.d_ptr); + if (target_read_memory (dyn_ptr, pbuf, pbuf_size)) + return 0; + return extract_unsigned_integer (pbuf, pbuf_size); + } } } |