Home | History | Annotate | Download | only in linux
      1 /*  DO NOT EDIT THIS FILE.
      2 
      3     It has been auto-edited by fixincludes from:
      4 
      5 	"/usr/include/linux/a.out.h"
      6 
      7     This had to be done to correct non-standard usages in the
      8     original, manufacturer supplied header file.  */
      9 
     10 #ifndef __A_OUT_GNU_H__
     11 #define __A_OUT_GNU_H__
     12 
     13 #define __GNU_EXEC_MACROS__
     14 
     15 #ifndef __STRUCT_EXEC_OVERRIDE__
     16 
     17 #include <asm/a.out.h>
     18 
     19 #endif /* __STRUCT_EXEC_OVERRIDE__ */
     20 
     21 /* these go in the N_MACHTYPE field */
     22 enum machine_type {
     23 #if defined (M_OLDSUN2)
     24   M__OLDSUN2 = M_OLDSUN2,
     25 #else
     26   M_OLDSUN2 = 0,
     27 #endif
     28 #if defined (M_68010)
     29   M__68010 = M_68010,
     30 #else
     31   M_68010 = 1,
     32 #endif
     33 #if defined (M_68020)
     34   M__68020 = M_68020,
     35 #else
     36   M_68020 = 2,
     37 #endif
     38 #if defined (M_SPARC)
     39   M__SPARC = M_SPARC,
     40 #else
     41   M_SPARC = 3,
     42 #endif
     43   /* skip a bunch so we don't run into any of sun's numbers */
     44   M_386 = 100,
     45   M_MIPS1 = 151,	/* MIPS R3000/R3000 binary */
     46   M_MIPS2 = 152		/* MIPS R6000/R4000 binary */
     47 };
     48 
     49 #if !defined (N_MAGIC)
     50 #define N_MAGIC(exec) ((exec).a_info & 0xffff)
     51 #endif
     52 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff))
     53 #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff)
     54 #define N_SET_INFO(exec, magic, type, flags) \
     55 	((exec).a_info = ((magic) & 0xffff) \
     56 	 | (((int)(type) & 0xff) << 16) \
     57 	 | (((flags) & 0xff) << 24))
     58 #define N_SET_MAGIC(exec, magic) \
     59 	((exec).a_info = (((exec).a_info & 0xffff0000) | ((magic) & 0xffff)))
     60 
     61 #define N_SET_MACHTYPE(exec, machtype) \
     62 	((exec).a_info = \
     63 	 ((exec).a_info&0xff00ffff) | ((((int)(machtype))&0xff) << 16))
     64 
     65 #define N_SET_FLAGS(exec, flags) \
     66 	((exec).a_info = \
     67 	 ((exec).a_info&0x00ffffff) | (((flags) & 0xff) << 24))
     68 
     69 /* Code indicating object file or impure executable.  */
     70 #define OMAGIC 0407
     71 /* Code indicating pure executable.  */
     72 #define NMAGIC 0410
     73 /* Code indicating demand-paged executable.  */
     74 #define ZMAGIC 0413
     75 /* This indicates a demand-paged executable with the header in the text.
     76    The first page is unmapped to help trap NULL pointer references */
     77 #define QMAGIC 0314
     78 
     79 /* Code indicating core file.  */
     80 #define CMAGIC 0421
     81 
     82 #if !defined (N_BADMAG)
     83 #define N_BADMAG(x)	  (N_MAGIC(x) != OMAGIC		\
     84 			&& N_MAGIC(x) != NMAGIC		\
     85   			&& N_MAGIC(x) != ZMAGIC \
     86 		        && N_MAGIC(x) != QMAGIC)
     87 #endif
     88 
     89 #define _N_HDROFF(x) (1024 - sizeof (struct exec))
     90 
     91 #if !defined (N_TXTOFF)
     92 #define N_TXTOFF(x) \
     93  (N_MAGIC(x) == ZMAGIC ? _N_HDROFF((x)) + sizeof (struct exec) : \
     94   (N_MAGIC(x) == QMAGIC ? 0 : sizeof (struct exec)))
     95 #endif
     96 
     97 #if !defined (N_DATOFF)
     98 #define N_DATOFF(x) (N_TXTOFF(x) + (x).a_text)
     99 #endif
    100 
    101 #if !defined (N_TRELOFF)
    102 #define N_TRELOFF(x) (N_DATOFF(x) + (x).a_data)
    103 #endif
    104 
    105 #if !defined (N_DRELOFF)
    106 #define N_DRELOFF(x) (N_TRELOFF(x) + N_TRSIZE(x))
    107 #endif
    108 
    109 #if !defined (N_SYMOFF)
    110 #define N_SYMOFF(x) (N_DRELOFF(x) + N_DRSIZE(x))
    111 #endif
    112 
    113 #if !defined (N_STROFF)
    114 #define N_STROFF(x) (N_SYMOFF(x) + N_SYMSIZE(x))
    115 #endif
    116 
    117 /* Address of text segment in memory after it is loaded.  */
    118 #if !defined (N_TXTADDR)
    119 #define N_TXTADDR(x) (N_MAGIC(x) == QMAGIC ? PAGE_SIZE : 0)
    120 #endif
    121 
    122 /* Address of data segment in memory after it is loaded.
    123    Note that it is up to you to define SEGMENT_SIZE
    124    on machines not listed here.  */
    125 #if defined(vax) || defined(hp300) || defined(pyr)
    126 #define SEGMENT_SIZE page_size
    127 #endif
    128 #ifdef	sony
    129 #define	SEGMENT_SIZE	0x2000
    130 #endif	/* Sony.  */
    131 #ifdef is68k
    132 #define SEGMENT_SIZE 0x20000
    133 #endif
    134 #if defined(m68k) && defined(PORTAR)
    135 #define PAGE_SIZE 0x400
    136 #define SEGMENT_SIZE PAGE_SIZE
    137 #endif
    138 
    139 #ifdef __linux__
    140 #include <asm/page.h>
    141 #if defined(__i386__) || defined(__mc68000__)
    142 #define SEGMENT_SIZE	1024
    143 #else
    144 #ifndef SEGMENT_SIZE
    145 #define SEGMENT_SIZE	PAGE_SIZE
    146 #endif
    147 #endif
    148 #endif
    149 
    150 #define _N_SEGMENT_ROUND(x) (((x) + SEGMENT_SIZE - 1) & ~(SEGMENT_SIZE - 1))
    151 
    152 #define _N_TXTENDADDR(x) (N_TXTADDR(x)+(x).a_text)
    153 
    154 #ifndef N_DATADDR
    155 #define N_DATADDR(x) \
    156     (N_MAGIC(x)==OMAGIC? (_N_TXTENDADDR(x)) \
    157      : (_N_SEGMENT_ROUND (_N_TXTENDADDR(x))))
    158 #endif
    159 
    160 /* Address of bss segment in memory after it is loaded.  */
    161 #if !defined (N_BSSADDR)
    162 #define N_BSSADDR(x) (N_DATADDR(x) + (x).a_data)
    163 #endif
    164 
    165 #if !defined (N_NLIST_DECLARED)
    167 struct nlist {
    168   union {
    169     char *n_name;
    170     struct nlist *n_next;
    171     long n_strx;
    172   } n_un;
    173   unsigned char n_type;
    174   char n_other;
    175   short n_desc;
    176   unsigned long n_value;
    177 };
    178 #endif /* no N_NLIST_DECLARED.  */
    179 
    180 #if !defined (N_UNDF)
    181 #define N_UNDF 0
    182 #endif
    183 #if !defined (N_ABS)
    184 #define N_ABS 2
    185 #endif
    186 #if !defined (N_TEXT)
    187 #define N_TEXT 4
    188 #endif
    189 #if !defined (N_DATA)
    190 #define N_DATA 6
    191 #endif
    192 #if !defined (N_BSS)
    193 #define N_BSS 8
    194 #endif
    195 #if !defined (N_FN)
    196 #define N_FN 15
    197 #endif
    198 
    199 #if !defined (N_EXT)
    200 #define N_EXT 1
    201 #endif
    202 #if !defined (N_TYPE)
    203 #define N_TYPE 036
    204 #endif
    205 #if !defined (N_STAB)
    206 #define N_STAB 0340
    207 #endif
    208 
    209 /* The following type indicates the definition of a symbol as being
    210    an indirect reference to another symbol.  The other symbol
    211    appears as an undefined reference, immediately following this symbol.
    212 
    213    Indirection is asymmetrical.  The other symbol's value will be used
    214    to satisfy requests for the indirect symbol, but not vice versa.
    215    If the other symbol does not have a definition, libraries will
    216    be searched to find a definition.  */
    217 #define N_INDR 0xa
    218 
    219 /* The following symbols refer to set elements.
    220    All the N_SET[ATDB] symbols with the same name form one set.
    221    Space is allocated for the set in the text section, and each set
    222    element's value is stored into one word of the space.
    223    The first word of the space is the length of the set (number of elements).
    224 
    225    The address of the set is made into an N_SETV symbol
    226    whose name is the same as the name of the set.
    227    This symbol acts like a N_DATA global symbol
    228    in that it can satisfy undefined external references.  */
    229 
    230 /* These appear as input to LD, in a .o file.  */
    231 #define	N_SETA	0x14		/* Absolute set element symbol */
    232 #define	N_SETT	0x16		/* Text set element symbol */
    233 #define	N_SETD	0x18		/* Data set element symbol */
    234 #define	N_SETB	0x1A		/* Bss set element symbol */
    235 
    236 /* This is output from LD.  */
    237 #define N_SETV	0x1C		/* Pointer to set vector in data area.  */
    238 
    239 #if !defined (N_RELOCATION_INFO_DECLARED)
    241 /* This structure describes a single relocation to be performed.
    242    The text-relocation section of the file is a vector of these structures,
    243    all of which apply to the text section.
    244    Likewise, the data-relocation section applies to the data section.  */
    245 
    246 struct relocation_info
    247 {
    248   /* Address (within segment) to be relocated.  */
    249   int r_address;
    250   /* The meaning of r_symbolnum depends on r_extern.  */
    251   unsigned int r_symbolnum:24;
    252   /* Nonzero means value is a pc-relative offset
    253      and it should be relocated for changes in its own address
    254      as well as for changes in the symbol or section specified.  */
    255   unsigned int r_pcrel:1;
    256   /* Length (as exponent of 2) of the field to be relocated.
    257      Thus, a value of 2 indicates 1<<2 bytes.  */
    258   unsigned int r_length:2;
    259   /* 1 => relocate with value of symbol.
    260           r_symbolnum is the index of the symbol
    261 	  in file's the symbol table.
    262      0 => relocate with the address of a segment.
    263           r_symbolnum is N_TEXT, N_DATA, N_BSS or N_ABS
    264 	  (the N_EXT bit may be set also, but signifies nothing).  */
    265   unsigned int r_extern:1;
    266   /* Four bits that aren't used, but when writing an object file
    267      it is desirable to clear them.  */
    268 #ifdef NS32K
    269   unsigned r_bsr:1;
    270   unsigned r_disp:1;
    271   unsigned r_pad:2;
    272 #else
    273   unsigned int r_pad:4;
    274 #endif
    275 };
    276 #endif /* no N_RELOCATION_INFO_DECLARED.  */
    277 
    278 
    279 #endif /* __A_OUT_GNU_H__ */
    280