1/**************************************************************************** 2 **************************************************************************** 3 *** 4 *** This header was automatically generated from a Linux kernel header 5 *** of the same name, to make information necessary for userspace to 6 *** call into the kernel available to libc. It contains only constants, 7 *** structures, and macros generated from the original header, and thus, 8 *** contains no copyrightable information. 9 *** 10 *** To edit the content of this header, modify the corresponding 11 *** source file (e.g. under external/kernel-headers/original/) then 12 *** run bionic/libc/kernel/tools/update_all.py 13 *** 14 *** Any manual change here will be lost the next time this script will 15 *** be run. You've been warned! 16 *** 17 **************************************************************************** 18 ****************************************************************************/ 19#define E_SYMNMLEN 8 20#define E_FILNMLEN 14 21#define E_DIMNUM 4 22#define COFF_SHORT_L(ps) ((short)(((unsigned short)((unsigned char)ps[1])<<8)| ((unsigned short)((unsigned char)ps[0])))) 23/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 24#define COFF_LONG_L(ps) (((long)(((unsigned long)((unsigned char)ps[3])<<24) | ((unsigned long)((unsigned char)ps[2])<<16) | ((unsigned long)((unsigned char)ps[1])<<8) | ((unsigned long)((unsigned char)ps[0]))))) 25#define COFF_SHORT_H(ps) ((short)(((unsigned short)((unsigned char)ps[0])<<8)| ((unsigned short)((unsigned char)ps[1])))) 26#define COFF_LONG_H(ps) (((long)(((unsigned long)((unsigned char)ps[0])<<24) | ((unsigned long)((unsigned char)ps[1])<<16) | ((unsigned long)((unsigned char)ps[2])<<8) | ((unsigned long)((unsigned char)ps[3]))))) 27#define COFF_LONG(v) COFF_LONG_L(v) 28/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 29#define COFF_SHORT(v) COFF_SHORT_L(v) 30struct COFF_filehdr { 31 char f_magic[2]; 32 char f_nscns[2]; 33/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 34 char f_timdat[4]; 35 char f_symptr[4]; 36 char f_nsyms[4]; 37 char f_opthdr[2]; 38/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 39 char f_flags[2]; 40}; 41#define COFF_F_RELFLG 0000001 42#define COFF_F_EXEC 0000002 43/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 44#define COFF_F_LNNO 0000004 45#define COFF_F_LSYMS 0000010 46#define COFF_F_MINMAL 0000020 47#define COFF_F_UPDATE 0000040 48/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 49#define COFF_F_SWABD 0000100 50#define COFF_F_AR16WR 0000200 51#define COFF_F_AR32WR 0000400 52#define COFF_F_AR32W 0001000 53/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 54#define COFF_F_PATCH 0002000 55#define COFF_F_NODF 0002000 56#define COFF_I386MAGIC 0x14c 57#define COFF_I386BADMAG(x) (COFF_SHORT((x).f_magic) != COFF_I386MAGIC) 58/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 59#define COFF_FILHDR struct COFF_filehdr 60#define COFF_FILHSZ sizeof(COFF_FILHDR) 61typedef struct 62{ 63/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 64 char magic[2]; 65 char vstamp[2]; 66 char tsize[4]; 67 char dsize[4]; 68/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 69 char bsize[4]; 70 char entry[4]; 71 char text_start[4]; 72 char data_start[4]; 73/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 74} 75COFF_AOUTHDR; 76#define COFF_AOUTSZ (sizeof(COFF_AOUTHDR)) 77#define COFF_STMAGIC 0401 78/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 79#define COFF_OMAGIC 0404 80#define COFF_JMAGIC 0407 81#define COFF_DMAGIC 0410 82#define COFF_ZMAGIC 0413 83/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 84#define COFF_SHMAGIC 0443 85struct COFF_scnhdr { 86 char s_name[8]; 87 char s_paddr[4]; 88/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 89 char s_vaddr[4]; 90 char s_size[4]; 91 char s_scnptr[4]; 92 char s_relptr[4]; 93/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 94 char s_lnnoptr[4]; 95 char s_nreloc[2]; 96 char s_nlnno[2]; 97 char s_flags[4]; 98/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 99}; 100#define COFF_SCNHDR struct COFF_scnhdr 101#define COFF_SCNHSZ sizeof(COFF_SCNHDR) 102#define COFF_TEXT ".text" 103/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 104#define COFF_DATA ".data" 105#define COFF_BSS ".bss" 106#define COFF_COMMENT ".comment" 107#define COFF_LIB ".lib" 108/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 109#define COFF_SECT_TEXT 0 110#define COFF_SECT_DATA 1 111#define COFF_SECT_BSS 2 112#define COFF_SECT_REQD 3 113/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 114#define COFF_STYP_REG 0x00 115#define COFF_STYP_DSECT 0x01 116#define COFF_STYP_NOLOAD 0x02 117#define COFF_STYP_GROUP 0x04 118/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 119#define COFF_STYP_PAD 0x08 120#define COFF_STYP_COPY 0x10 121#define COFF_STYP_TEXT 0x20 122#define COFF_STYP_DATA 0x40 123/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 124#define COFF_STYP_BSS 0x80 125#define COFF_STYP_INFO 0x200 126#define COFF_STYP_OVER 0x400 127#define COFF_STYP_LIB 0x800 128/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 129struct COFF_slib { 130 char sl_entsz[4]; 131 char sl_pathndx[4]; 132}; 133/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 134#define COFF_SLIBHD struct COFF_slib 135#define COFF_SLIBSZ sizeof(COFF_SLIBHD) 136struct COFF_lineno { 137 union { 138/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 139 char l_symndx[4]; 140 char l_paddr[4]; 141 } l_addr; 142 char l_lnno[2]; 143/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 144}; 145#define COFF_LINENO struct COFF_lineno 146#define COFF_LINESZ 6 147#define COFF_E_SYMNMLEN 8 148/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 149#define COFF_E_FILNMLEN 14 150#define COFF_E_DIMNUM 4 151struct COFF_syment 152{ 153/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 154 union { 155 char e_name[E_SYMNMLEN]; 156 struct { 157 char e_zeroes[4]; 158/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 159 char e_offset[4]; 160 } e; 161 } e; 162 char e_value[4]; 163/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 164 char e_scnum[2]; 165 char e_type[2]; 166 char e_sclass[1]; 167 char e_numaux[1]; 168/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 169}; 170#define COFF_N_BTMASK (0xf) 171#define COFF_N_TMASK (0x30) 172#define COFF_N_BTSHFT (4) 173/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 174#define COFF_N_TSHIFT (2) 175union COFF_auxent { 176 struct { 177 char x_tagndx[4]; 178/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 179 union { 180 struct { 181 char x_lnno[2]; 182 char x_size[2]; 183/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 184 } x_lnsz; 185 char x_fsize[4]; 186 } x_misc; 187 union { 188/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 189 struct { 190 char x_lnnoptr[4]; 191 char x_endndx[4]; 192 } x_fcn; 193/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 194 struct { 195 char x_dimen[E_DIMNUM][2]; 196 } x_ary; 197 } x_fcnary; 198/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 199 char x_tvndx[2]; 200 } x_sym; 201 union { 202 char x_fname[E_FILNMLEN]; 203/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 204 struct { 205 char x_zeroes[4]; 206 char x_offset[4]; 207 } x_n; 208/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 209 } x_file; 210 struct { 211 char x_scnlen[4]; 212 char x_nreloc[2]; 213/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 214 char x_nlinno[2]; 215 } x_scn; 216 struct { 217 char x_tvfill[4]; 218/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 219 char x_tvlen[2]; 220 char x_tvran[2][2]; 221 } x_tv; 222}; 223/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 224#define COFF_SYMENT struct COFF_syment 225#define COFF_SYMESZ 18 226#define COFF_AUXENT union COFF_auxent 227#define COFF_AUXESZ 18 228/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 229#define COFF_ETEXT "etext" 230struct COFF_reloc { 231 char r_vaddr[4]; 232 char r_symndx[4]; 233/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 234 char r_type[2]; 235}; 236#define COFF_RELOC struct COFF_reloc 237#define COFF_RELSZ 10 238/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 239#define COFF_DEF_DATA_SECTION_ALIGNMENT 4 240#define COFF_DEF_BSS_SECTION_ALIGNMENT 4 241#define COFF_DEF_TEXT_SECTION_ALIGNMENT 4 242#define COFF_DEF_SECTION_ALIGNMENT 4 243/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 244