ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/kpx_cpu/include/a.out-defs.h
Revision: 1.1
Committed: 2004-11-23T23:18:54Z (19 years, 11 months ago) by gbeauche
Content type: text/plain
Branch: MAIN
Log Message:
a.out definitions for the cygwin coff object analyzer

File Contents

# User Rev Content
1 gbeauche 1.1 /* a.out.h
2    
3     Copyright 1997, 1998, 1999, 2001 Red Hat, Inc.
4    
5     This file is part of Cygwin.
6    
7     This software is a copyrighted work licensed under the terms of the
8     Cygwin license. Please consult the file "CYGWIN_LICENSE" for
9     details. */
10    
11     #ifndef _A_OUT_H_
12     #define _A_OUT_H_
13    
14     #ifdef __cplusplus
15     extern "C" {
16     #endif
17     #define COFF_IMAGE_WITH_PE
18     #define COFF_LONG_SECTION_NAMES
19    
20     /*** coff information for Intel 386/486. */
21    
22    
23     /********************** FILE HEADER **********************/
24    
25     struct external_filehdr {
26     int16_t f_magic; /* magic number */
27     int16_t f_nscns; /* number of sections */
28     uint32_t f_timdat; /* time & date stamp */
29     uint32_t f_symptr; /* file pointer to symtab */
30     uint32_t f_nsyms; /* number of symtab entries */
31     int16_t f_opthdr; /* sizeof(optional hdr) */
32     int16_t f_flags; /* flags */
33     };
34    
35     /* Bits for f_flags:
36     * F_RELFLG relocation info stripped from file
37     * F_EXEC file is executable (no unresolved external references)
38     * F_LNNO line numbers stripped from file
39     * F_LSYMS local symbols stripped from file
40     * F_AR32WR file has byte ordering of an AR32WR machine (e.g. vax)
41     */
42    
43     #define F_RELFLG (0x0001)
44     #define F_EXEC (0x0002)
45     #define F_LNNO (0x0004)
46     #define F_LSYMS (0x0008)
47    
48    
49    
50     #define I386MAGIC 0x14c
51     #define I386PTXMAGIC 0x154
52     #define I386AIXMAGIC 0x175
53    
54     /* This is Lynx's all-platform magic number for executables. */
55    
56     #define LYNXCOFFMAGIC 0415
57    
58     #define I386BADMAG(x) (((x).f_magic != I386MAGIC) \
59     && (x).f_magic != I386AIXMAGIC \
60     && (x).f_magic != I386PTXMAGIC \
61     && (x).f_magic != LYNXCOFFMAGIC)
62    
63     #define FILHDR struct external_filehdr
64     #define FILHSZ 20
65    
66    
67     /********************** AOUT "OPTIONAL HEADER"=
68     **********************/
69    
70    
71     typedef struct
72     {
73     uint16_t magic; /* type of file */
74     uint16_t vstamp; /* version stamp */
75     uint32_t tsize; /* text size in bytes, padded to FW bdry*/
76     uint32_t dsize; /* initialized data " " */
77     uint32_t bsize; /* uninitialized data " " */
78     uint32_t entry; /* entry pt. */
79     uint32_t text_start; /* base of text used for this file */
80     uint32_t data_start; /* base of data used for this file=
81     */
82     }
83     AOUTHDR;
84    
85     #define AOUTSZ 28
86     #define AOUTHDRSZ 28
87    
88     #define OMAGIC 0404 /* object files, eg as output */
89     #define ZMAGIC 0413 /* demand load format, eg normal ld output */
90     #define STMAGIC 0401 /* target shlib */
91     #define SHMAGIC 0443 /* host shlib */
92    
93    
94     /* define some NT default values */
95     /* #define NT_IMAGE_BASE 0x400000 moved to internal.h */
96     #define NT_SECTION_ALIGNMENT 0x1000
97     #define NT_FILE_ALIGNMENT 0x200
98     #define NT_DEF_RESERVE 0x100000
99     #define NT_DEF_COMMIT 0x1000
100    
101     /********************** SECTION HEADER **********************/
102    
103    
104     struct external_scnhdr {
105     char s_name[8]; /* section name */
106     uint32_t s_paddr; /* physical address, offset
107     of last addr in scn */
108     uint32_t s_vaddr; /* virtual address */
109     uint32_t s_size; /* section size */
110     uint32_t s_scnptr; /* file ptr to raw data for section */
111     uint32_t s_relptr; /* file ptr to relocation */
112     uint32_t s_lnnoptr; /* file ptr to line numbers */
113     uint16_t s_nreloc; /* number of relocation entries */
114     uint16_t s_nlnno; /* number of line number entries*/
115     uint32_t s_flags; /* flags */
116     };
117    
118     #define SCNHDR struct external_scnhdr
119     #define SCNHSZ 40
120    
121     /*
122     * names of "special" sections
123     */
124     #define _TEXT ".text"
125     #define _DATA ".data"
126     #define _BSS ".bss"
127     #define _COMMENT ".comment"
128     #define _LIB ".lib"
129    
130     /********************** LINE NUMBERS **********************/
131    
132     /* 1 line number entry for every "breakpointable" source line in a section.
133     * Line numbers are grouped on a per function basis; first entry in a function
134     * grouping will have l_lnno = 0 and in place of physical address will be the
135     * symbol table index of the function name.
136     */
137     struct external_lineno {
138     union {
139     uint32_t l_symndx; /* function name symbol index, iff l_lnno 0 */
140     uint32_t l_paddr; /* (physical) address of line number */
141     } l_addr;
142     uint16_t l_lnno; /* line number */
143     };
144    
145     #define LINENO struct external_lineno
146     #define LINESZ 6
147    
148     /********************** SYMBOLS **********************/
149    
150     #define E_SYMNMLEN 8 /* # characters in a symbol name */
151     #define E_FILNMLEN 14 /* # characters in a file name */
152     #define E_DIMNUM 4 /* # array dimensions in auxiliary entry */
153    
154     struct external_syment
155     {
156     union {
157     char e_name[E_SYMNMLEN];
158     struct {
159     uint32_t e_zeroes;
160     uint32_t e_offset;
161     } e;
162     } e;
163     uint32_t e_value;
164     uint16_t e_scnum;
165     uint16_t e_type;
166     char e_sclass[1];
167     char e_numaux[1];
168     };
169    
170     #define N_BTMASK (0xf)
171     #define N_TMASK (0x30)
172     #define N_BTSHFT (4)
173     #define N_TSHIFT (2)
174    
175     union external_auxent {
176     struct {
177     uint32_t x_tagndx; /* str, un, or enum tag indx */
178     union {
179     struct {
180     uint16_t x_lnno; /* declaration line number */
181     uint16_t x_size; /* str/union/array size */
182     } x_lnsz;
183     uint32_t x_fsize; /* size of function */
184     } x_misc;
185     union {
186     struct { /* if ISFCN, tag, or .bb */
187     uint32_t x_lnnoptr; /* ptr to fcn line # */
188     uint32_t x_endndx; /* entry ndx past block end */
189     } x_fcn;
190     struct { /* if ISARY, up to 4 dimen. */
191     char x_dimen[E_DIMNUM][2];
192     } x_ary;
193     } x_fcnary;
194     uint16_t x_tvndx; /* tv index */
195     } x_sym;
196    
197     union {
198     char x_fname[E_FILNMLEN];
199     struct {
200     uint32_t x_zeroes;
201     uint32_t x_offset;
202     } x_n;
203     } x_file;
204    
205     struct {
206     uint32_t x_scnlen; /* section length */
207     uint16_t x_nreloc; /* # relocation entries */
208     uint16_t x_nlinno; /* # line numbers */
209     uint32_t x_checksum; /* section COMDAT checksum */
210     uint16_t x_associated;/* COMDAT associated section index */
211     char x_comdat[1]; /* COMDAT selection number */
212     } x_scn;
213    
214     struct {
215     uint32_t x_tvfill; /* tv fill value */
216     uint16_t x_tvlen; /* length of .tv */
217     char x_tvran[2][2]; /* tv range */
218     } x_tv; /* info about .tv section (in auxent of symbol .tv)) */
219    
220     };
221    
222     #define SYMENT struct external_syment
223     #define SYMESZ 18
224     #define AUXENT union external_auxent
225     #define AUXESZ 18
226    
227     #define _ETEXT "etext"
228    
229     /********************** RELOCATION DIRECTIVES **********************/
230    
231     struct external_reloc {
232     char r_vaddr[4];
233     char r_symndx[4];
234     char r_type[2];
235     };
236    
237     #define RELOC struct external_reloc
238     #define RELSZ 10
239    
240     /* end of coff/i386.h */
241    
242     /* PE COFF header information */
243    
244     #ifndef _PE_H
245     #define _PE_H
246    
247     /* NT specific file attributes */
248     #define IMAGE_FILE_RELOCS_STRIPPED 0x0001
249     #define IMAGE_FILE_EXECUTABLE_IMAGE 0x0002
250     #define IMAGE_FILE_LINE_NUMS_STRIPPED 0x0004
251     #define IMAGE_FILE_LOCAL_SYMS_STRIPPED 0x0008
252     #define IMAGE_FILE_BYTES_REVERSED_LO 0x0080
253     #define IMAGE_FILE_32BIT_MACHINE 0x0100
254     #define IMAGE_FILE_DEBUG_STRIPPED 0x0200
255     #define IMAGE_FILE_SYSTEM 0x1000
256     #define IMAGE_FILE_DLL 0x2000
257     #define IMAGE_FILE_BYTES_REVERSED_HI 0x8000
258    
259     /* additional flags to be set for section headers to allow the NT loader to
260     read and write to the section data (to replace the addresses of data in
261     dlls for one thing); also to execute the section in .text's case=
262     */
263     #define IMAGE_SCN_MEM_DISCARDABLE 0x02000000
264     #define IMAGE_SCN_MEM_EXECUTE 0x20000000
265     #define IMAGE_SCN_MEM_READ 0x40000000
266     #define IMAGE_SCN_MEM_WRITE 0x80000000
267    
268     /*
269     * Section characteristics added for ppc-nt
270     */
271    
272     #define IMAGE_SCN_TYPE_NO_PAD 0x00000008 /* Reserved. */
273    
274     #define IMAGE_SCN_CNT_CODE 0x00000020 /* Section contains code. */
275     #define IMAGE_SCN_CNT_INITIALIZED_DATA 0x00000040 /* Section contains initialized data. */
276     #define IMAGE_SCN_CNT_UNINITIALIZED_DATA 0x00000080 /* Section contains uninitialized data. */
277    
278     #define IMAGE_SCN_LNK_OTHER 0x00000100 /* Reserved. */
279     #define IMAGE_SCN_LNK_INFO 0x00000200 /* Section contains comments or some other type of information. */
280     #define IMAGE_SCN_LNK_REMOVE 0x00000800 /* Section contents will not become part of image. */
281     #define IMAGE_SCN_LNK_COMDAT 0x00001000 /* Section contents comdat. */
282    
283     #define IMAGE_SCN_MEM_FARDATA 0x00008000
284    
285     #define IMAGE_SCN_MEM_PURGEABLE 0x00020000
286     #define IMAGE_SCN_MEM_16BIT 0x00020000
287     #define IMAGE_SCN_MEM_LOCKED 0x00040000
288     #define IMAGE_SCN_MEM_PRELOAD 0x00080000
289    
290     #define IMAGE_SCN_ALIGN_1BYTES 0x00100000
291     #define IMAGE_SCN_ALIGN_2BYTES 0x00200000
292     #define IMAGE_SCN_ALIGN_4BYTES 0x00300000
293     #define IMAGE_SCN_ALIGN_8BYTES 0x00400000
294     #define IMAGE_SCN_ALIGN_16BYTES 0x00500000 /* Default alignment if no others are specified. */
295     #define IMAGE_SCN_ALIGN_32BYTES 0x00600000
296     #define IMAGE_SCN_ALIGN_64BYTES 0x00700000
297    
298    
299     #define IMAGE_SCN_LNK_NRELOC_OVFL 0x01000000 /* Section contains extended relocations. */
300     #define IMAGE_SCN_MEM_NOT_CACHED 0x04000000 /* Section is not cachable. */
301     #define IMAGE_SCN_MEM_NOT_PAGED 0x08000000 /* Section is not pageable. */
302     #define IMAGE_SCN_MEM_SHARED 0x10000000 /* Section is shareable. */
303    
304     /* COMDAT selection codes. */
305    
306     #define IMAGE_COMDAT_SELECT_NODUPLICATES (1) /* Warn if duplicates. */
307     #define IMAGE_COMDAT_SELECT_ANY (2) /* No warning. */
308     #define IMAGE_COMDAT_SELECT_SAME_SIZE (3) /* Warn if different size. */
309     #define IMAGE_COMDAT_SELECT_EXACT_MATCH (4) /* Warn if different. */
310     #define IMAGE_COMDAT_SELECT_ASSOCIATIVE (5) /* Base on other section. */
311    
312     /* Magic values that are true for all dos/nt implementations */
313     #define DOSMAGIC 0x5a4d
314     #define NT_SIGNATURE 0x00004550
315    
316     /* NT allows long filenames, we want to accommodate this. This may break
317     some of the bfd functions */
318     #undef FILNMLEN
319     #define FILNMLEN 18 /* # characters in a file name */
320    
321    
322     #ifdef COFF_IMAGE_WITH_PE
323     /* The filehdr is only weired in images */
324    
325     #undef FILHDR
326     struct external_PE_filehdr
327     {
328     /* DOS header fields */
329     uint16_t e_magic; /* Magic number, 0x5a4d */
330     uint16_t e_cblp; /* Bytes on last page of file, 0x90 */
331     uint16_t e_cp; /* Pages in file, 0x3 */
332     uint16_t e_crlc; /* Relocations, 0x0 */
333     uint16_t e_cparhdr; /* Size of header in paragraphs, 0x4 */
334     uint16_t e_minalloc; /* Minimum extra paragraphs needed, 0x0 */
335     uint16_t e_maxalloc; /* Maximum extra paragraphs needed, 0xFFFF */
336     uint16_t e_ss; /* Initial (relative) SS value, 0x0 */
337     uint16_t e_sp; /* Initial SP value, 0xb8 */
338     uint16_t e_csum; /* Checksum, 0x0 */
339     uint16_t e_ip; /* Initial IP value, 0x0 */
340     uint16_t e_cs; /* Initial (relative) CS value, 0x0 */
341     uint16_t e_lfarlc; /* File address of relocation table, 0x40 */
342     uint16_t e_ovno; /* Overlay number, 0x0 */
343     char e_res[4][2]; /* Reserved words, all 0x0 */
344     uint16_t e_oemid; /* OEM identifier (for e_oeminfo), 0x0 */
345     uint16_t e_oeminfo; /* OEM information; e_oemid specific, 0x0 */
346     char e_res2[10][2]; /* Reserved words, all 0x0 */
347     uint32_t e_lfanew; /* File address of new exe header, 0x80 */
348     char dos_message[16][4]; /* other stuff, always follow DOS header */
349     unsigned int nt_signature; /* required NT signature, 0x4550 */
350    
351     /* From standard header */
352    
353     uint16_t f_magic; /* magic number */
354     uint16_t f_nscns; /* number of sections */
355     uint32_t f_timdat; /* time & date stamp */
356     uint32_t f_symptr; /* file pointer to symtab */
357     uint32_t f_nsyms; /* number of symtab entries */
358     uint16_t f_opthdr; /* sizeof(optional hdr) */
359     uint16_t f_flags; /* flags */
360     };
361    
362    
363     #define FILHDR struct external_PE_filehdr
364     #undef FILHSZ
365     #define FILHSZ 152
366    
367     #endif
368    
369     typedef struct
370     {
371     uint16_t magic; /* type of file */
372     uint16_t vstamp; /* version stamp */
373     uint32_t tsize; /* text size in bytes, padded to FW bdry*/
374     uint32_t dsize; /* initialized data " " */
375     uint32_t bsize; /* uninitialized data " " */
376     uint32_t entry; /* entry pt. */
377     uint32_t text_start; /* base of text used for this file */
378     uint32_t data_start; /* base of all data used for this file */
379    
380     /* NT extra fields; see internal.h for descriptions */
381     uint32_t ImageBase;
382     uint32_t SectionAlignment;
383     uint32_t FileAlignment;
384     uint16_t MajorOperatingSystemVersion;
385     uint16_t MinorOperatingSystemVersion;
386     uint16_t MajorImageVersion;
387     uint16_t MinorImageVersion;
388     uint16_t MajorSubsystemVersion;
389     uint16_t MinorSubsystemVersion;
390     char Reserved1[4];
391     uint32_t SizeOfImage;
392     uint32_t SizeOfHeaders;
393     uint32_t CheckSum;
394     uint16_t Subsystem;
395     uint16_t DllCharacteristics;
396     uint32_t SizeOfStackReserve;
397     uint32_t SizeOfStackCommit;
398     uint32_t SizeOfHeapReserve;
399     uint32_t SizeOfHeapCommit;
400     uint32_t LoaderFlags;
401     uint32_t NumberOfRvaAndSizes;
402     /* IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES]; */
403     char DataDirectory[16][2][4]; /* 16 entries, 2 elements/entry, 4 chars */
404    
405     } PEAOUTHDR;
406    
407    
408     #undef AOUTSZ
409     #define AOUTSZ (AOUTHDRSZ + 196)
410    
411     #undef E_FILNMLEN
412     #define E_FILNMLEN 18 /* # characters in a file name */
413     #endif
414    
415     /* end of coff/pe.h */
416    
417     #define DT_NON (0) /* no derived type */
418     #define DT_PTR (1) /* pointer */
419     #define DT_FCN (2) /* function */
420     #define DT_ARY (3) /* array */
421    
422     #define ISPTR(x) (((x) & N_TMASK) == (DT_PTR << N_BTSHFT))
423     #define ISFCN(x) (((x) & N_TMASK) == (DT_FCN << N_BTSHFT))
424     #define ISARY(x) (((x) & N_TMASK) == (DT_ARY << N_BTSHFT))
425    
426     #ifdef __cplusplus
427     }
428     #endif
429    
430     #endif /* _A_OUT_H_ */
431