]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - include/coff/arm.h
This commit was manufactured by cvs2svn to create branch
[thirdparty/binutils-gdb.git] / include / coff / arm.h
CommitLineData
db688e87 1/* ARM COFF support for BFD.
c3aa17e9 2 Copyright 1998, 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
db688e87
NC
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,
e172dbf8 18 Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
252b5132
RH
19
20#define COFFARM 1
21
4f1d9bd8
NC
22#define L_LNNO_SIZE 2
23#define INCLUDE_COMDAT_FIELDS_IN_AUXENT
24#include "coff/external.h"
252b5132
RH
25
26/* Bits for f_flags:
4f1d9bd8
NC
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. */
252b5132
RH
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)
c2c594b8 52#define F_SOFT_FLOAT (0x2000)
ca4ebd1e 53#define F_VFP_FLOAT (0x4000)
252b5132
RH
54
55/* Bits stored in flags field of the internal_f structure */
56
57#define F_INTERWORK (0x0010)
252b5132 58#define F_APCS_FLOAT (0x0040)
a74ffb02
NC
59#define F_PIC (0x0080)
60#define F_APCS26 (0x1000)
61#define F_ARM_ARCHITECTURE_MASK (0x4000+0x0800+0x0400)
62#define F_ARM_2 (0x0400)
63#define F_ARM_2a (0x0800)
64#define F_ARM_3 (0x0c00)
65#define F_ARM_3M (0x4000)
66#define F_ARM_4 (0x4400)
67#define F_ARM_4T (0x4800)
849a0ebf 68#define F_ARM_5 (0x4c00)
252b5132
RH
69
70/*
4f1d9bd8
NC
71 ARMMAGIC ought to encoded the procesor type,
72 but it is too late to change it now, instead
73 the flags field of the internal_f structure
74 is used as shown above.
75
76 XXX - NC 5/6/97. */
252b5132 77
056350c6 78#define ARMMAGIC 0xa00 /* I just made this up */
252b5132
RH
79
80#define ARMBADMAG(x) (((x).f_magic != ARMMAGIC))
81
056350c6
NC
82#define ARMPEMAGIC 0x1c0
83#define THUMBPEMAGIC 0x1c2
84
85#undef ARMBADMAG
86#define ARMBADMAG(x) (((x).f_magic != ARMMAGIC) && ((x).f_magic != ARMPEMAGIC) && ((x).f_magic != THUMBPEMAGIC))
87
252b5132
RH
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
252b5132
RH
93/* define some NT default values */
94/* #define NT_IMAGE_BASE 0x400000 moved to internal.h */
95#define NT_SECTION_ALIGNMENT 0x1000
96#define NT_FILE_ALIGNMENT 0x200
97#define NT_DEF_RESERVE 0x100000
98#define NT_DEF_COMMIT 0x1000
99
252b5132
RH
100/* We use the .rdata section to hold read only data. */
101#define _LIT ".rdata"
102
252b5132 103/********************** RELOCATION DIRECTIVES **********************/
056350c6
NC
104#ifdef ARM_WINCE
105struct external_reloc
106{
107 char r_vaddr[4];
108 char r_symndx[4];
109 char r_type[2];
110};
111
112#define RELOC struct external_reloc
113#define RELSZ 10
114
115#else
db688e87
NC
116struct external_reloc
117{
252b5132
RH
118 char r_vaddr[4];
119 char r_symndx[4];
120 char r_type[2];
121 char r_offset[4];
122};
123
252b5132
RH
124#define RELOC struct external_reloc
125#define RELSZ 14
056350c6 126#endif
e16bb312
NC
127
128#define ARM_NOTE_SECTION ".note"