oops, fix an error in the previous entry.
[binutils-gdb.git] / include / coff / arm.h
1 /* ARM COFF support for BFD.
2 Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
3
4 This file is part of BFD, the Binary File Descriptor library.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20 #define COFFARM 1
21
22 #define L_LNNO_SIZE 2
23 #define INCLUDE_COMDAT_FIELDS_IN_AUXENT
24 #include "coff/external.h"
25
26 /* Bits for f_flags:
27 F_RELFLG relocation info stripped from file
28 F_EXEC file is executable (no unresolved external references)
29 F_LNNO line numbers stripped from file
30 F_LSYMS local symbols stripped from file
31 F_INTERWORK file supports switching between ARM and Thumb instruction sets
32 F_INTERWORK_SET the F_INTERWORK bit is valid
33 F_APCS_FLOAT code passes float arguments in float registers
34 F_PIC code is reentrant/position-independent
35 F_AR32WR file has byte ordering of an AR32WR machine (e.g. vax)
36 F_APCS_26 file uses 26 bit ARM Procedure Calling Standard
37 F_APCS_SET the F_APCS_26, F_APCS_FLOAT and F_PIC bits have been initialised
38 F_SOFT_FLOAT code does not use floating point instructions. */
39
40 #define F_RELFLG (0x0001)
41 #define F_EXEC (0x0002)
42 #define F_LNNO (0x0004)
43 #define F_LSYMS (0x0008)
44 #define F_INTERWORK (0x0010)
45 #define F_INTERWORK_SET (0x0020)
46 #define F_APCS_FLOAT (0x0040)
47 #undef F_AR16WR
48 #define F_PIC (0x0080)
49 #define F_AR32WR (0x0100)
50 #define F_APCS_26 (0x0400)
51 #define F_APCS_SET (0x0800)
52 #define F_SOFT_FLOAT (0x2000)
53
54 /* Bits stored in flags field of the internal_f structure */
55
56 #define F_INTERWORK (0x0010)
57 #define F_APCS_FLOAT (0x0040)
58 #define F_PIC (0x0080)
59 #define F_APCS26 (0x1000)
60 #define F_ARM_ARCHITECTURE_MASK (0x4000+0x0800+0x0400)
61 #define F_ARM_2 (0x0400)
62 #define F_ARM_2a (0x0800)
63 #define F_ARM_3 (0x0c00)
64 #define F_ARM_3M (0x4000)
65 #define F_ARM_4 (0x4400)
66 #define F_ARM_4T (0x4800)
67 #define F_ARM_5 (0x4c00)
68
69 /*
70 ARMMAGIC ought to encoded the procesor type,
71 but it is too late to change it now, instead
72 the flags field of the internal_f structure
73 is used as shown above.
74
75 XXX - NC 5/6/97. */
76
77 #define ARMMAGIC 0xa00 /* I just made this up */
78
79 #define ARMBADMAG(x) (((x).f_magic != ARMMAGIC))
80
81 #define ARMPEMAGIC 0x1c0
82 #define THUMBPEMAGIC 0x1c2
83
84 #undef ARMBADMAG
85 #define ARMBADMAG(x) (((x).f_magic != ARMMAGIC) && ((x).f_magic != ARMPEMAGIC) && ((x).f_magic != THUMBPEMAGIC))
86
87 #define OMAGIC 0404 /* object files, eg as output */
88 #define ZMAGIC 0413 /* demand load format, eg normal ld output */
89 #define STMAGIC 0401 /* target shlib */
90 #define SHMAGIC 0443 /* host shlib */
91
92 /* define some NT default values */
93 /* #define NT_IMAGE_BASE 0x400000 moved to internal.h */
94 #define NT_SECTION_ALIGNMENT 0x1000
95 #define NT_FILE_ALIGNMENT 0x200
96 #define NT_DEF_RESERVE 0x100000
97 #define NT_DEF_COMMIT 0x1000
98
99 /* We use the .rdata section to hold read only data. */
100 #define _LIT ".rdata"
101
102 /********************** RELOCATION DIRECTIVES **********************/
103 #ifdef ARM_WINCE
104 struct external_reloc
105 {
106 char r_vaddr[4];
107 char r_symndx[4];
108 char r_type[2];
109 };
110
111 #define RELOC struct external_reloc
112 #define RELSZ 10
113
114 #else
115 struct external_reloc
116 {
117 char r_vaddr[4];
118 char r_symndx[4];
119 char r_type[2];
120 char r_offset[4];
121 };
122
123 #define RELOC struct external_reloc
124 #define RELSZ 14
125 #endif