tc-xgate.c: Replace R_XGATE_PCREL_X with BFD_RELOC_XGATE_PCREL_X
[deliverable/binutils-gdb.git] / gas / config / obj-elf.h
CommitLineData
252b5132 1/* ELF object file format.
b3adc24a 2 Copyright (C) 1992-2020 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
9 any later version.
10
11 GAS 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 GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
252b5132
RH
21/* HP PA-RISC support was contributed by the Center for Software Science
22 at the University of Utah. */
23
24#ifndef _OBJ_ELF_H
25#define _OBJ_ELF_H
26
27#define OBJ_ELF 1
28
5110c57e
HPN
29/* Note that all macros in this file should be wrapped in #ifndef, for
30 sake of obj-multi.h which includes this file. */
31
4ca72d38 32#ifndef OUTPUT_FLAVOR
252b5132 33#define OUTPUT_FLAVOR bfd_target_elf_flavour
4ca72d38 34#endif
252b5132 35
252b5132
RH
36#define BYTES_IN_WORD 4 /* for now */
37#include "bfd/elf-bfd.h"
38
49309057
ILT
39#include "targ-cpu.h"
40
41#ifdef TC_ALPHA
a8316fe2 42#define ECOFF_DEBUGGING (alpha_flag_mdebug > 0)
49309057
ILT
43extern int alpha_flag_mdebug;
44#endif
45
46/* For now, always set ECOFF_DEBUGGING for a MIPS target. */
47#ifdef TC_MIPS
ecb4347a
DJ
48#define ECOFF_DEBUGGING mips_flag_mdebug
49extern int mips_flag_mdebug;
49309057
ILT
50#endif /* TC_MIPS */
51
4c63da97
AM
52#ifdef OBJ_MAYBE_ECOFF
53#ifndef ECOFF_DEBUGGING
54#define ECOFF_DEBUGGING 1
55#endif
56#endif
57
6914be53
L
58enum elf_visibility
59{
60 visibility_unchanged = 0,
61 visibility_local,
62 visibility_hidden,
63 visibility_remove
64};
65
66struct elf_versioned_name_list
67{
68 char *name;
69 struct elf_versioned_name_list *next;
70};
71
252b5132 72/* Additional information we keep for each symbol. */
252b5132
RH
73struct elf_obj_sy
74{
49309057 75 /* Whether the symbol has been marked as local. */
6914be53
L
76 unsigned int local : 1;
77
78 /* Whether the symbol has been marked for rename with @@@. */
79 unsigned int rename : 1;
80
81 /* Whether the symbol has a bad version name. */
82 unsigned int bad_version : 1;
83
84 /* Whether visibility of the symbol should be changed. */
85 ENUM_BITFIELD (elf_visibility) visibility : 2;
49309057 86
252b5132
RH
87 /* Use this to keep track of .size expressions that involve
88 differences that we can't compute yet. */
89 expressionS *size;
90
6914be53
L
91 /* The list of names specified by the .symver directive. */
92 struct elf_versioned_name_list *versioned_name;
49309057
ILT
93
94#ifdef ECOFF_DEBUGGING
95 /* If we are generating ECOFF debugging information, we need some
96 additional fields for each symbol. */
97 struct efdr *ecoff_file;
98 struct localsym *ecoff_symbol;
99 valueT ecoff_extern_size;
100#endif
252b5132 101};
252b5132 102
a8c4d40b
L
103/* Match section group name, the sh_info field and the section_id
104 field. */
105struct elf_section_match
106{
107 const char *group_name;
b7d07216 108 const char *linked_to_symbol_name;
a8c4d40b
L
109 unsigned int info;
110 unsigned int section_id;
111 flagword flags;
112};
113
252b5132
RH
114#define OBJ_SYMFIELD_TYPE struct elf_obj_sy
115
252b5132
RH
116#ifndef FALSE
117#define FALSE 0
118#define TRUE !FALSE
119#endif
120
5110c57e 121#ifndef obj_begin
252b5132 122#define obj_begin() elf_begin ()
5110c57e 123#endif
dbe2df79 124extern void elf_begin (void);
252b5132 125
199114c2
AS
126#ifndef LOCAL_LABEL_PREFIX
127#define LOCAL_LABEL_PREFIX '.'
128#endif
129
252b5132 130/* should be conditional on address size! */
814f6641 131#define elf_symbol(asymbol) ((elf_symbol_type *) (&(asymbol)->the_bfd))
252b5132 132
4ca72d38 133#ifndef S_GET_SIZE
49309057
ILT
134#define S_GET_SIZE(S) \
135 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_size)
4ca72d38
AM
136#endif
137#ifndef S_SET_SIZE
252b5132 138#define S_SET_SIZE(S,V) \
49309057 139 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_size = (V))
4ca72d38 140#endif
252b5132 141
4ca72d38 142#ifndef S_GET_ALIGN
49309057
ILT
143#define S_GET_ALIGN(S) \
144 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_value)
4ca72d38
AM
145#endif
146#ifndef S_SET_ALIGN
252b5132 147#define S_SET_ALIGN(S,V) \
49309057 148 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_value = (V))
4ca72d38 149#endif
252b5132 150
dbe2df79 151int elf_s_get_other (symbolS *);
4c63da97
AM
152#ifndef S_GET_OTHER
153#define S_GET_OTHER(S) (elf_s_get_other (S))
154#endif
155#ifndef S_SET_OTHER
252b5132 156#define S_SET_OTHER(S,V) \
49309057 157 (elf_symbol (symbol_get_bfdsym (S))->internal_elf_sym.st_other = (V))
4c63da97 158#endif
252b5132
RH
159
160extern asection *gdb_section;
161
4ca72d38 162#ifndef obj_frob_file
252b5132 163#define obj_frob_file elf_frob_file
4ca72d38 164#endif
dbe2df79 165extern void elf_frob_file (void);
252b5132 166
339681c0
L
167#ifndef obj_frob_file_before_adjust
168#define obj_frob_file_before_adjust elf_frob_file_before_adjust
169#endif
dbe2df79 170extern void elf_frob_file_before_adjust (void);
339681c0 171
4ca72d38 172#ifndef obj_frob_file_after_relocs
252b5132 173#define obj_frob_file_after_relocs elf_frob_file_after_relocs
4ca72d38 174#endif
dbe2df79 175extern void elf_frob_file_after_relocs (void);
252b5132 176
07a53e5c
RH
177/* If the target doesn't have special processing for labels, take care of
178 dwarf2 output at the object file level. */
179#ifndef tc_frob_label
180#include "dwarf2dbg.h"
181#define obj_frob_label dwarf2_emit_label
182#endif
183
5110c57e 184#ifndef obj_app_file
252b5132 185#define obj_app_file elf_file_symbol
5110c57e 186#endif
c04f5787 187extern void elf_file_symbol (const char *, int);
252b5132 188
dbe2df79 189extern void obj_elf_section_change_hook (void);
252b5132 190
dbe2df79 191extern void obj_elf_section (int);
82b8a785 192extern const char * obj_elf_section_name (void);
dbe2df79
AM
193extern void obj_elf_previous (int);
194extern void obj_elf_version (int);
195extern void obj_elf_common (int);
196extern void obj_elf_data (int);
197extern void obj_elf_text (int);
e8cf2216 198extern void obj_elf_change_section
a8c4d40b 199 (const char *, unsigned int, bfd_vma, int, struct elf_section_match *,
a91e1603 200 int, int);
68d20676
NC
201extern void obj_elf_vtable_inherit (int);
202extern void obj_elf_vtable_entry (int);
203extern struct fix * obj_elf_get_vtable_inherit (void);
204extern struct fix * obj_elf_get_vtable_entry (void);
9440a904
RS
205extern bfd_boolean obj_elf_seen_attribute
206 (int, unsigned int);
0420f52b 207extern int obj_elf_vendor_attribute (int);
252b5132
RH
208
209/* BFD wants to write the udata field, which is a no-no for the
a161fe53 210 predefined section symbols in bfd/section.c. They are read-only. */
4ca72d38 211#ifndef obj_sec_sym_ok_for_reloc
252b5132 212#define obj_sec_sym_ok_for_reloc(SEC) ((SEC)->owner != 0)
4ca72d38 213#endif
252b5132 214
dbe2df79 215void elf_obj_read_begin_hook (void);
4c63da97
AM
216#ifndef obj_read_begin_hook
217#define obj_read_begin_hook elf_obj_read_begin_hook
218#endif
219
dbe2df79 220void elf_obj_symbol_new_hook (symbolS *);
4c63da97
AM
221#ifndef obj_symbol_new_hook
222#define obj_symbol_new_hook elf_obj_symbol_new_hook
223#endif
224
dbe2df79 225void elf_copy_symbol_attributes (symbolS *, symbolS *);
4ca72d38 226#ifndef OBJ_COPY_SYMBOL_ATTRIBUTES
8fd3e36b
AM
227#define OBJ_COPY_SYMBOL_ATTRIBUTES(DEST, SRC) \
228 (elf_copy_symbol_attributes (DEST, SRC))
4ca72d38 229#endif
252b5132 230
709001e9
MM
231void elf_adjust_symtab (void);
232#ifndef obj_adjust_symtab
233#define obj_adjust_symtab elf_adjust_symtab
234#endif
235
5110c57e
HPN
236#ifndef SEPARATE_STAB_SECTIONS
237/* Avoid ifndef each separate macro setting by wrapping the whole of the
238 stab group on the assumption that whoever sets SEPARATE_STAB_SECTIONS
239 caters to ECOFF_DEBUGGING and the right setting of INIT_STAB_SECTIONS
240 and OBJ_PROCESS_STAB too, without needing the tweaks below. */
241
252b5132
RH
242/* Stabs go in a separate section. */
243#define SEPARATE_STAB_SECTIONS 1
244
245/* We need 12 bytes at the start of the section to hold some initial
246 information. */
dbe2df79 247extern void obj_elf_init_stab_section (segT);
252b5132
RH
248#define INIT_STAB_SECTION(seg) obj_elf_init_stab_section (seg)
249
252b5132 250#ifdef ECOFF_DEBUGGING
252b5132
RH
251/* We smuggle stabs in ECOFF rather than using a separate section.
252 The Irix linker can not handle a separate stabs section. */
253
254#undef SEPARATE_STAB_SECTIONS
255#define SEPARATE_STAB_SECTIONS (!ECOFF_DEBUGGING)
256
257#undef INIT_STAB_SECTION
258#define INIT_STAB_SECTION(seg) \
814f6641 259 ((void) (ECOFF_DEBUGGING ? 0 : (obj_elf_init_stab_section (seg), 0)))
252b5132 260
4ca72d38 261#undef OBJ_PROCESS_STAB
252b5132
RH
262#define OBJ_PROCESS_STAB(seg, what, string, type, other, desc) \
263 if (ECOFF_DEBUGGING) \
264 ecoff_stab ((seg), (what), (string), (type), (other), (desc))
265#endif /* ECOFF_DEBUGGING */
266
bf514e21 267#endif /* SEPARATE_STAB_SECTIONS not defined. */
5110c57e 268
dbe2df79 269extern void elf_frob_symbol (symbolS *, int *);
252b5132
RH
270#ifndef obj_frob_symbol
271#define obj_frob_symbol(symp, punt) elf_frob_symbol (symp, &punt)
272#endif
273
dbe2df79 274extern void elf_pop_insert (void);
4ca72d38 275#ifndef obj_pop_insert
252b5132 276#define obj_pop_insert() elf_pop_insert()
4ca72d38 277#endif
252b5132
RH
278
279#ifndef OBJ_MAYBE_ELF
ae4a729b 280/* If OBJ_MAYBE_ELF then obj-multi.h will define obj_ecoff_set_ext. */
252b5132 281#define obj_ecoff_set_ext elf_ecoff_set_ext
252b5132 282struct ecoff_extr;
dbe2df79 283extern void elf_ecoff_set_ext (symbolS *, struct ecoff_extr *);
252b5132 284#endif
3b22753a
L
285extern asection *elf_com_section_ptr;
286extern symbolS * elf_common_parse (int ignore ATTRIBUTE_UNUSED, symbolS *symbolP,
287 addressT size);
252b5132
RH
288
289#endif /* _OBJ_ELF_H */
This page took 0.869109 seconds and 4 git commands to generate.