]> Git Repo - binutils.git/blob - bfd/libelf.h
* config/mips/tm-mips.h (STORE_STRUCT_RETURN): Define as noop as
[binutils.git] / bfd / libelf.h
1 /* BFD back-end data structures for ELF files.
2    Copyright (C) 1992, 1993 Free Software Foundation, Inc.
3    Written by Cygnus Support.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program 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 of the License, or
10 (at your option) any later version.
11
12 This program 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 this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
20
21 #ifndef _LIBELF_H_
22 #define _LIBELF_H_ 1
23
24 #include "elf/common.h"
25 #include "elf/internal.h"
26 #include "elf/external.h"
27
28 /* If size isn't specified as 64 or 32, NAME macro should fail.  */
29 #ifndef NAME
30 #if ARCH_SIZE==64
31 #define NAME(x,y) CAT4(x,64,_,y)
32 #endif
33 #if ARCH_SIZE==32
34 #define NAME(x,y) CAT4(x,32,_,y)
35 #endif
36 #endif
37
38 #ifndef NAME
39 #define NAME(x,y) CAT4(x,NOSIZE,_,y)
40 #endif
41
42 #define ElfNAME(X)      NAME(Elf,X)
43 #define elfNAME(X)      NAME(elf,X)
44
45 typedef struct
46 {
47   asymbol symbol;
48   Elf_Internal_Sym internal_elf_sym;
49   union
50     {
51       unsigned int hppa_arg_reloc;
52       PTR any;
53     }
54   tc_data;
55 } elf_symbol_type;
56
57 struct elf_backend_data
58 {
59   int use_rela_p;
60   int elf_64_p;
61   enum bfd_architecture arch;
62   void (*elf_info_to_howto) PARAMS ((bfd *, arelent *,
63                                      Elf_Internal_Rela *));
64   void (*elf_info_to_howto_rel) PARAMS ((bfd *, arelent *,
65                                          Elf_Internal_Rel *));
66   bfd_vma maxpagesize;
67   void (*write_relocs) PARAMS ((bfd *, asection *, PTR));
68
69   void (*elf_backend_symbol_processing) PARAMS ((bfd *, asymbol *));
70   boolean (*elf_backend_symbol_table_processing) PARAMS ((bfd *, elf_symbol_type *, int));
71   boolean (*elf_backend_section_processing) PARAMS ((bfd *, Elf32_Internal_Shdr *));
72   boolean (*elf_backend_section_from_shdr) PARAMS ((bfd *, Elf32_Internal_Shdr *, char *));
73   boolean (*elf_backend_fake_sections) PARAMS ((bfd *, Elf32_Internal_Shdr *, asection *));
74   boolean (*elf_backend_section_from_bfd_section) PARAMS ((bfd *, Elf32_Internal_Shdr *, asection *));
75 };
76
77 struct elf_sym_extra
78 {
79   int elf_sym_num;              /* sym# after locals/globals are reordered */
80 };
81
82 typedef struct elf_sym_extra Elf_Sym_Extra;
83
84 struct bfd_elf_arch_map {
85   enum bfd_architecture bfd_arch;
86   int elf_arch;
87 };
88
89 extern const struct bfd_elf_arch_map bfd_elf_arch_map[];
90 extern const int bfd_elf_arch_map_size;
91
92 struct bfd_elf_section_data {
93   Elf_Internal_Shdr this_hdr;
94   Elf_Internal_Shdr rel_hdr;
95   int this_idx, rel_idx;
96 };
97 #define elf_section_data(sec)  ((struct bfd_elf_section_data*)sec->used_by_bfd)
98 #define shdr_name(abfd,shdr)    (elf_shstrtab (abfd)->tab + (shdr)->sh_name)
99
100 #define get_elf_backend_data(abfd) \
101   ((struct elf_backend_data *) (abfd)->xvec->backend_data)
102
103 struct strtab
104 {
105   char *tab;
106   int nentries;
107   int length;
108 };
109
110 /* Some private data is stashed away for future use using the tdata pointer
111    in the bfd structure.  */
112
113 struct elf_obj_tdata
114 {
115   Elf_Internal_Ehdr elf_header[1];      /* Actual data, but ref like ptr */
116   Elf_Internal_Shdr **elf_sect_ptr;
117   Elf_Internal_Phdr *phdr;
118   struct strtab *strtab_ptr;
119   int num_locals;
120   int num_globals;
121   Elf_Internal_Sym *internal_syms;
122   elf_symbol_type *symbols;     /* elf_symbol_type */
123   Elf_Sym_Extra *sym_extra;
124   asymbol **section_syms;       /* STT_SECTION symbols for each section */
125   int num_section_syms;         /* number of section_syms allocated */
126   Elf_Internal_Shdr symtab_hdr;
127   Elf_Internal_Shdr shstrtab_hdr;
128   Elf_Internal_Shdr strtab_hdr;
129   int symtab_section, shstrtab_section, strtab_section;
130   file_ptr next_file_pos;
131   void *prstatus;               /* The raw /proc prstatus structure */
132   void *prpsinfo;               /* The raw /proc prpsinfo structure */
133 };
134
135 #define elf_tdata(bfd)          ((bfd) -> tdata.elf_obj_data)
136 #define elf_elfheader(bfd)      (elf_tdata(bfd) -> elf_header)
137 #define elf_elfsections(bfd)    (elf_tdata(bfd) -> elf_sect_ptr)
138 #define elf_shstrtab(bfd)       (elf_tdata(bfd) -> strtab_ptr)
139 #define elf_onesymtab(bfd)      (elf_tdata(bfd) -> symtab_section)
140 #define elf_num_locals(bfd)     (elf_tdata(bfd) -> num_locals)
141 #define elf_num_globals(bfd)    (elf_tdata(bfd) -> num_globals)
142 #define elf_sym_extra(bfd)      (elf_tdata(bfd) -> sym_extra)
143 #define elf_section_syms(bfd)   (elf_tdata(bfd) -> section_syms)
144 #define elf_num_section_syms(bfd) (elf_tdata(bfd) -> num_section_syms)
145 #define core_prpsinfo(bfd)      (elf_tdata(bfd) -> prpsinfo)
146 #define core_prstatus(bfd)      (elf_tdata(bfd) -> prstatus)
147 #define obj_symbols(bfd)        (elf_tdata(bfd) -> symbols)
148 #define obj_internal_syms(bfd)  (elf_tdata(bfd) -> internal_syms)
149
150 extern char * elf_string_from_elf_section PARAMS ((bfd *, unsigned, unsigned));
151 extern char * elf_get_str_section PARAMS ((bfd *, unsigned));
152
153 #define bfd_elf32_mkobject      bfd_elf_mkobject
154 #define bfd_elf64_mkobject      bfd_elf_mkobject
155 #define elf_mkobject            bfd_elf_mkobject
156
157 extern unsigned long bfd_elf_hash PARAMS ((CONST unsigned char *));
158
159 extern bfd_reloc_status_type bfd_elf_generic_reloc PARAMS ((bfd *,
160                                                             arelent *,
161                                                             asymbol *,
162                                                             PTR,
163                                                             asection *,
164                                                             bfd *));
165 extern boolean bfd_elf_mkobject PARAMS ((bfd *));
166 extern Elf_Internal_Shdr *bfd_elf_find_section PARAMS ((bfd *, char *));
167
168 extern boolean bfd_elf32_write_object_contents PARAMS ((bfd *));
169 extern boolean bfd_elf64_write_object_contents PARAMS ((bfd *));
170
171 extern bfd_target *bfd_elf32_object_p PARAMS ((bfd *));
172 extern bfd_target *bfd_elf32_core_file_p PARAMS ((bfd *));
173 extern char *bfd_elf32_core_file_failing_command PARAMS ((bfd *));
174 extern int bfd_elf32_core_file_failing_signal PARAMS ((bfd *));
175 extern boolean bfd_elf32_core_file_matches_executable_p PARAMS ((bfd *,
176                                                                  bfd *));
177 extern boolean bfd_elf32_set_section_contents PARAMS ((bfd *, sec_ptr, PTR,
178                                                        file_ptr,
179                                                        bfd_size_type));
180
181 extern unsigned int bfd_elf32_get_symtab_upper_bound PARAMS ((bfd *));
182 extern unsigned int bfd_elf32_get_symtab PARAMS ((bfd *, asymbol **));
183 extern unsigned int bfd_elf32_get_reloc_upper_bound PARAMS ((bfd *, sec_ptr));
184 extern unsigned int bfd_elf32_canonicalize_reloc PARAMS ((bfd *, sec_ptr,
185                                                           arelent **,
186                                                           asymbol **));
187 extern asymbol *bfd_elf32_make_empty_symbol PARAMS ((bfd *));
188 extern void bfd_elf32_print_symbol PARAMS ((bfd *, PTR, asymbol *,
189                                             bfd_print_symbol_type));
190 extern void bfd_elf32_get_symbol_info PARAMS ((bfd *, asymbol *,
191                                                symbol_info *));
192 extern alent *bfd_elf32_get_lineno PARAMS ((bfd *, asymbol *));
193 extern boolean bfd_elf32_set_arch_mach PARAMS ((bfd *, enum bfd_architecture,
194                                                 unsigned long));
195 extern boolean bfd_elf32_find_nearest_line PARAMS ((bfd *, asection *,
196                                                     asymbol **,
197                                                     bfd_vma, CONST char **,
198                                                     CONST char **,
199                                                     unsigned int *));
200 extern int bfd_elf32_sizeof_headers PARAMS ((bfd *, boolean));
201 extern void bfd_elf32__write_relocs PARAMS ((bfd *, asection *, PTR));
202 extern boolean bfd_elf32_new_section_hook PARAMS ((bfd *, asection *));
203
204 /* If the target doesn't have reloc handling written yet:  */
205 extern void bfd_elf32_no_info_to_howto PARAMS ((bfd *, arelent *,
206                                                 Elf32_Internal_Rela *));
207
208 extern bfd_target *bfd_elf64_object_p PARAMS ((bfd *));
209 extern bfd_target *bfd_elf64_core_file_p PARAMS ((bfd *));
210 extern char *bfd_elf64_core_file_failing_command PARAMS ((bfd *));
211 extern int bfd_elf64_core_file_failing_signal PARAMS ((bfd *));
212 extern boolean bfd_elf64_core_file_matches_executable_p PARAMS ((bfd *,
213                                                                  bfd *));
214 extern boolean bfd_elf64_set_section_contents PARAMS ((bfd *, sec_ptr, PTR,
215                                                        file_ptr,
216                                                        bfd_size_type));
217
218 extern unsigned int bfd_elf64_get_symtab_upper_bound PARAMS ((bfd *));
219 extern unsigned int bfd_elf64_get_symtab PARAMS ((bfd *, asymbol **));
220 extern unsigned int bfd_elf64_get_reloc_upper_bound PARAMS ((bfd *, sec_ptr));
221 extern unsigned int bfd_elf64_canonicalize_reloc PARAMS ((bfd *, sec_ptr,
222                                                           arelent **,
223                                                           asymbol **));
224 extern asymbol *bfd_elf64_make_empty_symbol PARAMS ((bfd *));
225 extern void bfd_elf64_print_symbol PARAMS ((bfd *, PTR, asymbol *,
226                                             bfd_print_symbol_type));
227 extern void bfd_elf64_get_symbol_info PARAMS ((bfd *, asymbol *,
228                                                symbol_info *));
229 extern alent *bfd_elf64_get_lineno PARAMS ((bfd *, asymbol *));
230 extern boolean bfd_elf64_set_arch_mach PARAMS ((bfd *, enum bfd_architecture,
231                                                 unsigned long));
232 extern boolean bfd_elf64_find_nearest_line PARAMS ((bfd *, asection *,
233                                                     asymbol **,
234                                                     bfd_vma, CONST char **,
235                                                     CONST char **,
236                                                     unsigned int *));
237 extern int bfd_elf64_sizeof_headers PARAMS ((bfd *, boolean));
238 extern void bfd_elf64__write_relocs PARAMS ((bfd *, asection *, PTR));
239 extern boolean bfd_elf64_new_section_hook PARAMS ((bfd *, asection *));
240
241 /* If the target doesn't have reloc handling written yet:  */
242 extern void bfd_elf64_no_info_to_howto PARAMS ((bfd *, arelent *,
243                                                 Elf64_Internal_Rela *));
244
245 #endif /* _LIBELF_H_ */
This page took 0.040571 seconds and 4 git commands to generate.