From b92f2d04237b7e7165f2c476d8f61e86dbb2779c Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sun, 16 Jan 2005 02:07:30 +0000 Subject: * sysdeps/m68k/dl-machine.h: Remove trampoline code. Define ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT. (elf_machine_runtime_setup): If profile != 0 does not anymore mean GLRO(dl_profile) != NULL. * sysdeps/m68k/dl-trampoline.S: New file. * sysdeps/m68k/bits/link.h: New file. * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add m68k variants. * elf/tst-auditmod1.c: Add m68k support. 2005-01-16 Andreas Schwab * sysdeps/m68k/dl-machine.h: Remove trampoline code. Define ARCH_LA_PLTENTER and ARCH_LA_PLTEXIT. (elf_machine_runtime_setup): If profile != 0 does not anymore mean GLRO(dl_profile) != NULL. * sysdeps/m68k/dl-trampoline.S: New file. * sysdeps/m68k/bits/link.h: New file. * sysdeps/generic/ldsodefs.h (struct audit_ifaces): Add m68k variants. * elf/tst-auditmod1.c: Add m68k support. --- elf/tst-auditmod1.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'elf/tst-auditmod1.c') diff --git a/elf/tst-auditmod1.c b/elf/tst-auditmod1.c index ae7677647f..235444703e 100644 --- a/elf/tst-auditmod1.c +++ b/elf/tst-auditmod1.c @@ -217,6 +217,29 @@ la_sh_gnu_pltexit (Elf32_Sym *sym, unsigned int ndx, uintptr_t *refcook, return 0; } +#elif defined __mc68000__ +Elf32_Addr +la_m68k_gnu_pltenter (Elf32_Sym *sym, unsigned int ndx, uintptr_t *refcook, + uintptr_t *defcook, La_m68k_regs *regs, + unsigned int *flags, const char *symname, + long int *framesizep) +{ + printf ("m68k_pltenter: symname=%s, st_value=%#lx, ndx=%u, flags=%u\n", + symname, (long int) sym->st_value, ndx, *flags); + + return sym->st_value; +} + +unsigned int +la_m68k_gnu_pltexit (Elf32_Sym *sym, unsigned int ndx, uintptr_t *refcook, + uintptr_t *defcook, const La_m68k_regs *inregs, + La_m68k_retval *outregs, const char *symname) +{ + printf ("m68k_pltexit: symname=%s, st_value=%#lx, ndx=%u, retval=%tu\n", + symname, (long int) sym->st_value, ndx, outregs->lrv_d0); + + return 0; +} #else # error "architecture specific code needed" #endif -- cgit 1.4.1