diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-01-29 04:14:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-01-29 04:14:35 +0000 |
commit | 2af4049472d2f8f5113d5899a574e702e5a4e294 (patch) | |
tree | f5cb85e5c2b0ba22e16095c4c910be6d62d61bdc /sysdeps/generic | |
parent | bb38d32c233ff7b2323ac273c09556c0d5884391 (diff) | |
download | glibc-2af4049472d2f8f5113d5899a574e702e5a4e294.tar.gz glibc-2af4049472d2f8f5113d5899a574e702e5a4e294.tar.xz glibc-2af4049472d2f8f5113d5899a574e702e5a4e294.zip |
Update.
2005-01-28 H.J. Lu <hongjiu.lu@intel.com> * elf/tst-auditmod1.c: Add ia64 entries. * sysdeps/generic/ldsodefs.h (La_ia64_regs): New. (La_ia64_retval): New. (audit_ifaces): Add ia64 entries. * sysdeps/ia64/bits/link.h: New file. * sysdeps/ia64/dl-machine.h (elf_machine_runtime_setup): Test for dl_profile non-null. (ARCH_LA_PLTENTER): New. (ARCH_LA_PLTEXIT): New. * sysdeps/ia64/dl-trampoline.S (_dl_runtime_resolve): Allocate only 2 output registers. Allocate stack to save/restore 8 incoming fp registers. Call _dl_fixup instead of fixup. (_dl_runtime_profile): Rewrite.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/ldsodefs.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index 14c49d7df2..08039e18ca 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -193,6 +193,8 @@ struct La_s390_32_regs; struct La_s390_32_retval; struct La_s390_64_regs; struct La_s390_64_retval; +struct La_ia64_regs; +struct La_ia64_retval; struct audit_ifaces { @@ -245,6 +247,10 @@ struct audit_ifaces uintptr_t *, struct La_s390_64_regs *, unsigned int *, const char *name, long int *framesizep); + Elf64_Addr (*ia64_gnu_pltenter) (Elf64_Sym *, unsigned int, uintptr_t *, + uintptr_t *, struct La_ia64_regs *, + unsigned int *, const char *name, + long int *framesizep); }; union { @@ -284,6 +290,10 @@ struct audit_ifaces const struct La_s390_64_regs *, struct La_s390_64_retval *, const char *); + unsigned int (*ia64_gnu_pltexit) (Elf64_Sym *, unsigned int, uintptr_t *, + uintptr_t *, + const struct La_ia64_regs *, + struct La_ia64_retval *, const char *); }; unsigned int (*objclose) (uintptr_t *); |