Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [rfa:ppc64gnulinux] Call ".malloc"
@ 2003-11-14  0:56 Andrew Cagney
  2003-11-14  1:13 ` Kevin Buettner
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Cagney @ 2003-11-14  0:56 UTC (permalink / raw)
  To: gdb-patches

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

Hello,

When only minimal symbol information is available, the symbol "malloc", 
which is found in a data section because it's a descriptor, gets turns 
into a 32-bit int variable.  Consequently, an attempt to call "malloc" 
is turned into to jump to the code designated by that 32-bit integer 
value found at malloc.

This patch avoids that problem entirely by specifying that on PPC64 
GNU/Linux, the "malloc" function has the name ".malloc" (which is really 
the function's start address).

ok?
Andrew

[-- Attachment #2: diffs --]
[-- Type: text/plain, Size: 760 bytes --]

2003-11-13  Andrew Cagney  <cagney@redhat.com>

	* ppc-linux-tdep.c (ppc_linux_init_abi): Set PPC64's
	"name_of_malloc" to ".malloc".

Index: ppc-linux-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/ppc-linux-tdep.c,v
retrieving revision 1.48
diff -u -r1.48 ppc-linux-tdep.c
--- ppc-linux-tdep.c	13 Nov 2003 18:08:57 -0000	1.48
+++ ppc-linux-tdep.c	14 Nov 2003 00:40:57 -0000
@@ -1083,6 +1083,9 @@
       set_gdbarch_in_solib_call_trampoline
         (gdbarch, ppc64_in_solib_call_trampoline);
       set_gdbarch_skip_trampoline_code (gdbarch, ppc64_skip_trampoline_code);
+
+      /* PPC64 malloc's entry-point is called ".malloc".  */
+      set_gdbarch_name_of_malloc (gdbarch, ".malloc");
     }
 }
 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2003-11-14 14:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-11-14  0:56 [rfa:ppc64gnulinux] Call ".malloc" Andrew Cagney
2003-11-14  1:13 ` Kevin Buettner
2003-11-14 14:23   ` Andrew Cagney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox