mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 13:30:06 +00:00
084442fce3
* sysdeps/hppa/dl-machine.h: Include tls.h (elf_machine_fixup_plt): Returns fdesc. (elf_machine_profile_fixup_plt): Remove. (elf_machine_plt_value): Returns fdesc. (elf_machine_runtime_setup): Check that dl_profile != NULL. (ARCH_LA_PLTENT, ARCH_LA_PLTEXIT): Define. (RTLD_START): Use iitlbp with sr0. (elf_machine_type_class): Include TLS relocs. (reassemble_21, reassemble_14): Define. (elf_machine_rela): Add DIR21L, DIR14R, PLABEL21L, PLABEL14R, TLS_DTPMOD32, TLS_TPREL32, TLS_DTPOFF32 support. (TRAMPOLINE_TEMPLATE): Move to ... * sysdeps/hppa/dl-trampoline.S: ... here. * sysdeps/hppa/abort-instr.h: Use iitlbp with sr0. * sysdeps/hppa/dl-lookupcfg.h: Inlcude dl-fptr.h. (DL_FIXUP_VALUE_TYPE, DL_FIXUP_MAKE_VALUE, DL_FIXUP_VALUE_CODE_ADDR, DL_FIXUP_VALUE_ADD, DL_FIXUP_ADDR_VALUE): Define. * sysdeps/hppa/sysdep.h: Use "!" as a separator. Cleanup comments. * sysdeps/hppa/bits/link.h (La_hppa_regs, La_hppa_retval): Define. Define prototypes for la_hppa_gnu_pltenter and la_hppa_gnu_pltexit.
58 lines
1.8 KiB
C
58 lines
1.8 KiB
C
/* Copyright (C) 2005 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA. */
|
|
|
|
#ifndef _LINK_H
|
|
# error "Never include <bits/link.h> directly; use <link.h> instead."
|
|
#endif
|
|
|
|
/* Registers for entry into PLT on hppa. */
|
|
typedef struct La_hppa_regs
|
|
{
|
|
uint32_t lr_reg[4];
|
|
double lr_fpreg[4];
|
|
uint32_t lr_sp;
|
|
uint32_t lr_ra;
|
|
} La_hppa_regs;
|
|
|
|
/* Return values for calls from PLT on hppa. */
|
|
typedef struct La_hppa_retval
|
|
{
|
|
uint32_t lrv_r28;
|
|
uint32_t lrv_r29;
|
|
double lr_fr4;
|
|
} La_hppa_retval;
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
extern Elf32_Addr la_hppa_gnu_pltenter (Elf32_Sym *__sym, unsigned int __ndx,
|
|
uintptr_t *__refcook,
|
|
uintptr_t *__defcook,
|
|
La_hppa_regs *__regs,
|
|
unsigned int *__flags,
|
|
const char *__symname,
|
|
long int *__framesizep);
|
|
extern unsigned int la_hppa_gnu_pltexit (Elf32_Sym *__sym, unsigned int __ndx,
|
|
uintptr_t *__refcook,
|
|
uintptr_t *__defcook,
|
|
const La_hppa_regs *__inregs,
|
|
La_hppa_retval *__outregs,
|
|
const char *symname);
|
|
|
|
__END_DECLS
|