]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gas/config/obj-elf.h
2002-06-08 Daniel Jacobowitz <drow@mvista.com>
[thirdparty/binutils-gdb.git] / gas / config / obj-elf.h
1 /* ELF object file format.
2 Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 Free Software Foundation, Inc.
4
5 This file is part of GAS, the GNU Assembler.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
21
22 /* HP PA-RISC support was contributed by the Center for Software Science
23 at the University of Utah. */
24
25 #ifndef _OBJ_ELF_H
26 #define _OBJ_ELF_H
27
28 #define OBJ_ELF 1
29
30 /* Note that all macros in this file should be wrapped in #ifndef, for
31 sake of obj-multi.h which includes this file. */
32
33 #ifndef OUTPUT_FLAVOR
34 #define OUTPUT_FLAVOR bfd_target_elf_flavour
35 #endif
36
37 #include "bfd.h"
38
39 #define BYTES_IN_WORD 4 /* for now */
40 #include "bfd/elf-bfd.h"
41
42 #include "targ-cpu.h"
43
44 #ifdef TC_ALPHA
45 #define ECOFF_DEBUGGING (alpha_flag_mdebug > 0)
46 extern int alpha_flag_mdebug;
47 #endif
48
49 /* For now, always set ECOFF_DEBUGGING for a MIPS target. */
50 #ifdef TC_MIPS
51 #ifdef MIPS_STABS_ELF
52 #define ECOFF_DEBUGGING 0
53 #else
54 #define ECOFF_DEBUGGING (debug_type == DEBUG_ECOFF)
55 #endif /* MIPS_STABS_ELF */
56 #endif /* TC_MIPS */
57
58 #ifdef OBJ_MAYBE_ECOFF
59 #ifndef ECOFF_DEBUGGING
60 #define ECOFF_DEBUGGING 1
61 #endif
62 #endif
63
64 /* Additional information we keep for each symbol. */
65 struct elf_obj_sy
66 {
67 /* Whether the symbol has been marked as local. */
68 int local;
69
70 /* Use this to keep track of .size expressions that involve
71 differences that we can't compute yet. */
72 expressionS *size;
73
74 /* The name specified by the .symver directive. */
75 char *versioned_name;
76
77 #ifdef ECOFF_DEBUGGING
78 /* If we are generating ECOFF debugging information, we need some
79 additional fields for each symbol. */
80 struct efdr *ecoff_file;
81 struct localsym *ecoff_symbol;
82 valueT ecoff_extern_size;
83 #endif
84 };
85
86 #define OBJ_SYMFIELD_TYPE struct elf_obj_sy
87
88 /* Symbol fields used by the ELF back end. */
89 #define ELF_TARGET_SYMBOL_FIELDS int local:1;
90
91 /* Don't change this; change ELF_TARGET_SYMBOL_FIELDS instead. */
92 #define TARGET_SYMBOL_FIELDS ELF_TARGET_SYMBOL_FIELDS
93
94 /* #include "targ-cpu.h" */
95
96 #ifndef FALSE
97 #define FALSE 0
98 #define TRUE !FALSE
99 #endif
100
101 #ifndef obj_begin
102 #define obj_begin() elf_begin ()
103 #endif
104 extern void elf_begin PARAMS ((void));
105
106 /* should be conditional on address size! */
107 #define elf_symbol(asymbol) ((elf_symbol_type *) (&(asymbol)->the_bfd))
108
109 #ifndef S_GET_SIZE
110 #define S_GET_SIZE(S) \
111 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_size)
112 #endif
113 #ifndef S_SET_SIZE
114 #define S_SET_SIZE(S,V) \
115 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_size = (V))
116 #endif
117
118 #ifndef S_GET_ALIGN
119 #define S_GET_ALIGN(S) \
120 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_value)
121 #endif
122 #ifndef S_SET_ALIGN
123 #define S_SET_ALIGN(S,V) \
124 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_value = (V))
125 #endif
126
127 int elf_s_get_other PARAMS ((symbolS *));
128 #ifndef S_GET_OTHER
129 #define S_GET_OTHER(S) (elf_s_get_other (S))
130 #endif
131 #ifndef S_SET_OTHER
132 #define S_SET_OTHER(S,V) \
133 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_other = (V))
134 #endif
135
136 extern asection *gdb_section;
137
138 #ifndef obj_frob_file
139 #define obj_frob_file elf_frob_file
140 #endif
141 extern void elf_frob_file PARAMS ((void));
142
143 #ifndef obj_frob_file_before_adjust
144 #define obj_frob_file_before_adjust elf_frob_file_before_adjust
145 #endif
146 extern void elf_frob_file_before_adjust PARAMS ((void));
147
148 #ifndef obj_frob_file_after_relocs
149 #define obj_frob_file_after_relocs elf_frob_file_after_relocs
150 #endif
151 extern void elf_frob_file_after_relocs PARAMS ((void));
152
153 #ifndef obj_app_file
154 #define obj_app_file elf_file_symbol
155 #endif
156 extern void elf_file_symbol PARAMS ((const char *));
157
158 extern void obj_elf_section_change_hook PARAMS ((void));
159
160 extern void obj_elf_section PARAMS ((int));
161 extern void obj_elf_previous PARAMS ((int));
162 extern void obj_elf_version PARAMS ((int));
163 extern void obj_elf_common PARAMS ((int));
164 extern void obj_elf_data PARAMS ((int));
165 extern void obj_elf_text PARAMS ((int));
166 extern struct fix *obj_elf_vtable_inherit PARAMS ((int));
167 extern struct fix *obj_elf_vtable_entry PARAMS ((int));
168
169 /* BFD wants to write the udata field, which is a no-no for the
170 globally defined sections. */
171 #ifndef obj_sec_sym_ok_for_reloc
172 #define obj_sec_sym_ok_for_reloc(SEC) ((SEC)->owner != 0)
173 #endif
174
175 void elf_obj_read_begin_hook PARAMS ((void));
176 #ifndef obj_read_begin_hook
177 #define obj_read_begin_hook elf_obj_read_begin_hook
178 #endif
179
180 void elf_obj_symbol_new_hook PARAMS ((symbolS *));
181 #ifndef obj_symbol_new_hook
182 #define obj_symbol_new_hook elf_obj_symbol_new_hook
183 #endif
184
185 void elf_copy_symbol_attributes PARAMS ((symbolS *, symbolS *));
186 #ifndef OBJ_COPY_SYMBOL_ATTRIBUTES
187 #define OBJ_COPY_SYMBOL_ATTRIBUTES(DEST, SRC) \
188 (elf_copy_symbol_attributes (DEST, SRC))
189 #endif
190
191 #ifndef SEPARATE_STAB_SECTIONS
192 /* Avoid ifndef each separate macro setting by wrapping the whole of the
193 stab group on the assumption that whoever sets SEPARATE_STAB_SECTIONS
194 caters to ECOFF_DEBUGGING and the right setting of INIT_STAB_SECTIONS
195 and OBJ_PROCESS_STAB too, without needing the tweaks below. */
196
197 /* Stabs go in a separate section. */
198 #define SEPARATE_STAB_SECTIONS 1
199
200 /* We need 12 bytes at the start of the section to hold some initial
201 information. */
202 extern void obj_elf_init_stab_section PARAMS ((segT));
203 #define INIT_STAB_SECTION(seg) obj_elf_init_stab_section (seg)
204
205 #ifdef ECOFF_DEBUGGING
206 /* We smuggle stabs in ECOFF rather than using a separate section.
207 The Irix linker can not handle a separate stabs section. */
208
209 #undef SEPARATE_STAB_SECTIONS
210 #define SEPARATE_STAB_SECTIONS (!ECOFF_DEBUGGING)
211
212 #undef INIT_STAB_SECTION
213 #define INIT_STAB_SECTION(seg) \
214 ((void) (ECOFF_DEBUGGING ? 0 : (obj_elf_init_stab_section (seg), 0)))
215
216 #undef OBJ_PROCESS_STAB
217 #define OBJ_PROCESS_STAB(seg, what, string, type, other, desc) \
218 if (ECOFF_DEBUGGING) \
219 ecoff_stab ((seg), (what), (string), (type), (other), (desc))
220 #endif /* ECOFF_DEBUGGING */
221
222 #endif /* SEPARATE_STAB_SECTIONS not defined. */
223
224 extern void elf_frob_symbol PARAMS ((symbolS *, int *));
225 #ifndef obj_frob_symbol
226 #define obj_frob_symbol(symp, punt) elf_frob_symbol (symp, &punt)
227 #endif
228
229 extern void elf_pop_insert PARAMS ((void));
230 #ifndef obj_pop_insert
231 #define obj_pop_insert() elf_pop_insert()
232 #endif
233
234 #ifndef OBJ_MAYBE_ELF
235 #define obj_ecoff_set_ext elf_ecoff_set_ext
236 #ifdef ANSI_PROTOTYPES
237 struct ecoff_extr;
238 #endif
239 extern void elf_ecoff_set_ext PARAMS ((symbolS *, struct ecoff_extr *));
240 #endif
241
242 #endif /* _OBJ_ELF_H */