Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bits
File: link.h
/* Copyright (C) 2004-2018 Free Software Foundation, Inc.
[0] Fix | Delete
This file is part of the GNU C Library.
[1] Fix | Delete
[2] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[3] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[4] Fix | Delete
License as published by the Free Software Foundation; either
[5] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[6] Fix | Delete
[7] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[8] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[9] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[10] Fix | Delete
Lesser General Public License for more details.
[11] Fix | Delete
[12] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[13] Fix | Delete
License along with the GNU C Library; if not, see
[14] Fix | Delete
<http://www.gnu.org/licenses/>. */
[15] Fix | Delete
[16] Fix | Delete
#ifndef _LINK_H
[17] Fix | Delete
# error "Never include <bits/link.h> directly; use <link.h> instead."
[18] Fix | Delete
#endif
[19] Fix | Delete
[20] Fix | Delete
[21] Fix | Delete
#ifndef __x86_64__
[22] Fix | Delete
/* Registers for entry into PLT on IA-32. */
[23] Fix | Delete
typedef struct La_i86_regs
[24] Fix | Delete
{
[25] Fix | Delete
uint32_t lr_edx;
[26] Fix | Delete
uint32_t lr_ecx;
[27] Fix | Delete
uint32_t lr_eax;
[28] Fix | Delete
uint32_t lr_ebp;
[29] Fix | Delete
uint32_t lr_esp;
[30] Fix | Delete
} La_i86_regs;
[31] Fix | Delete
[32] Fix | Delete
/* Return values for calls from PLT on IA-32. */
[33] Fix | Delete
typedef struct La_i86_retval
[34] Fix | Delete
{
[35] Fix | Delete
uint32_t lrv_eax;
[36] Fix | Delete
uint32_t lrv_edx;
[37] Fix | Delete
long double lrv_st0;
[38] Fix | Delete
long double lrv_st1;
[39] Fix | Delete
uint64_t lrv_bnd0;
[40] Fix | Delete
uint64_t lrv_bnd1;
[41] Fix | Delete
} La_i86_retval;
[42] Fix | Delete
[43] Fix | Delete
[44] Fix | Delete
__BEGIN_DECLS
[45] Fix | Delete
[46] Fix | Delete
extern Elf32_Addr la_i86_gnu_pltenter (Elf32_Sym *__sym, unsigned int __ndx,
[47] Fix | Delete
uintptr_t *__refcook,
[48] Fix | Delete
uintptr_t *__defcook,
[49] Fix | Delete
La_i86_regs *__regs,
[50] Fix | Delete
unsigned int *__flags,
[51] Fix | Delete
const char *__symname,
[52] Fix | Delete
long int *__framesizep);
[53] Fix | Delete
extern unsigned int la_i86_gnu_pltexit (Elf32_Sym *__sym, unsigned int __ndx,
[54] Fix | Delete
uintptr_t *__refcook,
[55] Fix | Delete
uintptr_t *__defcook,
[56] Fix | Delete
const La_i86_regs *__inregs,
[57] Fix | Delete
La_i86_retval *__outregs,
[58] Fix | Delete
const char *symname);
[59] Fix | Delete
[60] Fix | Delete
__END_DECLS
[61] Fix | Delete
[62] Fix | Delete
#else
[63] Fix | Delete
[64] Fix | Delete
/* Registers for entry into PLT on x86-64. */
[65] Fix | Delete
# if __GNUC_PREREQ (4,0)
[66] Fix | Delete
typedef float La_x86_64_xmm __attribute__ ((__vector_size__ (16)));
[67] Fix | Delete
typedef float La_x86_64_ymm
[68] Fix | Delete
__attribute__ ((__vector_size__ (32), __aligned__ (16)));
[69] Fix | Delete
typedef double La_x86_64_zmm
[70] Fix | Delete
__attribute__ ((__vector_size__ (64), __aligned__ (16)));
[71] Fix | Delete
# else
[72] Fix | Delete
typedef float La_x86_64_xmm __attribute__ ((__mode__ (__V4SF__)));
[73] Fix | Delete
# endif
[74] Fix | Delete
[75] Fix | Delete
typedef union
[76] Fix | Delete
{
[77] Fix | Delete
# if __GNUC_PREREQ (4,0)
[78] Fix | Delete
La_x86_64_ymm ymm[2];
[79] Fix | Delete
La_x86_64_zmm zmm[1];
[80] Fix | Delete
# endif
[81] Fix | Delete
La_x86_64_xmm xmm[4];
[82] Fix | Delete
} La_x86_64_vector __attribute__ ((__aligned__ (16)));
[83] Fix | Delete
[84] Fix | Delete
typedef struct La_x86_64_regs
[85] Fix | Delete
{
[86] Fix | Delete
uint64_t lr_rdx;
[87] Fix | Delete
uint64_t lr_r8;
[88] Fix | Delete
uint64_t lr_r9;
[89] Fix | Delete
uint64_t lr_rcx;
[90] Fix | Delete
uint64_t lr_rsi;
[91] Fix | Delete
uint64_t lr_rdi;
[92] Fix | Delete
uint64_t lr_rbp;
[93] Fix | Delete
uint64_t lr_rsp;
[94] Fix | Delete
La_x86_64_xmm lr_xmm[8];
[95] Fix | Delete
La_x86_64_vector lr_vector[8];
[96] Fix | Delete
#ifndef __ILP32__
[97] Fix | Delete
__int128_t lr_bnd[4];
[98] Fix | Delete
#endif
[99] Fix | Delete
} La_x86_64_regs;
[100] Fix | Delete
[101] Fix | Delete
/* Return values for calls from PLT on x86-64. */
[102] Fix | Delete
typedef struct La_x86_64_retval
[103] Fix | Delete
{
[104] Fix | Delete
uint64_t lrv_rax;
[105] Fix | Delete
uint64_t lrv_rdx;
[106] Fix | Delete
La_x86_64_xmm lrv_xmm0;
[107] Fix | Delete
La_x86_64_xmm lrv_xmm1;
[108] Fix | Delete
long double lrv_st0;
[109] Fix | Delete
long double lrv_st1;
[110] Fix | Delete
La_x86_64_vector lrv_vector0;
[111] Fix | Delete
La_x86_64_vector lrv_vector1;
[112] Fix | Delete
#ifndef __ILP32__
[113] Fix | Delete
__int128_t lrv_bnd0;
[114] Fix | Delete
__int128_t lrv_bnd1;
[115] Fix | Delete
#endif
[116] Fix | Delete
} La_x86_64_retval;
[117] Fix | Delete
[118] Fix | Delete
#define La_x32_regs La_x86_64_regs
[119] Fix | Delete
#define La_x32_retval La_x86_64_retval
[120] Fix | Delete
[121] Fix | Delete
__BEGIN_DECLS
[122] Fix | Delete
[123] Fix | Delete
extern Elf64_Addr la_x86_64_gnu_pltenter (Elf64_Sym *__sym,
[124] Fix | Delete
unsigned int __ndx,
[125] Fix | Delete
uintptr_t *__refcook,
[126] Fix | Delete
uintptr_t *__defcook,
[127] Fix | Delete
La_x86_64_regs *__regs,
[128] Fix | Delete
unsigned int *__flags,
[129] Fix | Delete
const char *__symname,
[130] Fix | Delete
long int *__framesizep);
[131] Fix | Delete
extern unsigned int la_x86_64_gnu_pltexit (Elf64_Sym *__sym,
[132] Fix | Delete
unsigned int __ndx,
[133] Fix | Delete
uintptr_t *__refcook,
[134] Fix | Delete
uintptr_t *__defcook,
[135] Fix | Delete
const La_x86_64_regs *__inregs,
[136] Fix | Delete
La_x86_64_retval *__outregs,
[137] Fix | Delete
const char *__symname);
[138] Fix | Delete
[139] Fix | Delete
extern Elf32_Addr la_x32_gnu_pltenter (Elf32_Sym *__sym,
[140] Fix | Delete
unsigned int __ndx,
[141] Fix | Delete
uintptr_t *__refcook,
[142] Fix | Delete
uintptr_t *__defcook,
[143] Fix | Delete
La_x32_regs *__regs,
[144] Fix | Delete
unsigned int *__flags,
[145] Fix | Delete
const char *__symname,
[146] Fix | Delete
long int *__framesizep);
[147] Fix | Delete
extern unsigned int la_x32_gnu_pltexit (Elf32_Sym *__sym,
[148] Fix | Delete
unsigned int __ndx,
[149] Fix | Delete
uintptr_t *__refcook,
[150] Fix | Delete
uintptr_t *__defcook,
[151] Fix | Delete
const La_x32_regs *__inregs,
[152] Fix | Delete
La_x32_retval *__outregs,
[153] Fix | Delete
const char *__symname);
[154] Fix | Delete
[155] Fix | Delete
__END_DECLS
[156] Fix | Delete
[157] Fix | Delete
#endif
[158] Fix | Delete
[159] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function