1 /* coff information for Sparc.
3 Copyright 2001 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19 /* This file is an amalgamation of several standard include files that
20 define coff format, such as filehdr.h, aouthdr.h, and so forth. In
21 addition, all datatypes have been translated into character arrays of
22 (presumed) equivalent size. This is necessary so that this file can
23 be used with different systems while still yielding the same results. */
26 #define DO_NOT_DEFINE_SYMENT
27 #define DO_NOT_DEFINE_AUXENT
28 #include "coff/external.h"
30 #define F_RELFLG (0x0001) /* relocation info stripped */
31 #define F_EXEC (0x0002) /* file is executable */
32 #define F_LNNO (0x0004) /* line numbers stripped */
33 #define F_LSYMS (0x0008) /* local symbols stripped */
35 #define SPARCMAGIC (0540)
37 /* This is Lynx's all-platform magic number for executables. */
39 #define LYNXCOFFMAGIC (0415)
41 #define OMAGIC 0404 /* object files, eg as output */
42 #define ZMAGIC 0413 /* demand load format, eg normal ld output */
43 #define STMAGIC 0401 /* target shlib */
44 #define SHMAGIC 0443 /* host shlib */
46 /* More names of "special" sections. */
52 /********************** SYMBOLS **********************/
54 #define E_SYMNMLEN (8) /* # characters in a symbol name */
55 #define E_FILNMLEN (14) /* # characters in a file name */
56 #define E_DIMNUM (4) /* # array dimensions in auxiliary entry */
58 struct external_syment
61 char e_name
[E_SYMNMLEN
];
66 #if 0 /* of doubtful value */
69 char e_leading_zero
[1];
84 #define N_BTMASK (0xf)
85 #define N_TMASK (0x30)
92 char x_tagndx
[4]; /* str, un, or enum tag indx */
95 char x_lnno
[2]; /* declaration line number */
96 char x_size
[2]; /* str/union/array size */
98 char x_fsize
[4]; /* size of function */
101 struct { /* if ISFCN, tag, or .bb */
102 char x_lnnoptr
[4]; /* ptr to fcn line # */
103 char x_endndx
[4]; /* entry ndx past block end */
105 struct { /* if ISARY, up to 4 dimen. */
106 char x_dimen
[E_DIMNUM
][2];
109 char x_tvndx
[2]; /* tv index */
113 char x_fname
[E_FILNMLEN
];
121 char x_scnlen
[4]; /* section length */
122 char x_nreloc
[2]; /* # relocation entries */
123 char x_nlinno
[2]; /* # line numbers */
127 char x_tvfill
[4]; /* tv fill value */
128 char x_tvlen
[2]; /* length of .tv */
129 char x_tvran
[2][2]; /* tv range */
130 } x_tv
; /* .tv section info (in auxent of sym .tv)) */
132 char x_fill
[20]; /* forces to 20-byte size */
135 #define SYMENT struct external_syment
137 #define AUXENT union external_auxent
140 #define _ETEXT "etext"
142 /********************** RELOCATION DIRECTIVES **********************/
144 struct external_reloc
153 #define RELOC struct external_reloc