/* Copyright (C) 2004-2018 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, see
<http://www.gnu.org/licenses/>. */
# error "Never include <bits/link.h> directly; use <link.h> instead."
/* Registers for entry into PLT on IA-32. */
typedef struct La_i86_regs
/* Return values for calls from PLT on IA-32. */
typedef struct La_i86_retval
extern Elf32_Addr la_i86_gnu_pltenter (Elf32_Sym *__sym, unsigned int __ndx,
extern unsigned int la_i86_gnu_pltexit (Elf32_Sym *__sym, unsigned int __ndx,
const La_i86_regs *__inregs,
La_i86_retval *__outregs,
/* Registers for entry into PLT on x86-64. */
typedef float La_x86_64_xmm __attribute__ ((__vector_size__ (16)));
typedef float La_x86_64_ymm
__attribute__ ((__vector_size__ (32), __aligned__ (16)));
typedef double La_x86_64_zmm
__attribute__ ((__vector_size__ (64), __aligned__ (16)));
typedef float La_x86_64_xmm __attribute__ ((__mode__ (__V4SF__)));
} La_x86_64_vector __attribute__ ((__aligned__ (16)));
typedef struct La_x86_64_regs
La_x86_64_vector lr_vector[8];
/* Return values for calls from PLT on x86-64. */
typedef struct La_x86_64_retval
La_x86_64_vector lrv_vector0;
La_x86_64_vector lrv_vector1;
#define La_x32_regs La_x86_64_regs
#define La_x32_retval La_x86_64_retval
extern Elf64_Addr la_x86_64_gnu_pltenter (Elf64_Sym *__sym,
extern unsigned int la_x86_64_gnu_pltexit (Elf64_Sym *__sym,
const La_x86_64_regs *__inregs,
La_x86_64_retval *__outregs,
extern Elf32_Addr la_x32_gnu_pltenter (Elf32_Sym *__sym,
extern unsigned int la_x32_gnu_pltexit (Elf32_Sym *__sym,
const La_x32_regs *__inregs,
La_x32_retval *__outregs,