1 /* Copyright (C) 2004-2021 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
19 # error "Never include <bits/link.h> directly; use <link.h> instead."
24 /* Registers for entry into PLT on IA-32. */
25 typedef struct La_i86_regs
34 /* Return values for calls from PLT on IA-32. */
35 typedef struct La_i86_retval
48 extern Elf32_Addr
la_i86_gnu_pltenter (Elf32_Sym
*__sym
, unsigned int __ndx
,
52 unsigned int *__flags
,
53 const char *__symname
,
54 long int *__framesizep
);
55 extern unsigned int la_i86_gnu_pltexit (Elf32_Sym
*__sym
, unsigned int __ndx
,
58 const La_i86_regs
*__inregs
,
59 La_i86_retval
*__outregs
,
66 /* Registers for entry into PLT on x86-64. */
67 # if __GNUC_PREREQ (4,0)
68 typedef float La_x86_64_xmm
__attribute__ ((__vector_size__ (16)));
69 typedef float La_x86_64_ymm
70 __attribute__ ((__vector_size__ (32), __aligned__ (16)));
71 typedef double La_x86_64_zmm
72 __attribute__ ((__vector_size__ (64), __aligned__ (16)));
74 typedef float La_x86_64_xmm
__attribute__ ((__mode__ (__V4SF__
)));
79 # if __GNUC_PREREQ (4,0)
84 } La_x86_64_vector
__attribute__ ((__aligned__ (16)));
86 typedef struct La_x86_64_regs
96 La_x86_64_xmm lr_xmm
[8];
97 La_x86_64_vector lr_vector
[8];
103 /* Return values for calls from PLT on x86-64. */
104 typedef struct La_x86_64_retval
108 La_x86_64_xmm lrv_xmm0
;
109 La_x86_64_xmm lrv_xmm1
;
112 La_x86_64_vector lrv_vector0
;
113 La_x86_64_vector lrv_vector1
;
120 #define La_x32_regs La_x86_64_regs
121 #define La_x32_retval La_x86_64_retval
125 extern Elf64_Addr
la_x86_64_gnu_pltenter (Elf64_Sym
*__sym
,
127 uintptr_t *__refcook
,
128 uintptr_t *__defcook
,
129 La_x86_64_regs
*__regs
,
130 unsigned int *__flags
,
131 const char *__symname
,
132 long int *__framesizep
);
133 extern unsigned int la_x86_64_gnu_pltexit (Elf64_Sym
*__sym
,
135 uintptr_t *__refcook
,
136 uintptr_t *__defcook
,
137 const La_x86_64_regs
*__inregs
,
138 La_x86_64_retval
*__outregs
,
139 const char *__symname
);
141 extern Elf32_Addr
la_x32_gnu_pltenter (Elf32_Sym
*__sym
,
143 uintptr_t *__refcook
,
144 uintptr_t *__defcook
,
146 unsigned int *__flags
,
147 const char *__symname
,
148 long int *__framesizep
);
149 extern unsigned int la_x32_gnu_pltexit (Elf32_Sym
*__sym
,
151 uintptr_t *__refcook
,
152 uintptr_t *__defcook
,
153 const La_x32_regs
*__inregs
,
154 La_x32_retval
*__outregs
,
155 const char *__symname
);