]> Git Repo - binutils.git/blob - gas/a.out.gnu.h
N_INDR movement
[binutils.git] / gas / a.out.gnu.h
1 #ifndef __A_OUT_GNU_H__
2 #define __A_OUT_GNU_H__
3
4 #include "reloc.h"
5
6 #define __GNU_EXEC_MACROS__
7
8 #ifndef __STRUCT_EXEC_OVERRIDE__
9
10 /* This is the layout on disk of a Unix V7, Berkeley, SunOS, Vax Ultrix
11    "struct exec".  Don't assume that on this machine, the "struct exec"
12    will lay out the same sizes or alignments.  */
13
14 struct exec_bytes {
15   unsigned char a_info[4];
16   unsigned char a_text[4];
17   unsigned char a_data[4];
18   unsigned char a_bss[4];
19   unsigned char a_syms[4];
20   unsigned char a_entry[4];
21   unsigned char a_trsize[4];
22   unsigned char a_drsize[4];
23 };
24
25 /* How big the "struct exec" is on disk */
26 #define EXEC_BYTES_SIZE (8 * 4)
27
28 /* This is the layout in memory of a "struct exec" while we process it.  */
29
30 struct exec
31 {
32   unsigned long a_info;         /* Use macros N_MAGIC, etc for access */
33   unsigned a_text;              /* length of text, in bytes */
34   unsigned a_data;              /* length of data, in bytes */
35   unsigned a_bss;               /* length of uninitialized data area for file, in bytes */
36   unsigned a_syms;              /* length of symbol table data in file, in bytes */
37   unsigned a_entry;             /* start address */
38   unsigned a_trsize;            /* length of relocation info for text, in bytes */
39   unsigned a_drsize;            /* length of relocation info for data, in bytes */
40 };
41
42 #endif /* __STRUCT_EXEC_OVERRIDE__ */
43
44 /* these go in the N_MACHTYPE field */
45 /* These symbols could be defined by code from Suns...punt 'em */
46 #undef M_UNKNOWN
47 #undef M_68010
48 #undef M_68020
49 #undef M_SPARC
50 enum machine_type {
51   M_UNKNOWN = 0,
52   M_68010 = 1,
53   M_68020 = 2,
54   M_SPARC = 3,
55   /* skip a bunch so we don't run into any of sun's numbers */
56   M_386 = 100,
57   M_29K = 101,
58 };
59
60 #define N_MAGIC(exec) ((exec).a_info & 0xffff)
61 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff))
62 #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff)
63 #define N_SET_INFO(exec, magic, type, flags) \
64         ((exec).a_info = ((magic) & 0xffff) \
65          | (((int)(type) & 0xff) << 16) \
66          | (((flags) & 0xff) << 24))
67 #define N_SET_MAGIC(exec, magic) \
68         ((exec).a_info = (((exec).a_info & 0xffff0000) | ((magic) & 0xffff)))
69
70 #define N_SET_MACHTYPE(exec, machtype) \
71         ((exec).a_info = \
72          ((exec).a_info&0xff00ffff) | ((((int)(machtype))&0xff) << 16))
73
74 #define N_SET_FLAGS(exec, flags) \
75         ((exec).a_info = \
76          ((exec).a_info&0x00ffffff) | (((flags) & 0xff) << 24))
77
78 /* Code indicating object file or impure executable.  */
79 #define OMAGIC 0407
80 /* Code indicating pure executable.  */
81 #define NMAGIC 0410
82 /* Code indicating demand-paged executable.  */
83 #define ZMAGIC 0413
84
85 /* Virtual Address of text segment from the a.out file.  For OMAGIC,
86    (almost always "unlinked .o's" these days), should be zero.
87    For linked files, should reflect reality if we know it.  */
88
89 #ifndef N_TXTADDR
90 #define N_TXTADDR(x)    (N_MAGIC(x)==OMAGIC? 0 : TEXT_START_ADDR)
91 #endif
92
93 #ifndef N_BADMAG
94 #define N_BADMAG(x)       (N_MAGIC(x) != OMAGIC         \
95                         && N_MAGIC(x) != NMAGIC         \
96                         && N_MAGIC(x) != ZMAGIC)
97 #endif
98
99 /* This complexity is for encapsulated COFF support */
100 #ifndef _N_HDROFF
101 #define _N_HDROFF(x)    (SEGMENT_SIZE - sizeof (struct exec))
102 #endif
103
104 #ifndef N_TXTOFF
105 #define N_TXTOFF(x)     (N_MAGIC(x) == ZMAGIC ? \
106                                 _N_HDROFF((x)) + sizeof (struct exec) : \
107                                 sizeof (struct exec))
108 #endif
109
110
111 #ifndef N_DATOFF
112 #define N_DATOFF(x)     ( N_TXTOFF(x) + (x).a_text )
113 #endif
114
115 #ifndef N_TRELOFF
116 #define N_TRELOFF(x)    ( N_DATOFF(x) + (x).a_data )
117 #endif
118
119 #ifndef N_DRELOFF
120 #define N_DRELOFF(x)    ( N_TRELOFF(x) + (x).a_trsize )
121 #endif
122
123 #ifndef N_SYMOFF
124 #define N_SYMOFF(x)     ( N_DRELOFF(x) + (x).a_drsize )
125 #endif
126
127 #ifndef N_STROFF
128 #define N_STROFF(x)     ( N_SYMOFF(x) + (x).a_syms )
129 #endif
130
131 /* Address of text segment in memory after it is loaded.  */
132 #ifndef N_TXTADDR
133 #define N_TXTADDR(x)    0
134 #endif
135
136 #ifndef N_DATADDR
137 #define N_DATADDR(x) \
138     (N_MAGIC(x)==OMAGIC? (N_TXTADDR(x)+(x).a_text) \
139      :  (SEGMENT_SIZE + ((N_TXTADDR(x)+(x).a_text-1) & ~(SEGMENT_SIZE-1))))
140 #endif
141
142 /* Address of bss segment in memory after it is loaded.  */
143 #define N_BSSADDR(x) (N_DATADDR(x) + (x).a_data)
144 \f
145 struct nlist {
146   union {
147     char *n_name;
148     struct nlist *n_next;
149     long n_strx;
150   } n_un;
151   unsigned char n_type;
152   char n_other;
153   short n_desc;
154   unsigned long n_value;
155 };
156
157 #define N_UNDF 0
158 #define N_ABS 2
159 #define N_TEXT 4
160 #define N_DATA 6
161 #define N_BSS 8
162 #define N_FN 15
163
164 #define N_EXT 1
165 #define N_TYPE 036
166 #define N_STAB 0340
167
168 /* The following type indicates the definition of a symbol as being
169    an indirect reference to another symbol.  The other symbol
170    appears as an undefined reference, immediately following this symbol.
171
172    Indirection is asymmetrical.  The other symbol's value will be used
173    to satisfy requests for the indirect symbol, but not vice versa.
174    If the other symbol does not have a definition, libraries will
175    be searched to find a definition.  */
176
177 #define N_INDR 0xa
178
179 /* The following symbols refer to set elements.
180    All the N_SET[ATDB] symbols with the same name form one set.
181    Space is allocated for the set in the text section, and each set
182    element's value is stored into one word of the space.
183    The first word of the space is the length of the set (number of elements).
184
185    The address of the set is made into an N_SETV symbol
186    whose name is the same as the name of the set.
187    This symbol acts like a N_DATA global symbol
188    in that it can satisfy undefined external references.  */
189
190 /* These appear as input to LD, in a .o file.  */
191 #define N_SETA  0x14            /* Absolute set element symbol */
192 #define N_SETT  0x16            /* Text set element symbol */
193 #define N_SETD  0x18            /* Data set element symbol */
194 #define N_SETB  0x1A            /* Bss set element symbol */
195
196 /* This is output from LD.  */
197 #define N_SETV  0x1C            /* Pointer to set vector in data area.  */
198 \f
199 /* This structure describes a single relocation to be performed.
200    The text-relocation section of the file is a vector of these structures,
201    all of which apply to the text section.
202    Likewise, the data-relocation section applies to the data section.  */
203
204 /* The following enum and struct were borrowed from SunOS's
205    /usr/include/sun4/a.out.h  and extended to handle
206    other machines.  It is currently used on SPARC and AMD 29000.
207
208    reloc_ext_bytes is how it looks on disk.  reloc_info_extended is
209    how we might process it on a native host.  */
210
211 struct reloc_ext_bytes {
212   unsigned char r_address[4];
213   unsigned char r_index[3];
214   unsigned char r_bits[1];
215   unsigned char r_addend[4];
216 };
217
218 #define RELOC_EXT_BITS_EXTERN_BIG       0x80
219 #define RELOC_EXT_BITS_EXTERN_LITTLE    0x01
220
221 #define RELOC_EXT_BITS_TYPE_BIG         0x1F
222 #define RELOC_EXT_BITS_TYPE_SH_BIG      0
223 #define RELOC_EXT_BITS_TYPE_LITTLE      0xF8
224 #define RELOC_EXT_BITS_TYPE_SH_LITTLE   3
225
226 #define RELOC_EXT_SIZE  12              /* Bytes per relocation entry */
227
228 struct reloc_info_extended
229 {
230   unsigned long r_address;
231   unsigned int  r_index:24;
232 # define        r_symbolnum  r_index
233   unsigned      r_extern:1;
234   unsigned      :2;
235   enum reloc_type r_type:5;
236   long int      r_addend;
237 };
238
239 /* The standard, old-fashioned, Berkeley compatible relocation struct */
240
241 struct reloc_std_bytes {
242   unsigned char r_address[4];
243   unsigned char r_index[3];
244   unsigned char r_bits[1];
245 };
246
247 #define RELOC_STD_BITS_PCREL_BIG        0x80
248 #define RELOC_STD_BITS_PCREL_LITTLE     0x01
249
250 #define RELOC_STD_BITS_LENGTH_BIG       0x60
251 #define RELOC_STD_BITS_LENGTH_SH_BIG    5       /* To shift to units place */
252 #define RELOC_STD_BITS_LENGTH_LITTLE    0x06
253 #define RELOC_STD_BITS_LENGTH_SH_LITTLE 1
254
255 #define RELOC_STD_BITS_EXTERN_BIG       0x10
256 #define RELOC_STD_BITS_EXTERN_LITTLE    0x08
257
258 #define RELOC_STD_BITS_BASEREL_BIG      0x08
259 #define RELOC_STD_BITS_BASEREL_LITTLE   0x08
260
261 #define RELOC_STD_BITS_JMPTABLE_BIG     0x04
262 #define RELOC_STD_BITS_JMPTABLE_LITTLE  0x04
263
264 #define RELOC_STD_BITS_RELATIVE_BIG     0x02
265 #define RELOC_STD_BITS_RELATIVE_LITTLE  0x02
266
267 #define RELOC_STD_SIZE  8               /* Bytes per relocation entry */
268
269 struct relocation_info
270 {
271   /* Address (within segment) to be relocated.  */
272   int r_address;
273   /* The meaning of r_symbolnum depends on r_extern.  */
274   unsigned int r_symbolnum:24;
275   /* Nonzero means value is a pc-relative offset
276      and it should be relocated for changes in its own address
277      as well as for changes in the symbol or section specified.  */
278   unsigned int r_pcrel:1;
279   /* Length (as exponent of 2) of the field to be relocated.
280      Thus, a value of 2 indicates 1<<2 bytes.  */
281   unsigned int r_length:2;
282   /* 1 => relocate with value of symbol.
283           r_symbolnum is the index of the symbol
284           in file's the symbol table.
285      0 => relocate with the address of a segment.
286           r_symbolnum is N_TEXT, N_DATA, N_BSS or N_ABS
287           (the N_EXT bit may be set also, but signifies nothing).  */
288   unsigned int r_extern:1;
289   /* The next three bits are for SunOS shared libraries, and seem to
290      be undocumented.  */
291   unsigned int r_baserel:1;     /* Linkage table relative */
292   unsigned int r_jmptable:1;    /* pc-relative to jump table */
293
294 #ifdef TC_NS32K
295 #define r_bsr   r_baserel
296 #define r_disp  r_jmptable
297 #endif /* TC_NS32K */
298
299   unsigned int r_relative:1;    /* "relative relocation" */
300   /* unused */
301   unsigned int r_pad:1;         /* Padding -- set to zero */
302 };
303
304 #endif /* __A_OUT_GNU_H__ */
This page took 0.041706 seconds and 4 git commands to generate.