1#ifndef _UAPI__A_OUT_GNU_H__
2#define _UAPI__A_OUT_GNU_H__
3
4#define __GNU_EXEC_MACROS__
5
6#ifndef __STRUCT_EXEC_OVERRIDE__
7
8#include <asm/a.out.h>
9
10#endif
11
12#ifndef __ASSEMBLY__
13
14
15enum machine_type {
16#if defined (M_OLDSUN2)
17 M__OLDSUN2 = M_OLDSUN2,
18#else
19 M_OLDSUN2 = 0,
20#endif
21#if defined (M_68010)
22 M__68010 = M_68010,
23#else
24 M_68010 = 1,
25#endif
26#if defined (M_68020)
27 M__68020 = M_68020,
28#else
29 M_68020 = 2,
30#endif
31#if defined (M_SPARC)
32 M__SPARC = M_SPARC,
33#else
34 M_SPARC = 3,
35#endif
36
37 M_386 = 100,
38 M_MIPS1 = 151,
39 M_MIPS2 = 152
40};
41
42#if !defined (N_MAGIC)
43#define N_MAGIC(exec) ((exec).a_info & 0xffff)
44#endif
45#define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff))
46#define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff)
47#define N_SET_INFO(exec, magic, type, flags) \
48 ((exec).a_info = ((magic) & 0xffff) \
49 | (((int)(type) & 0xff) << 16) \
50 | (((flags) & 0xff) << 24))
51#define N_SET_MAGIC(exec, magic) \
52 ((exec).a_info = (((exec).a_info & 0xffff0000) | ((magic) & 0xffff)))
53
54#define N_SET_MACHTYPE(exec, machtype) \
55 ((exec).a_info = \
56 ((exec).a_info&0xff00ffff) | ((((int)(machtype))&0xff) << 16))
57
58#define N_SET_FLAGS(exec, flags) \
59 ((exec).a_info = \
60 ((exec).a_info&0x00ffffff) | (((flags) & 0xff) << 24))
61
62
63#define OMAGIC 0407
64
65#define NMAGIC 0410
66
67#define ZMAGIC 0413
68
69
70#define QMAGIC 0314
71
72
73#define CMAGIC 0421
74
75#if !defined (N_BADMAG)
76#define N_BADMAG(x) (N_MAGIC(x) != OMAGIC \
77 && N_MAGIC(x) != NMAGIC \
78 && N_MAGIC(x) != ZMAGIC \
79 && N_MAGIC(x) != QMAGIC)
80#endif
81
82#define _N_HDROFF(x) (1024 - sizeof (struct exec))
83
84#if !defined (N_TXTOFF)
85#define N_TXTOFF(x) \
86 (N_MAGIC(x) == ZMAGIC ? _N_HDROFF((x)) + sizeof (struct exec) : \
87 (N_MAGIC(x) == QMAGIC ? 0 : sizeof (struct exec)))
88#endif
89
90#if !defined (N_DATOFF)
91#define N_DATOFF(x) (N_TXTOFF(x) + (x).a_text)
92#endif
93
94#if !defined (N_TRELOFF)
95#define N_TRELOFF(x) (N_DATOFF(x) + (x).a_data)
96#endif
97
98#if !defined (N_DRELOFF)
99#define N_DRELOFF(x) (N_TRELOFF(x) + N_TRSIZE(x))
100#endif
101
102#if !defined (N_SYMOFF)
103#define N_SYMOFF(x) (N_DRELOFF(x) + N_DRSIZE(x))
104#endif
105
106#if !defined (N_STROFF)
107#define N_STROFF(x) (N_SYMOFF(x) + N_SYMSIZE(x))
108#endif
109
110
111#if !defined (N_TXTADDR)
112#define N_TXTADDR(x) (N_MAGIC(x) == QMAGIC ? PAGE_SIZE : 0)
113#endif
114
115
116
117
118#if defined(vax) || defined(hp300) || defined(pyr)
119#define SEGMENT_SIZE page_size
120#endif
121#ifdef sony
122#define SEGMENT_SIZE 0x2000
123#endif
124#ifdef is68k
125#define SEGMENT_SIZE 0x20000
126#endif
127#if defined(m68k) && defined(PORTAR)
128#define PAGE_SIZE 0x400
129#define SEGMENT_SIZE PAGE_SIZE
130#endif
131
132#ifdef linux
133#ifndef __KERNEL__
134#include <unistd.h>
135#endif
136#if defined(__i386__) || defined(__mc68000__)
137#define SEGMENT_SIZE 1024
138#else
139#ifndef SEGMENT_SIZE
140#ifndef __KERNEL__
141#define SEGMENT_SIZE getpagesize()
142#endif
143#endif
144#endif
145#endif
146
147#define _N_SEGMENT_ROUND(x) ALIGN(x, SEGMENT_SIZE)
148
149#define _N_TXTENDADDR(x) (N_TXTADDR(x)+(x).a_text)
150
151#ifndef N_DATADDR
152#define N_DATADDR(x) \
153 (N_MAGIC(x)==OMAGIC? (_N_TXTENDADDR(x)) \
154 : (_N_SEGMENT_ROUND (_N_TXTENDADDR(x))))
155#endif
156
157
158#if !defined (N_BSSADDR)
159#define N_BSSADDR(x) (N_DATADDR(x) + (x).a_data)
160#endif
161
162#if !defined (N_NLIST_DECLARED)
163struct nlist {
164 union {
165 char *n_name;
166 struct nlist *n_next;
167 long n_strx;
168 } n_un;
169 unsigned char n_type;
170 char n_other;
171 short n_desc;
172 unsigned long n_value;
173};
174#endif
175
176#if !defined (N_UNDF)
177#define N_UNDF 0
178#endif
179#if !defined (N_ABS)
180#define N_ABS 2
181#endif
182#if !defined (N_TEXT)
183#define N_TEXT 4
184#endif
185#if !defined (N_DATA)
186#define N_DATA 6
187#endif
188#if !defined (N_BSS)
189#define N_BSS 8
190#endif
191#if !defined (N_FN)
192#define N_FN 15
193#endif
194
195#if !defined (N_EXT)
196#define N_EXT 1
197#endif
198#if !defined (N_TYPE)
199#define N_TYPE 036
200#endif
201#if !defined (N_STAB)
202#define N_STAB 0340
203#endif
204
205
206
207
208
209
210
211
212
213#define N_INDR 0xa
214
215
216
217
218
219
220
221
222
223
224
225
226
227#define N_SETA 0x14
228#define N_SETT 0x16
229#define N_SETD 0x18
230#define N_SETB 0x1A
231
232
233#define N_SETV 0x1C
234
235#if !defined (N_RELOCATION_INFO_DECLARED)
236
237
238
239
240
241struct relocation_info
242{
243
244 int r_address;
245
246 unsigned int r_symbolnum:24;
247
248
249
250 unsigned int r_pcrel:1;
251
252
253 unsigned int r_length:2;
254
255
256
257
258
259
260 unsigned int r_extern:1;
261
262
263#ifdef NS32K
264 unsigned r_bsr:1;
265 unsigned r_disp:1;
266 unsigned r_pad:2;
267#else
268 unsigned int r_pad:4;
269#endif
270};
271#endif
272
273#endif
274#endif
275