Commit | Line | Data |
---|---|---|
4f1d9bd8 NC |
1 | /* coff information for we32k |
2 | ||
e4e42b45 | 3 | Copyright 2001, 2010 Free Software Foundation, Inc. |
4f1d9bd8 NC |
4 | |
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 | |
e4e42b45 | 7 | the Free Software Foundation; either version 3 of the License, or |
4f1d9bd8 NC |
8 | (at your option) any later version. |
9 | ||
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. | |
14 | ||
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 | |
e4e42b45 NC |
17 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, |
18 | MA 02110-1301, USA. */ | |
19 | ||
4f1d9bd8 NC |
20 | #define L_LNNO_SIZE 2 |
21 | #include "coff/external.h" | |
252b5132 RH |
22 | |
23 | /* Bits for f_flags: | |
4f1d9bd8 NC |
24 | F_RELFLG relocation info stripped from file |
25 | F_EXEC file is executable (no unresolved external references) | |
26 | F_LNNO line numbers stripped from file | |
27 | F_LSYMS local symbols stripped from file | |
28 | F_AR32WR file has byte ordering of an AR32WR machine (e.g. vax). */ | |
252b5132 RH |
29 | |
30 | #define F_RELFLG (0x0001) | |
31 | #define F_EXEC (0x0002) | |
32 | #define F_LNNO (0x0004) | |
33 | #define F_LSYMS (0x0008) | |
34 | #define F_BM32B (0020000) | |
35 | #define F_BM32MAU (0040000) | |
36 | ||
37 | #define WE32KMAGIC 0x170 /* we32k sans transfer vector */ | |
38 | #define FBOMAGIC 0x170 /* we32k sans transfer vector */ | |
39 | #define MTVMAGIC 0x171 /* we32k with transfer vector */ | |
40 | #define RBOMAGIC 0x172 /* reserved */ | |
4f1d9bd8 | 41 | #define WE32KBADMAG(x) ( ((x).f_magic != WE32KMAGIC) \ |
252b5132 RH |
42 | && ((x).f_magic != FBOMAGIC) \ |
43 | && ((x).f_magic != RBOMAGIC) \ | |
44 | && ((x).f_magic != MTVMAGIC)) | |
45 | ||
4f1d9bd8 | 46 | /* More names of "special" sections. */ |
252b5132 RH |
47 | #define _TV ".tv" |
48 | #define _INIT ".init" | |
49 | #define _FINI ".fini" | |
50 | ||
252b5132 RH |
51 | /********************** RELOCATION DIRECTIVES **********************/ |
52 | ||
4f1d9bd8 NC |
53 | struct external_reloc |
54 | { | |
252b5132 RH |
55 | char r_vaddr[4]; |
56 | char r_symndx[4]; | |
57 | char r_type[2]; | |
58 | }; | |
59 | ||
252b5132 RH |
60 | #define RELOC struct external_reloc |
61 | #define RELSZ 10 | |
62 |