]>
Commit | Line | Data |
---|---|---|
b49e97c9 | 1 | /* MIPS-specific support for ELF |
64543e1a | 2 | Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, |
79cda7cf | 3 | 2003, 2004 Free Software Foundation, Inc. |
b49e97c9 TS |
4 | |
5 | Most of the information added by Ian Lance Taylor, Cygnus Support, | |
6 | <[email protected]>. | |
7 | N32/64 ABI support added by Mark Mitchell, CodeSourcery, LLC. | |
8 | <[email protected]> | |
9 | Traditional MIPS targets support added by Koundinya.K, Dansk Data | |
10 | Elektronik & Operations Research Group. <[email protected]> | |
11 | ||
ae9a127f | 12 | This file is part of BFD, the Binary File Descriptor library. |
b49e97c9 | 13 | |
ae9a127f NC |
14 | This program is free software; you can redistribute it and/or modify |
15 | it under the terms of the GNU General Public License as published by | |
16 | the Free Software Foundation; either version 2 of the License, or | |
17 | (at your option) any later version. | |
b49e97c9 | 18 | |
ae9a127f NC |
19 | This program is distributed in the hope that it will be useful, |
20 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 | GNU General Public License for more details. | |
b49e97c9 | 23 | |
ae9a127f NC |
24 | You should have received a copy of the GNU General Public License |
25 | along with this program; if not, write to the Free Software | |
26 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ | |
b49e97c9 TS |
27 | |
28 | /* This file handles functionality common to the different MIPS ABI's. */ | |
29 | ||
30 | #include "bfd.h" | |
31 | #include "sysdep.h" | |
32 | #include "libbfd.h" | |
64543e1a | 33 | #include "libiberty.h" |
b49e97c9 TS |
34 | #include "elf-bfd.h" |
35 | #include "elfxx-mips.h" | |
36 | #include "elf/mips.h" | |
37 | ||
38 | /* Get the ECOFF swapping routines. */ | |
39 | #include "coff/sym.h" | |
40 | #include "coff/symconst.h" | |
41 | #include "coff/ecoff.h" | |
42 | #include "coff/mips.h" | |
43 | ||
b15e6682 AO |
44 | #include "hashtab.h" |
45 | ||
46 | /* This structure is used to hold .got entries while estimating got | |
47 | sizes. */ | |
48 | struct mips_got_entry | |
49 | { | |
50 | /* The input bfd in which the symbol is defined. */ | |
51 | bfd *abfd; | |
f4416af6 AO |
52 | /* The index of the symbol, as stored in the relocation r_info, if |
53 | we have a local symbol; -1 otherwise. */ | |
54 | long symndx; | |
55 | union | |
56 | { | |
57 | /* If abfd == NULL, an address that must be stored in the got. */ | |
58 | bfd_vma address; | |
59 | /* If abfd != NULL && symndx != -1, the addend of the relocation | |
60 | that should be added to the symbol value. */ | |
61 | bfd_vma addend; | |
62 | /* If abfd != NULL && symndx == -1, the hash table entry | |
63 | corresponding to a global symbol in the got (or, local, if | |
64 | h->forced_local). */ | |
65 | struct mips_elf_link_hash_entry *h; | |
66 | } d; | |
b15e6682 | 67 | /* The offset from the beginning of the .got section to the entry |
f4416af6 AO |
68 | corresponding to this symbol+addend. If it's a global symbol |
69 | whose offset is yet to be decided, it's going to be -1. */ | |
70 | long gotidx; | |
b15e6682 AO |
71 | }; |
72 | ||
f0abc2a1 | 73 | /* This structure is used to hold .got information when linking. */ |
b49e97c9 TS |
74 | |
75 | struct mips_got_info | |
76 | { | |
77 | /* The global symbol in the GOT with the lowest index in the dynamic | |
78 | symbol table. */ | |
79 | struct elf_link_hash_entry *global_gotsym; | |
80 | /* The number of global .got entries. */ | |
81 | unsigned int global_gotno; | |
82 | /* The number of local .got entries. */ | |
83 | unsigned int local_gotno; | |
84 | /* The number of local .got entries we have used. */ | |
85 | unsigned int assigned_gotno; | |
b15e6682 AO |
86 | /* A hash table holding members of the got. */ |
87 | struct htab *got_entries; | |
f4416af6 AO |
88 | /* A hash table mapping input bfds to other mips_got_info. NULL |
89 | unless multi-got was necessary. */ | |
90 | struct htab *bfd2got; | |
91 | /* In multi-got links, a pointer to the next got (err, rather, most | |
92 | of the time, it points to the previous got). */ | |
93 | struct mips_got_info *next; | |
94 | }; | |
95 | ||
96 | /* Map an input bfd to a got in a multi-got link. */ | |
97 | ||
98 | struct mips_elf_bfd2got_hash { | |
99 | bfd *bfd; | |
100 | struct mips_got_info *g; | |
101 | }; | |
102 | ||
103 | /* Structure passed when traversing the bfd2got hash table, used to | |
104 | create and merge bfd's gots. */ | |
105 | ||
106 | struct mips_elf_got_per_bfd_arg | |
107 | { | |
108 | /* A hashtable that maps bfds to gots. */ | |
109 | htab_t bfd2got; | |
110 | /* The output bfd. */ | |
111 | bfd *obfd; | |
112 | /* The link information. */ | |
113 | struct bfd_link_info *info; | |
114 | /* A pointer to the primary got, i.e., the one that's going to get | |
115 | the implicit relocations from DT_MIPS_LOCAL_GOTNO and | |
116 | DT_MIPS_GOTSYM. */ | |
117 | struct mips_got_info *primary; | |
118 | /* A non-primary got we're trying to merge with other input bfd's | |
119 | gots. */ | |
120 | struct mips_got_info *current; | |
121 | /* The maximum number of got entries that can be addressed with a | |
122 | 16-bit offset. */ | |
123 | unsigned int max_count; | |
124 | /* The number of local and global entries in the primary got. */ | |
125 | unsigned int primary_count; | |
126 | /* The number of local and global entries in the current got. */ | |
127 | unsigned int current_count; | |
128 | }; | |
129 | ||
130 | /* Another structure used to pass arguments for got entries traversal. */ | |
131 | ||
132 | struct mips_elf_set_global_got_offset_arg | |
133 | { | |
134 | struct mips_got_info *g; | |
135 | int value; | |
136 | unsigned int needed_relocs; | |
137 | struct bfd_link_info *info; | |
b49e97c9 TS |
138 | }; |
139 | ||
f0abc2a1 AM |
140 | struct _mips_elf_section_data |
141 | { | |
142 | struct bfd_elf_section_data elf; | |
143 | union | |
144 | { | |
145 | struct mips_got_info *got_info; | |
146 | bfd_byte *tdata; | |
147 | } u; | |
148 | }; | |
149 | ||
150 | #define mips_elf_section_data(sec) \ | |
68bfbfcc | 151 | ((struct _mips_elf_section_data *) elf_section_data (sec)) |
f0abc2a1 | 152 | |
b49e97c9 TS |
153 | /* This structure is passed to mips_elf_sort_hash_table_f when sorting |
154 | the dynamic symbols. */ | |
155 | ||
156 | struct mips_elf_hash_sort_data | |
157 | { | |
158 | /* The symbol in the global GOT with the lowest dynamic symbol table | |
159 | index. */ | |
160 | struct elf_link_hash_entry *low; | |
161 | /* The least dynamic symbol table index corresponding to a symbol | |
162 | with a GOT entry. */ | |
163 | long min_got_dynindx; | |
f4416af6 AO |
164 | /* The greatest dynamic symbol table index corresponding to a symbol |
165 | with a GOT entry that is not referenced (e.g., a dynamic symbol | |
9e4aeb93 | 166 | with dynamic relocations pointing to it from non-primary GOTs). */ |
f4416af6 | 167 | long max_unref_got_dynindx; |
b49e97c9 TS |
168 | /* The greatest dynamic symbol table index not corresponding to a |
169 | symbol without a GOT entry. */ | |
170 | long max_non_got_dynindx; | |
171 | }; | |
172 | ||
173 | /* The MIPS ELF linker needs additional information for each symbol in | |
174 | the global hash table. */ | |
175 | ||
176 | struct mips_elf_link_hash_entry | |
177 | { | |
178 | struct elf_link_hash_entry root; | |
179 | ||
180 | /* External symbol information. */ | |
181 | EXTR esym; | |
182 | ||
183 | /* Number of R_MIPS_32, R_MIPS_REL32, or R_MIPS_64 relocs against | |
184 | this symbol. */ | |
185 | unsigned int possibly_dynamic_relocs; | |
186 | ||
187 | /* If the R_MIPS_32, R_MIPS_REL32, or R_MIPS_64 reloc is against | |
188 | a readonly section. */ | |
b34976b6 | 189 | bfd_boolean readonly_reloc; |
b49e97c9 | 190 | |
b49e97c9 TS |
191 | /* We must not create a stub for a symbol that has relocations |
192 | related to taking the function's address, i.e. any but | |
193 | R_MIPS_CALL*16 ones -- see "MIPS ABI Supplement, 3rd Edition", | |
194 | p. 4-20. */ | |
b34976b6 | 195 | bfd_boolean no_fn_stub; |
b49e97c9 TS |
196 | |
197 | /* If there is a stub that 32 bit functions should use to call this | |
198 | 16 bit function, this points to the section containing the stub. */ | |
199 | asection *fn_stub; | |
200 | ||
201 | /* Whether we need the fn_stub; this is set if this symbol appears | |
202 | in any relocs other than a 16 bit call. */ | |
b34976b6 | 203 | bfd_boolean need_fn_stub; |
b49e97c9 TS |
204 | |
205 | /* If there is a stub that 16 bit functions should use to call this | |
206 | 32 bit function, this points to the section containing the stub. */ | |
207 | asection *call_stub; | |
208 | ||
209 | /* This is like the call_stub field, but it is used if the function | |
210 | being called returns a floating point value. */ | |
211 | asection *call_fp_stub; | |
7c5fcef7 L |
212 | |
213 | /* Are we forced local? .*/ | |
b34976b6 | 214 | bfd_boolean forced_local; |
b49e97c9 TS |
215 | }; |
216 | ||
217 | /* MIPS ELF linker hash table. */ | |
218 | ||
219 | struct mips_elf_link_hash_table | |
220 | { | |
221 | struct elf_link_hash_table root; | |
222 | #if 0 | |
223 | /* We no longer use this. */ | |
224 | /* String section indices for the dynamic section symbols. */ | |
225 | bfd_size_type dynsym_sec_strindex[SIZEOF_MIPS_DYNSYM_SECNAMES]; | |
226 | #endif | |
227 | /* The number of .rtproc entries. */ | |
228 | bfd_size_type procedure_count; | |
229 | /* The size of the .compact_rel section (if SGI_COMPAT). */ | |
230 | bfd_size_type compact_rel_size; | |
231 | /* This flag indicates that the value of DT_MIPS_RLD_MAP dynamic | |
8dc1a139 | 232 | entry is set to the address of __rld_obj_head as in IRIX5. */ |
b34976b6 | 233 | bfd_boolean use_rld_obj_head; |
b49e97c9 TS |
234 | /* This is the value of the __rld_map or __rld_obj_head symbol. */ |
235 | bfd_vma rld_value; | |
236 | /* This is set if we see any mips16 stub sections. */ | |
b34976b6 | 237 | bfd_boolean mips16_stubs_seen; |
b49e97c9 TS |
238 | }; |
239 | ||
240 | /* Structure used to pass information to mips_elf_output_extsym. */ | |
241 | ||
242 | struct extsym_info | |
243 | { | |
9e4aeb93 RS |
244 | bfd *abfd; |
245 | struct bfd_link_info *info; | |
b49e97c9 TS |
246 | struct ecoff_debug_info *debug; |
247 | const struct ecoff_debug_swap *swap; | |
b34976b6 | 248 | bfd_boolean failed; |
b49e97c9 TS |
249 | }; |
250 | ||
8dc1a139 | 251 | /* The names of the runtime procedure table symbols used on IRIX5. */ |
b49e97c9 TS |
252 | |
253 | static const char * const mips_elf_dynsym_rtproc_names[] = | |
254 | { | |
255 | "_procedure_table", | |
256 | "_procedure_string_table", | |
257 | "_procedure_table_size", | |
258 | NULL | |
259 | }; | |
260 | ||
261 | /* These structures are used to generate the .compact_rel section on | |
8dc1a139 | 262 | IRIX5. */ |
b49e97c9 TS |
263 | |
264 | typedef struct | |
265 | { | |
266 | unsigned long id1; /* Always one? */ | |
267 | unsigned long num; /* Number of compact relocation entries. */ | |
268 | unsigned long id2; /* Always two? */ | |
269 | unsigned long offset; /* The file offset of the first relocation. */ | |
270 | unsigned long reserved0; /* Zero? */ | |
271 | unsigned long reserved1; /* Zero? */ | |
272 | } Elf32_compact_rel; | |
273 | ||
274 | typedef struct | |
275 | { | |
276 | bfd_byte id1[4]; | |
277 | bfd_byte num[4]; | |
278 | bfd_byte id2[4]; | |
279 | bfd_byte offset[4]; | |
280 | bfd_byte reserved0[4]; | |
281 | bfd_byte reserved1[4]; | |
282 | } Elf32_External_compact_rel; | |
283 | ||
284 | typedef struct | |
285 | { | |
286 | unsigned int ctype : 1; /* 1: long 0: short format. See below. */ | |
287 | unsigned int rtype : 4; /* Relocation types. See below. */ | |
288 | unsigned int dist2to : 8; | |
289 | unsigned int relvaddr : 19; /* (VADDR - vaddr of the previous entry)/ 4 */ | |
290 | unsigned long konst; /* KONST field. See below. */ | |
291 | unsigned long vaddr; /* VADDR to be relocated. */ | |
292 | } Elf32_crinfo; | |
293 | ||
294 | typedef struct | |
295 | { | |
296 | unsigned int ctype : 1; /* 1: long 0: short format. See below. */ | |
297 | unsigned int rtype : 4; /* Relocation types. See below. */ | |
298 | unsigned int dist2to : 8; | |
299 | unsigned int relvaddr : 19; /* (VADDR - vaddr of the previous entry)/ 4 */ | |
300 | unsigned long konst; /* KONST field. See below. */ | |
301 | } Elf32_crinfo2; | |
302 | ||
303 | typedef struct | |
304 | { | |
305 | bfd_byte info[4]; | |
306 | bfd_byte konst[4]; | |
307 | bfd_byte vaddr[4]; | |
308 | } Elf32_External_crinfo; | |
309 | ||
310 | typedef struct | |
311 | { | |
312 | bfd_byte info[4]; | |
313 | bfd_byte konst[4]; | |
314 | } Elf32_External_crinfo2; | |
315 | ||
316 | /* These are the constants used to swap the bitfields in a crinfo. */ | |
317 | ||
318 | #define CRINFO_CTYPE (0x1) | |
319 | #define CRINFO_CTYPE_SH (31) | |
320 | #define CRINFO_RTYPE (0xf) | |
321 | #define CRINFO_RTYPE_SH (27) | |
322 | #define CRINFO_DIST2TO (0xff) | |
323 | #define CRINFO_DIST2TO_SH (19) | |
324 | #define CRINFO_RELVADDR (0x7ffff) | |
325 | #define CRINFO_RELVADDR_SH (0) | |
326 | ||
327 | /* A compact relocation info has long (3 words) or short (2 words) | |
328 | formats. A short format doesn't have VADDR field and relvaddr | |
329 | fields contains ((VADDR - vaddr of the previous entry) >> 2). */ | |
330 | #define CRF_MIPS_LONG 1 | |
331 | #define CRF_MIPS_SHORT 0 | |
332 | ||
333 | /* There are 4 types of compact relocation at least. The value KONST | |
334 | has different meaning for each type: | |
335 | ||
336 | (type) (konst) | |
337 | CT_MIPS_REL32 Address in data | |
338 | CT_MIPS_WORD Address in word (XXX) | |
339 | CT_MIPS_GPHI_LO GP - vaddr | |
340 | CT_MIPS_JMPAD Address to jump | |
341 | */ | |
342 | ||
343 | #define CRT_MIPS_REL32 0xa | |
344 | #define CRT_MIPS_WORD 0xb | |
345 | #define CRT_MIPS_GPHI_LO 0xc | |
346 | #define CRT_MIPS_JMPAD 0xd | |
347 | ||
348 | #define mips_elf_set_cr_format(x,format) ((x).ctype = (format)) | |
349 | #define mips_elf_set_cr_type(x,type) ((x).rtype = (type)) | |
350 | #define mips_elf_set_cr_dist2to(x,v) ((x).dist2to = (v)) | |
351 | #define mips_elf_set_cr_relvaddr(x,d) ((x).relvaddr = (d)<<2) | |
352 | \f | |
353 | /* The structure of the runtime procedure descriptor created by the | |
354 | loader for use by the static exception system. */ | |
355 | ||
356 | typedef struct runtime_pdr { | |
ae9a127f NC |
357 | bfd_vma adr; /* Memory address of start of procedure. */ |
358 | long regmask; /* Save register mask. */ | |
359 | long regoffset; /* Save register offset. */ | |
360 | long fregmask; /* Save floating point register mask. */ | |
361 | long fregoffset; /* Save floating point register offset. */ | |
362 | long frameoffset; /* Frame size. */ | |
363 | short framereg; /* Frame pointer register. */ | |
364 | short pcreg; /* Offset or reg of return pc. */ | |
365 | long irpss; /* Index into the runtime string table. */ | |
b49e97c9 | 366 | long reserved; |
ae9a127f | 367 | struct exception_info *exception_info;/* Pointer to exception array. */ |
b49e97c9 TS |
368 | } RPDR, *pRPDR; |
369 | #define cbRPDR sizeof (RPDR) | |
370 | #define rpdNil ((pRPDR) 0) | |
371 | \f | |
372 | static struct bfd_hash_entry *mips_elf_link_hash_newfunc | |
9719ad41 | 373 | (struct bfd_hash_entry *, struct bfd_hash_table *, const char *); |
b49e97c9 | 374 | static void ecoff_swap_rpdr_out |
9719ad41 | 375 | (bfd *, const RPDR *, struct rpdr_ext *); |
b34976b6 | 376 | static bfd_boolean mips_elf_create_procedure_table |
9719ad41 RS |
377 | (void *, bfd *, struct bfd_link_info *, asection *, |
378 | struct ecoff_debug_info *); | |
b34976b6 | 379 | static bfd_boolean mips_elf_check_mips16_stubs |
9719ad41 | 380 | (struct mips_elf_link_hash_entry *, void *); |
b49e97c9 | 381 | static void bfd_mips_elf32_swap_gptab_in |
9719ad41 | 382 | (bfd *, const Elf32_External_gptab *, Elf32_gptab *); |
b49e97c9 | 383 | static void bfd_mips_elf32_swap_gptab_out |
9719ad41 | 384 | (bfd *, const Elf32_gptab *, Elf32_External_gptab *); |
b49e97c9 | 385 | static void bfd_elf32_swap_compact_rel_out |
9719ad41 | 386 | (bfd *, const Elf32_compact_rel *, Elf32_External_compact_rel *); |
b49e97c9 | 387 | static void bfd_elf32_swap_crinfo_out |
9719ad41 | 388 | (bfd *, const Elf32_crinfo *, Elf32_External_crinfo *); |
b49e97c9 | 389 | static int sort_dynamic_relocs |
9719ad41 | 390 | (const void *, const void *); |
f4416af6 | 391 | static int sort_dynamic_relocs_64 |
9719ad41 | 392 | (const void *, const void *); |
b34976b6 | 393 | static bfd_boolean mips_elf_output_extsym |
9719ad41 RS |
394 | (struct mips_elf_link_hash_entry *, void *); |
395 | static int gptab_compare | |
396 | (const void *, const void *); | |
397 | static asection *mips_elf_rel_dyn_section | |
398 | (bfd *, bfd_boolean); | |
399 | static asection *mips_elf_got_section | |
400 | (bfd *, bfd_boolean); | |
b49e97c9 | 401 | static struct mips_got_info *mips_elf_got_info |
9719ad41 RS |
402 | (bfd *, asection **); |
403 | static long mips_elf_get_global_gotsym_index | |
404 | (bfd *abfd); | |
b49e97c9 | 405 | static bfd_vma mips_elf_local_got_index |
9719ad41 | 406 | (bfd *, bfd *, struct bfd_link_info *, bfd_vma); |
b49e97c9 | 407 | static bfd_vma mips_elf_global_got_index |
9719ad41 | 408 | (bfd *, bfd *, struct elf_link_hash_entry *); |
b49e97c9 | 409 | static bfd_vma mips_elf_got_page |
9719ad41 | 410 | (bfd *, bfd *, struct bfd_link_info *, bfd_vma, bfd_vma *); |
b49e97c9 | 411 | static bfd_vma mips_elf_got16_entry |
9719ad41 | 412 | (bfd *, bfd *, struct bfd_link_info *, bfd_vma, bfd_boolean); |
b49e97c9 | 413 | static bfd_vma mips_elf_got_offset_from_index |
9719ad41 | 414 | (bfd *, bfd *, bfd *, bfd_vma); |
b15e6682 | 415 | static struct mips_got_entry *mips_elf_create_local_got_entry |
9719ad41 | 416 | (bfd *, bfd *, struct mips_got_info *, asection *, bfd_vma); |
b34976b6 | 417 | static bfd_boolean mips_elf_sort_hash_table |
9719ad41 | 418 | (struct bfd_link_info *, unsigned long); |
b34976b6 | 419 | static bfd_boolean mips_elf_sort_hash_table_f |
9719ad41 | 420 | (struct mips_elf_link_hash_entry *, void *); |
f4416af6 | 421 | static bfd_boolean mips_elf_record_local_got_symbol |
9719ad41 | 422 | (bfd *, long, bfd_vma, struct mips_got_info *); |
b34976b6 | 423 | static bfd_boolean mips_elf_record_global_got_symbol |
9719ad41 RS |
424 | (struct elf_link_hash_entry *, bfd *, struct bfd_link_info *, |
425 | struct mips_got_info *); | |
b49e97c9 | 426 | static const Elf_Internal_Rela *mips_elf_next_relocation |
9719ad41 | 427 | (bfd *, unsigned int, const Elf_Internal_Rela *, const Elf_Internal_Rela *); |
b34976b6 | 428 | static bfd_boolean mips_elf_local_relocation_p |
9719ad41 RS |
429 | (bfd *, const Elf_Internal_Rela *, asection **, bfd_boolean); |
430 | static bfd_boolean mips_elf_overflow_p | |
431 | (bfd_vma, int); | |
432 | static bfd_vma mips_elf_high | |
433 | (bfd_vma); | |
434 | static bfd_vma mips_elf_higher | |
435 | (bfd_vma); | |
436 | static bfd_vma mips_elf_highest | |
437 | (bfd_vma); | |
b34976b6 | 438 | static bfd_boolean mips_elf_create_compact_rel_section |
9719ad41 | 439 | (bfd *, struct bfd_link_info *); |
b34976b6 | 440 | static bfd_boolean mips_elf_create_got_section |
9719ad41 | 441 | (bfd *, struct bfd_link_info *, bfd_boolean); |
b49e97c9 | 442 | static bfd_reloc_status_type mips_elf_calculate_relocation |
9719ad41 RS |
443 | (bfd *, bfd *, asection *, struct bfd_link_info *, |
444 | const Elf_Internal_Rela *, bfd_vma, reloc_howto_type *, | |
445 | Elf_Internal_Sym *, asection **, bfd_vma *, const char **, | |
446 | bfd_boolean *, bfd_boolean); | |
b49e97c9 | 447 | static bfd_vma mips_elf_obtain_contents |
9719ad41 | 448 | (reloc_howto_type *, const Elf_Internal_Rela *, bfd *, bfd_byte *); |
b34976b6 | 449 | static bfd_boolean mips_elf_perform_relocation |
9719ad41 RS |
450 | (struct bfd_link_info *, reloc_howto_type *, const Elf_Internal_Rela *, |
451 | bfd_vma, bfd *, asection *, bfd_byte *, bfd_boolean); | |
b34976b6 | 452 | static bfd_boolean mips_elf_stub_section_p |
9719ad41 | 453 | (bfd *, asection *); |
b49e97c9 | 454 | static void mips_elf_allocate_dynamic_relocations |
9719ad41 | 455 | (bfd *, unsigned int); |
b34976b6 | 456 | static bfd_boolean mips_elf_create_dynamic_relocation |
9719ad41 RS |
457 | (bfd *, struct bfd_link_info *, const Elf_Internal_Rela *, |
458 | struct mips_elf_link_hash_entry *, asection *, bfd_vma, | |
459 | bfd_vma *, asection *); | |
460 | static void mips_set_isa_flags | |
461 | (bfd *); | |
462 | static INLINE char *elf_mips_abi_name | |
463 | (bfd *); | |
b49e97c9 | 464 | static void mips_elf_irix6_finish_dynamic_symbol |
9719ad41 RS |
465 | (bfd *, const char *, Elf_Internal_Sym *); |
466 | static bfd_boolean mips_mach_extends_p | |
467 | (unsigned long, unsigned long); | |
468 | static bfd_boolean mips_32bit_flags_p | |
469 | (flagword); | |
470 | static INLINE hashval_t mips_elf_hash_bfd_vma | |
471 | (bfd_vma); | |
472 | static hashval_t mips_elf_got_entry_hash | |
473 | (const void *); | |
474 | static int mips_elf_got_entry_eq | |
475 | (const void *, const void *); | |
b49e97c9 | 476 | |
f4416af6 | 477 | static bfd_boolean mips_elf_multi_got |
9719ad41 RS |
478 | (bfd *, struct bfd_link_info *, struct mips_got_info *, |
479 | asection *, bfd_size_type); | |
480 | static hashval_t mips_elf_multi_got_entry_hash | |
481 | (const void *); | |
482 | static int mips_elf_multi_got_entry_eq | |
483 | (const void *, const void *); | |
484 | static hashval_t mips_elf_bfd2got_entry_hash | |
485 | (const void *); | |
486 | static int mips_elf_bfd2got_entry_eq | |
487 | (const void *, const void *); | |
488 | static int mips_elf_make_got_per_bfd | |
489 | (void **, void *); | |
490 | static int mips_elf_merge_gots | |
491 | (void **, void *); | |
492 | static int mips_elf_set_global_got_offset | |
493 | (void **, void *); | |
494 | static int mips_elf_set_no_stub | |
495 | (void **, void *); | |
496 | static int mips_elf_resolve_final_got_entry | |
497 | (void **, void *); | |
f4416af6 | 498 | static void mips_elf_resolve_final_got_entries |
9719ad41 | 499 | (struct mips_got_info *); |
f4416af6 | 500 | static bfd_vma mips_elf_adjust_gp |
9719ad41 | 501 | (bfd *, struct mips_got_info *, bfd *); |
f4416af6 | 502 | static struct mips_got_info *mips_elf_got_for_ibfd |
9719ad41 | 503 | (struct mips_got_info *, bfd *); |
f4416af6 | 504 | |
b49e97c9 TS |
505 | /* This will be used when we sort the dynamic relocation records. */ |
506 | static bfd *reldyn_sorting_bfd; | |
507 | ||
508 | /* Nonzero if ABFD is using the N32 ABI. */ | |
0b25d3e6 | 509 | |
b49e97c9 TS |
510 | #define ABI_N32_P(abfd) \ |
511 | ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI2) != 0) | |
512 | ||
4a14403c | 513 | /* Nonzero if ABFD is using the N64 ABI. */ |
b49e97c9 | 514 | #define ABI_64_P(abfd) \ |
141ff970 | 515 | (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64) |
b49e97c9 | 516 | |
4a14403c TS |
517 | /* Nonzero if ABFD is using NewABI conventions. */ |
518 | #define NEWABI_P(abfd) (ABI_N32_P (abfd) || ABI_64_P (abfd)) | |
519 | ||
520 | /* The IRIX compatibility level we are striving for. */ | |
b49e97c9 TS |
521 | #define IRIX_COMPAT(abfd) \ |
522 | (get_elf_backend_data (abfd)->elf_backend_mips_irix_compat (abfd)) | |
523 | ||
b49e97c9 TS |
524 | /* Whether we are trying to be compatible with IRIX at all. */ |
525 | #define SGI_COMPAT(abfd) \ | |
526 | (IRIX_COMPAT (abfd) != ict_none) | |
527 | ||
528 | /* The name of the options section. */ | |
529 | #define MIPS_ELF_OPTIONS_SECTION_NAME(abfd) \ | |
d80dcc6a | 530 | (NEWABI_P (abfd) ? ".MIPS.options" : ".options") |
b49e97c9 TS |
531 | |
532 | /* The name of the stub section. */ | |
533 | #define MIPS_ELF_STUB_SECTION_NAME(abfd) \ | |
d80dcc6a | 534 | (NEWABI_P (abfd) ? ".MIPS.stubs" : ".stub") |
b49e97c9 TS |
535 | |
536 | /* The size of an external REL relocation. */ | |
537 | #define MIPS_ELF_REL_SIZE(abfd) \ | |
538 | (get_elf_backend_data (abfd)->s->sizeof_rel) | |
539 | ||
540 | /* The size of an external dynamic table entry. */ | |
541 | #define MIPS_ELF_DYN_SIZE(abfd) \ | |
542 | (get_elf_backend_data (abfd)->s->sizeof_dyn) | |
543 | ||
544 | /* The size of a GOT entry. */ | |
545 | #define MIPS_ELF_GOT_SIZE(abfd) \ | |
546 | (get_elf_backend_data (abfd)->s->arch_size / 8) | |
547 | ||
548 | /* The size of a symbol-table entry. */ | |
549 | #define MIPS_ELF_SYM_SIZE(abfd) \ | |
550 | (get_elf_backend_data (abfd)->s->sizeof_sym) | |
551 | ||
552 | /* The default alignment for sections, as a power of two. */ | |
553 | #define MIPS_ELF_LOG_FILE_ALIGN(abfd) \ | |
45d6a902 | 554 | (get_elf_backend_data (abfd)->s->log_file_align) |
b49e97c9 TS |
555 | |
556 | /* Get word-sized data. */ | |
557 | #define MIPS_ELF_GET_WORD(abfd, ptr) \ | |
558 | (ABI_64_P (abfd) ? bfd_get_64 (abfd, ptr) : bfd_get_32 (abfd, ptr)) | |
559 | ||
560 | /* Put out word-sized data. */ | |
561 | #define MIPS_ELF_PUT_WORD(abfd, val, ptr) \ | |
562 | (ABI_64_P (abfd) \ | |
563 | ? bfd_put_64 (abfd, val, ptr) \ | |
564 | : bfd_put_32 (abfd, val, ptr)) | |
565 | ||
566 | /* Add a dynamic symbol table-entry. */ | |
567 | #ifdef BFD64 | |
9719ad41 RS |
568 | #define MIPS_ELF_ADD_DYNAMIC_ENTRY(info, tag, val) \ |
569 | (ABI_64_P (elf_hash_table (info)->dynobj) \ | |
570 | ? bfd_elf64_add_dynamic_entry (info, tag, val) \ | |
571 | : bfd_elf32_add_dynamic_entry (info, tag, val)) | |
b49e97c9 | 572 | #else |
9719ad41 RS |
573 | #define MIPS_ELF_ADD_DYNAMIC_ENTRY(info, tag, val) \ |
574 | (ABI_64_P (elf_hash_table (info)->dynobj) \ | |
575 | ? (abort (), FALSE) \ | |
576 | : bfd_elf32_add_dynamic_entry (info, tag, val)) | |
b49e97c9 TS |
577 | #endif |
578 | ||
579 | #define MIPS_ELF_RTYPE_TO_HOWTO(abfd, rtype, rela) \ | |
580 | (get_elf_backend_data (abfd)->elf_backend_mips_rtype_to_howto (rtype, rela)) | |
581 | ||
4ffba85c AO |
582 | /* Determine whether the internal relocation of index REL_IDX is REL |
583 | (zero) or RELA (non-zero). The assumption is that, if there are | |
584 | two relocation sections for this section, one of them is REL and | |
585 | the other is RELA. If the index of the relocation we're testing is | |
586 | in range for the first relocation section, check that the external | |
587 | relocation size is that for RELA. It is also assumed that, if | |
588 | rel_idx is not in range for the first section, and this first | |
589 | section contains REL relocs, then the relocation is in the second | |
590 | section, that is RELA. */ | |
591 | #define MIPS_RELOC_RELA_P(abfd, sec, rel_idx) \ | |
592 | ((NUM_SHDR_ENTRIES (&elf_section_data (sec)->rel_hdr) \ | |
593 | * get_elf_backend_data (abfd)->s->int_rels_per_ext_rel \ | |
594 | > (bfd_vma)(rel_idx)) \ | |
595 | == (elf_section_data (sec)->rel_hdr.sh_entsize \ | |
596 | == (ABI_64_P (abfd) ? sizeof (Elf64_External_Rela) \ | |
597 | : sizeof (Elf32_External_Rela)))) | |
598 | ||
b49e97c9 TS |
599 | /* In case we're on a 32-bit machine, construct a 64-bit "-1" value |
600 | from smaller values. Start with zero, widen, *then* decrement. */ | |
601 | #define MINUS_ONE (((bfd_vma)0) - 1) | |
602 | ||
603 | /* The number of local .got entries we reserve. */ | |
604 | #define MIPS_RESERVED_GOTNO (2) | |
605 | ||
f4416af6 AO |
606 | /* The offset of $gp from the beginning of the .got section. */ |
607 | #define ELF_MIPS_GP_OFFSET(abfd) (0x7ff0) | |
608 | ||
609 | /* The maximum size of the GOT for it to be addressable using 16-bit | |
610 | offsets from $gp. */ | |
611 | #define MIPS_ELF_GOT_MAX_SIZE(abfd) (ELF_MIPS_GP_OFFSET(abfd) + 0x7fff) | |
612 | ||
6a691779 | 613 | /* Instructions which appear in a stub. */ |
b49e97c9 | 614 | #define STUB_LW(abfd) \ |
f4416af6 AO |
615 | ((ABI_64_P (abfd) \ |
616 | ? 0xdf998010 /* ld t9,0x8010(gp) */ \ | |
617 | : 0x8f998010)) /* lw t9,0x8010(gp) */ | |
b49e97c9 | 618 | #define STUB_MOVE(abfd) \ |
6a691779 TS |
619 | ((ABI_64_P (abfd) \ |
620 | ? 0x03e0782d /* daddu t7,ra */ \ | |
621 | : 0x03e07821)) /* addu t7,ra */ | |
622 | #define STUB_JALR 0x0320f809 /* jalr t9,ra */ | |
b49e97c9 | 623 | #define STUB_LI16(abfd) \ |
6a691779 TS |
624 | ((ABI_64_P (abfd) \ |
625 | ? 0x64180000 /* daddiu t8,zero,0 */ \ | |
626 | : 0x24180000)) /* addiu t8,zero,0 */ | |
b49e97c9 TS |
627 | #define MIPS_FUNCTION_STUB_SIZE (16) |
628 | ||
629 | /* The name of the dynamic interpreter. This is put in the .interp | |
630 | section. */ | |
631 | ||
632 | #define ELF_DYNAMIC_INTERPRETER(abfd) \ | |
633 | (ABI_N32_P (abfd) ? "/usr/lib32/libc.so.1" \ | |
634 | : ABI_64_P (abfd) ? "/usr/lib64/libc.so.1" \ | |
635 | : "/usr/lib/libc.so.1") | |
636 | ||
637 | #ifdef BFD64 | |
ee6423ed AO |
638 | #define MNAME(bfd,pre,pos) \ |
639 | (ABI_64_P (bfd) ? CONCAT4 (pre,64,_,pos) : CONCAT4 (pre,32,_,pos)) | |
b49e97c9 TS |
640 | #define ELF_R_SYM(bfd, i) \ |
641 | (ABI_64_P (bfd) ? ELF64_R_SYM (i) : ELF32_R_SYM (i)) | |
642 | #define ELF_R_TYPE(bfd, i) \ | |
643 | (ABI_64_P (bfd) ? ELF64_MIPS_R_TYPE (i) : ELF32_R_TYPE (i)) | |
644 | #define ELF_R_INFO(bfd, s, t) \ | |
645 | (ABI_64_P (bfd) ? ELF64_R_INFO (s, t) : ELF32_R_INFO (s, t)) | |
646 | #else | |
ee6423ed | 647 | #define MNAME(bfd,pre,pos) CONCAT4 (pre,32,_,pos) |
b49e97c9 TS |
648 | #define ELF_R_SYM(bfd, i) \ |
649 | (ELF32_R_SYM (i)) | |
650 | #define ELF_R_TYPE(bfd, i) \ | |
651 | (ELF32_R_TYPE (i)) | |
652 | #define ELF_R_INFO(bfd, s, t) \ | |
653 | (ELF32_R_INFO (s, t)) | |
654 | #endif | |
655 | \f | |
656 | /* The mips16 compiler uses a couple of special sections to handle | |
657 | floating point arguments. | |
658 | ||
659 | Section names that look like .mips16.fn.FNNAME contain stubs that | |
660 | copy floating point arguments from the fp regs to the gp regs and | |
661 | then jump to FNNAME. If any 32 bit function calls FNNAME, the | |
662 | call should be redirected to the stub instead. If no 32 bit | |
663 | function calls FNNAME, the stub should be discarded. We need to | |
664 | consider any reference to the function, not just a call, because | |
665 | if the address of the function is taken we will need the stub, | |
666 | since the address might be passed to a 32 bit function. | |
667 | ||
668 | Section names that look like .mips16.call.FNNAME contain stubs | |
669 | that copy floating point arguments from the gp regs to the fp | |
670 | regs and then jump to FNNAME. If FNNAME is a 32 bit function, | |
671 | then any 16 bit function that calls FNNAME should be redirected | |
672 | to the stub instead. If FNNAME is not a 32 bit function, the | |
673 | stub should be discarded. | |
674 | ||
675 | .mips16.call.fp.FNNAME sections are similar, but contain stubs | |
676 | which call FNNAME and then copy the return value from the fp regs | |
677 | to the gp regs. These stubs store the return value in $18 while | |
678 | calling FNNAME; any function which might call one of these stubs | |
679 | must arrange to save $18 around the call. (This case is not | |
680 | needed for 32 bit functions that call 16 bit functions, because | |
681 | 16 bit functions always return floating point values in both | |
682 | $f0/$f1 and $2/$3.) | |
683 | ||
684 | Note that in all cases FNNAME might be defined statically. | |
685 | Therefore, FNNAME is not used literally. Instead, the relocation | |
686 | information will indicate which symbol the section is for. | |
687 | ||
688 | We record any stubs that we find in the symbol table. */ | |
689 | ||
690 | #define FN_STUB ".mips16.fn." | |
691 | #define CALL_STUB ".mips16.call." | |
692 | #define CALL_FP_STUB ".mips16.call.fp." | |
693 | \f | |
694 | /* Look up an entry in a MIPS ELF linker hash table. */ | |
695 | ||
696 | #define mips_elf_link_hash_lookup(table, string, create, copy, follow) \ | |
697 | ((struct mips_elf_link_hash_entry *) \ | |
698 | elf_link_hash_lookup (&(table)->root, (string), (create), \ | |
699 | (copy), (follow))) | |
700 | ||
701 | /* Traverse a MIPS ELF linker hash table. */ | |
702 | ||
703 | #define mips_elf_link_hash_traverse(table, func, info) \ | |
704 | (elf_link_hash_traverse \ | |
705 | (&(table)->root, \ | |
9719ad41 | 706 | (bfd_boolean (*) (struct elf_link_hash_entry *, void *)) (func), \ |
b49e97c9 TS |
707 | (info))) |
708 | ||
709 | /* Get the MIPS ELF linker hash table from a link_info structure. */ | |
710 | ||
711 | #define mips_elf_hash_table(p) \ | |
712 | ((struct mips_elf_link_hash_table *) ((p)->hash)) | |
713 | ||
714 | /* Create an entry in a MIPS ELF linker hash table. */ | |
715 | ||
716 | static struct bfd_hash_entry * | |
9719ad41 RS |
717 | mips_elf_link_hash_newfunc (struct bfd_hash_entry *entry, |
718 | struct bfd_hash_table *table, const char *string) | |
b49e97c9 TS |
719 | { |
720 | struct mips_elf_link_hash_entry *ret = | |
721 | (struct mips_elf_link_hash_entry *) entry; | |
722 | ||
723 | /* Allocate the structure if it has not already been allocated by a | |
724 | subclass. */ | |
9719ad41 RS |
725 | if (ret == NULL) |
726 | ret = bfd_hash_allocate (table, sizeof (struct mips_elf_link_hash_entry)); | |
727 | if (ret == NULL) | |
b49e97c9 TS |
728 | return (struct bfd_hash_entry *) ret; |
729 | ||
730 | /* Call the allocation method of the superclass. */ | |
731 | ret = ((struct mips_elf_link_hash_entry *) | |
732 | _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret, | |
733 | table, string)); | |
9719ad41 | 734 | if (ret != NULL) |
b49e97c9 TS |
735 | { |
736 | /* Set local fields. */ | |
737 | memset (&ret->esym, 0, sizeof (EXTR)); | |
738 | /* We use -2 as a marker to indicate that the information has | |
739 | not been set. -1 means there is no associated ifd. */ | |
740 | ret->esym.ifd = -2; | |
741 | ret->possibly_dynamic_relocs = 0; | |
b34976b6 | 742 | ret->readonly_reloc = FALSE; |
b34976b6 | 743 | ret->no_fn_stub = FALSE; |
b49e97c9 | 744 | ret->fn_stub = NULL; |
b34976b6 | 745 | ret->need_fn_stub = FALSE; |
b49e97c9 TS |
746 | ret->call_stub = NULL; |
747 | ret->call_fp_stub = NULL; | |
b34976b6 | 748 | ret->forced_local = FALSE; |
b49e97c9 TS |
749 | } |
750 | ||
751 | return (struct bfd_hash_entry *) ret; | |
752 | } | |
f0abc2a1 AM |
753 | |
754 | bfd_boolean | |
9719ad41 | 755 | _bfd_mips_elf_new_section_hook (bfd *abfd, asection *sec) |
f0abc2a1 AM |
756 | { |
757 | struct _mips_elf_section_data *sdata; | |
758 | bfd_size_type amt = sizeof (*sdata); | |
759 | ||
9719ad41 | 760 | sdata = bfd_zalloc (abfd, amt); |
f0abc2a1 AM |
761 | if (sdata == NULL) |
762 | return FALSE; | |
9719ad41 | 763 | sec->used_by_bfd = sdata; |
f0abc2a1 AM |
764 | |
765 | return _bfd_elf_new_section_hook (abfd, sec); | |
766 | } | |
b49e97c9 TS |
767 | \f |
768 | /* Read ECOFF debugging information from a .mdebug section into a | |
769 | ecoff_debug_info structure. */ | |
770 | ||
b34976b6 | 771 | bfd_boolean |
9719ad41 RS |
772 | _bfd_mips_elf_read_ecoff_info (bfd *abfd, asection *section, |
773 | struct ecoff_debug_info *debug) | |
b49e97c9 TS |
774 | { |
775 | HDRR *symhdr; | |
776 | const struct ecoff_debug_swap *swap; | |
9719ad41 | 777 | char *ext_hdr; |
b49e97c9 TS |
778 | |
779 | swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap; | |
780 | memset (debug, 0, sizeof (*debug)); | |
781 | ||
9719ad41 | 782 | ext_hdr = bfd_malloc (swap->external_hdr_size); |
b49e97c9 TS |
783 | if (ext_hdr == NULL && swap->external_hdr_size != 0) |
784 | goto error_return; | |
785 | ||
9719ad41 | 786 | if (! bfd_get_section_contents (abfd, section, ext_hdr, 0, |
82e51918 | 787 | swap->external_hdr_size)) |
b49e97c9 TS |
788 | goto error_return; |
789 | ||
790 | symhdr = &debug->symbolic_header; | |
791 | (*swap->swap_hdr_in) (abfd, ext_hdr, symhdr); | |
792 | ||
793 | /* The symbolic header contains absolute file offsets and sizes to | |
794 | read. */ | |
795 | #define READ(ptr, offset, count, size, type) \ | |
796 | if (symhdr->count == 0) \ | |
797 | debug->ptr = NULL; \ | |
798 | else \ | |
799 | { \ | |
800 | bfd_size_type amt = (bfd_size_type) size * symhdr->count; \ | |
9719ad41 | 801 | debug->ptr = bfd_malloc (amt); \ |
b49e97c9 TS |
802 | if (debug->ptr == NULL) \ |
803 | goto error_return; \ | |
9719ad41 | 804 | if (bfd_seek (abfd, symhdr->offset, SEEK_SET) != 0 \ |
b49e97c9 TS |
805 | || bfd_bread (debug->ptr, amt, abfd) != amt) \ |
806 | goto error_return; \ | |
807 | } | |
808 | ||
809 | READ (line, cbLineOffset, cbLine, sizeof (unsigned char), unsigned char *); | |
9719ad41 RS |
810 | READ (external_dnr, cbDnOffset, idnMax, swap->external_dnr_size, void *); |
811 | READ (external_pdr, cbPdOffset, ipdMax, swap->external_pdr_size, void *); | |
812 | READ (external_sym, cbSymOffset, isymMax, swap->external_sym_size, void *); | |
813 | READ (external_opt, cbOptOffset, ioptMax, swap->external_opt_size, void *); | |
b49e97c9 TS |
814 | READ (external_aux, cbAuxOffset, iauxMax, sizeof (union aux_ext), |
815 | union aux_ext *); | |
816 | READ (ss, cbSsOffset, issMax, sizeof (char), char *); | |
817 | READ (ssext, cbSsExtOffset, issExtMax, sizeof (char), char *); | |
9719ad41 RS |
818 | READ (external_fdr, cbFdOffset, ifdMax, swap->external_fdr_size, void *); |
819 | READ (external_rfd, cbRfdOffset, crfd, swap->external_rfd_size, void *); | |
820 | READ (external_ext, cbExtOffset, iextMax, swap->external_ext_size, void *); | |
b49e97c9 TS |
821 | #undef READ |
822 | ||
823 | debug->fdr = NULL; | |
824 | debug->adjust = NULL; | |
825 | ||
b34976b6 | 826 | return TRUE; |
b49e97c9 TS |
827 | |
828 | error_return: | |
829 | if (ext_hdr != NULL) | |
830 | free (ext_hdr); | |
831 | if (debug->line != NULL) | |
832 | free (debug->line); | |
833 | if (debug->external_dnr != NULL) | |
834 | free (debug->external_dnr); | |
835 | if (debug->external_pdr != NULL) | |
836 | free (debug->external_pdr); | |
837 | if (debug->external_sym != NULL) | |
838 | free (debug->external_sym); | |
839 | if (debug->external_opt != NULL) | |
840 | free (debug->external_opt); | |
841 | if (debug->external_aux != NULL) | |
842 | free (debug->external_aux); | |
843 | if (debug->ss != NULL) | |
844 | free (debug->ss); | |
845 | if (debug->ssext != NULL) | |
846 | free (debug->ssext); | |
847 | if (debug->external_fdr != NULL) | |
848 | free (debug->external_fdr); | |
849 | if (debug->external_rfd != NULL) | |
850 | free (debug->external_rfd); | |
851 | if (debug->external_ext != NULL) | |
852 | free (debug->external_ext); | |
b34976b6 | 853 | return FALSE; |
b49e97c9 TS |
854 | } |
855 | \f | |
856 | /* Swap RPDR (runtime procedure table entry) for output. */ | |
857 | ||
858 | static void | |
9719ad41 | 859 | ecoff_swap_rpdr_out (bfd *abfd, const RPDR *in, struct rpdr_ext *ex) |
b49e97c9 TS |
860 | { |
861 | H_PUT_S32 (abfd, in->adr, ex->p_adr); | |
862 | H_PUT_32 (abfd, in->regmask, ex->p_regmask); | |
863 | H_PUT_32 (abfd, in->regoffset, ex->p_regoffset); | |
864 | H_PUT_32 (abfd, in->fregmask, ex->p_fregmask); | |
865 | H_PUT_32 (abfd, in->fregoffset, ex->p_fregoffset); | |
866 | H_PUT_32 (abfd, in->frameoffset, ex->p_frameoffset); | |
867 | ||
868 | H_PUT_16 (abfd, in->framereg, ex->p_framereg); | |
869 | H_PUT_16 (abfd, in->pcreg, ex->p_pcreg); | |
870 | ||
871 | H_PUT_32 (abfd, in->irpss, ex->p_irpss); | |
872 | #if 0 /* FIXME */ | |
873 | H_PUT_S32 (abfd, in->exception_info, ex->p_exception_info); | |
874 | #endif | |
875 | } | |
876 | ||
877 | /* Create a runtime procedure table from the .mdebug section. */ | |
878 | ||
b34976b6 | 879 | static bfd_boolean |
9719ad41 RS |
880 | mips_elf_create_procedure_table (void *handle, bfd *abfd, |
881 | struct bfd_link_info *info, asection *s, | |
882 | struct ecoff_debug_info *debug) | |
b49e97c9 TS |
883 | { |
884 | const struct ecoff_debug_swap *swap; | |
885 | HDRR *hdr = &debug->symbolic_header; | |
886 | RPDR *rpdr, *rp; | |
887 | struct rpdr_ext *erp; | |
9719ad41 | 888 | void *rtproc; |
b49e97c9 TS |
889 | struct pdr_ext *epdr; |
890 | struct sym_ext *esym; | |
891 | char *ss, **sv; | |
892 | char *str; | |
893 | bfd_size_type size; | |
894 | bfd_size_type count; | |
895 | unsigned long sindex; | |
896 | unsigned long i; | |
897 | PDR pdr; | |
898 | SYMR sym; | |
899 | const char *no_name_func = _("static procedure (no name)"); | |
900 | ||
901 | epdr = NULL; | |
902 | rpdr = NULL; | |
903 | esym = NULL; | |
904 | ss = NULL; | |
905 | sv = NULL; | |
906 | ||
907 | swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap; | |
908 | ||
909 | sindex = strlen (no_name_func) + 1; | |
910 | count = hdr->ipdMax; | |
911 | if (count > 0) | |
912 | { | |
913 | size = swap->external_pdr_size; | |
914 | ||
9719ad41 | 915 | epdr = bfd_malloc (size * count); |
b49e97c9 TS |
916 | if (epdr == NULL) |
917 | goto error_return; | |
918 | ||
9719ad41 | 919 | if (! _bfd_ecoff_get_accumulated_pdr (handle, (bfd_byte *) epdr)) |
b49e97c9 TS |
920 | goto error_return; |
921 | ||
922 | size = sizeof (RPDR); | |
9719ad41 | 923 | rp = rpdr = bfd_malloc (size * count); |
b49e97c9 TS |
924 | if (rpdr == NULL) |
925 | goto error_return; | |
926 | ||
927 | size = sizeof (char *); | |
9719ad41 | 928 | sv = bfd_malloc (size * count); |
b49e97c9 TS |
929 | if (sv == NULL) |
930 | goto error_return; | |
931 | ||
932 | count = hdr->isymMax; | |
933 | size = swap->external_sym_size; | |
9719ad41 | 934 | esym = bfd_malloc (size * count); |
b49e97c9 TS |
935 | if (esym == NULL) |
936 | goto error_return; | |
937 | ||
9719ad41 | 938 | if (! _bfd_ecoff_get_accumulated_sym (handle, (bfd_byte *) esym)) |
b49e97c9 TS |
939 | goto error_return; |
940 | ||
941 | count = hdr->issMax; | |
9719ad41 | 942 | ss = bfd_malloc (count); |
b49e97c9 TS |
943 | if (ss == NULL) |
944 | goto error_return; | |
9719ad41 | 945 | if (! _bfd_ecoff_get_accumulated_ss (handle, ss)) |
b49e97c9 TS |
946 | goto error_return; |
947 | ||
948 | count = hdr->ipdMax; | |
949 | for (i = 0; i < (unsigned long) count; i++, rp++) | |
950 | { | |
9719ad41 RS |
951 | (*swap->swap_pdr_in) (abfd, epdr + i, &pdr); |
952 | (*swap->swap_sym_in) (abfd, &esym[pdr.isym], &sym); | |
b49e97c9 TS |
953 | rp->adr = sym.value; |
954 | rp->regmask = pdr.regmask; | |
955 | rp->regoffset = pdr.regoffset; | |
956 | rp->fregmask = pdr.fregmask; | |
957 | rp->fregoffset = pdr.fregoffset; | |
958 | rp->frameoffset = pdr.frameoffset; | |
959 | rp->framereg = pdr.framereg; | |
960 | rp->pcreg = pdr.pcreg; | |
961 | rp->irpss = sindex; | |
962 | sv[i] = ss + sym.iss; | |
963 | sindex += strlen (sv[i]) + 1; | |
964 | } | |
965 | } | |
966 | ||
967 | size = sizeof (struct rpdr_ext) * (count + 2) + sindex; | |
968 | size = BFD_ALIGN (size, 16); | |
9719ad41 | 969 | rtproc = bfd_alloc (abfd, size); |
b49e97c9 TS |
970 | if (rtproc == NULL) |
971 | { | |
972 | mips_elf_hash_table (info)->procedure_count = 0; | |
973 | goto error_return; | |
974 | } | |
975 | ||
976 | mips_elf_hash_table (info)->procedure_count = count + 2; | |
977 | ||
9719ad41 | 978 | erp = rtproc; |
b49e97c9 TS |
979 | memset (erp, 0, sizeof (struct rpdr_ext)); |
980 | erp++; | |
981 | str = (char *) rtproc + sizeof (struct rpdr_ext) * (count + 2); | |
982 | strcpy (str, no_name_func); | |
983 | str += strlen (no_name_func) + 1; | |
984 | for (i = 0; i < count; i++) | |
985 | { | |
986 | ecoff_swap_rpdr_out (abfd, rpdr + i, erp + i); | |
987 | strcpy (str, sv[i]); | |
988 | str += strlen (sv[i]) + 1; | |
989 | } | |
990 | H_PUT_S32 (abfd, -1, (erp + count)->p_adr); | |
991 | ||
992 | /* Set the size and contents of .rtproc section. */ | |
993 | s->_raw_size = size; | |
9719ad41 | 994 | s->contents = rtproc; |
b49e97c9 TS |
995 | |
996 | /* Skip this section later on (I don't think this currently | |
997 | matters, but someday it might). */ | |
9719ad41 | 998 | s->link_order_head = NULL; |
b49e97c9 TS |
999 | |
1000 | if (epdr != NULL) | |
1001 | free (epdr); | |
1002 | if (rpdr != NULL) | |
1003 | free (rpdr); | |
1004 | if (esym != NULL) | |
1005 | free (esym); | |
1006 | if (ss != NULL) | |
1007 | free (ss); | |
1008 | if (sv != NULL) | |
1009 | free (sv); | |
1010 | ||
b34976b6 | 1011 | return TRUE; |
b49e97c9 TS |
1012 | |
1013 | error_return: | |
1014 | if (epdr != NULL) | |
1015 | free (epdr); | |
1016 | if (rpdr != NULL) | |
1017 | free (rpdr); | |
1018 | if (esym != NULL) | |
1019 | free (esym); | |
1020 | if (ss != NULL) | |
1021 | free (ss); | |
1022 | if (sv != NULL) | |
1023 | free (sv); | |
b34976b6 | 1024 | return FALSE; |
b49e97c9 TS |
1025 | } |
1026 | ||
1027 | /* Check the mips16 stubs for a particular symbol, and see if we can | |
1028 | discard them. */ | |
1029 | ||
b34976b6 | 1030 | static bfd_boolean |
9719ad41 RS |
1031 | mips_elf_check_mips16_stubs (struct mips_elf_link_hash_entry *h, |
1032 | void *data ATTRIBUTE_UNUSED) | |
b49e97c9 TS |
1033 | { |
1034 | if (h->root.root.type == bfd_link_hash_warning) | |
1035 | h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link; | |
1036 | ||
1037 | if (h->fn_stub != NULL | |
1038 | && ! h->need_fn_stub) | |
1039 | { | |
1040 | /* We don't need the fn_stub; the only references to this symbol | |
1041 | are 16 bit calls. Clobber the size to 0 to prevent it from | |
1042 | being included in the link. */ | |
1043 | h->fn_stub->_raw_size = 0; | |
1044 | h->fn_stub->_cooked_size = 0; | |
1045 | h->fn_stub->flags &= ~SEC_RELOC; | |
1046 | h->fn_stub->reloc_count = 0; | |
1047 | h->fn_stub->flags |= SEC_EXCLUDE; | |
1048 | } | |
1049 | ||
1050 | if (h->call_stub != NULL | |
1051 | && h->root.other == STO_MIPS16) | |
1052 | { | |
1053 | /* We don't need the call_stub; this is a 16 bit function, so | |
1054 | calls from other 16 bit functions are OK. Clobber the size | |
1055 | to 0 to prevent it from being included in the link. */ | |
1056 | h->call_stub->_raw_size = 0; | |
1057 | h->call_stub->_cooked_size = 0; | |
1058 | h->call_stub->flags &= ~SEC_RELOC; | |
1059 | h->call_stub->reloc_count = 0; | |
1060 | h->call_stub->flags |= SEC_EXCLUDE; | |
1061 | } | |
1062 | ||
1063 | if (h->call_fp_stub != NULL | |
1064 | && h->root.other == STO_MIPS16) | |
1065 | { | |
1066 | /* We don't need the call_stub; this is a 16 bit function, so | |
1067 | calls from other 16 bit functions are OK. Clobber the size | |
1068 | to 0 to prevent it from being included in the link. */ | |
1069 | h->call_fp_stub->_raw_size = 0; | |
1070 | h->call_fp_stub->_cooked_size = 0; | |
1071 | h->call_fp_stub->flags &= ~SEC_RELOC; | |
1072 | h->call_fp_stub->reloc_count = 0; | |
1073 | h->call_fp_stub->flags |= SEC_EXCLUDE; | |
1074 | } | |
1075 | ||
b34976b6 | 1076 | return TRUE; |
b49e97c9 TS |
1077 | } |
1078 | \f | |
1079 | bfd_reloc_status_type | |
9719ad41 RS |
1080 | _bfd_mips_elf_gprel16_with_gp (bfd *abfd, asymbol *symbol, |
1081 | arelent *reloc_entry, asection *input_section, | |
1082 | bfd_boolean relocatable, void *data, bfd_vma gp) | |
b49e97c9 TS |
1083 | { |
1084 | bfd_vma relocation; | |
a7ebbfdf | 1085 | bfd_signed_vma val; |
30ac9238 | 1086 | bfd_reloc_status_type status; |
b49e97c9 TS |
1087 | |
1088 | if (bfd_is_com_section (symbol->section)) | |
1089 | relocation = 0; | |
1090 | else | |
1091 | relocation = symbol->value; | |
1092 | ||
1093 | relocation += symbol->section->output_section->vma; | |
1094 | relocation += symbol->section->output_offset; | |
1095 | ||
1096 | if (reloc_entry->address > input_section->_cooked_size) | |
1097 | return bfd_reloc_outofrange; | |
1098 | ||
b49e97c9 | 1099 | /* Set val to the offset into the section or symbol. */ |
a7ebbfdf TS |
1100 | val = reloc_entry->addend; |
1101 | ||
30ac9238 | 1102 | _bfd_mips_elf_sign_extend (val, 16); |
a7ebbfdf | 1103 | |
b49e97c9 | 1104 | /* Adjust val for the final section location and GP value. If we |
1049f94e | 1105 | are producing relocatable output, we don't want to do this for |
b49e97c9 | 1106 | an external symbol. */ |
1049f94e | 1107 | if (! relocatable |
b49e97c9 TS |
1108 | || (symbol->flags & BSF_SECTION_SYM) != 0) |
1109 | val += relocation - gp; | |
1110 | ||
a7ebbfdf TS |
1111 | if (reloc_entry->howto->partial_inplace) |
1112 | { | |
30ac9238 RS |
1113 | status = _bfd_relocate_contents (reloc_entry->howto, abfd, val, |
1114 | (bfd_byte *) data | |
1115 | + reloc_entry->address); | |
1116 | if (status != bfd_reloc_ok) | |
1117 | return status; | |
a7ebbfdf TS |
1118 | } |
1119 | else | |
1120 | reloc_entry->addend = val; | |
b49e97c9 | 1121 | |
1049f94e | 1122 | if (relocatable) |
b49e97c9 | 1123 | reloc_entry->address += input_section->output_offset; |
30ac9238 RS |
1124 | |
1125 | return bfd_reloc_ok; | |
1126 | } | |
1127 | ||
1128 | /* Used to store a REL high-part relocation such as R_MIPS_HI16 or | |
1129 | R_MIPS_GOT16. REL is the relocation, INPUT_SECTION is the section | |
1130 | that contains the relocation field and DATA points to the start of | |
1131 | INPUT_SECTION. */ | |
1132 | ||
1133 | struct mips_hi16 | |
1134 | { | |
1135 | struct mips_hi16 *next; | |
1136 | bfd_byte *data; | |
1137 | asection *input_section; | |
1138 | arelent rel; | |
1139 | }; | |
1140 | ||
1141 | /* FIXME: This should not be a static variable. */ | |
1142 | ||
1143 | static struct mips_hi16 *mips_hi16_list; | |
1144 | ||
1145 | /* A howto special_function for REL *HI16 relocations. We can only | |
1146 | calculate the correct value once we've seen the partnering | |
1147 | *LO16 relocation, so just save the information for later. | |
1148 | ||
1149 | The ABI requires that the *LO16 immediately follow the *HI16. | |
1150 | However, as a GNU extension, we permit an arbitrary number of | |
1151 | *HI16s to be associated with a single *LO16. This significantly | |
1152 | simplies the relocation handling in gcc. */ | |
1153 | ||
1154 | bfd_reloc_status_type | |
1155 | _bfd_mips_elf_hi16_reloc (bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry, | |
1156 | asymbol *symbol ATTRIBUTE_UNUSED, void *data, | |
1157 | asection *input_section, bfd *output_bfd, | |
1158 | char **error_message ATTRIBUTE_UNUSED) | |
1159 | { | |
1160 | struct mips_hi16 *n; | |
1161 | ||
1162 | if (reloc_entry->address > input_section->_cooked_size) | |
1163 | return bfd_reloc_outofrange; | |
1164 | ||
1165 | n = bfd_malloc (sizeof *n); | |
1166 | if (n == NULL) | |
1167 | return bfd_reloc_outofrange; | |
1168 | ||
1169 | n->next = mips_hi16_list; | |
1170 | n->data = data; | |
1171 | n->input_section = input_section; | |
1172 | n->rel = *reloc_entry; | |
1173 | mips_hi16_list = n; | |
1174 | ||
1175 | if (output_bfd != NULL) | |
1176 | reloc_entry->address += input_section->output_offset; | |
1177 | ||
1178 | return bfd_reloc_ok; | |
1179 | } | |
1180 | ||
1181 | /* A howto special_function for REL R_MIPS_GOT16 relocations. This is just | |
1182 | like any other 16-bit relocation when applied to global symbols, but is | |
1183 | treated in the same as R_MIPS_HI16 when applied to local symbols. */ | |
1184 | ||
1185 | bfd_reloc_status_type | |
1186 | _bfd_mips_elf_got16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol, | |
1187 | void *data, asection *input_section, | |
1188 | bfd *output_bfd, char **error_message) | |
1189 | { | |
1190 | if ((symbol->flags & (BSF_GLOBAL | BSF_WEAK)) != 0 | |
1191 | || bfd_is_und_section (bfd_get_section (symbol)) | |
1192 | || bfd_is_com_section (bfd_get_section (symbol))) | |
1193 | /* The relocation is against a global symbol. */ | |
1194 | return _bfd_mips_elf_generic_reloc (abfd, reloc_entry, symbol, data, | |
1195 | input_section, output_bfd, | |
1196 | error_message); | |
1197 | ||
1198 | return _bfd_mips_elf_hi16_reloc (abfd, reloc_entry, symbol, data, | |
1199 | input_section, output_bfd, error_message); | |
1200 | } | |
1201 | ||
1202 | /* A howto special_function for REL *LO16 relocations. The *LO16 itself | |
1203 | is a straightforward 16 bit inplace relocation, but we must deal with | |
1204 | any partnering high-part relocations as well. */ | |
1205 | ||
1206 | bfd_reloc_status_type | |
1207 | _bfd_mips_elf_lo16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol, | |
1208 | void *data, asection *input_section, | |
1209 | bfd *output_bfd, char **error_message) | |
1210 | { | |
1211 | bfd_vma vallo; | |
1212 | ||
1213 | if (reloc_entry->address > input_section->_cooked_size) | |
1214 | return bfd_reloc_outofrange; | |
1215 | ||
1216 | vallo = bfd_get_32 (abfd, (bfd_byte *) data + reloc_entry->address); | |
1217 | while (mips_hi16_list != NULL) | |
1218 | { | |
1219 | bfd_reloc_status_type ret; | |
1220 | struct mips_hi16 *hi; | |
1221 | ||
1222 | hi = mips_hi16_list; | |
1223 | ||
1224 | /* R_MIPS_GOT16 relocations are something of a special case. We | |
1225 | want to install the addend in the same way as for a R_MIPS_HI16 | |
1226 | relocation (with a rightshift of 16). However, since GOT16 | |
1227 | relocations can also be used with global symbols, their howto | |
1228 | has a rightshift of 0. */ | |
1229 | if (hi->rel.howto->type == R_MIPS_GOT16) | |
1230 | hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MIPS_HI16, FALSE); | |
1231 | ||
1232 | /* VALLO is a signed 16-bit number. Bias it by 0x8000 so that any | |
1233 | carry or borrow will induce a change of +1 or -1 in the high part. */ | |
1234 | hi->rel.addend += (vallo + 0x8000) & 0xffff; | |
1235 | ||
1236 | /* R_MIPS_GNU_REL_HI16 relocations are relative to the address of the | |
1237 | lo16 relocation, not their own address. If we're calculating the | |
1238 | final value, and hence subtracting the "PC", subtract the offset | |
1239 | of the lo16 relocation from here. */ | |
1240 | if (output_bfd == NULL && hi->rel.howto->type == R_MIPS_GNU_REL_HI16) | |
1241 | hi->rel.addend -= reloc_entry->address - hi->rel.address; | |
1242 | ||
1243 | ret = _bfd_mips_elf_generic_reloc (abfd, &hi->rel, symbol, hi->data, | |
1244 | hi->input_section, output_bfd, | |
1245 | error_message); | |
1246 | if (ret != bfd_reloc_ok) | |
1247 | return ret; | |
1248 | ||
1249 | mips_hi16_list = hi->next; | |
1250 | free (hi); | |
1251 | } | |
1252 | ||
1253 | return _bfd_mips_elf_generic_reloc (abfd, reloc_entry, symbol, data, | |
1254 | input_section, output_bfd, | |
1255 | error_message); | |
1256 | } | |
1257 | ||
1258 | /* A generic howto special_function. This calculates and installs the | |
1259 | relocation itself, thus avoiding the oft-discussed problems in | |
1260 | bfd_perform_relocation and bfd_install_relocation. */ | |
1261 | ||
1262 | bfd_reloc_status_type | |
1263 | _bfd_mips_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry, | |
1264 | asymbol *symbol, void *data ATTRIBUTE_UNUSED, | |
1265 | asection *input_section, bfd *output_bfd, | |
1266 | char **error_message ATTRIBUTE_UNUSED) | |
1267 | { | |
1268 | bfd_signed_vma val; | |
1269 | bfd_reloc_status_type status; | |
1270 | bfd_boolean relocatable; | |
1271 | ||
1272 | relocatable = (output_bfd != NULL); | |
1273 | ||
1274 | if (reloc_entry->address > input_section->_cooked_size) | |
1275 | return bfd_reloc_outofrange; | |
1276 | ||
1277 | /* Build up the field adjustment in VAL. */ | |
1278 | val = 0; | |
1279 | if (!relocatable || (symbol->flags & BSF_SECTION_SYM) != 0) | |
1280 | { | |
1281 | /* Either we're calculating the final field value or we have a | |
1282 | relocation against a section symbol. Add in the section's | |
1283 | offset or address. */ | |
1284 | val += symbol->section->output_section->vma; | |
1285 | val += symbol->section->output_offset; | |
1286 | } | |
1287 | ||
1288 | if (!relocatable) | |
1289 | { | |
1290 | /* We're calculating the final field value. Add in the symbol's value | |
1291 | and, if pc-relative, subtract the address of the field itself. */ | |
1292 | val += symbol->value; | |
1293 | if (reloc_entry->howto->pc_relative) | |
1294 | { | |
1295 | val -= input_section->output_section->vma; | |
1296 | val -= input_section->output_offset; | |
1297 | val -= reloc_entry->address; | |
1298 | } | |
1299 | } | |
1300 | ||
1301 | /* VAL is now the final adjustment. If we're keeping this relocation | |
1302 | in the output file, and if the relocation uses a separate addend, | |
1303 | we just need to add VAL to that addend. Otherwise we need to add | |
1304 | VAL to the relocation field itself. */ | |
1305 | if (relocatable && !reloc_entry->howto->partial_inplace) | |
1306 | reloc_entry->addend += val; | |
1307 | else | |
1308 | { | |
1309 | /* Add in the separate addend, if any. */ | |
1310 | val += reloc_entry->addend; | |
1311 | ||
1312 | /* Add VAL to the relocation field. */ | |
1313 | status = _bfd_relocate_contents (reloc_entry->howto, abfd, val, | |
1314 | (bfd_byte *) data | |
1315 | + reloc_entry->address); | |
1316 | if (status != bfd_reloc_ok) | |
1317 | return status; | |
1318 | } | |
1319 | ||
1320 | if (relocatable) | |
1321 | reloc_entry->address += input_section->output_offset; | |
b49e97c9 TS |
1322 | |
1323 | return bfd_reloc_ok; | |
1324 | } | |
1325 | \f | |
1326 | /* Swap an entry in a .gptab section. Note that these routines rely | |
1327 | on the equivalence of the two elements of the union. */ | |
1328 | ||
1329 | static void | |
9719ad41 RS |
1330 | bfd_mips_elf32_swap_gptab_in (bfd *abfd, const Elf32_External_gptab *ex, |
1331 | Elf32_gptab *in) | |
b49e97c9 TS |
1332 | { |
1333 | in->gt_entry.gt_g_value = H_GET_32 (abfd, ex->gt_entry.gt_g_value); | |
1334 | in->gt_entry.gt_bytes = H_GET_32 (abfd, ex->gt_entry.gt_bytes); | |
1335 | } | |
1336 | ||
1337 | static void | |
9719ad41 RS |
1338 | bfd_mips_elf32_swap_gptab_out (bfd *abfd, const Elf32_gptab *in, |
1339 | Elf32_External_gptab *ex) | |
b49e97c9 TS |
1340 | { |
1341 | H_PUT_32 (abfd, in->gt_entry.gt_g_value, ex->gt_entry.gt_g_value); | |
1342 | H_PUT_32 (abfd, in->gt_entry.gt_bytes, ex->gt_entry.gt_bytes); | |
1343 | } | |
1344 | ||
1345 | static void | |
9719ad41 RS |
1346 | bfd_elf32_swap_compact_rel_out (bfd *abfd, const Elf32_compact_rel *in, |
1347 | Elf32_External_compact_rel *ex) | |
b49e97c9 TS |
1348 | { |
1349 | H_PUT_32 (abfd, in->id1, ex->id1); | |
1350 | H_PUT_32 (abfd, in->num, ex->num); | |
1351 | H_PUT_32 (abfd, in->id2, ex->id2); | |
1352 | H_PUT_32 (abfd, in->offset, ex->offset); | |
1353 | H_PUT_32 (abfd, in->reserved0, ex->reserved0); | |
1354 | H_PUT_32 (abfd, in->reserved1, ex->reserved1); | |
1355 | } | |
1356 | ||
1357 | static void | |
9719ad41 RS |
1358 | bfd_elf32_swap_crinfo_out (bfd *abfd, const Elf32_crinfo *in, |
1359 | Elf32_External_crinfo *ex) | |
b49e97c9 TS |
1360 | { |
1361 | unsigned long l; | |
1362 | ||
1363 | l = (((in->ctype & CRINFO_CTYPE) << CRINFO_CTYPE_SH) | |
1364 | | ((in->rtype & CRINFO_RTYPE) << CRINFO_RTYPE_SH) | |
1365 | | ((in->dist2to & CRINFO_DIST2TO) << CRINFO_DIST2TO_SH) | |
1366 | | ((in->relvaddr & CRINFO_RELVADDR) << CRINFO_RELVADDR_SH)); | |
1367 | H_PUT_32 (abfd, l, ex->info); | |
1368 | H_PUT_32 (abfd, in->konst, ex->konst); | |
1369 | H_PUT_32 (abfd, in->vaddr, ex->vaddr); | |
1370 | } | |
b49e97c9 TS |
1371 | \f |
1372 | /* A .reginfo section holds a single Elf32_RegInfo structure. These | |
1373 | routines swap this structure in and out. They are used outside of | |
1374 | BFD, so they are globally visible. */ | |
1375 | ||
1376 | void | |
9719ad41 RS |
1377 | bfd_mips_elf32_swap_reginfo_in (bfd *abfd, const Elf32_External_RegInfo *ex, |
1378 | Elf32_RegInfo *in) | |
b49e97c9 TS |
1379 | { |
1380 | in->ri_gprmask = H_GET_32 (abfd, ex->ri_gprmask); | |
1381 | in->ri_cprmask[0] = H_GET_32 (abfd, ex->ri_cprmask[0]); | |
1382 | in->ri_cprmask[1] = H_GET_32 (abfd, ex->ri_cprmask[1]); | |
1383 | in->ri_cprmask[2] = H_GET_32 (abfd, ex->ri_cprmask[2]); | |
1384 | in->ri_cprmask[3] = H_GET_32 (abfd, ex->ri_cprmask[3]); | |
1385 | in->ri_gp_value = H_GET_32 (abfd, ex->ri_gp_value); | |
1386 | } | |
1387 | ||
1388 | void | |
9719ad41 RS |
1389 | bfd_mips_elf32_swap_reginfo_out (bfd *abfd, const Elf32_RegInfo *in, |
1390 | Elf32_External_RegInfo *ex) | |
b49e97c9 TS |
1391 | { |
1392 | H_PUT_32 (abfd, in->ri_gprmask, ex->ri_gprmask); | |
1393 | H_PUT_32 (abfd, in->ri_cprmask[0], ex->ri_cprmask[0]); | |
1394 | H_PUT_32 (abfd, in->ri_cprmask[1], ex->ri_cprmask[1]); | |
1395 | H_PUT_32 (abfd, in->ri_cprmask[2], ex->ri_cprmask[2]); | |
1396 | H_PUT_32 (abfd, in->ri_cprmask[3], ex->ri_cprmask[3]); | |
1397 | H_PUT_32 (abfd, in->ri_gp_value, ex->ri_gp_value); | |
1398 | } | |
1399 | ||
1400 | /* In the 64 bit ABI, the .MIPS.options section holds register | |
1401 | information in an Elf64_Reginfo structure. These routines swap | |
1402 | them in and out. They are globally visible because they are used | |
1403 | outside of BFD. These routines are here so that gas can call them | |
1404 | without worrying about whether the 64 bit ABI has been included. */ | |
1405 | ||
1406 | void | |
9719ad41 RS |
1407 | bfd_mips_elf64_swap_reginfo_in (bfd *abfd, const Elf64_External_RegInfo *ex, |
1408 | Elf64_Internal_RegInfo *in) | |
b49e97c9 TS |
1409 | { |
1410 | in->ri_gprmask = H_GET_32 (abfd, ex->ri_gprmask); | |
1411 | in->ri_pad = H_GET_32 (abfd, ex->ri_pad); | |
1412 | in->ri_cprmask[0] = H_GET_32 (abfd, ex->ri_cprmask[0]); | |
1413 | in->ri_cprmask[1] = H_GET_32 (abfd, ex->ri_cprmask[1]); | |
1414 | in->ri_cprmask[2] = H_GET_32 (abfd, ex->ri_cprmask[2]); | |
1415 | in->ri_cprmask[3] = H_GET_32 (abfd, ex->ri_cprmask[3]); | |
1416 | in->ri_gp_value = H_GET_64 (abfd, ex->ri_gp_value); | |
1417 | } | |
1418 | ||
1419 | void | |
9719ad41 RS |
1420 | bfd_mips_elf64_swap_reginfo_out (bfd *abfd, const Elf64_Internal_RegInfo *in, |
1421 | Elf64_External_RegInfo *ex) | |
b49e97c9 TS |
1422 | { |
1423 | H_PUT_32 (abfd, in->ri_gprmask, ex->ri_gprmask); | |
1424 | H_PUT_32 (abfd, in->ri_pad, ex->ri_pad); | |
1425 | H_PUT_32 (abfd, in->ri_cprmask[0], ex->ri_cprmask[0]); | |
1426 | H_PUT_32 (abfd, in->ri_cprmask[1], ex->ri_cprmask[1]); | |
1427 | H_PUT_32 (abfd, in->ri_cprmask[2], ex->ri_cprmask[2]); | |
1428 | H_PUT_32 (abfd, in->ri_cprmask[3], ex->ri_cprmask[3]); | |
1429 | H_PUT_64 (abfd, in->ri_gp_value, ex->ri_gp_value); | |
1430 | } | |
1431 | ||
1432 | /* Swap in an options header. */ | |
1433 | ||
1434 | void | |
9719ad41 RS |
1435 | bfd_mips_elf_swap_options_in (bfd *abfd, const Elf_External_Options *ex, |
1436 | Elf_Internal_Options *in) | |
b49e97c9 TS |
1437 | { |
1438 | in->kind = H_GET_8 (abfd, ex->kind); | |
1439 | in->size = H_GET_8 (abfd, ex->size); | |
1440 | in->section = H_GET_16 (abfd, ex->section); | |
1441 | in->info = H_GET_32 (abfd, ex->info); | |
1442 | } | |
1443 | ||
1444 | /* Swap out an options header. */ | |
1445 | ||
1446 | void | |
9719ad41 RS |
1447 | bfd_mips_elf_swap_options_out (bfd *abfd, const Elf_Internal_Options *in, |
1448 | Elf_External_Options *ex) | |
b49e97c9 TS |
1449 | { |
1450 | H_PUT_8 (abfd, in->kind, ex->kind); | |
1451 | H_PUT_8 (abfd, in->size, ex->size); | |
1452 | H_PUT_16 (abfd, in->section, ex->section); | |
1453 | H_PUT_32 (abfd, in->info, ex->info); | |
1454 | } | |
1455 | \f | |
1456 | /* This function is called via qsort() to sort the dynamic relocation | |
1457 | entries by increasing r_symndx value. */ | |
1458 | ||
1459 | static int | |
9719ad41 | 1460 | sort_dynamic_relocs (const void *arg1, const void *arg2) |
b49e97c9 | 1461 | { |
947216bf AM |
1462 | Elf_Internal_Rela int_reloc1; |
1463 | Elf_Internal_Rela int_reloc2; | |
b49e97c9 | 1464 | |
947216bf AM |
1465 | bfd_elf32_swap_reloc_in (reldyn_sorting_bfd, arg1, &int_reloc1); |
1466 | bfd_elf32_swap_reloc_in (reldyn_sorting_bfd, arg2, &int_reloc2); | |
b49e97c9 | 1467 | |
947216bf | 1468 | return ELF32_R_SYM (int_reloc1.r_info) - ELF32_R_SYM (int_reloc2.r_info); |
b49e97c9 TS |
1469 | } |
1470 | ||
f4416af6 AO |
1471 | /* Like sort_dynamic_relocs, but used for elf64 relocations. */ |
1472 | ||
1473 | static int | |
9719ad41 | 1474 | sort_dynamic_relocs_64 (const void *arg1, const void *arg2) |
f4416af6 AO |
1475 | { |
1476 | Elf_Internal_Rela int_reloc1[3]; | |
1477 | Elf_Internal_Rela int_reloc2[3]; | |
1478 | ||
1479 | (*get_elf_backend_data (reldyn_sorting_bfd)->s->swap_reloc_in) | |
1480 | (reldyn_sorting_bfd, arg1, int_reloc1); | |
1481 | (*get_elf_backend_data (reldyn_sorting_bfd)->s->swap_reloc_in) | |
1482 | (reldyn_sorting_bfd, arg2, int_reloc2); | |
1483 | ||
1484 | return (ELF64_R_SYM (int_reloc1[0].r_info) | |
1485 | - ELF64_R_SYM (int_reloc2[0].r_info)); | |
1486 | } | |
1487 | ||
1488 | ||
b49e97c9 TS |
1489 | /* This routine is used to write out ECOFF debugging external symbol |
1490 | information. It is called via mips_elf_link_hash_traverse. The | |
1491 | ECOFF external symbol information must match the ELF external | |
1492 | symbol information. Unfortunately, at this point we don't know | |
1493 | whether a symbol is required by reloc information, so the two | |
1494 | tables may wind up being different. We must sort out the external | |
1495 | symbol information before we can set the final size of the .mdebug | |
1496 | section, and we must set the size of the .mdebug section before we | |
1497 | can relocate any sections, and we can't know which symbols are | |
1498 | required by relocation until we relocate the sections. | |
1499 | Fortunately, it is relatively unlikely that any symbol will be | |
1500 | stripped but required by a reloc. In particular, it can not happen | |
1501 | when generating a final executable. */ | |
1502 | ||
b34976b6 | 1503 | static bfd_boolean |
9719ad41 | 1504 | mips_elf_output_extsym (struct mips_elf_link_hash_entry *h, void *data) |
b49e97c9 | 1505 | { |
9719ad41 | 1506 | struct extsym_info *einfo = data; |
b34976b6 | 1507 | bfd_boolean strip; |
b49e97c9 TS |
1508 | asection *sec, *output_section; |
1509 | ||
1510 | if (h->root.root.type == bfd_link_hash_warning) | |
1511 | h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link; | |
1512 | ||
1513 | if (h->root.indx == -2) | |
b34976b6 | 1514 | strip = FALSE; |
b49e97c9 TS |
1515 | else if (((h->root.elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0 |
1516 | || (h->root.elf_link_hash_flags & ELF_LINK_HASH_REF_DYNAMIC) != 0) | |
1517 | && (h->root.elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0 | |
1518 | && (h->root.elf_link_hash_flags & ELF_LINK_HASH_REF_REGULAR) == 0) | |
b34976b6 | 1519 | strip = TRUE; |
b49e97c9 TS |
1520 | else if (einfo->info->strip == strip_all |
1521 | || (einfo->info->strip == strip_some | |
1522 | && bfd_hash_lookup (einfo->info->keep_hash, | |
1523 | h->root.root.root.string, | |
b34976b6 AM |
1524 | FALSE, FALSE) == NULL)) |
1525 | strip = TRUE; | |
b49e97c9 | 1526 | else |
b34976b6 | 1527 | strip = FALSE; |
b49e97c9 TS |
1528 | |
1529 | if (strip) | |
b34976b6 | 1530 | return TRUE; |
b49e97c9 TS |
1531 | |
1532 | if (h->esym.ifd == -2) | |
1533 | { | |
1534 | h->esym.jmptbl = 0; | |
1535 | h->esym.cobol_main = 0; | |
1536 | h->esym.weakext = 0; | |
1537 | h->esym.reserved = 0; | |
1538 | h->esym.ifd = ifdNil; | |
1539 | h->esym.asym.value = 0; | |
1540 | h->esym.asym.st = stGlobal; | |
1541 | ||
1542 | if (h->root.root.type == bfd_link_hash_undefined | |
1543 | || h->root.root.type == bfd_link_hash_undefweak) | |
1544 | { | |
1545 | const char *name; | |
1546 | ||
1547 | /* Use undefined class. Also, set class and type for some | |
1548 | special symbols. */ | |
1549 | name = h->root.root.root.string; | |
1550 | if (strcmp (name, mips_elf_dynsym_rtproc_names[0]) == 0 | |
1551 | || strcmp (name, mips_elf_dynsym_rtproc_names[1]) == 0) | |
1552 | { | |
1553 | h->esym.asym.sc = scData; | |
1554 | h->esym.asym.st = stLabel; | |
1555 | h->esym.asym.value = 0; | |
1556 | } | |
1557 | else if (strcmp (name, mips_elf_dynsym_rtproc_names[2]) == 0) | |
1558 | { | |
1559 | h->esym.asym.sc = scAbs; | |
1560 | h->esym.asym.st = stLabel; | |
1561 | h->esym.asym.value = | |
1562 | mips_elf_hash_table (einfo->info)->procedure_count; | |
1563 | } | |
4a14403c | 1564 | else if (strcmp (name, "_gp_disp") == 0 && ! NEWABI_P (einfo->abfd)) |
b49e97c9 TS |
1565 | { |
1566 | h->esym.asym.sc = scAbs; | |
1567 | h->esym.asym.st = stLabel; | |
1568 | h->esym.asym.value = elf_gp (einfo->abfd); | |
1569 | } | |
1570 | else | |
1571 | h->esym.asym.sc = scUndefined; | |
1572 | } | |
1573 | else if (h->root.root.type != bfd_link_hash_defined | |
1574 | && h->root.root.type != bfd_link_hash_defweak) | |
1575 | h->esym.asym.sc = scAbs; | |
1576 | else | |
1577 | { | |
1578 | const char *name; | |
1579 | ||
1580 | sec = h->root.root.u.def.section; | |
1581 | output_section = sec->output_section; | |
1582 | ||
1583 | /* When making a shared library and symbol h is the one from | |
1584 | the another shared library, OUTPUT_SECTION may be null. */ | |
1585 | if (output_section == NULL) | |
1586 | h->esym.asym.sc = scUndefined; | |
1587 | else | |
1588 | { | |
1589 | name = bfd_section_name (output_section->owner, output_section); | |
1590 | ||
1591 | if (strcmp (name, ".text") == 0) | |
1592 | h->esym.asym.sc = scText; | |
1593 | else if (strcmp (name, ".data") == 0) | |
1594 | h->esym.asym.sc = scData; | |
1595 | else if (strcmp (name, ".sdata") == 0) | |
1596 | h->esym.asym.sc = scSData; | |
1597 | else if (strcmp (name, ".rodata") == 0 | |
1598 | || strcmp (name, ".rdata") == 0) | |
1599 | h->esym.asym.sc = scRData; | |
1600 | else if (strcmp (name, ".bss") == 0) | |
1601 | h->esym.asym.sc = scBss; | |
1602 | else if (strcmp (name, ".sbss") == 0) | |
1603 | h->esym.asym.sc = scSBss; | |
1604 | else if (strcmp (name, ".init") == 0) | |
1605 | h->esym.asym.sc = scInit; | |
1606 | else if (strcmp (name, ".fini") == 0) | |
1607 | h->esym.asym.sc = scFini; | |
1608 | else | |
1609 | h->esym.asym.sc = scAbs; | |
1610 | } | |
1611 | } | |
1612 | ||
1613 | h->esym.asym.reserved = 0; | |
1614 | h->esym.asym.index = indexNil; | |
1615 | } | |
1616 | ||
1617 | if (h->root.root.type == bfd_link_hash_common) | |
1618 | h->esym.asym.value = h->root.root.u.c.size; | |
1619 | else if (h->root.root.type == bfd_link_hash_defined | |
1620 | || h->root.root.type == bfd_link_hash_defweak) | |
1621 | { | |
1622 | if (h->esym.asym.sc == scCommon) | |
1623 | h->esym.asym.sc = scBss; | |
1624 | else if (h->esym.asym.sc == scSCommon) | |
1625 | h->esym.asym.sc = scSBss; | |
1626 | ||
1627 | sec = h->root.root.u.def.section; | |
1628 | output_section = sec->output_section; | |
1629 | if (output_section != NULL) | |
1630 | h->esym.asym.value = (h->root.root.u.def.value | |
1631 | + sec->output_offset | |
1632 | + output_section->vma); | |
1633 | else | |
1634 | h->esym.asym.value = 0; | |
1635 | } | |
1636 | else if ((h->root.elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT) != 0) | |
1637 | { | |
1638 | struct mips_elf_link_hash_entry *hd = h; | |
b34976b6 | 1639 | bfd_boolean no_fn_stub = h->no_fn_stub; |
b49e97c9 TS |
1640 | |
1641 | while (hd->root.root.type == bfd_link_hash_indirect) | |
1642 | { | |
1643 | hd = (struct mips_elf_link_hash_entry *)h->root.root.u.i.link; | |
1644 | no_fn_stub = no_fn_stub || hd->no_fn_stub; | |
1645 | } | |
1646 | ||
1647 | if (!no_fn_stub) | |
1648 | { | |
1649 | /* Set type and value for a symbol with a function stub. */ | |
1650 | h->esym.asym.st = stProc; | |
1651 | sec = hd->root.root.u.def.section; | |
1652 | if (sec == NULL) | |
1653 | h->esym.asym.value = 0; | |
1654 | else | |
1655 | { | |
1656 | output_section = sec->output_section; | |
1657 | if (output_section != NULL) | |
1658 | h->esym.asym.value = (hd->root.plt.offset | |
1659 | + sec->output_offset | |
1660 | + output_section->vma); | |
1661 | else | |
1662 | h->esym.asym.value = 0; | |
1663 | } | |
1664 | #if 0 /* FIXME? */ | |
1665 | h->esym.ifd = 0; | |
1666 | #endif | |
1667 | } | |
1668 | } | |
1669 | ||
1670 | if (! bfd_ecoff_debug_one_external (einfo->abfd, einfo->debug, einfo->swap, | |
1671 | h->root.root.root.string, | |
1672 | &h->esym)) | |
1673 | { | |
b34976b6 AM |
1674 | einfo->failed = TRUE; |
1675 | return FALSE; | |
b49e97c9 TS |
1676 | } |
1677 | ||
b34976b6 | 1678 | return TRUE; |
b49e97c9 TS |
1679 | } |
1680 | ||
1681 | /* A comparison routine used to sort .gptab entries. */ | |
1682 | ||
1683 | static int | |
9719ad41 | 1684 | gptab_compare (const void *p1, const void *p2) |
b49e97c9 | 1685 | { |
9719ad41 RS |
1686 | const Elf32_gptab *a1 = p1; |
1687 | const Elf32_gptab *a2 = p2; | |
b49e97c9 TS |
1688 | |
1689 | return a1->gt_entry.gt_g_value - a2->gt_entry.gt_g_value; | |
1690 | } | |
1691 | \f | |
b15e6682 | 1692 | /* Functions to manage the got entry hash table. */ |
f4416af6 AO |
1693 | |
1694 | /* Use all 64 bits of a bfd_vma for the computation of a 32-bit | |
1695 | hash number. */ | |
1696 | ||
1697 | static INLINE hashval_t | |
9719ad41 | 1698 | mips_elf_hash_bfd_vma (bfd_vma addr) |
f4416af6 AO |
1699 | { |
1700 | #ifdef BFD64 | |
1701 | return addr + (addr >> 32); | |
1702 | #else | |
1703 | return addr; | |
1704 | #endif | |
1705 | } | |
1706 | ||
1707 | /* got_entries only match if they're identical, except for gotidx, so | |
1708 | use all fields to compute the hash, and compare the appropriate | |
1709 | union members. */ | |
1710 | ||
b15e6682 | 1711 | static hashval_t |
9719ad41 | 1712 | mips_elf_got_entry_hash (const void *entry_) |
b15e6682 AO |
1713 | { |
1714 | const struct mips_got_entry *entry = (struct mips_got_entry *)entry_; | |
1715 | ||
38985a1c | 1716 | return entry->symndx |
f4416af6 | 1717 | + (! entry->abfd ? mips_elf_hash_bfd_vma (entry->d.address) |
38985a1c AO |
1718 | : entry->abfd->id |
1719 | + (entry->symndx >= 0 ? mips_elf_hash_bfd_vma (entry->d.addend) | |
1720 | : entry->d.h->root.root.root.hash)); | |
b15e6682 AO |
1721 | } |
1722 | ||
1723 | static int | |
9719ad41 | 1724 | mips_elf_got_entry_eq (const void *entry1, const void *entry2) |
b15e6682 AO |
1725 | { |
1726 | const struct mips_got_entry *e1 = (struct mips_got_entry *)entry1; | |
1727 | const struct mips_got_entry *e2 = (struct mips_got_entry *)entry2; | |
1728 | ||
1729 | return e1->abfd == e2->abfd && e1->symndx == e2->symndx | |
f4416af6 AO |
1730 | && (! e1->abfd ? e1->d.address == e2->d.address |
1731 | : e1->symndx >= 0 ? e1->d.addend == e2->d.addend | |
1732 | : e1->d.h == e2->d.h); | |
1733 | } | |
1734 | ||
1735 | /* multi_got_entries are still a match in the case of global objects, | |
1736 | even if the input bfd in which they're referenced differs, so the | |
1737 | hash computation and compare functions are adjusted | |
1738 | accordingly. */ | |
1739 | ||
1740 | static hashval_t | |
9719ad41 | 1741 | mips_elf_multi_got_entry_hash (const void *entry_) |
f4416af6 AO |
1742 | { |
1743 | const struct mips_got_entry *entry = (struct mips_got_entry *)entry_; | |
1744 | ||
1745 | return entry->symndx | |
1746 | + (! entry->abfd | |
1747 | ? mips_elf_hash_bfd_vma (entry->d.address) | |
1748 | : entry->symndx >= 0 | |
1749 | ? (entry->abfd->id | |
1750 | + mips_elf_hash_bfd_vma (entry->d.addend)) | |
1751 | : entry->d.h->root.root.root.hash); | |
1752 | } | |
1753 | ||
1754 | static int | |
9719ad41 | 1755 | mips_elf_multi_got_entry_eq (const void *entry1, const void *entry2) |
f4416af6 AO |
1756 | { |
1757 | const struct mips_got_entry *e1 = (struct mips_got_entry *)entry1; | |
1758 | const struct mips_got_entry *e2 = (struct mips_got_entry *)entry2; | |
1759 | ||
1760 | return e1->symndx == e2->symndx | |
1761 | && (e1->symndx >= 0 ? e1->abfd == e2->abfd && e1->d.addend == e2->d.addend | |
1762 | : e1->abfd == NULL || e2->abfd == NULL | |
1763 | ? e1->abfd == e2->abfd && e1->d.address == e2->d.address | |
1764 | : e1->d.h == e2->d.h); | |
b15e6682 AO |
1765 | } |
1766 | \f | |
f4416af6 AO |
1767 | /* Returns the dynamic relocation section for DYNOBJ. */ |
1768 | ||
1769 | static asection * | |
9719ad41 | 1770 | mips_elf_rel_dyn_section (bfd *dynobj, bfd_boolean create_p) |
f4416af6 AO |
1771 | { |
1772 | static const char dname[] = ".rel.dyn"; | |
1773 | asection *sreloc; | |
1774 | ||
1775 | sreloc = bfd_get_section_by_name (dynobj, dname); | |
1776 | if (sreloc == NULL && create_p) | |
1777 | { | |
1778 | sreloc = bfd_make_section (dynobj, dname); | |
1779 | if (sreloc == NULL | |
1780 | || ! bfd_set_section_flags (dynobj, sreloc, | |
1781 | (SEC_ALLOC | |
1782 | | SEC_LOAD | |
1783 | | SEC_HAS_CONTENTS | |
1784 | | SEC_IN_MEMORY | |
1785 | | SEC_LINKER_CREATED | |
1786 | | SEC_READONLY)) | |
1787 | || ! bfd_set_section_alignment (dynobj, sreloc, | |
d80dcc6a | 1788 | MIPS_ELF_LOG_FILE_ALIGN (dynobj))) |
f4416af6 AO |
1789 | return NULL; |
1790 | } | |
1791 | return sreloc; | |
1792 | } | |
1793 | ||
b49e97c9 TS |
1794 | /* Returns the GOT section for ABFD. */ |
1795 | ||
1796 | static asection * | |
9719ad41 | 1797 | mips_elf_got_section (bfd *abfd, bfd_boolean maybe_excluded) |
b49e97c9 | 1798 | { |
f4416af6 AO |
1799 | asection *sgot = bfd_get_section_by_name (abfd, ".got"); |
1800 | if (sgot == NULL | |
1801 | || (! maybe_excluded && (sgot->flags & SEC_EXCLUDE) != 0)) | |
1802 | return NULL; | |
1803 | return sgot; | |
b49e97c9 TS |
1804 | } |
1805 | ||
1806 | /* Returns the GOT information associated with the link indicated by | |
1807 | INFO. If SGOTP is non-NULL, it is filled in with the GOT | |
1808 | section. */ | |
1809 | ||
1810 | static struct mips_got_info * | |
9719ad41 | 1811 | mips_elf_got_info (bfd *abfd, asection **sgotp) |
b49e97c9 TS |
1812 | { |
1813 | asection *sgot; | |
1814 | struct mips_got_info *g; | |
1815 | ||
f4416af6 | 1816 | sgot = mips_elf_got_section (abfd, TRUE); |
b49e97c9 | 1817 | BFD_ASSERT (sgot != NULL); |
f0abc2a1 AM |
1818 | BFD_ASSERT (mips_elf_section_data (sgot) != NULL); |
1819 | g = mips_elf_section_data (sgot)->u.got_info; | |
b49e97c9 TS |
1820 | BFD_ASSERT (g != NULL); |
1821 | ||
1822 | if (sgotp) | |
f4416af6 AO |
1823 | *sgotp = (sgot->flags & SEC_EXCLUDE) == 0 ? sgot : NULL; |
1824 | ||
b49e97c9 TS |
1825 | return g; |
1826 | } | |
1827 | ||
0176c794 AO |
1828 | /* Obtain the lowest dynamic index of a symbol that was assigned a |
1829 | global GOT entry. */ | |
1830 | static long | |
9719ad41 | 1831 | mips_elf_get_global_gotsym_index (bfd *abfd) |
0176c794 AO |
1832 | { |
1833 | asection *sgot; | |
1834 | struct mips_got_info *g; | |
1835 | ||
1836 | if (abfd == NULL) | |
1837 | return 0; | |
143d77c5 | 1838 | |
0176c794 AO |
1839 | sgot = mips_elf_got_section (abfd, TRUE); |
1840 | if (sgot == NULL || mips_elf_section_data (sgot) == NULL) | |
1841 | return 0; | |
143d77c5 | 1842 | |
0176c794 AO |
1843 | g = mips_elf_section_data (sgot)->u.got_info; |
1844 | if (g == NULL || g->global_gotsym == NULL) | |
1845 | return 0; | |
143d77c5 | 1846 | |
0176c794 AO |
1847 | return g->global_gotsym->dynindx; |
1848 | } | |
1849 | ||
b49e97c9 TS |
1850 | /* Returns the GOT offset at which the indicated address can be found. |
1851 | If there is not yet a GOT entry for this value, create one. Returns | |
1852 | -1 if no satisfactory GOT offset can be found. */ | |
1853 | ||
1854 | static bfd_vma | |
9719ad41 RS |
1855 | mips_elf_local_got_index (bfd *abfd, bfd *ibfd, struct bfd_link_info *info, |
1856 | bfd_vma value) | |
b49e97c9 TS |
1857 | { |
1858 | asection *sgot; | |
1859 | struct mips_got_info *g; | |
b15e6682 | 1860 | struct mips_got_entry *entry; |
b49e97c9 TS |
1861 | |
1862 | g = mips_elf_got_info (elf_hash_table (info)->dynobj, &sgot); | |
1863 | ||
f4416af6 | 1864 | entry = mips_elf_create_local_got_entry (abfd, ibfd, g, sgot, value); |
b15e6682 AO |
1865 | if (entry) |
1866 | return entry->gotidx; | |
1867 | else | |
1868 | return MINUS_ONE; | |
b49e97c9 TS |
1869 | } |
1870 | ||
1871 | /* Returns the GOT index for the global symbol indicated by H. */ | |
1872 | ||
1873 | static bfd_vma | |
9719ad41 | 1874 | mips_elf_global_got_index (bfd *abfd, bfd *ibfd, struct elf_link_hash_entry *h) |
b49e97c9 TS |
1875 | { |
1876 | bfd_vma index; | |
1877 | asection *sgot; | |
f4416af6 | 1878 | struct mips_got_info *g, *gg; |
d0c7ff07 | 1879 | long global_got_dynindx = 0; |
b49e97c9 | 1880 | |
f4416af6 AO |
1881 | gg = g = mips_elf_got_info (abfd, &sgot); |
1882 | if (g->bfd2got && ibfd) | |
1883 | { | |
1884 | struct mips_got_entry e, *p; | |
143d77c5 | 1885 | |
f4416af6 AO |
1886 | BFD_ASSERT (h->dynindx >= 0); |
1887 | ||
1888 | g = mips_elf_got_for_ibfd (g, ibfd); | |
1889 | if (g->next != gg) | |
1890 | { | |
1891 | e.abfd = ibfd; | |
1892 | e.symndx = -1; | |
1893 | e.d.h = (struct mips_elf_link_hash_entry *)h; | |
1894 | ||
9719ad41 | 1895 | p = htab_find (g->got_entries, &e); |
f4416af6 AO |
1896 | |
1897 | BFD_ASSERT (p->gotidx > 0); | |
1898 | return p->gotidx; | |
1899 | } | |
1900 | } | |
1901 | ||
1902 | if (gg->global_gotsym != NULL) | |
1903 | global_got_dynindx = gg->global_gotsym->dynindx; | |
b49e97c9 TS |
1904 | |
1905 | /* Once we determine the global GOT entry with the lowest dynamic | |
1906 | symbol table index, we must put all dynamic symbols with greater | |
1907 | indices into the GOT. That makes it easy to calculate the GOT | |
1908 | offset. */ | |
d0c7ff07 TS |
1909 | BFD_ASSERT (h->dynindx >= global_got_dynindx); |
1910 | index = ((h->dynindx - global_got_dynindx + g->local_gotno) | |
b49e97c9 TS |
1911 | * MIPS_ELF_GOT_SIZE (abfd)); |
1912 | BFD_ASSERT (index < sgot->_raw_size); | |
1913 | ||
1914 | return index; | |
1915 | } | |
1916 | ||
1917 | /* Find a GOT entry that is within 32KB of the VALUE. These entries | |
1918 | are supposed to be placed at small offsets in the GOT, i.e., | |
1919 | within 32KB of GP. Return the index into the GOT for this page, | |
1920 | and store the offset from this entry to the desired address in | |
1921 | OFFSETP, if it is non-NULL. */ | |
1922 | ||
1923 | static bfd_vma | |
9719ad41 RS |
1924 | mips_elf_got_page (bfd *abfd, bfd *ibfd, struct bfd_link_info *info, |
1925 | bfd_vma value, bfd_vma *offsetp) | |
b49e97c9 TS |
1926 | { |
1927 | asection *sgot; | |
1928 | struct mips_got_info *g; | |
b15e6682 AO |
1929 | bfd_vma index; |
1930 | struct mips_got_entry *entry; | |
b49e97c9 TS |
1931 | |
1932 | g = mips_elf_got_info (elf_hash_table (info)->dynobj, &sgot); | |
1933 | ||
f4416af6 | 1934 | entry = mips_elf_create_local_got_entry (abfd, ibfd, g, sgot, |
b15e6682 AO |
1935 | (value + 0x8000) |
1936 | & (~(bfd_vma)0xffff)); | |
b49e97c9 | 1937 | |
b15e6682 AO |
1938 | if (!entry) |
1939 | return MINUS_ONE; | |
143d77c5 | 1940 | |
b15e6682 | 1941 | index = entry->gotidx; |
b49e97c9 TS |
1942 | |
1943 | if (offsetp) | |
f4416af6 | 1944 | *offsetp = value - entry->d.address; |
b49e97c9 TS |
1945 | |
1946 | return index; | |
1947 | } | |
1948 | ||
1949 | /* Find a GOT entry whose higher-order 16 bits are the same as those | |
1950 | for value. Return the index into the GOT for this entry. */ | |
1951 | ||
1952 | static bfd_vma | |
9719ad41 RS |
1953 | mips_elf_got16_entry (bfd *abfd, bfd *ibfd, struct bfd_link_info *info, |
1954 | bfd_vma value, bfd_boolean external) | |
b49e97c9 TS |
1955 | { |
1956 | asection *sgot; | |
1957 | struct mips_got_info *g; | |
b15e6682 | 1958 | struct mips_got_entry *entry; |
b49e97c9 TS |
1959 | |
1960 | if (! external) | |
1961 | { | |
1962 | /* Although the ABI says that it is "the high-order 16 bits" that we | |
1963 | want, it is really the %high value. The complete value is | |
1964 | calculated with a `addiu' of a LO16 relocation, just as with a | |
1965 | HI16/LO16 pair. */ | |
1966 | value = mips_elf_high (value) << 16; | |
1967 | } | |
1968 | ||
1969 | g = mips_elf_got_info (elf_hash_table (info)->dynobj, &sgot); | |
1970 | ||
f4416af6 | 1971 | entry = mips_elf_create_local_got_entry (abfd, ibfd, g, sgot, value); |
b15e6682 AO |
1972 | if (entry) |
1973 | return entry->gotidx; | |
1974 | else | |
1975 | return MINUS_ONE; | |
b49e97c9 TS |
1976 | } |
1977 | ||
1978 | /* Returns the offset for the entry at the INDEXth position | |
1979 | in the GOT. */ | |
1980 | ||
1981 | static bfd_vma | |
9719ad41 RS |
1982 | mips_elf_got_offset_from_index (bfd *dynobj, bfd *output_bfd, |
1983 | bfd *input_bfd, bfd_vma index) | |
b49e97c9 TS |
1984 | { |
1985 | asection *sgot; | |
1986 | bfd_vma gp; | |
f4416af6 | 1987 | struct mips_got_info *g; |
b49e97c9 | 1988 | |
f4416af6 AO |
1989 | g = mips_elf_got_info (dynobj, &sgot); |
1990 | gp = _bfd_get_gp_value (output_bfd) | |
1991 | + mips_elf_adjust_gp (output_bfd, g, input_bfd); | |
143d77c5 | 1992 | |
f4416af6 | 1993 | return sgot->output_section->vma + sgot->output_offset + index - gp; |
b49e97c9 TS |
1994 | } |
1995 | ||
1996 | /* Create a local GOT entry for VALUE. Return the index of the entry, | |
1997 | or -1 if it could not be created. */ | |
1998 | ||
b15e6682 | 1999 | static struct mips_got_entry * |
9719ad41 RS |
2000 | mips_elf_create_local_got_entry (bfd *abfd, bfd *ibfd, |
2001 | struct mips_got_info *gg, | |
2002 | asection *sgot, bfd_vma value) | |
b49e97c9 | 2003 | { |
b15e6682 | 2004 | struct mips_got_entry entry, **loc; |
f4416af6 | 2005 | struct mips_got_info *g; |
b15e6682 | 2006 | |
f4416af6 AO |
2007 | entry.abfd = NULL; |
2008 | entry.symndx = -1; | |
2009 | entry.d.address = value; | |
2010 | ||
2011 | g = mips_elf_got_for_ibfd (gg, ibfd); | |
2012 | if (g == NULL) | |
2013 | { | |
2014 | g = mips_elf_got_for_ibfd (gg, abfd); | |
2015 | BFD_ASSERT (g != NULL); | |
2016 | } | |
b15e6682 AO |
2017 | |
2018 | loc = (struct mips_got_entry **) htab_find_slot (g->got_entries, &entry, | |
2019 | INSERT); | |
2020 | if (*loc) | |
2021 | return *loc; | |
143d77c5 | 2022 | |
b15e6682 AO |
2023 | entry.gotidx = MIPS_ELF_GOT_SIZE (abfd) * g->assigned_gotno++; |
2024 | ||
2025 | *loc = (struct mips_got_entry *)bfd_alloc (abfd, sizeof entry); | |
2026 | ||
2027 | if (! *loc) | |
2028 | return NULL; | |
143d77c5 | 2029 | |
b15e6682 AO |
2030 | memcpy (*loc, &entry, sizeof entry); |
2031 | ||
b49e97c9 TS |
2032 | if (g->assigned_gotno >= g->local_gotno) |
2033 | { | |
f4416af6 | 2034 | (*loc)->gotidx = -1; |
b49e97c9 TS |
2035 | /* We didn't allocate enough space in the GOT. */ |
2036 | (*_bfd_error_handler) | |
2037 | (_("not enough GOT space for local GOT entries")); | |
2038 | bfd_set_error (bfd_error_bad_value); | |
b15e6682 | 2039 | return NULL; |
b49e97c9 TS |
2040 | } |
2041 | ||
2042 | MIPS_ELF_PUT_WORD (abfd, value, | |
b15e6682 AO |
2043 | (sgot->contents + entry.gotidx)); |
2044 | ||
2045 | return *loc; | |
b49e97c9 TS |
2046 | } |
2047 | ||
2048 | /* Sort the dynamic symbol table so that symbols that need GOT entries | |
2049 | appear towards the end. This reduces the amount of GOT space | |
2050 | required. MAX_LOCAL is used to set the number of local symbols | |
2051 | known to be in the dynamic symbol table. During | |
2052 | _bfd_mips_elf_size_dynamic_sections, this value is 1. Afterward, the | |
2053 | section symbols are added and the count is higher. */ | |
2054 | ||
b34976b6 | 2055 | static bfd_boolean |
9719ad41 | 2056 | mips_elf_sort_hash_table (struct bfd_link_info *info, unsigned long max_local) |
b49e97c9 TS |
2057 | { |
2058 | struct mips_elf_hash_sort_data hsd; | |
2059 | struct mips_got_info *g; | |
2060 | bfd *dynobj; | |
2061 | ||
2062 | dynobj = elf_hash_table (info)->dynobj; | |
2063 | ||
f4416af6 AO |
2064 | g = mips_elf_got_info (dynobj, NULL); |
2065 | ||
b49e97c9 | 2066 | hsd.low = NULL; |
143d77c5 | 2067 | hsd.max_unref_got_dynindx = |
f4416af6 AO |
2068 | hsd.min_got_dynindx = elf_hash_table (info)->dynsymcount |
2069 | /* In the multi-got case, assigned_gotno of the master got_info | |
2070 | indicate the number of entries that aren't referenced in the | |
2071 | primary GOT, but that must have entries because there are | |
2072 | dynamic relocations that reference it. Since they aren't | |
2073 | referenced, we move them to the end of the GOT, so that they | |
2074 | don't prevent other entries that are referenced from getting | |
2075 | too large offsets. */ | |
2076 | - (g->next ? g->assigned_gotno : 0); | |
b49e97c9 TS |
2077 | hsd.max_non_got_dynindx = max_local; |
2078 | mips_elf_link_hash_traverse (((struct mips_elf_link_hash_table *) | |
2079 | elf_hash_table (info)), | |
2080 | mips_elf_sort_hash_table_f, | |
2081 | &hsd); | |
2082 | ||
2083 | /* There should have been enough room in the symbol table to | |
44c410de | 2084 | accommodate both the GOT and non-GOT symbols. */ |
b49e97c9 | 2085 | BFD_ASSERT (hsd.max_non_got_dynindx <= hsd.min_got_dynindx); |
f4416af6 AO |
2086 | BFD_ASSERT ((unsigned long)hsd.max_unref_got_dynindx |
2087 | <= elf_hash_table (info)->dynsymcount); | |
b49e97c9 TS |
2088 | |
2089 | /* Now we know which dynamic symbol has the lowest dynamic symbol | |
2090 | table index in the GOT. */ | |
b49e97c9 TS |
2091 | g->global_gotsym = hsd.low; |
2092 | ||
b34976b6 | 2093 | return TRUE; |
b49e97c9 TS |
2094 | } |
2095 | ||
2096 | /* If H needs a GOT entry, assign it the highest available dynamic | |
2097 | index. Otherwise, assign it the lowest available dynamic | |
2098 | index. */ | |
2099 | ||
b34976b6 | 2100 | static bfd_boolean |
9719ad41 | 2101 | mips_elf_sort_hash_table_f (struct mips_elf_link_hash_entry *h, void *data) |
b49e97c9 | 2102 | { |
9719ad41 | 2103 | struct mips_elf_hash_sort_data *hsd = data; |
b49e97c9 TS |
2104 | |
2105 | if (h->root.root.type == bfd_link_hash_warning) | |
2106 | h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link; | |
2107 | ||
2108 | /* Symbols without dynamic symbol table entries aren't interesting | |
2109 | at all. */ | |
2110 | if (h->root.dynindx == -1) | |
b34976b6 | 2111 | return TRUE; |
b49e97c9 | 2112 | |
f4416af6 AO |
2113 | /* Global symbols that need GOT entries that are not explicitly |
2114 | referenced are marked with got offset 2. Those that are | |
2115 | referenced get a 1, and those that don't need GOT entries get | |
2116 | -1. */ | |
2117 | if (h->root.got.offset == 2) | |
2118 | { | |
2119 | if (hsd->max_unref_got_dynindx == hsd->min_got_dynindx) | |
2120 | hsd->low = (struct elf_link_hash_entry *) h; | |
2121 | h->root.dynindx = hsd->max_unref_got_dynindx++; | |
2122 | } | |
2123 | else if (h->root.got.offset != 1) | |
b49e97c9 TS |
2124 | h->root.dynindx = hsd->max_non_got_dynindx++; |
2125 | else | |
2126 | { | |
2127 | h->root.dynindx = --hsd->min_got_dynindx; | |
2128 | hsd->low = (struct elf_link_hash_entry *) h; | |
2129 | } | |
2130 | ||
b34976b6 | 2131 | return TRUE; |
b49e97c9 TS |
2132 | } |
2133 | ||
2134 | /* If H is a symbol that needs a global GOT entry, but has a dynamic | |
2135 | symbol table index lower than any we've seen to date, record it for | |
2136 | posterity. */ | |
2137 | ||
b34976b6 | 2138 | static bfd_boolean |
9719ad41 RS |
2139 | mips_elf_record_global_got_symbol (struct elf_link_hash_entry *h, |
2140 | bfd *abfd, struct bfd_link_info *info, | |
2141 | struct mips_got_info *g) | |
b49e97c9 | 2142 | { |
f4416af6 AO |
2143 | struct mips_got_entry entry, **loc; |
2144 | ||
b49e97c9 TS |
2145 | /* A global symbol in the GOT must also be in the dynamic symbol |
2146 | table. */ | |
7c5fcef7 L |
2147 | if (h->dynindx == -1) |
2148 | { | |
2149 | switch (ELF_ST_VISIBILITY (h->other)) | |
2150 | { | |
2151 | case STV_INTERNAL: | |
2152 | case STV_HIDDEN: | |
b34976b6 | 2153 | _bfd_mips_elf_hide_symbol (info, h, TRUE); |
7c5fcef7 L |
2154 | break; |
2155 | } | |
2156 | if (!bfd_elf32_link_record_dynamic_symbol (info, h)) | |
b34976b6 | 2157 | return FALSE; |
7c5fcef7 | 2158 | } |
b49e97c9 | 2159 | |
f4416af6 AO |
2160 | entry.abfd = abfd; |
2161 | entry.symndx = -1; | |
2162 | entry.d.h = (struct mips_elf_link_hash_entry *) h; | |
2163 | ||
2164 | loc = (struct mips_got_entry **) htab_find_slot (g->got_entries, &entry, | |
2165 | INSERT); | |
2166 | ||
b49e97c9 TS |
2167 | /* If we've already marked this entry as needing GOT space, we don't |
2168 | need to do it again. */ | |
f4416af6 AO |
2169 | if (*loc) |
2170 | return TRUE; | |
2171 | ||
2172 | *loc = (struct mips_got_entry *)bfd_alloc (abfd, sizeof entry); | |
2173 | ||
2174 | if (! *loc) | |
2175 | return FALSE; | |
143d77c5 | 2176 | |
f4416af6 AO |
2177 | entry.gotidx = -1; |
2178 | memcpy (*loc, &entry, sizeof entry); | |
2179 | ||
b49e97c9 | 2180 | if (h->got.offset != MINUS_ONE) |
b34976b6 | 2181 | return TRUE; |
b49e97c9 TS |
2182 | |
2183 | /* By setting this to a value other than -1, we are indicating that | |
2184 | there needs to be a GOT entry for H. Avoid using zero, as the | |
2185 | generic ELF copy_indirect_symbol tests for <= 0. */ | |
2186 | h->got.offset = 1; | |
2187 | ||
b34976b6 | 2188 | return TRUE; |
b49e97c9 | 2189 | } |
f4416af6 AO |
2190 | |
2191 | /* Reserve space in G for a GOT entry containing the value of symbol | |
2192 | SYMNDX in input bfd ABDF, plus ADDEND. */ | |
2193 | ||
2194 | static bfd_boolean | |
9719ad41 RS |
2195 | mips_elf_record_local_got_symbol (bfd *abfd, long symndx, bfd_vma addend, |
2196 | struct mips_got_info *g) | |
f4416af6 AO |
2197 | { |
2198 | struct mips_got_entry entry, **loc; | |
2199 | ||
2200 | entry.abfd = abfd; | |
2201 | entry.symndx = symndx; | |
2202 | entry.d.addend = addend; | |
2203 | loc = (struct mips_got_entry **) | |
2204 | htab_find_slot (g->got_entries, &entry, INSERT); | |
2205 | ||
2206 | if (*loc) | |
2207 | return TRUE; | |
2208 | ||
2209 | entry.gotidx = g->local_gotno++; | |
2210 | ||
2211 | *loc = (struct mips_got_entry *)bfd_alloc (abfd, sizeof entry); | |
2212 | ||
2213 | if (! *loc) | |
2214 | return FALSE; | |
143d77c5 | 2215 | |
f4416af6 AO |
2216 | memcpy (*loc, &entry, sizeof entry); |
2217 | ||
2218 | return TRUE; | |
2219 | } | |
2220 | \f | |
2221 | /* Compute the hash value of the bfd in a bfd2got hash entry. */ | |
2222 | ||
2223 | static hashval_t | |
9719ad41 | 2224 | mips_elf_bfd2got_entry_hash (const void *entry_) |
f4416af6 AO |
2225 | { |
2226 | const struct mips_elf_bfd2got_hash *entry | |
2227 | = (struct mips_elf_bfd2got_hash *)entry_; | |
2228 | ||
2229 | return entry->bfd->id; | |
2230 | } | |
2231 | ||
2232 | /* Check whether two hash entries have the same bfd. */ | |
2233 | ||
2234 | static int | |
9719ad41 | 2235 | mips_elf_bfd2got_entry_eq (const void *entry1, const void *entry2) |
f4416af6 AO |
2236 | { |
2237 | const struct mips_elf_bfd2got_hash *e1 | |
2238 | = (const struct mips_elf_bfd2got_hash *)entry1; | |
2239 | const struct mips_elf_bfd2got_hash *e2 | |
2240 | = (const struct mips_elf_bfd2got_hash *)entry2; | |
2241 | ||
2242 | return e1->bfd == e2->bfd; | |
2243 | } | |
2244 | ||
0b25d3e6 | 2245 | /* In a multi-got link, determine the GOT to be used for IBDF. G must |
f4416af6 AO |
2246 | be the master GOT data. */ |
2247 | ||
2248 | static struct mips_got_info * | |
9719ad41 | 2249 | mips_elf_got_for_ibfd (struct mips_got_info *g, bfd *ibfd) |
f4416af6 AO |
2250 | { |
2251 | struct mips_elf_bfd2got_hash e, *p; | |
2252 | ||
2253 | if (! g->bfd2got) | |
2254 | return g; | |
2255 | ||
2256 | e.bfd = ibfd; | |
9719ad41 | 2257 | p = htab_find (g->bfd2got, &e); |
f4416af6 AO |
2258 | return p ? p->g : NULL; |
2259 | } | |
2260 | ||
2261 | /* Create one separate got for each bfd that has entries in the global | |
2262 | got, such that we can tell how many local and global entries each | |
2263 | bfd requires. */ | |
2264 | ||
2265 | static int | |
9719ad41 | 2266 | mips_elf_make_got_per_bfd (void **entryp, void *p) |
f4416af6 AO |
2267 | { |
2268 | struct mips_got_entry *entry = (struct mips_got_entry *)*entryp; | |
2269 | struct mips_elf_got_per_bfd_arg *arg = (struct mips_elf_got_per_bfd_arg *)p; | |
2270 | htab_t bfd2got = arg->bfd2got; | |
2271 | struct mips_got_info *g; | |
2272 | struct mips_elf_bfd2got_hash bfdgot_entry, *bfdgot; | |
2273 | void **bfdgotp; | |
143d77c5 | 2274 | |
f4416af6 AO |
2275 | /* Find the got_info for this GOT entry's input bfd. Create one if |
2276 | none exists. */ | |
2277 | bfdgot_entry.bfd = entry->abfd; | |
2278 | bfdgotp = htab_find_slot (bfd2got, &bfdgot_entry, INSERT); | |
2279 | bfdgot = (struct mips_elf_bfd2got_hash *)*bfdgotp; | |
2280 | ||
2281 | if (bfdgot != NULL) | |
2282 | g = bfdgot->g; | |
2283 | else | |
2284 | { | |
2285 | bfdgot = (struct mips_elf_bfd2got_hash *)bfd_alloc | |
2286 | (arg->obfd, sizeof (struct mips_elf_bfd2got_hash)); | |
2287 | ||
2288 | if (bfdgot == NULL) | |
2289 | { | |
2290 | arg->obfd = 0; | |
2291 | return 0; | |
2292 | } | |
2293 | ||
2294 | *bfdgotp = bfdgot; | |
2295 | ||
2296 | bfdgot->bfd = entry->abfd; | |
2297 | bfdgot->g = g = (struct mips_got_info *) | |
2298 | bfd_alloc (arg->obfd, sizeof (struct mips_got_info)); | |
2299 | if (g == NULL) | |
2300 | { | |
2301 | arg->obfd = 0; | |
2302 | return 0; | |
2303 | } | |
2304 | ||
2305 | g->global_gotsym = NULL; | |
2306 | g->global_gotno = 0; | |
2307 | g->local_gotno = 0; | |
2308 | g->assigned_gotno = -1; | |
2309 | g->got_entries = htab_try_create (1, mips_elf_multi_got_entry_hash, | |
9719ad41 | 2310 | mips_elf_multi_got_entry_eq, NULL); |
f4416af6 AO |
2311 | if (g->got_entries == NULL) |
2312 | { | |
2313 | arg->obfd = 0; | |
2314 | return 0; | |
2315 | } | |
2316 | ||
2317 | g->bfd2got = NULL; | |
2318 | g->next = NULL; | |
2319 | } | |
2320 | ||
2321 | /* Insert the GOT entry in the bfd's got entry hash table. */ | |
2322 | entryp = htab_find_slot (g->got_entries, entry, INSERT); | |
2323 | if (*entryp != NULL) | |
2324 | return 1; | |
143d77c5 | 2325 | |
f4416af6 AO |
2326 | *entryp = entry; |
2327 | ||
2328 | if (entry->symndx >= 0 || entry->d.h->forced_local) | |
2329 | ++g->local_gotno; | |
2330 | else | |
2331 | ++g->global_gotno; | |
2332 | ||
2333 | return 1; | |
2334 | } | |
2335 | ||
2336 | /* Attempt to merge gots of different input bfds. Try to use as much | |
2337 | as possible of the primary got, since it doesn't require explicit | |
2338 | dynamic relocations, but don't use bfds that would reference global | |
2339 | symbols out of the addressable range. Failing the primary got, | |
2340 | attempt to merge with the current got, or finish the current got | |
2341 | and then make make the new got current. */ | |
2342 | ||
2343 | static int | |
9719ad41 | 2344 | mips_elf_merge_gots (void **bfd2got_, void *p) |
f4416af6 AO |
2345 | { |
2346 | struct mips_elf_bfd2got_hash *bfd2got | |
2347 | = (struct mips_elf_bfd2got_hash *)*bfd2got_; | |
2348 | struct mips_elf_got_per_bfd_arg *arg = (struct mips_elf_got_per_bfd_arg *)p; | |
2349 | unsigned int lcount = bfd2got->g->local_gotno; | |
2350 | unsigned int gcount = bfd2got->g->global_gotno; | |
2351 | unsigned int maxcnt = arg->max_count; | |
143d77c5 | 2352 | |
f4416af6 AO |
2353 | /* If we don't have a primary GOT and this is not too big, use it as |
2354 | a starting point for the primary GOT. */ | |
2355 | if (! arg->primary && lcount + gcount <= maxcnt) | |
2356 | { | |
2357 | arg->primary = bfd2got->g; | |
2358 | arg->primary_count = lcount + gcount; | |
2359 | } | |
2360 | /* If it looks like we can merge this bfd's entries with those of | |
2361 | the primary, merge them. The heuristics is conservative, but we | |
2362 | don't have to squeeze it too hard. */ | |
2363 | else if (arg->primary | |
2364 | && (arg->primary_count + lcount + gcount) <= maxcnt) | |
2365 | { | |
2366 | struct mips_got_info *g = bfd2got->g; | |
2367 | int old_lcount = arg->primary->local_gotno; | |
2368 | int old_gcount = arg->primary->global_gotno; | |
2369 | ||
2370 | bfd2got->g = arg->primary; | |
2371 | ||
2372 | htab_traverse (g->got_entries, | |
2373 | mips_elf_make_got_per_bfd, | |
2374 | arg); | |
2375 | if (arg->obfd == NULL) | |
2376 | return 0; | |
2377 | ||
2378 | htab_delete (g->got_entries); | |
2379 | /* We don't have to worry about releasing memory of the actual | |
2380 | got entries, since they're all in the master got_entries hash | |
2381 | table anyway. */ | |
2382 | ||
caec41ff | 2383 | BFD_ASSERT (old_lcount + lcount >= arg->primary->local_gotno); |
f4416af6 AO |
2384 | BFD_ASSERT (old_gcount + gcount >= arg->primary->global_gotno); |
2385 | ||
2386 | arg->primary_count = arg->primary->local_gotno | |
2387 | + arg->primary->global_gotno; | |
2388 | } | |
2389 | /* If we can merge with the last-created got, do it. */ | |
2390 | else if (arg->current | |
2391 | && arg->current_count + lcount + gcount <= maxcnt) | |
2392 | { | |
2393 | struct mips_got_info *g = bfd2got->g; | |
2394 | int old_lcount = arg->current->local_gotno; | |
2395 | int old_gcount = arg->current->global_gotno; | |
2396 | ||
2397 | bfd2got->g = arg->current; | |
2398 | ||
2399 | htab_traverse (g->got_entries, | |
2400 | mips_elf_make_got_per_bfd, | |
2401 | arg); | |
2402 | if (arg->obfd == NULL) | |
2403 | return 0; | |
2404 | ||
2405 | htab_delete (g->got_entries); | |
2406 | ||
caec41ff | 2407 | BFD_ASSERT (old_lcount + lcount >= arg->current->local_gotno); |
f4416af6 AO |
2408 | BFD_ASSERT (old_gcount + gcount >= arg->current->global_gotno); |
2409 | ||
2410 | arg->current_count = arg->current->local_gotno | |
2411 | + arg->current->global_gotno; | |
2412 | } | |
2413 | /* Well, we couldn't merge, so create a new GOT. Don't check if it | |
2414 | fits; if it turns out that it doesn't, we'll get relocation | |
2415 | overflows anyway. */ | |
2416 | else | |
2417 | { | |
2418 | bfd2got->g->next = arg->current; | |
2419 | arg->current = bfd2got->g; | |
143d77c5 | 2420 | |
f4416af6 AO |
2421 | arg->current_count = lcount + gcount; |
2422 | } | |
2423 | ||
2424 | return 1; | |
2425 | } | |
2426 | ||
2427 | /* If passed a NULL mips_got_info in the argument, set the marker used | |
2428 | to tell whether a global symbol needs a got entry (in the primary | |
2429 | got) to the given VALUE. | |
2430 | ||
2431 | If passed a pointer G to a mips_got_info in the argument (it must | |
2432 | not be the primary GOT), compute the offset from the beginning of | |
2433 | the (primary) GOT section to the entry in G corresponding to the | |
2434 | global symbol. G's assigned_gotno must contain the index of the | |
2435 | first available global GOT entry in G. VALUE must contain the size | |
2436 | of a GOT entry in bytes. For each global GOT entry that requires a | |
2437 | dynamic relocation, NEEDED_RELOCS is incremented, and the symbol is | |
4cc11e76 | 2438 | marked as not eligible for lazy resolution through a function |
f4416af6 AO |
2439 | stub. */ |
2440 | static int | |
9719ad41 | 2441 | mips_elf_set_global_got_offset (void **entryp, void *p) |
f4416af6 AO |
2442 | { |
2443 | struct mips_got_entry *entry = (struct mips_got_entry *)*entryp; | |
2444 | struct mips_elf_set_global_got_offset_arg *arg | |
2445 | = (struct mips_elf_set_global_got_offset_arg *)p; | |
2446 | struct mips_got_info *g = arg->g; | |
2447 | ||
2448 | if (entry->abfd != NULL && entry->symndx == -1 | |
2449 | && entry->d.h->root.dynindx != -1) | |
2450 | { | |
2451 | if (g) | |
2452 | { | |
2453 | BFD_ASSERT (g->global_gotsym == NULL); | |
2454 | ||
2455 | entry->gotidx = arg->value * (long) g->assigned_gotno++; | |
f4416af6 AO |
2456 | if (arg->info->shared |
2457 | || (elf_hash_table (arg->info)->dynamic_sections_created | |
2458 | && ((entry->d.h->root.elf_link_hash_flags | |
2459 | & ELF_LINK_HASH_DEF_DYNAMIC) != 0) | |
2460 | && ((entry->d.h->root.elf_link_hash_flags | |
2461 | & ELF_LINK_HASH_DEF_REGULAR) == 0))) | |
2462 | ++arg->needed_relocs; | |
2463 | } | |
2464 | else | |
2465 | entry->d.h->root.got.offset = arg->value; | |
2466 | } | |
2467 | ||
2468 | return 1; | |
2469 | } | |
2470 | ||
0626d451 RS |
2471 | /* Mark any global symbols referenced in the GOT we are iterating over |
2472 | as inelligible for lazy resolution stubs. */ | |
2473 | static int | |
9719ad41 | 2474 | mips_elf_set_no_stub (void **entryp, void *p ATTRIBUTE_UNUSED) |
0626d451 RS |
2475 | { |
2476 | struct mips_got_entry *entry = (struct mips_got_entry *)*entryp; | |
2477 | ||
2478 | if (entry->abfd != NULL | |
2479 | && entry->symndx == -1 | |
2480 | && entry->d.h->root.dynindx != -1) | |
2481 | entry->d.h->no_fn_stub = TRUE; | |
2482 | ||
2483 | return 1; | |
2484 | } | |
2485 | ||
f4416af6 AO |
2486 | /* Follow indirect and warning hash entries so that each got entry |
2487 | points to the final symbol definition. P must point to a pointer | |
2488 | to the hash table we're traversing. Since this traversal may | |
2489 | modify the hash table, we set this pointer to NULL to indicate | |
2490 | we've made a potentially-destructive change to the hash table, so | |
2491 | the traversal must be restarted. */ | |
2492 | static int | |
9719ad41 | 2493 | mips_elf_resolve_final_got_entry (void **entryp, void *p) |
f4416af6 AO |
2494 | { |
2495 | struct mips_got_entry *entry = (struct mips_got_entry *)*entryp; | |
2496 | htab_t got_entries = *(htab_t *)p; | |
2497 | ||
2498 | if (entry->abfd != NULL && entry->symndx == -1) | |
2499 | { | |
2500 | struct mips_elf_link_hash_entry *h = entry->d.h; | |
2501 | ||
2502 | while (h->root.root.type == bfd_link_hash_indirect | |
2503 | || h->root.root.type == bfd_link_hash_warning) | |
2504 | h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link; | |
2505 | ||
2506 | if (entry->d.h == h) | |
2507 | return 1; | |
143d77c5 | 2508 | |
f4416af6 AO |
2509 | entry->d.h = h; |
2510 | ||
2511 | /* If we can't find this entry with the new bfd hash, re-insert | |
2512 | it, and get the traversal restarted. */ | |
2513 | if (! htab_find (got_entries, entry)) | |
2514 | { | |
2515 | htab_clear_slot (got_entries, entryp); | |
2516 | entryp = htab_find_slot (got_entries, entry, INSERT); | |
2517 | if (! *entryp) | |
2518 | *entryp = entry; | |
2519 | /* Abort the traversal, since the whole table may have | |
2520 | moved, and leave it up to the parent to restart the | |
2521 | process. */ | |
2522 | *(htab_t *)p = NULL; | |
2523 | return 0; | |
2524 | } | |
2525 | /* We might want to decrement the global_gotno count, but it's | |
2526 | either too early or too late for that at this point. */ | |
2527 | } | |
143d77c5 | 2528 | |
f4416af6 AO |
2529 | return 1; |
2530 | } | |
2531 | ||
2532 | /* Turn indirect got entries in a got_entries table into their final | |
2533 | locations. */ | |
2534 | static void | |
9719ad41 | 2535 | mips_elf_resolve_final_got_entries (struct mips_got_info *g) |
f4416af6 AO |
2536 | { |
2537 | htab_t got_entries; | |
2538 | ||
2539 | do | |
2540 | { | |
2541 | got_entries = g->got_entries; | |
2542 | ||
2543 | htab_traverse (got_entries, | |
2544 | mips_elf_resolve_final_got_entry, | |
2545 | &got_entries); | |
2546 | } | |
2547 | while (got_entries == NULL); | |
2548 | } | |
2549 | ||
2550 | /* Return the offset of an input bfd IBFD's GOT from the beginning of | |
2551 | the primary GOT. */ | |
2552 | static bfd_vma | |
9719ad41 | 2553 | mips_elf_adjust_gp (bfd *abfd, struct mips_got_info *g, bfd *ibfd) |
f4416af6 AO |
2554 | { |
2555 | if (g->bfd2got == NULL) | |
2556 | return 0; | |
2557 | ||
2558 | g = mips_elf_got_for_ibfd (g, ibfd); | |
2559 | if (! g) | |
2560 | return 0; | |
2561 | ||
2562 | BFD_ASSERT (g->next); | |
2563 | ||
2564 | g = g->next; | |
143d77c5 | 2565 | |
f4416af6 AO |
2566 | return (g->local_gotno + g->global_gotno) * MIPS_ELF_GOT_SIZE (abfd); |
2567 | } | |
2568 | ||
2569 | /* Turn a single GOT that is too big for 16-bit addressing into | |
2570 | a sequence of GOTs, each one 16-bit addressable. */ | |
2571 | ||
2572 | static bfd_boolean | |
9719ad41 RS |
2573 | mips_elf_multi_got (bfd *abfd, struct bfd_link_info *info, |
2574 | struct mips_got_info *g, asection *got, | |
2575 | bfd_size_type pages) | |
f4416af6 AO |
2576 | { |
2577 | struct mips_elf_got_per_bfd_arg got_per_bfd_arg; | |
2578 | struct mips_elf_set_global_got_offset_arg set_got_offset_arg; | |
2579 | struct mips_got_info *gg; | |
2580 | unsigned int assign; | |
2581 | ||
2582 | g->bfd2got = htab_try_create (1, mips_elf_bfd2got_entry_hash, | |
9719ad41 | 2583 | mips_elf_bfd2got_entry_eq, NULL); |
f4416af6 AO |
2584 | if (g->bfd2got == NULL) |
2585 | return FALSE; | |
2586 | ||
2587 | got_per_bfd_arg.bfd2got = g->bfd2got; | |
2588 | got_per_bfd_arg.obfd = abfd; | |
2589 | got_per_bfd_arg.info = info; | |
2590 | ||
2591 | /* Count how many GOT entries each input bfd requires, creating a | |
2592 | map from bfd to got info while at that. */ | |
2593 | mips_elf_resolve_final_got_entries (g); | |
2594 | htab_traverse (g->got_entries, mips_elf_make_got_per_bfd, &got_per_bfd_arg); | |
2595 | if (got_per_bfd_arg.obfd == NULL) | |
2596 | return FALSE; | |
2597 | ||
2598 | got_per_bfd_arg.current = NULL; | |
2599 | got_per_bfd_arg.primary = NULL; | |
2600 | /* Taking out PAGES entries is a worst-case estimate. We could | |
2601 | compute the maximum number of pages that each separate input bfd | |
2602 | uses, but it's probably not worth it. */ | |
2603 | got_per_bfd_arg.max_count = ((MIPS_ELF_GOT_MAX_SIZE (abfd) | |
2604 | / MIPS_ELF_GOT_SIZE (abfd)) | |
2605 | - MIPS_RESERVED_GOTNO - pages); | |
2606 | ||
2607 | /* Try to merge the GOTs of input bfds together, as long as they | |
2608 | don't seem to exceed the maximum GOT size, choosing one of them | |
2609 | to be the primary GOT. */ | |
2610 | htab_traverse (g->bfd2got, mips_elf_merge_gots, &got_per_bfd_arg); | |
2611 | if (got_per_bfd_arg.obfd == NULL) | |
2612 | return FALSE; | |
2613 | ||
2614 | /* If we find any suitable primary GOT, create an empty one. */ | |
2615 | if (got_per_bfd_arg.primary == NULL) | |
2616 | { | |
2617 | g->next = (struct mips_got_info *) | |
2618 | bfd_alloc (abfd, sizeof (struct mips_got_info)); | |
2619 | if (g->next == NULL) | |
2620 | return FALSE; | |
2621 | ||
2622 | g->next->global_gotsym = NULL; | |
2623 | g->next->global_gotno = 0; | |
2624 | g->next->local_gotno = 0; | |
2625 | g->next->assigned_gotno = 0; | |
2626 | g->next->got_entries = htab_try_create (1, mips_elf_multi_got_entry_hash, | |
2627 | mips_elf_multi_got_entry_eq, | |
9719ad41 | 2628 | NULL); |
f4416af6 AO |
2629 | if (g->next->got_entries == NULL) |
2630 | return FALSE; | |
2631 | g->next->bfd2got = NULL; | |
2632 | } | |
2633 | else | |
2634 | g->next = got_per_bfd_arg.primary; | |
2635 | g->next->next = got_per_bfd_arg.current; | |
2636 | ||
2637 | /* GG is now the master GOT, and G is the primary GOT. */ | |
2638 | gg = g; | |
2639 | g = g->next; | |
2640 | ||
2641 | /* Map the output bfd to the primary got. That's what we're going | |
2642 | to use for bfds that use GOT16 or GOT_PAGE relocations that we | |
2643 | didn't mark in check_relocs, and we want a quick way to find it. | |
2644 | We can't just use gg->next because we're going to reverse the | |
2645 | list. */ | |
2646 | { | |
2647 | struct mips_elf_bfd2got_hash *bfdgot; | |
2648 | void **bfdgotp; | |
143d77c5 | 2649 | |
f4416af6 AO |
2650 | bfdgot = (struct mips_elf_bfd2got_hash *)bfd_alloc |
2651 | (abfd, sizeof (struct mips_elf_bfd2got_hash)); | |
2652 | ||
2653 | if (bfdgot == NULL) | |
2654 | return FALSE; | |
2655 | ||
2656 | bfdgot->bfd = abfd; | |
2657 | bfdgot->g = g; | |
2658 | bfdgotp = htab_find_slot (gg->bfd2got, bfdgot, INSERT); | |
2659 | ||
2660 | BFD_ASSERT (*bfdgotp == NULL); | |
2661 | *bfdgotp = bfdgot; | |
2662 | } | |
2663 | ||
2664 | /* The IRIX dynamic linker requires every symbol that is referenced | |
2665 | in a dynamic relocation to be present in the primary GOT, so | |
2666 | arrange for them to appear after those that are actually | |
2667 | referenced. | |
2668 | ||
2669 | GNU/Linux could very well do without it, but it would slow down | |
2670 | the dynamic linker, since it would have to resolve every dynamic | |
2671 | symbol referenced in other GOTs more than once, without help from | |
2672 | the cache. Also, knowing that every external symbol has a GOT | |
2673 | helps speed up the resolution of local symbols too, so GNU/Linux | |
2674 | follows IRIX's practice. | |
143d77c5 | 2675 | |
f4416af6 AO |
2676 | The number 2 is used by mips_elf_sort_hash_table_f to count |
2677 | global GOT symbols that are unreferenced in the primary GOT, with | |
2678 | an initial dynamic index computed from gg->assigned_gotno, where | |
2679 | the number of unreferenced global entries in the primary GOT is | |
2680 | preserved. */ | |
2681 | if (1) | |
2682 | { | |
2683 | gg->assigned_gotno = gg->global_gotno - g->global_gotno; | |
2684 | g->global_gotno = gg->global_gotno; | |
2685 | set_got_offset_arg.value = 2; | |
2686 | } | |
2687 | else | |
2688 | { | |
2689 | /* This could be used for dynamic linkers that don't optimize | |
2690 | symbol resolution while applying relocations so as to use | |
2691 | primary GOT entries or assuming the symbol is locally-defined. | |
2692 | With this code, we assign lower dynamic indices to global | |
2693 | symbols that are not referenced in the primary GOT, so that | |
2694 | their entries can be omitted. */ | |
2695 | gg->assigned_gotno = 0; | |
2696 | set_got_offset_arg.value = -1; | |
2697 | } | |
2698 | ||
2699 | /* Reorder dynamic symbols as described above (which behavior | |
2700 | depends on the setting of VALUE). */ | |
2701 | set_got_offset_arg.g = NULL; | |
2702 | htab_traverse (gg->got_entries, mips_elf_set_global_got_offset, | |
2703 | &set_got_offset_arg); | |
2704 | set_got_offset_arg.value = 1; | |
2705 | htab_traverse (g->got_entries, mips_elf_set_global_got_offset, | |
2706 | &set_got_offset_arg); | |
2707 | if (! mips_elf_sort_hash_table (info, 1)) | |
2708 | return FALSE; | |
2709 | ||
2710 | /* Now go through the GOTs assigning them offset ranges. | |
2711 | [assigned_gotno, local_gotno[ will be set to the range of local | |
2712 | entries in each GOT. We can then compute the end of a GOT by | |
2713 | adding local_gotno to global_gotno. We reverse the list and make | |
2714 | it circular since then we'll be able to quickly compute the | |
2715 | beginning of a GOT, by computing the end of its predecessor. To | |
2716 | avoid special cases for the primary GOT, while still preserving | |
2717 | assertions that are valid for both single- and multi-got links, | |
2718 | we arrange for the main got struct to have the right number of | |
2719 | global entries, but set its local_gotno such that the initial | |
2720 | offset of the primary GOT is zero. Remember that the primary GOT | |
2721 | will become the last item in the circular linked list, so it | |
2722 | points back to the master GOT. */ | |
2723 | gg->local_gotno = -g->global_gotno; | |
2724 | gg->global_gotno = g->global_gotno; | |
2725 | assign = 0; | |
2726 | gg->next = gg; | |
2727 | ||
2728 | do | |
2729 | { | |
2730 | struct mips_got_info *gn; | |
2731 | ||
2732 | assign += MIPS_RESERVED_GOTNO; | |
2733 | g->assigned_gotno = assign; | |
2734 | g->local_gotno += assign + pages; | |
2735 | assign = g->local_gotno + g->global_gotno; | |
2736 | ||
2737 | /* Take g out of the direct list, and push it onto the reversed | |
2738 | list that gg points to. */ | |
2739 | gn = g->next; | |
2740 | g->next = gg->next; | |
2741 | gg->next = g; | |
2742 | g = gn; | |
0626d451 RS |
2743 | |
2744 | /* Mark global symbols in every non-primary GOT as ineligible for | |
2745 | stubs. */ | |
2746 | if (g) | |
2747 | htab_traverse (g->got_entries, mips_elf_set_no_stub, NULL); | |
f4416af6 AO |
2748 | } |
2749 | while (g); | |
2750 | ||
2751 | got->_raw_size = (gg->next->local_gotno | |
2752 | + gg->next->global_gotno) * MIPS_ELF_GOT_SIZE (abfd); | |
143d77c5 | 2753 | |
f4416af6 AO |
2754 | return TRUE; |
2755 | } | |
143d77c5 | 2756 | |
b49e97c9 TS |
2757 | \f |
2758 | /* Returns the first relocation of type r_type found, beginning with | |
2759 | RELOCATION. RELEND is one-past-the-end of the relocation table. */ | |
2760 | ||
2761 | static const Elf_Internal_Rela * | |
9719ad41 RS |
2762 | mips_elf_next_relocation (bfd *abfd ATTRIBUTE_UNUSED, unsigned int r_type, |
2763 | const Elf_Internal_Rela *relocation, | |
2764 | const Elf_Internal_Rela *relend) | |
b49e97c9 TS |
2765 | { |
2766 | /* According to the MIPS ELF ABI, the R_MIPS_LO16 relocation must be | |
2767 | immediately following. However, for the IRIX6 ABI, the next | |
2768 | relocation may be a composed relocation consisting of several | |
2769 | relocations for the same address. In that case, the R_MIPS_LO16 | |
2770 | relocation may occur as one of these. We permit a similar | |
2771 | extension in general, as that is useful for GCC. */ | |
2772 | while (relocation < relend) | |
2773 | { | |
2774 | if (ELF_R_TYPE (abfd, relocation->r_info) == r_type) | |
2775 | return relocation; | |
2776 | ||
2777 | ++relocation; | |
2778 | } | |
2779 | ||
2780 | /* We didn't find it. */ | |
2781 | bfd_set_error (bfd_error_bad_value); | |
2782 | return NULL; | |
2783 | } | |
2784 | ||
2785 | /* Return whether a relocation is against a local symbol. */ | |
2786 | ||
b34976b6 | 2787 | static bfd_boolean |
9719ad41 RS |
2788 | mips_elf_local_relocation_p (bfd *input_bfd, |
2789 | const Elf_Internal_Rela *relocation, | |
2790 | asection **local_sections, | |
2791 | bfd_boolean check_forced) | |
b49e97c9 TS |
2792 | { |
2793 | unsigned long r_symndx; | |
2794 | Elf_Internal_Shdr *symtab_hdr; | |
2795 | struct mips_elf_link_hash_entry *h; | |
2796 | size_t extsymoff; | |
2797 | ||
2798 | r_symndx = ELF_R_SYM (input_bfd, relocation->r_info); | |
2799 | symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr; | |
2800 | extsymoff = (elf_bad_symtab (input_bfd)) ? 0 : symtab_hdr->sh_info; | |
2801 | ||
2802 | if (r_symndx < extsymoff) | |
b34976b6 | 2803 | return TRUE; |
b49e97c9 | 2804 | if (elf_bad_symtab (input_bfd) && local_sections[r_symndx] != NULL) |
b34976b6 | 2805 | return TRUE; |
b49e97c9 TS |
2806 | |
2807 | if (check_forced) | |
2808 | { | |
2809 | /* Look up the hash table to check whether the symbol | |
2810 | was forced local. */ | |
2811 | h = (struct mips_elf_link_hash_entry *) | |
2812 | elf_sym_hashes (input_bfd) [r_symndx - extsymoff]; | |
2813 | /* Find the real hash-table entry for this symbol. */ | |
2814 | while (h->root.root.type == bfd_link_hash_indirect | |
2815 | || h->root.root.type == bfd_link_hash_warning) | |
2816 | h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link; | |
2817 | if ((h->root.elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0) | |
b34976b6 | 2818 | return TRUE; |
b49e97c9 TS |
2819 | } |
2820 | ||
b34976b6 | 2821 | return FALSE; |
b49e97c9 TS |
2822 | } |
2823 | \f | |
2824 | /* Sign-extend VALUE, which has the indicated number of BITS. */ | |
2825 | ||
a7ebbfdf | 2826 | bfd_vma |
9719ad41 | 2827 | _bfd_mips_elf_sign_extend (bfd_vma value, int bits) |
b49e97c9 TS |
2828 | { |
2829 | if (value & ((bfd_vma) 1 << (bits - 1))) | |
2830 | /* VALUE is negative. */ | |
2831 | value |= ((bfd_vma) - 1) << bits; | |
2832 | ||
2833 | return value; | |
2834 | } | |
2835 | ||
2836 | /* Return non-zero if the indicated VALUE has overflowed the maximum | |
4cc11e76 | 2837 | range expressible by a signed number with the indicated number of |
b49e97c9 TS |
2838 | BITS. */ |
2839 | ||
b34976b6 | 2840 | static bfd_boolean |
9719ad41 | 2841 | mips_elf_overflow_p (bfd_vma value, int bits) |
b49e97c9 TS |
2842 | { |
2843 | bfd_signed_vma svalue = (bfd_signed_vma) value; | |
2844 | ||
2845 | if (svalue > (1 << (bits - 1)) - 1) | |
2846 | /* The value is too big. */ | |
b34976b6 | 2847 | return TRUE; |
b49e97c9 TS |
2848 | else if (svalue < -(1 << (bits - 1))) |
2849 | /* The value is too small. */ | |
b34976b6 | 2850 | return TRUE; |
b49e97c9 TS |
2851 | |
2852 | /* All is well. */ | |
b34976b6 | 2853 | return FALSE; |
b49e97c9 TS |
2854 | } |
2855 | ||
2856 | /* Calculate the %high function. */ | |
2857 | ||
2858 | static bfd_vma | |
9719ad41 | 2859 | mips_elf_high (bfd_vma value) |
b49e97c9 TS |
2860 | { |
2861 | return ((value + (bfd_vma) 0x8000) >> 16) & 0xffff; | |
2862 | } | |
2863 | ||
2864 | /* Calculate the %higher function. */ | |
2865 | ||
2866 | static bfd_vma | |
9719ad41 | 2867 | mips_elf_higher (bfd_vma value ATTRIBUTE_UNUSED) |
b49e97c9 TS |
2868 | { |
2869 | #ifdef BFD64 | |
2870 | return ((value + (bfd_vma) 0x80008000) >> 32) & 0xffff; | |
2871 | #else | |
2872 | abort (); | |
2873 | return (bfd_vma) -1; | |
2874 | #endif | |
2875 | } | |
2876 | ||
2877 | /* Calculate the %highest function. */ | |
2878 | ||
2879 | static bfd_vma | |
9719ad41 | 2880 | mips_elf_highest (bfd_vma value ATTRIBUTE_UNUSED) |
b49e97c9 TS |
2881 | { |
2882 | #ifdef BFD64 | |
b15e6682 | 2883 | return ((value + (((bfd_vma) 0x8000 << 32) | 0x80008000)) >> 48) & 0xffff; |
b49e97c9 TS |
2884 | #else |
2885 | abort (); | |
2886 | return (bfd_vma) -1; | |
2887 | #endif | |
2888 | } | |
2889 | \f | |
2890 | /* Create the .compact_rel section. */ | |
2891 | ||
b34976b6 | 2892 | static bfd_boolean |
9719ad41 RS |
2893 | mips_elf_create_compact_rel_section |
2894 | (bfd *abfd, struct bfd_link_info *info ATTRIBUTE_UNUSED) | |
b49e97c9 TS |
2895 | { |
2896 | flagword flags; | |
2897 | register asection *s; | |
2898 | ||
2899 | if (bfd_get_section_by_name (abfd, ".compact_rel") == NULL) | |
2900 | { | |
2901 | flags = (SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED | |
2902 | | SEC_READONLY); | |
2903 | ||
2904 | s = bfd_make_section (abfd, ".compact_rel"); | |
2905 | if (s == NULL | |
2906 | || ! bfd_set_section_flags (abfd, s, flags) | |
2907 | || ! bfd_set_section_alignment (abfd, s, | |
2908 | MIPS_ELF_LOG_FILE_ALIGN (abfd))) | |
b34976b6 | 2909 | return FALSE; |
b49e97c9 TS |
2910 | |
2911 | s->_raw_size = sizeof (Elf32_External_compact_rel); | |
2912 | } | |
2913 | ||
b34976b6 | 2914 | return TRUE; |
b49e97c9 TS |
2915 | } |
2916 | ||
2917 | /* Create the .got section to hold the global offset table. */ | |
2918 | ||
b34976b6 | 2919 | static bfd_boolean |
9719ad41 RS |
2920 | mips_elf_create_got_section (bfd *abfd, struct bfd_link_info *info, |
2921 | bfd_boolean maybe_exclude) | |
b49e97c9 TS |
2922 | { |
2923 | flagword flags; | |
2924 | register asection *s; | |
2925 | struct elf_link_hash_entry *h; | |
14a793b2 | 2926 | struct bfd_link_hash_entry *bh; |
b49e97c9 TS |
2927 | struct mips_got_info *g; |
2928 | bfd_size_type amt; | |
2929 | ||
2930 | /* This function may be called more than once. */ | |
f4416af6 AO |
2931 | s = mips_elf_got_section (abfd, TRUE); |
2932 | if (s) | |
2933 | { | |
2934 | if (! maybe_exclude) | |
2935 | s->flags &= ~SEC_EXCLUDE; | |
2936 | return TRUE; | |
2937 | } | |
b49e97c9 TS |
2938 | |
2939 | flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY | |
2940 | | SEC_LINKER_CREATED); | |
2941 | ||
f4416af6 AO |
2942 | if (maybe_exclude) |
2943 | flags |= SEC_EXCLUDE; | |
2944 | ||
72b4917c TS |
2945 | /* We have to use an alignment of 2**4 here because this is hardcoded |
2946 | in the function stub generation and in the linker script. */ | |
b49e97c9 TS |
2947 | s = bfd_make_section (abfd, ".got"); |
2948 | if (s == NULL | |
2949 | || ! bfd_set_section_flags (abfd, s, flags) | |
72b4917c | 2950 | || ! bfd_set_section_alignment (abfd, s, 4)) |
b34976b6 | 2951 | return FALSE; |
b49e97c9 TS |
2952 | |
2953 | /* Define the symbol _GLOBAL_OFFSET_TABLE_. We don't do this in the | |
2954 | linker script because we don't want to define the symbol if we | |
2955 | are not creating a global offset table. */ | |
14a793b2 | 2956 | bh = NULL; |
b49e97c9 TS |
2957 | if (! (_bfd_generic_link_add_one_symbol |
2958 | (info, abfd, "_GLOBAL_OFFSET_TABLE_", BSF_GLOBAL, s, | |
9719ad41 | 2959 | 0, NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh))) |
b34976b6 | 2960 | return FALSE; |
14a793b2 AM |
2961 | |
2962 | h = (struct elf_link_hash_entry *) bh; | |
b49e97c9 TS |
2963 | h->elf_link_hash_flags &= ~ELF_LINK_NON_ELF; |
2964 | h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR; | |
2965 | h->type = STT_OBJECT; | |
2966 | ||
2967 | if (info->shared | |
2968 | && ! bfd_elf32_link_record_dynamic_symbol (info, h)) | |
b34976b6 | 2969 | return FALSE; |
b49e97c9 | 2970 | |
b49e97c9 | 2971 | amt = sizeof (struct mips_got_info); |
9719ad41 | 2972 | g = bfd_alloc (abfd, amt); |
b49e97c9 | 2973 | if (g == NULL) |
b34976b6 | 2974 | return FALSE; |
b49e97c9 | 2975 | g->global_gotsym = NULL; |
e3d54347 | 2976 | g->global_gotno = 0; |
b49e97c9 TS |
2977 | g->local_gotno = MIPS_RESERVED_GOTNO; |
2978 | g->assigned_gotno = MIPS_RESERVED_GOTNO; | |
f4416af6 AO |
2979 | g->bfd2got = NULL; |
2980 | g->next = NULL; | |
b15e6682 | 2981 | g->got_entries = htab_try_create (1, mips_elf_got_entry_hash, |
9719ad41 | 2982 | mips_elf_got_entry_eq, NULL); |
b15e6682 AO |
2983 | if (g->got_entries == NULL) |
2984 | return FALSE; | |
f0abc2a1 AM |
2985 | mips_elf_section_data (s)->u.got_info = g; |
2986 | mips_elf_section_data (s)->elf.this_hdr.sh_flags | |
b49e97c9 TS |
2987 | |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL; |
2988 | ||
b34976b6 | 2989 | return TRUE; |
b49e97c9 | 2990 | } |
b49e97c9 TS |
2991 | \f |
2992 | /* Calculate the value produced by the RELOCATION (which comes from | |
2993 | the INPUT_BFD). The ADDEND is the addend to use for this | |
2994 | RELOCATION; RELOCATION->R_ADDEND is ignored. | |
2995 | ||
2996 | The result of the relocation calculation is stored in VALUEP. | |
2997 | REQUIRE_JALXP indicates whether or not the opcode used with this | |
2998 | relocation must be JALX. | |
2999 | ||
3000 | This function returns bfd_reloc_continue if the caller need take no | |
3001 | further action regarding this relocation, bfd_reloc_notsupported if | |
3002 | something goes dramatically wrong, bfd_reloc_overflow if an | |
3003 | overflow occurs, and bfd_reloc_ok to indicate success. */ | |
3004 | ||
3005 | static bfd_reloc_status_type | |
9719ad41 RS |
3006 | mips_elf_calculate_relocation (bfd *abfd, bfd *input_bfd, |
3007 | asection *input_section, | |
3008 | struct bfd_link_info *info, | |
3009 | const Elf_Internal_Rela *relocation, | |
3010 | bfd_vma addend, reloc_howto_type *howto, | |
3011 | Elf_Internal_Sym *local_syms, | |
3012 | asection **local_sections, bfd_vma *valuep, | |
3013 | const char **namep, bfd_boolean *require_jalxp, | |
3014 | bfd_boolean save_addend) | |
b49e97c9 TS |
3015 | { |
3016 | /* The eventual value we will return. */ | |
3017 | bfd_vma value; | |
3018 | /* The address of the symbol against which the relocation is | |
3019 | occurring. */ | |
3020 | bfd_vma symbol = 0; | |
3021 | /* The final GP value to be used for the relocatable, executable, or | |
3022 | shared object file being produced. */ | |
3023 | bfd_vma gp = MINUS_ONE; | |
3024 | /* The place (section offset or address) of the storage unit being | |
3025 | relocated. */ | |
3026 | bfd_vma p; | |
3027 | /* The value of GP used to create the relocatable object. */ | |
3028 | bfd_vma gp0 = MINUS_ONE; | |
3029 | /* The offset into the global offset table at which the address of | |
3030 | the relocation entry symbol, adjusted by the addend, resides | |
3031 | during execution. */ | |
3032 | bfd_vma g = MINUS_ONE; | |
3033 | /* The section in which the symbol referenced by the relocation is | |
3034 | located. */ | |
3035 | asection *sec = NULL; | |
3036 | struct mips_elf_link_hash_entry *h = NULL; | |
b34976b6 | 3037 | /* TRUE if the symbol referred to by this relocation is a local |
b49e97c9 | 3038 | symbol. */ |
b34976b6 AM |
3039 | bfd_boolean local_p, was_local_p; |
3040 | /* TRUE if the symbol referred to by this relocation is "_gp_disp". */ | |
3041 | bfd_boolean gp_disp_p = FALSE; | |
b49e97c9 TS |
3042 | Elf_Internal_Shdr *symtab_hdr; |
3043 | size_t extsymoff; | |
3044 | unsigned long r_symndx; | |
3045 | int r_type; | |
b34976b6 | 3046 | /* TRUE if overflow occurred during the calculation of the |
b49e97c9 | 3047 | relocation value. */ |
b34976b6 AM |
3048 | bfd_boolean overflowed_p; |
3049 | /* TRUE if this relocation refers to a MIPS16 function. */ | |
3050 | bfd_boolean target_is_16_bit_code_p = FALSE; | |
b49e97c9 TS |
3051 | |
3052 | /* Parse the relocation. */ | |
3053 | r_symndx = ELF_R_SYM (input_bfd, relocation->r_info); | |
3054 | r_type = ELF_R_TYPE (input_bfd, relocation->r_info); | |
3055 | p = (input_section->output_section->vma | |
3056 | + input_section->output_offset | |
3057 | + relocation->r_offset); | |
3058 | ||
3059 | /* Assume that there will be no overflow. */ | |
b34976b6 | 3060 | overflowed_p = FALSE; |
b49e97c9 TS |
3061 | |
3062 | /* Figure out whether or not the symbol is local, and get the offset | |
3063 | used in the array of hash table entries. */ | |
3064 | symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr; | |
3065 | local_p = mips_elf_local_relocation_p (input_bfd, relocation, | |
b34976b6 | 3066 | local_sections, FALSE); |
bce03d3d | 3067 | was_local_p = local_p; |
b49e97c9 TS |
3068 | if (! elf_bad_symtab (input_bfd)) |
3069 | extsymoff = symtab_hdr->sh_info; | |
3070 | else | |
3071 | { | |
3072 | /* The symbol table does not follow the rule that local symbols | |
3073 | must come before globals. */ | |
3074 | extsymoff = 0; | |
3075 | } | |
3076 | ||
3077 | /* Figure out the value of the symbol. */ | |
3078 | if (local_p) | |
3079 | { | |
3080 | Elf_Internal_Sym *sym; | |
3081 | ||
3082 | sym = local_syms + r_symndx; | |
3083 | sec = local_sections[r_symndx]; | |
3084 | ||
3085 | symbol = sec->output_section->vma + sec->output_offset; | |
d4df96e6 L |
3086 | if (ELF_ST_TYPE (sym->st_info) != STT_SECTION |
3087 | || (sec->flags & SEC_MERGE)) | |
b49e97c9 | 3088 | symbol += sym->st_value; |
d4df96e6 L |
3089 | if ((sec->flags & SEC_MERGE) |
3090 | && ELF_ST_TYPE (sym->st_info) == STT_SECTION) | |
3091 | { | |
3092 | addend = _bfd_elf_rel_local_sym (abfd, sym, &sec, addend); | |
3093 | addend -= symbol; | |
3094 | addend += sec->output_section->vma + sec->output_offset; | |
3095 | } | |
b49e97c9 TS |
3096 | |
3097 | /* MIPS16 text labels should be treated as odd. */ | |
3098 | if (sym->st_other == STO_MIPS16) | |
3099 | ++symbol; | |
3100 | ||
3101 | /* Record the name of this symbol, for our caller. */ | |
3102 | *namep = bfd_elf_string_from_elf_section (input_bfd, | |
3103 | symtab_hdr->sh_link, | |
3104 | sym->st_name); | |
3105 | if (*namep == '\0') | |
3106 | *namep = bfd_section_name (input_bfd, sec); | |
3107 | ||
3108 | target_is_16_bit_code_p = (sym->st_other == STO_MIPS16); | |
3109 | } | |
3110 | else | |
3111 | { | |
560e09e9 NC |
3112 | /* ??? Could we use RELOC_FOR_GLOBAL_SYMBOL here ? */ |
3113 | ||
b49e97c9 TS |
3114 | /* For global symbols we look up the symbol in the hash-table. */ |
3115 | h = ((struct mips_elf_link_hash_entry *) | |
3116 | elf_sym_hashes (input_bfd) [r_symndx - extsymoff]); | |
3117 | /* Find the real hash-table entry for this symbol. */ | |
3118 | while (h->root.root.type == bfd_link_hash_indirect | |
3119 | || h->root.root.type == bfd_link_hash_warning) | |
3120 | h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link; | |
3121 | ||
3122 | /* Record the name of this symbol, for our caller. */ | |
3123 | *namep = h->root.root.root.string; | |
3124 | ||
3125 | /* See if this is the special _gp_disp symbol. Note that such a | |
3126 | symbol must always be a global symbol. */ | |
560e09e9 | 3127 | if (strcmp (*namep, "_gp_disp") == 0 |
b49e97c9 TS |
3128 | && ! NEWABI_P (input_bfd)) |
3129 | { | |
3130 | /* Relocations against _gp_disp are permitted only with | |
3131 | R_MIPS_HI16 and R_MIPS_LO16 relocations. */ | |
3132 | if (r_type != R_MIPS_HI16 && r_type != R_MIPS_LO16) | |
3133 | return bfd_reloc_notsupported; | |
3134 | ||
b34976b6 | 3135 | gp_disp_p = TRUE; |
b49e97c9 TS |
3136 | } |
3137 | /* If this symbol is defined, calculate its address. Note that | |
3138 | _gp_disp is a magic symbol, always implicitly defined by the | |
3139 | linker, so it's inappropriate to check to see whether or not | |
3140 | its defined. */ | |
3141 | else if ((h->root.root.type == bfd_link_hash_defined | |
3142 | || h->root.root.type == bfd_link_hash_defweak) | |
3143 | && h->root.root.u.def.section) | |
3144 | { | |
3145 | sec = h->root.root.u.def.section; | |
3146 | if (sec->output_section) | |
3147 | symbol = (h->root.root.u.def.value | |
3148 | + sec->output_section->vma | |
3149 | + sec->output_offset); | |
3150 | else | |
3151 | symbol = h->root.root.u.def.value; | |
3152 | } | |
3153 | else if (h->root.root.type == bfd_link_hash_undefweak) | |
3154 | /* We allow relocations against undefined weak symbols, giving | |
3155 | it the value zero, so that you can undefined weak functions | |
3156 | and check to see if they exist by looking at their | |
3157 | addresses. */ | |
3158 | symbol = 0; | |
59c2e50f | 3159 | else if (info->unresolved_syms_in_objects == RM_IGNORE |
b49e97c9 TS |
3160 | && ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT) |
3161 | symbol = 0; | |
560e09e9 NC |
3162 | else if (strcmp (*namep, "_DYNAMIC_LINK") == 0 || |
3163 | strcmp (*namep, "_DYNAMIC_LINKING") == 0) | |
b49e97c9 TS |
3164 | { |
3165 | /* If this is a dynamic link, we should have created a | |
3166 | _DYNAMIC_LINK symbol or _DYNAMIC_LINKING(for normal mips) symbol | |
3167 | in in _bfd_mips_elf_create_dynamic_sections. | |
3168 | Otherwise, we should define the symbol with a value of 0. | |
3169 | FIXME: It should probably get into the symbol table | |
3170 | somehow as well. */ | |
3171 | BFD_ASSERT (! info->shared); | |
3172 | BFD_ASSERT (bfd_get_section_by_name (abfd, ".dynamic") == NULL); | |
3173 | symbol = 0; | |
3174 | } | |
3175 | else | |
3176 | { | |
3177 | if (! ((*info->callbacks->undefined_symbol) | |
3178 | (info, h->root.root.root.string, input_bfd, | |
3179 | input_section, relocation->r_offset, | |
59c2e50f L |
3180 | (info->unresolved_syms_in_objects == RM_GENERATE_ERROR) |
3181 | || ELF_ST_VISIBILITY (h->root.other)))) | |
b49e97c9 TS |
3182 | return bfd_reloc_undefined; |
3183 | symbol = 0; | |
3184 | } | |
3185 | ||
3186 | target_is_16_bit_code_p = (h->root.other == STO_MIPS16); | |
3187 | } | |
3188 | ||
3189 | /* If this is a 32- or 64-bit call to a 16-bit function with a stub, we | |
3190 | need to redirect the call to the stub, unless we're already *in* | |
3191 | a stub. */ | |
1049f94e | 3192 | if (r_type != R_MIPS16_26 && !info->relocatable |
b49e97c9 TS |
3193 | && ((h != NULL && h->fn_stub != NULL) |
3194 | || (local_p && elf_tdata (input_bfd)->local_stubs != NULL | |
3195 | && elf_tdata (input_bfd)->local_stubs[r_symndx] != NULL)) | |
3196 | && !mips_elf_stub_section_p (input_bfd, input_section)) | |
3197 | { | |
3198 | /* This is a 32- or 64-bit call to a 16-bit function. We should | |
3199 | have already noticed that we were going to need the | |
3200 | stub. */ | |
3201 | if (local_p) | |
3202 | sec = elf_tdata (input_bfd)->local_stubs[r_symndx]; | |
3203 | else | |
3204 | { | |
3205 | BFD_ASSERT (h->need_fn_stub); | |
3206 | sec = h->fn_stub; | |
3207 | } | |
3208 | ||
3209 | symbol = sec->output_section->vma + sec->output_offset; | |
3210 | } | |
3211 | /* If this is a 16-bit call to a 32- or 64-bit function with a stub, we | |
3212 | need to redirect the call to the stub. */ | |
1049f94e | 3213 | else if (r_type == R_MIPS16_26 && !info->relocatable |
b49e97c9 TS |
3214 | && h != NULL |
3215 | && (h->call_stub != NULL || h->call_fp_stub != NULL) | |
3216 | && !target_is_16_bit_code_p) | |
3217 | { | |
3218 | /* If both call_stub and call_fp_stub are defined, we can figure | |
3219 | out which one to use by seeing which one appears in the input | |
3220 | file. */ | |
3221 | if (h->call_stub != NULL && h->call_fp_stub != NULL) | |
3222 | { | |
3223 | asection *o; | |
3224 | ||
3225 | sec = NULL; | |
3226 | for (o = input_bfd->sections; o != NULL; o = o->next) | |
3227 | { | |
3228 | if (strncmp (bfd_get_section_name (input_bfd, o), | |
3229 | CALL_FP_STUB, sizeof CALL_FP_STUB - 1) == 0) | |
3230 | { | |
3231 | sec = h->call_fp_stub; | |
3232 | break; | |
3233 | } | |
3234 | } | |
3235 | if (sec == NULL) | |
3236 | sec = h->call_stub; | |
3237 | } | |
3238 | else if (h->call_stub != NULL) | |
3239 | sec = h->call_stub; | |
3240 | else | |
3241 | sec = h->call_fp_stub; | |
3242 | ||
3243 | BFD_ASSERT (sec->_raw_size > 0); | |
3244 | symbol = sec->output_section->vma + sec->output_offset; | |
3245 | } | |
3246 | ||
3247 | /* Calls from 16-bit code to 32-bit code and vice versa require the | |
3248 | special jalx instruction. */ | |
1049f94e | 3249 | *require_jalxp = (!info->relocatable |
b49e97c9 TS |
3250 | && (((r_type == R_MIPS16_26) && !target_is_16_bit_code_p) |
3251 | || ((r_type == R_MIPS_26) && target_is_16_bit_code_p))); | |
3252 | ||
3253 | local_p = mips_elf_local_relocation_p (input_bfd, relocation, | |
b34976b6 | 3254 | local_sections, TRUE); |
b49e97c9 TS |
3255 | |
3256 | /* If we haven't already determined the GOT offset, or the GP value, | |
3257 | and we're going to need it, get it now. */ | |
3258 | switch (r_type) | |
3259 | { | |
0fdc1bf1 | 3260 | case R_MIPS_GOT_PAGE: |
93a2b7ae | 3261 | case R_MIPS_GOT_OFST: |
d25aed71 RS |
3262 | /* We need to decay to GOT_DISP/addend if the symbol doesn't |
3263 | bind locally. */ | |
3264 | local_p = local_p || _bfd_elf_symbol_refs_local_p (&h->root, info, 1); | |
93a2b7ae | 3265 | if (local_p || r_type == R_MIPS_GOT_OFST) |
0fdc1bf1 AO |
3266 | break; |
3267 | /* Fall through. */ | |
3268 | ||
b49e97c9 TS |
3269 | case R_MIPS_CALL16: |
3270 | case R_MIPS_GOT16: | |
3271 | case R_MIPS_GOT_DISP: | |
3272 | case R_MIPS_GOT_HI16: | |
3273 | case R_MIPS_CALL_HI16: | |
3274 | case R_MIPS_GOT_LO16: | |
3275 | case R_MIPS_CALL_LO16: | |
3276 | /* Find the index into the GOT where this value is located. */ | |
3277 | if (!local_p) | |
3278 | { | |
0fdc1bf1 AO |
3279 | /* GOT_PAGE may take a non-zero addend, that is ignored in a |
3280 | GOT_PAGE relocation that decays to GOT_DISP because the | |
3281 | symbol turns out to be global. The addend is then added | |
3282 | as GOT_OFST. */ | |
3283 | BFD_ASSERT (addend == 0 || r_type == R_MIPS_GOT_PAGE); | |
b49e97c9 | 3284 | g = mips_elf_global_got_index (elf_hash_table (info)->dynobj, |
f4416af6 | 3285 | input_bfd, |
b49e97c9 TS |
3286 | (struct elf_link_hash_entry *) h); |
3287 | if (! elf_hash_table(info)->dynamic_sections_created | |
3288 | || (info->shared | |
3289 | && (info->symbolic || h->root.dynindx == -1) | |
3290 | && (h->root.elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR))) | |
3291 | { | |
3292 | /* This is a static link or a -Bsymbolic link. The | |
3293 | symbol is defined locally, or was forced to be local. | |
3294 | We must initialize this entry in the GOT. */ | |
3295 | bfd *tmpbfd = elf_hash_table (info)->dynobj; | |
f4416af6 | 3296 | asection *sgot = mips_elf_got_section (tmpbfd, FALSE); |
0fdc1bf1 | 3297 | MIPS_ELF_PUT_WORD (tmpbfd, symbol, sgot->contents + g); |
b49e97c9 TS |
3298 | } |
3299 | } | |
3300 | else if (r_type == R_MIPS_GOT16 || r_type == R_MIPS_CALL16) | |
3301 | /* There's no need to create a local GOT entry here; the | |
3302 | calculation for a local GOT16 entry does not involve G. */ | |
3303 | break; | |
3304 | else | |
3305 | { | |
f4416af6 AO |
3306 | g = mips_elf_local_got_index (abfd, input_bfd, |
3307 | info, symbol + addend); | |
b49e97c9 TS |
3308 | if (g == MINUS_ONE) |
3309 | return bfd_reloc_outofrange; | |
3310 | } | |
3311 | ||
3312 | /* Convert GOT indices to actual offsets. */ | |
3313 | g = mips_elf_got_offset_from_index (elf_hash_table (info)->dynobj, | |
f4416af6 | 3314 | abfd, input_bfd, g); |
b49e97c9 TS |
3315 | break; |
3316 | ||
3317 | case R_MIPS_HI16: | |
3318 | case R_MIPS_LO16: | |
3319 | case R_MIPS16_GPREL: | |
3320 | case R_MIPS_GPREL16: | |
3321 | case R_MIPS_GPREL32: | |
3322 | case R_MIPS_LITERAL: | |
3323 | gp0 = _bfd_get_gp_value (input_bfd); | |
3324 | gp = _bfd_get_gp_value (abfd); | |
f4416af6 AO |
3325 | if (elf_hash_table (info)->dynobj) |
3326 | gp += mips_elf_adjust_gp (abfd, | |
3327 | mips_elf_got_info | |
3328 | (elf_hash_table (info)->dynobj, NULL), | |
3329 | input_bfd); | |
b49e97c9 TS |
3330 | break; |
3331 | ||
3332 | default: | |
3333 | break; | |
3334 | } | |
3335 | ||
3336 | /* Figure out what kind of relocation is being performed. */ | |
3337 | switch (r_type) | |
3338 | { | |
3339 | case R_MIPS_NONE: | |
3340 | return bfd_reloc_continue; | |
3341 | ||
3342 | case R_MIPS_16: | |
a7ebbfdf | 3343 | value = symbol + _bfd_mips_elf_sign_extend (addend, 16); |
b49e97c9 TS |
3344 | overflowed_p = mips_elf_overflow_p (value, 16); |
3345 | break; | |
3346 | ||
3347 | case R_MIPS_32: | |
3348 | case R_MIPS_REL32: | |
3349 | case R_MIPS_64: | |
3350 | if ((info->shared | |
3351 | || (elf_hash_table (info)->dynamic_sections_created | |
3352 | && h != NULL | |
3353 | && ((h->root.elf_link_hash_flags | |
3354 | & ELF_LINK_HASH_DEF_DYNAMIC) != 0) | |
3355 | && ((h->root.elf_link_hash_flags | |
3356 | & ELF_LINK_HASH_DEF_REGULAR) == 0))) | |
3357 | && r_symndx != 0 | |
3358 | && (input_section->flags & SEC_ALLOC) != 0) | |
3359 | { | |
3360 | /* If we're creating a shared library, or this relocation is | |
3361 | against a symbol in a shared library, then we can't know | |
3362 | where the symbol will end up. So, we create a relocation | |
3363 | record in the output, and leave the job up to the dynamic | |
3364 | linker. */ | |
3365 | value = addend; | |
3366 | if (!mips_elf_create_dynamic_relocation (abfd, | |
3367 | info, | |
3368 | relocation, | |
3369 | h, | |
3370 | sec, | |
3371 | symbol, | |
3372 | &value, | |
3373 | input_section)) | |
3374 | return bfd_reloc_undefined; | |
3375 | } | |
3376 | else | |
3377 | { | |
3378 | if (r_type != R_MIPS_REL32) | |
3379 | value = symbol + addend; | |
3380 | else | |
3381 | value = addend; | |
3382 | } | |
3383 | value &= howto->dst_mask; | |
3384 | break; | |
3385 | ||
3386 | case R_MIPS_PC32: | |
3387 | case R_MIPS_PC64: | |
3388 | case R_MIPS_GNU_REL_LO16: | |
3389 | value = symbol + addend - p; | |
3390 | value &= howto->dst_mask; | |
3391 | break; | |
3392 | ||
0b25d3e6 | 3393 | case R_MIPS_GNU_REL16_S2: |
30ac9238 | 3394 | value = symbol + _bfd_mips_elf_sign_extend (addend, 18) - p; |
0b25d3e6 AO |
3395 | overflowed_p = mips_elf_overflow_p (value, 18); |
3396 | value = (value >> 2) & howto->dst_mask; | |
3397 | break; | |
3398 | ||
b49e97c9 TS |
3399 | case R_MIPS_GNU_REL_HI16: |
3400 | /* Instead of subtracting 'p' here, we should be subtracting the | |
3401 | equivalent value for the LO part of the reloc, since the value | |
3402 | here is relative to that address. Because that's not easy to do, | |
3403 | we adjust 'addend' in _bfd_mips_elf_relocate_section(). See also | |
3404 | the comment there for more information. */ | |
3405 | value = mips_elf_high (addend + symbol - p); | |
3406 | value &= howto->dst_mask; | |
3407 | break; | |
3408 | ||
3409 | case R_MIPS16_26: | |
3410 | /* The calculation for R_MIPS16_26 is just the same as for an | |
3411 | R_MIPS_26. It's only the storage of the relocated field into | |
3412 | the output file that's different. That's handled in | |
3413 | mips_elf_perform_relocation. So, we just fall through to the | |
3414 | R_MIPS_26 case here. */ | |
3415 | case R_MIPS_26: | |
3416 | if (local_p) | |
30ac9238 | 3417 | value = ((addend | ((p + 4) & 0xf0000000)) + symbol) >> 2; |
b49e97c9 | 3418 | else |
30ac9238 | 3419 | value = (_bfd_mips_elf_sign_extend (addend, 28) + symbol) >> 2; |
b49e97c9 TS |
3420 | value &= howto->dst_mask; |
3421 | break; | |
3422 | ||
3423 | case R_MIPS_HI16: | |
3424 | if (!gp_disp_p) | |
3425 | { | |
3426 | value = mips_elf_high (addend + symbol); | |
3427 | value &= howto->dst_mask; | |
3428 | } | |
3429 | else | |
3430 | { | |
3431 | value = mips_elf_high (addend + gp - p); | |
3432 | overflowed_p = mips_elf_overflow_p (value, 16); | |
3433 | } | |
3434 | break; | |
3435 | ||
3436 | case R_MIPS_LO16: | |
3437 | if (!gp_disp_p) | |
3438 | value = (symbol + addend) & howto->dst_mask; | |
3439 | else | |
3440 | { | |
3441 | value = addend + gp - p + 4; | |
3442 | /* The MIPS ABI requires checking the R_MIPS_LO16 relocation | |
8dc1a139 | 3443 | for overflow. But, on, say, IRIX5, relocations against |
b49e97c9 TS |
3444 | _gp_disp are normally generated from the .cpload |
3445 | pseudo-op. It generates code that normally looks like | |
3446 | this: | |
3447 | ||
3448 | lui $gp,%hi(_gp_disp) | |
3449 | addiu $gp,$gp,%lo(_gp_disp) | |
3450 | addu $gp,$gp,$t9 | |
3451 | ||
3452 | Here $t9 holds the address of the function being called, | |
3453 | as required by the MIPS ELF ABI. The R_MIPS_LO16 | |
3454 | relocation can easily overflow in this situation, but the | |
3455 | R_MIPS_HI16 relocation will handle the overflow. | |
3456 | Therefore, we consider this a bug in the MIPS ABI, and do | |
3457 | not check for overflow here. */ | |
3458 | } | |
3459 | break; | |
3460 | ||
3461 | case R_MIPS_LITERAL: | |
3462 | /* Because we don't merge literal sections, we can handle this | |
3463 | just like R_MIPS_GPREL16. In the long run, we should merge | |
3464 | shared literals, and then we will need to additional work | |
3465 | here. */ | |
3466 | ||
3467 | /* Fall through. */ | |
3468 | ||
3469 | case R_MIPS16_GPREL: | |
3470 | /* The R_MIPS16_GPREL performs the same calculation as | |
3471 | R_MIPS_GPREL16, but stores the relocated bits in a different | |
3472 | order. We don't need to do anything special here; the | |
3473 | differences are handled in mips_elf_perform_relocation. */ | |
3474 | case R_MIPS_GPREL16: | |
bce03d3d AO |
3475 | /* Only sign-extend the addend if it was extracted from the |
3476 | instruction. If the addend was separate, leave it alone, | |
3477 | otherwise we may lose significant bits. */ | |
3478 | if (howto->partial_inplace) | |
a7ebbfdf | 3479 | addend = _bfd_mips_elf_sign_extend (addend, 16); |
bce03d3d AO |
3480 | value = symbol + addend - gp; |
3481 | /* If the symbol was local, any earlier relocatable links will | |
3482 | have adjusted its addend with the gp offset, so compensate | |
3483 | for that now. Don't do it for symbols forced local in this | |
3484 | link, though, since they won't have had the gp offset applied | |
3485 | to them before. */ | |
3486 | if (was_local_p) | |
3487 | value += gp0; | |
b49e97c9 TS |
3488 | overflowed_p = mips_elf_overflow_p (value, 16); |
3489 | break; | |
3490 | ||
3491 | case R_MIPS_GOT16: | |
3492 | case R_MIPS_CALL16: | |
3493 | if (local_p) | |
3494 | { | |
b34976b6 | 3495 | bfd_boolean forced; |
b49e97c9 TS |
3496 | |
3497 | /* The special case is when the symbol is forced to be local. We | |
3498 | need the full address in the GOT since no R_MIPS_LO16 relocation | |
3499 | follows. */ | |
3500 | forced = ! mips_elf_local_relocation_p (input_bfd, relocation, | |
b34976b6 | 3501 | local_sections, FALSE); |
f4416af6 AO |
3502 | value = mips_elf_got16_entry (abfd, input_bfd, info, |
3503 | symbol + addend, forced); | |
b49e97c9 TS |
3504 | if (value == MINUS_ONE) |
3505 | return bfd_reloc_outofrange; | |
3506 | value | |
3507 | = mips_elf_got_offset_from_index (elf_hash_table (info)->dynobj, | |
f4416af6 | 3508 | abfd, input_bfd, value); |
b49e97c9 TS |
3509 | overflowed_p = mips_elf_overflow_p (value, 16); |
3510 | break; | |
3511 | } | |
3512 | ||
3513 | /* Fall through. */ | |
3514 | ||
3515 | case R_MIPS_GOT_DISP: | |
0fdc1bf1 | 3516 | got_disp: |
b49e97c9 TS |
3517 | value = g; |
3518 | overflowed_p = mips_elf_overflow_p (value, 16); | |
3519 | break; | |
3520 | ||
3521 | case R_MIPS_GPREL32: | |
bce03d3d AO |
3522 | value = (addend + symbol + gp0 - gp); |
3523 | if (!save_addend) | |
3524 | value &= howto->dst_mask; | |
b49e97c9 TS |
3525 | break; |
3526 | ||
3527 | case R_MIPS_PC16: | |
a7ebbfdf | 3528 | value = _bfd_mips_elf_sign_extend (addend, 16) + symbol - p; |
0b25d3e6 | 3529 | overflowed_p = mips_elf_overflow_p (value, 16); |
b49e97c9 TS |
3530 | break; |
3531 | ||
3532 | case R_MIPS_GOT_HI16: | |
3533 | case R_MIPS_CALL_HI16: | |
3534 | /* We're allowed to handle these two relocations identically. | |
3535 | The dynamic linker is allowed to handle the CALL relocations | |
3536 | differently by creating a lazy evaluation stub. */ | |
3537 | value = g; | |
3538 | value = mips_elf_high (value); | |
3539 | value &= howto->dst_mask; | |
3540 | break; | |
3541 | ||
3542 | case R_MIPS_GOT_LO16: | |
3543 | case R_MIPS_CALL_LO16: | |
3544 | value = g & howto->dst_mask; | |
3545 | break; | |
3546 | ||
3547 | case R_MIPS_GOT_PAGE: | |
0fdc1bf1 AO |
3548 | /* GOT_PAGE relocations that reference non-local symbols decay |
3549 | to GOT_DISP. The corresponding GOT_OFST relocation decays to | |
3550 | 0. */ | |
93a2b7ae | 3551 | if (! local_p) |
0fdc1bf1 | 3552 | goto got_disp; |
f4416af6 | 3553 | value = mips_elf_got_page (abfd, input_bfd, info, symbol + addend, NULL); |
b49e97c9 TS |
3554 | if (value == MINUS_ONE) |
3555 | return bfd_reloc_outofrange; | |
3556 | value = mips_elf_got_offset_from_index (elf_hash_table (info)->dynobj, | |
f4416af6 | 3557 | abfd, input_bfd, value); |
b49e97c9 TS |
3558 | overflowed_p = mips_elf_overflow_p (value, 16); |
3559 | break; | |
3560 | ||
3561 | case R_MIPS_GOT_OFST: | |
93a2b7ae | 3562 | if (local_p) |
0fdc1bf1 AO |
3563 | mips_elf_got_page (abfd, input_bfd, info, symbol + addend, &value); |
3564 | else | |
3565 | value = addend; | |
b49e97c9 TS |
3566 | overflowed_p = mips_elf_overflow_p (value, 16); |
3567 | break; | |
3568 | ||
3569 | case R_MIPS_SUB: | |
3570 | value = symbol - addend; | |
3571 | value &= howto->dst_mask; | |
3572 | break; | |
3573 | ||
3574 | case R_MIPS_HIGHER: | |
3575 | value = mips_elf_higher (addend + symbol); | |
3576 | value &= howto->dst_mask; | |
3577 | break; | |
3578 | ||
3579 | case R_MIPS_HIGHEST: | |
3580 | value = mips_elf_highest (addend + symbol); | |
3581 | value &= howto->dst_mask; | |
3582 | break; | |
3583 | ||
3584 | case R_MIPS_SCN_DISP: | |
3585 | value = symbol + addend - sec->output_offset; | |
3586 | value &= howto->dst_mask; | |
3587 | break; | |
3588 | ||
3589 | case R_MIPS_PJUMP: | |
3590 | case R_MIPS_JALR: | |
3591 | /* Both of these may be ignored. R_MIPS_JALR is an optimization | |
3592 | hint; we could improve performance by honoring that hint. */ | |
3593 | return bfd_reloc_continue; | |
3594 | ||
3595 | case R_MIPS_GNU_VTINHERIT: | |
3596 | case R_MIPS_GNU_VTENTRY: | |
3597 | /* We don't do anything with these at present. */ | |
3598 | return bfd_reloc_continue; | |
3599 | ||
3600 | default: | |
3601 | /* An unrecognized relocation type. */ | |
3602 | return bfd_reloc_notsupported; | |
3603 | } | |
3604 | ||
3605 | /* Store the VALUE for our caller. */ | |
3606 | *valuep = value; | |
3607 | return overflowed_p ? bfd_reloc_overflow : bfd_reloc_ok; | |
3608 | } | |
3609 | ||
3610 | /* Obtain the field relocated by RELOCATION. */ | |
3611 | ||
3612 | static bfd_vma | |
9719ad41 RS |
3613 | mips_elf_obtain_contents (reloc_howto_type *howto, |
3614 | const Elf_Internal_Rela *relocation, | |
3615 | bfd *input_bfd, bfd_byte *contents) | |
b49e97c9 TS |
3616 | { |
3617 | bfd_vma x; | |
3618 | bfd_byte *location = contents + relocation->r_offset; | |
3619 | ||
3620 | /* Obtain the bytes. */ | |
3621 | x = bfd_get ((8 * bfd_get_reloc_size (howto)), input_bfd, location); | |
3622 | ||
3623 | if ((ELF_R_TYPE (input_bfd, relocation->r_info) == R_MIPS16_26 | |
3624 | || ELF_R_TYPE (input_bfd, relocation->r_info) == R_MIPS16_GPREL) | |
3625 | && bfd_little_endian (input_bfd)) | |
3626 | /* The two 16-bit words will be reversed on a little-endian system. | |
3627 | See mips_elf_perform_relocation for more details. */ | |
3628 | x = (((x & 0xffff) << 16) | ((x & 0xffff0000) >> 16)); | |
3629 | ||
3630 | return x; | |
3631 | } | |
3632 | ||
3633 | /* It has been determined that the result of the RELOCATION is the | |
3634 | VALUE. Use HOWTO to place VALUE into the output file at the | |
3635 | appropriate position. The SECTION is the section to which the | |
b34976b6 | 3636 | relocation applies. If REQUIRE_JALX is TRUE, then the opcode used |
b49e97c9 TS |
3637 | for the relocation must be either JAL or JALX, and it is |
3638 | unconditionally converted to JALX. | |
3639 | ||
b34976b6 | 3640 | Returns FALSE if anything goes wrong. */ |
b49e97c9 | 3641 | |
b34976b6 | 3642 | static bfd_boolean |
9719ad41 RS |
3643 | mips_elf_perform_relocation (struct bfd_link_info *info, |
3644 | reloc_howto_type *howto, | |
3645 | const Elf_Internal_Rela *relocation, | |
3646 | bfd_vma value, bfd *input_bfd, | |
3647 | asection *input_section, bfd_byte *contents, | |
3648 | bfd_boolean require_jalx) | |
b49e97c9 TS |
3649 | { |
3650 | bfd_vma x; | |
3651 | bfd_byte *location; | |
3652 | int r_type = ELF_R_TYPE (input_bfd, relocation->r_info); | |
3653 | ||
3654 | /* Figure out where the relocation is occurring. */ | |
3655 | location = contents + relocation->r_offset; | |
3656 | ||
3657 | /* Obtain the current value. */ | |
3658 | x = mips_elf_obtain_contents (howto, relocation, input_bfd, contents); | |
3659 | ||
3660 | /* Clear the field we are setting. */ | |
3661 | x &= ~howto->dst_mask; | |
3662 | ||
3663 | /* If this is the R_MIPS16_26 relocation, we must store the | |
3664 | value in a funny way. */ | |
3665 | if (r_type == R_MIPS16_26) | |
3666 | { | |
3667 | /* R_MIPS16_26 is used for the mips16 jal and jalx instructions. | |
3668 | Most mips16 instructions are 16 bits, but these instructions | |
3669 | are 32 bits. | |
3670 | ||
3671 | The format of these instructions is: | |
3672 | ||
3673 | +--------------+--------------------------------+ | |
3674 | ! JALX ! X! Imm 20:16 ! Imm 25:21 ! | |
3675 | +--------------+--------------------------------+ | |
3676 | ! Immediate 15:0 ! | |
3677 | +-----------------------------------------------+ | |
3678 | ||
3679 | JALX is the 5-bit value 00011. X is 0 for jal, 1 for jalx. | |
3680 | Note that the immediate value in the first word is swapped. | |
3681 | ||
1049f94e | 3682 | When producing a relocatable object file, R_MIPS16_26 is |
b49e97c9 TS |
3683 | handled mostly like R_MIPS_26. In particular, the addend is |
3684 | stored as a straight 26-bit value in a 32-bit instruction. | |
3685 | (gas makes life simpler for itself by never adjusting a | |
3686 | R_MIPS16_26 reloc to be against a section, so the addend is | |
3687 | always zero). However, the 32 bit instruction is stored as 2 | |
3688 | 16-bit values, rather than a single 32-bit value. In a | |
3689 | big-endian file, the result is the same; in a little-endian | |
3690 | file, the two 16-bit halves of the 32 bit value are swapped. | |
3691 | This is so that a disassembler can recognize the jal | |
3692 | instruction. | |
3693 | ||
3694 | When doing a final link, R_MIPS16_26 is treated as a 32 bit | |
3695 | instruction stored as two 16-bit values. The addend A is the | |
3696 | contents of the targ26 field. The calculation is the same as | |
3697 | R_MIPS_26. When storing the calculated value, reorder the | |
3698 | immediate value as shown above, and don't forget to store the | |
3699 | value as two 16-bit values. | |
3700 | ||
3701 | To put it in MIPS ABI terms, the relocation field is T-targ26-16, | |
3702 | defined as | |
3703 | ||
3704 | big-endian: | |
3705 | +--------+----------------------+ | |
3706 | | | | | |
3707 | | | targ26-16 | | |
3708 | |31 26|25 0| | |
3709 | +--------+----------------------+ | |
3710 | ||
3711 | little-endian: | |
3712 | +----------+------+-------------+ | |
3713 | | | | | | |
3714 | | sub1 | | sub2 | | |
3715 | |0 9|10 15|16 31| | |
3716 | +----------+--------------------+ | |
3717 | where targ26-16 is sub1 followed by sub2 (i.e., the addend field A is | |
3718 | ((sub1 << 16) | sub2)). | |
3719 | ||
1049f94e | 3720 | When producing a relocatable object file, the calculation is |
b49e97c9 TS |
3721 | (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2) |
3722 | When producing a fully linked file, the calculation is | |
3723 | let R = (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2) | |
3724 | ((R & 0x1f0000) << 5) | ((R & 0x3e00000) >> 5) | (R & 0xffff) */ | |
3725 | ||
1049f94e | 3726 | if (!info->relocatable) |
b49e97c9 TS |
3727 | /* Shuffle the bits according to the formula above. */ |
3728 | value = (((value & 0x1f0000) << 5) | |
3729 | | ((value & 0x3e00000) >> 5) | |
3730 | | (value & 0xffff)); | |
3731 | } | |
3732 | else if (r_type == R_MIPS16_GPREL) | |
3733 | { | |
3734 | /* R_MIPS16_GPREL is used for GP-relative addressing in mips16 | |
3735 | mode. A typical instruction will have a format like this: | |
3736 | ||
3737 | +--------------+--------------------------------+ | |
3738 | ! EXTEND ! Imm 10:5 ! Imm 15:11 ! | |
3739 | +--------------+--------------------------------+ | |
3740 | ! Major ! rx ! ry ! Imm 4:0 ! | |
3741 | +--------------+--------------------------------+ | |
3742 | ||
3743 | EXTEND is the five bit value 11110. Major is the instruction | |
3744 | opcode. | |
3745 | ||
3746 | This is handled exactly like R_MIPS_GPREL16, except that the | |
3747 | addend is retrieved and stored as shown in this diagram; that | |
3748 | is, the Imm fields above replace the V-rel16 field. | |
3749 | ||
3750 | All we need to do here is shuffle the bits appropriately. As | |
3751 | above, the two 16-bit halves must be swapped on a | |
3752 | little-endian system. */ | |
3753 | value = (((value & 0x7e0) << 16) | |
3754 | | ((value & 0xf800) << 5) | |
3755 | | (value & 0x1f)); | |
3756 | } | |
3757 | ||
3758 | /* Set the field. */ | |
3759 | x |= (value & howto->dst_mask); | |
3760 | ||
3761 | /* If required, turn JAL into JALX. */ | |
3762 | if (require_jalx) | |
3763 | { | |
b34976b6 | 3764 | bfd_boolean ok; |
b49e97c9 TS |
3765 | bfd_vma opcode = x >> 26; |
3766 | bfd_vma jalx_opcode; | |
3767 | ||
3768 | /* Check to see if the opcode is already JAL or JALX. */ | |
3769 | if (r_type == R_MIPS16_26) | |
3770 | { | |
3771 | ok = ((opcode == 0x6) || (opcode == 0x7)); | |
3772 | jalx_opcode = 0x7; | |
3773 | } | |
3774 | else | |
3775 | { | |
3776 | ok = ((opcode == 0x3) || (opcode == 0x1d)); | |
3777 | jalx_opcode = 0x1d; | |
3778 | } | |
3779 | ||
3780 | /* If the opcode is not JAL or JALX, there's a problem. */ | |
3781 | if (!ok) | |
3782 | { | |
3783 | (*_bfd_error_handler) | |
3784 | (_("%s: %s+0x%lx: jump to stub routine which is not jal"), | |
3785 | bfd_archive_filename (input_bfd), | |
3786 | input_section->name, | |
3787 | (unsigned long) relocation->r_offset); | |
3788 | bfd_set_error (bfd_error_bad_value); | |
b34976b6 | 3789 | return FALSE; |
b49e97c9 TS |
3790 | } |
3791 | ||
3792 | /* Make this the JALX opcode. */ | |
3793 | x = (x & ~(0x3f << 26)) | (jalx_opcode << 26); | |
3794 | } | |
3795 | ||
3796 | /* Swap the high- and low-order 16 bits on little-endian systems | |
3797 | when doing a MIPS16 relocation. */ | |
3798 | if ((r_type == R_MIPS16_GPREL || r_type == R_MIPS16_26) | |
3799 | && bfd_little_endian (input_bfd)) | |
3800 | x = (((x & 0xffff) << 16) | ((x & 0xffff0000) >> 16)); | |
3801 | ||
3802 | /* Put the value into the output. */ | |
3803 | bfd_put (8 * bfd_get_reloc_size (howto), input_bfd, x, location); | |
b34976b6 | 3804 | return TRUE; |
b49e97c9 TS |
3805 | } |
3806 | ||
b34976b6 | 3807 | /* Returns TRUE if SECTION is a MIPS16 stub section. */ |
b49e97c9 | 3808 | |
b34976b6 | 3809 | static bfd_boolean |
9719ad41 | 3810 | mips_elf_stub_section_p (bfd *abfd ATTRIBUTE_UNUSED, asection *section) |
b49e97c9 TS |
3811 | { |
3812 | const char *name = bfd_get_section_name (abfd, section); | |
3813 | ||
3814 | return (strncmp (name, FN_STUB, sizeof FN_STUB - 1) == 0 | |
3815 | || strncmp (name, CALL_STUB, sizeof CALL_STUB - 1) == 0 | |
3816 | || strncmp (name, CALL_FP_STUB, sizeof CALL_FP_STUB - 1) == 0); | |
3817 | } | |
3818 | \f | |
3819 | /* Add room for N relocations to the .rel.dyn section in ABFD. */ | |
3820 | ||
3821 | static void | |
9719ad41 | 3822 | mips_elf_allocate_dynamic_relocations (bfd *abfd, unsigned int n) |
b49e97c9 TS |
3823 | { |
3824 | asection *s; | |
3825 | ||
f4416af6 | 3826 | s = mips_elf_rel_dyn_section (abfd, FALSE); |
b49e97c9 TS |
3827 | BFD_ASSERT (s != NULL); |
3828 | ||
3829 | if (s->_raw_size == 0) | |
3830 | { | |
3831 | /* Make room for a null element. */ | |
3832 | s->_raw_size += MIPS_ELF_REL_SIZE (abfd); | |
3833 | ++s->reloc_count; | |
3834 | } | |
3835 | s->_raw_size += n * MIPS_ELF_REL_SIZE (abfd); | |
3836 | } | |
3837 | ||
3838 | /* Create a rel.dyn relocation for the dynamic linker to resolve. REL | |
3839 | is the original relocation, which is now being transformed into a | |
3840 | dynamic relocation. The ADDENDP is adjusted if necessary; the | |
3841 | caller should store the result in place of the original addend. */ | |
3842 | ||
b34976b6 | 3843 | static bfd_boolean |
9719ad41 RS |
3844 | mips_elf_create_dynamic_relocation (bfd *output_bfd, |
3845 | struct bfd_link_info *info, | |
3846 | const Elf_Internal_Rela *rel, | |
3847 | struct mips_elf_link_hash_entry *h, | |
3848 | asection *sec, bfd_vma symbol, | |
3849 | bfd_vma *addendp, asection *input_section) | |
b49e97c9 | 3850 | { |
947216bf | 3851 | Elf_Internal_Rela outrel[3]; |
b34976b6 | 3852 | bfd_boolean skip; |
b49e97c9 TS |
3853 | asection *sreloc; |
3854 | bfd *dynobj; | |
3855 | int r_type; | |
3856 | ||
3857 | r_type = ELF_R_TYPE (output_bfd, rel->r_info); | |
3858 | dynobj = elf_hash_table (info)->dynobj; | |
f4416af6 | 3859 | sreloc = mips_elf_rel_dyn_section (dynobj, FALSE); |
b49e97c9 TS |
3860 | BFD_ASSERT (sreloc != NULL); |
3861 | BFD_ASSERT (sreloc->contents != NULL); | |
3862 | BFD_ASSERT (sreloc->reloc_count * MIPS_ELF_REL_SIZE (output_bfd) | |
3863 | < sreloc->_raw_size); | |
3864 | ||
b34976b6 | 3865 | skip = FALSE; |
b49e97c9 TS |
3866 | outrel[0].r_offset = |
3867 | _bfd_elf_section_offset (output_bfd, info, input_section, rel[0].r_offset); | |
3868 | outrel[1].r_offset = | |
3869 | _bfd_elf_section_offset (output_bfd, info, input_section, rel[1].r_offset); | |
3870 | outrel[2].r_offset = | |
3871 | _bfd_elf_section_offset (output_bfd, info, input_section, rel[2].r_offset); | |
3872 | ||
3873 | #if 0 | |
3874 | /* We begin by assuming that the offset for the dynamic relocation | |
3875 | is the same as for the original relocation. We'll adjust this | |
3876 | later to reflect the correct output offsets. */ | |
a7ebbfdf | 3877 | if (input_section->sec_info_type != ELF_INFO_TYPE_STABS) |
b49e97c9 TS |
3878 | { |
3879 | outrel[1].r_offset = rel[1].r_offset; | |
3880 | outrel[2].r_offset = rel[2].r_offset; | |
3881 | } | |
3882 | else | |
3883 | { | |
3884 | /* Except that in a stab section things are more complex. | |
3885 | Because we compress stab information, the offset given in the | |
3886 | relocation may not be the one we want; we must let the stabs | |
3887 | machinery tell us the offset. */ | |
3888 | outrel[1].r_offset = outrel[0].r_offset; | |
3889 | outrel[2].r_offset = outrel[0].r_offset; | |
3890 | /* If we didn't need the relocation at all, this value will be | |
3891 | -1. */ | |
3892 | if (outrel[0].r_offset == (bfd_vma) -1) | |
b34976b6 | 3893 | skip = TRUE; |
b49e97c9 TS |
3894 | } |
3895 | #endif | |
3896 | ||
0d591ff7 RS |
3897 | if (outrel[0].r_offset == (bfd_vma) -1) |
3898 | /* The relocation field has been deleted. */ | |
b34976b6 | 3899 | skip = TRUE; |
0d591ff7 RS |
3900 | else if (outrel[0].r_offset == (bfd_vma) -2) |
3901 | { | |
3902 | /* The relocation field has been converted into a relative value of | |
3903 | some sort. Functions like _bfd_elf_write_section_eh_frame expect | |
3904 | the field to be fully relocated, so add in the symbol's value. */ | |
3905 | skip = TRUE; | |
3906 | *addendp += symbol; | |
3907 | } | |
b49e97c9 TS |
3908 | |
3909 | /* If we've decided to skip this relocation, just output an empty | |
3910 | record. Note that R_MIPS_NONE == 0, so that this call to memset | |
3911 | is a way of setting R_TYPE to R_MIPS_NONE. */ | |
3912 | if (skip) | |
947216bf | 3913 | memset (outrel, 0, sizeof (Elf_Internal_Rela) * 3); |
b49e97c9 TS |
3914 | else |
3915 | { | |
3916 | long indx; | |
d2fba50d | 3917 | bfd_boolean defined_p; |
b49e97c9 TS |
3918 | |
3919 | /* We must now calculate the dynamic symbol table index to use | |
3920 | in the relocation. */ | |
3921 | if (h != NULL | |
3922 | && (! info->symbolic || (h->root.elf_link_hash_flags | |
fdd07405 | 3923 | & ELF_LINK_HASH_DEF_REGULAR) == 0) |
b49e97c9 TS |
3924 | /* h->root.dynindx may be -1 if this symbol was marked to |
3925 | become local. */ | |
fdd07405 RS |
3926 | && h->root.dynindx != -1) |
3927 | { | |
3928 | indx = h->root.dynindx; | |
d2fba50d RS |
3929 | if (SGI_COMPAT (output_bfd)) |
3930 | defined_p = ((h->root.elf_link_hash_flags | |
3931 | & ELF_LINK_HASH_DEF_REGULAR) != 0); | |
3932 | else | |
3933 | /* ??? glibc's ld.so just adds the final GOT entry to the | |
3934 | relocation field. It therefore treats relocs against | |
3935 | defined symbols in the same way as relocs against | |
3936 | undefined symbols. */ | |
3937 | defined_p = FALSE; | |
b49e97c9 TS |
3938 | } |
3939 | else | |
3940 | { | |
3941 | if (sec != NULL && bfd_is_abs_section (sec)) | |
3942 | indx = 0; | |
3943 | else if (sec == NULL || sec->owner == NULL) | |
3944 | { | |
3945 | bfd_set_error (bfd_error_bad_value); | |
b34976b6 | 3946 | return FALSE; |
b49e97c9 TS |
3947 | } |
3948 | else | |
3949 | { | |
3950 | indx = elf_section_data (sec->output_section)->dynindx; | |
3951 | if (indx == 0) | |
3952 | abort (); | |
3953 | } | |
3954 | ||
908488f1 AO |
3955 | /* Instead of generating a relocation using the section |
3956 | symbol, we may as well make it a fully relative | |
3957 | relocation. We want to avoid generating relocations to | |
3958 | local symbols because we used to generate them | |
3959 | incorrectly, without adding the original symbol value, | |
3960 | which is mandated by the ABI for section symbols. In | |
3961 | order to give dynamic loaders and applications time to | |
3962 | phase out the incorrect use, we refrain from emitting | |
3963 | section-relative relocations. It's not like they're | |
3964 | useful, after all. This should be a bit more efficient | |
3965 | as well. */ | |
fdd07405 RS |
3966 | /* ??? Although this behavior is compatible with glibc's ld.so, |
3967 | the ABI says that relocations against STN_UNDEF should have | |
3968 | a symbol value of 0. Irix rld honors this, so relocations | |
3969 | against STN_UNDEF have no effect. */ | |
3970 | if (!SGI_COMPAT (output_bfd)) | |
3971 | indx = 0; | |
d2fba50d | 3972 | defined_p = TRUE; |
b49e97c9 TS |
3973 | } |
3974 | ||
3975 | /* If the relocation was previously an absolute relocation and | |
3976 | this symbol will not be referred to by the relocation, we must | |
3977 | adjust it by the value we give it in the dynamic symbol table. | |
3978 | Otherwise leave the job up to the dynamic linker. */ | |
d2fba50d | 3979 | if (defined_p && r_type != R_MIPS_REL32) |
b49e97c9 TS |
3980 | *addendp += symbol; |
3981 | ||
3982 | /* The relocation is always an REL32 relocation because we don't | |
3983 | know where the shared library will wind up at load-time. */ | |
34ea4a36 TS |
3984 | outrel[0].r_info = ELF_R_INFO (output_bfd, (unsigned long) indx, |
3985 | R_MIPS_REL32); | |
908488f1 AO |
3986 | /* For strict adherence to the ABI specification, we should |
3987 | generate a R_MIPS_64 relocation record by itself before the | |
3988 | _REL32/_64 record as well, such that the addend is read in as | |
3989 | a 64-bit value (REL32 is a 32-bit relocation, after all). | |
3990 | However, since none of the existing ELF64 MIPS dynamic | |
3991 | loaders seems to care, we don't waste space with these | |
3992 | artificial relocations. If this turns out to not be true, | |
3993 | mips_elf_allocate_dynamic_relocation() should be tweaked so | |
3994 | as to make room for a pair of dynamic relocations per | |
3995 | invocation if ABI_64_P, and here we should generate an | |
3996 | additional relocation record with R_MIPS_64 by itself for a | |
3997 | NULL symbol before this relocation record. */ | |
9719ad41 | 3998 | outrel[1].r_info = ELF_R_INFO (output_bfd, 0, |
033fd5f9 AO |
3999 | ABI_64_P (output_bfd) |
4000 | ? R_MIPS_64 | |
4001 | : R_MIPS_NONE); | |
9719ad41 | 4002 | outrel[2].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_NONE); |
b49e97c9 TS |
4003 | |
4004 | /* Adjust the output offset of the relocation to reference the | |
4005 | correct location in the output file. */ | |
4006 | outrel[0].r_offset += (input_section->output_section->vma | |
4007 | + input_section->output_offset); | |
4008 | outrel[1].r_offset += (input_section->output_section->vma | |
4009 | + input_section->output_offset); | |
4010 | outrel[2].r_offset += (input_section->output_section->vma | |
4011 | + input_section->output_offset); | |
4012 | } | |
4013 | ||
4014 | /* Put the relocation back out. We have to use the special | |
4015 | relocation outputter in the 64-bit case since the 64-bit | |
4016 | relocation format is non-standard. */ | |
4017 | if (ABI_64_P (output_bfd)) | |
4018 | { | |
4019 | (*get_elf_backend_data (output_bfd)->s->swap_reloc_out) | |
4020 | (output_bfd, &outrel[0], | |
4021 | (sreloc->contents | |
4022 | + sreloc->reloc_count * sizeof (Elf64_Mips_External_Rel))); | |
4023 | } | |
4024 | else | |
947216bf AM |
4025 | bfd_elf32_swap_reloc_out |
4026 | (output_bfd, &outrel[0], | |
4027 | (sreloc->contents + sreloc->reloc_count * sizeof (Elf32_External_Rel))); | |
b49e97c9 | 4028 | |
b49e97c9 TS |
4029 | /* We've now added another relocation. */ |
4030 | ++sreloc->reloc_count; | |
4031 | ||
4032 | /* Make sure the output section is writable. The dynamic linker | |
4033 | will be writing to it. */ | |
4034 | elf_section_data (input_section->output_section)->this_hdr.sh_flags | |
4035 | |= SHF_WRITE; | |
4036 | ||
4037 | /* On IRIX5, make an entry of compact relocation info. */ | |
4038 | if (! skip && IRIX_COMPAT (output_bfd) == ict_irix5) | |
4039 | { | |
4040 | asection *scpt = bfd_get_section_by_name (dynobj, ".compact_rel"); | |
4041 | bfd_byte *cr; | |
4042 | ||
4043 | if (scpt) | |
4044 | { | |
4045 | Elf32_crinfo cptrel; | |
4046 | ||
4047 | mips_elf_set_cr_format (cptrel, CRF_MIPS_LONG); | |
4048 | cptrel.vaddr = (rel->r_offset | |
4049 | + input_section->output_section->vma | |
4050 | + input_section->output_offset); | |
4051 | if (r_type == R_MIPS_REL32) | |
4052 | mips_elf_set_cr_type (cptrel, CRT_MIPS_REL32); | |
4053 | else | |
4054 | mips_elf_set_cr_type (cptrel, CRT_MIPS_WORD); | |
4055 | mips_elf_set_cr_dist2to (cptrel, 0); | |
4056 | cptrel.konst = *addendp; | |
4057 | ||
4058 | cr = (scpt->contents | |
4059 | + sizeof (Elf32_External_compact_rel)); | |
4060 | bfd_elf32_swap_crinfo_out (output_bfd, &cptrel, | |
4061 | ((Elf32_External_crinfo *) cr | |
4062 | + scpt->reloc_count)); | |
4063 | ++scpt->reloc_count; | |
4064 | } | |
4065 | } | |
4066 | ||
b34976b6 | 4067 | return TRUE; |
b49e97c9 TS |
4068 | } |
4069 | \f | |
b49e97c9 TS |
4070 | /* Return the MACH for a MIPS e_flags value. */ |
4071 | ||
4072 | unsigned long | |
9719ad41 | 4073 | _bfd_elf_mips_mach (flagword flags) |
b49e97c9 TS |
4074 | { |
4075 | switch (flags & EF_MIPS_MACH) | |
4076 | { | |
4077 | case E_MIPS_MACH_3900: | |
4078 | return bfd_mach_mips3900; | |
4079 | ||
4080 | case E_MIPS_MACH_4010: | |
4081 | return bfd_mach_mips4010; | |
4082 | ||
4083 | case E_MIPS_MACH_4100: | |
4084 | return bfd_mach_mips4100; | |
4085 | ||
4086 | case E_MIPS_MACH_4111: | |
4087 | return bfd_mach_mips4111; | |
4088 | ||
00707a0e RS |
4089 | case E_MIPS_MACH_4120: |
4090 | return bfd_mach_mips4120; | |
4091 | ||
b49e97c9 TS |
4092 | case E_MIPS_MACH_4650: |
4093 | return bfd_mach_mips4650; | |
4094 | ||
00707a0e RS |
4095 | case E_MIPS_MACH_5400: |
4096 | return bfd_mach_mips5400; | |
4097 | ||
4098 | case E_MIPS_MACH_5500: | |
4099 | return bfd_mach_mips5500; | |
4100 | ||
b49e97c9 TS |
4101 | case E_MIPS_MACH_SB1: |
4102 | return bfd_mach_mips_sb1; | |
4103 | ||
4104 | default: | |
4105 | switch (flags & EF_MIPS_ARCH) | |
4106 | { | |
4107 | default: | |
4108 | case E_MIPS_ARCH_1: | |
4109 | return bfd_mach_mips3000; | |
4110 | break; | |
4111 | ||
4112 | case E_MIPS_ARCH_2: | |
4113 | return bfd_mach_mips6000; | |
4114 | break; | |
4115 | ||
4116 | case E_MIPS_ARCH_3: | |
4117 | return bfd_mach_mips4000; | |
4118 | break; | |
4119 | ||
4120 | case E_MIPS_ARCH_4: | |
4121 | return bfd_mach_mips8000; | |
4122 | break; | |
4123 | ||
4124 | case E_MIPS_ARCH_5: | |
4125 | return bfd_mach_mips5; | |
4126 | break; | |
4127 | ||
4128 | case E_MIPS_ARCH_32: | |
4129 | return bfd_mach_mipsisa32; | |
4130 | break; | |
4131 | ||
4132 | case E_MIPS_ARCH_64: | |
4133 | return bfd_mach_mipsisa64; | |
4134 | break; | |
af7ee8bf CD |
4135 | |
4136 | case E_MIPS_ARCH_32R2: | |
4137 | return bfd_mach_mipsisa32r2; | |
4138 | break; | |
5f74bc13 CD |
4139 | |
4140 | case E_MIPS_ARCH_64R2: | |
4141 | return bfd_mach_mipsisa64r2; | |
4142 | break; | |
b49e97c9 TS |
4143 | } |
4144 | } | |
4145 | ||
4146 | return 0; | |
4147 | } | |
4148 | ||
4149 | /* Return printable name for ABI. */ | |
4150 | ||
4151 | static INLINE char * | |
9719ad41 | 4152 | elf_mips_abi_name (bfd *abfd) |
b49e97c9 TS |
4153 | { |
4154 | flagword flags; | |
4155 | ||
4156 | flags = elf_elfheader (abfd)->e_flags; | |
4157 | switch (flags & EF_MIPS_ABI) | |
4158 | { | |
4159 | case 0: | |
4160 | if (ABI_N32_P (abfd)) | |
4161 | return "N32"; | |
4162 | else if (ABI_64_P (abfd)) | |
4163 | return "64"; | |
4164 | else | |
4165 | return "none"; | |
4166 | case E_MIPS_ABI_O32: | |
4167 | return "O32"; | |
4168 | case E_MIPS_ABI_O64: | |
4169 | return "O64"; | |
4170 | case E_MIPS_ABI_EABI32: | |
4171 | return "EABI32"; | |
4172 | case E_MIPS_ABI_EABI64: | |
4173 | return "EABI64"; | |
4174 | default: | |
4175 | return "unknown abi"; | |
4176 | } | |
4177 | } | |
4178 | \f | |
4179 | /* MIPS ELF uses two common sections. One is the usual one, and the | |
4180 | other is for small objects. All the small objects are kept | |
4181 | together, and then referenced via the gp pointer, which yields | |
4182 | faster assembler code. This is what we use for the small common | |
4183 | section. This approach is copied from ecoff.c. */ | |
4184 | static asection mips_elf_scom_section; | |
4185 | static asymbol mips_elf_scom_symbol; | |
4186 | static asymbol *mips_elf_scom_symbol_ptr; | |
4187 | ||
4188 | /* MIPS ELF also uses an acommon section, which represents an | |
4189 | allocated common symbol which may be overridden by a | |
4190 | definition in a shared library. */ | |
4191 | static asection mips_elf_acom_section; | |
4192 | static asymbol mips_elf_acom_symbol; | |
4193 | static asymbol *mips_elf_acom_symbol_ptr; | |
4194 | ||
4195 | /* Handle the special MIPS section numbers that a symbol may use. | |
4196 | This is used for both the 32-bit and the 64-bit ABI. */ | |
4197 | ||
4198 | void | |
9719ad41 | 4199 | _bfd_mips_elf_symbol_processing (bfd *abfd, asymbol *asym) |
b49e97c9 TS |
4200 | { |
4201 | elf_symbol_type *elfsym; | |
4202 | ||
4203 | elfsym = (elf_symbol_type *) asym; | |
4204 | switch (elfsym->internal_elf_sym.st_shndx) | |
4205 | { | |
4206 | case SHN_MIPS_ACOMMON: | |
4207 | /* This section is used in a dynamically linked executable file. | |
4208 | It is an allocated common section. The dynamic linker can | |
4209 | either resolve these symbols to something in a shared | |
4210 | library, or it can just leave them here. For our purposes, | |
4211 | we can consider these symbols to be in a new section. */ | |
4212 | if (mips_elf_acom_section.name == NULL) | |
4213 | { | |
4214 | /* Initialize the acommon section. */ | |
4215 | mips_elf_acom_section.name = ".acommon"; | |
4216 | mips_elf_acom_section.flags = SEC_ALLOC; | |
4217 | mips_elf_acom_section.output_section = &mips_elf_acom_section; | |
4218 | mips_elf_acom_section.symbol = &mips_elf_acom_symbol; | |
4219 | mips_elf_acom_section.symbol_ptr_ptr = &mips_elf_acom_symbol_ptr; | |
4220 | mips_elf_acom_symbol.name = ".acommon"; | |
4221 | mips_elf_acom_symbol.flags = BSF_SECTION_SYM; | |
4222 | mips_elf_acom_symbol.section = &mips_elf_acom_section; | |
4223 | mips_elf_acom_symbol_ptr = &mips_elf_acom_symbol; | |
4224 | } | |
4225 | asym->section = &mips_elf_acom_section; | |
4226 | break; | |
4227 | ||
4228 | case SHN_COMMON: | |
4229 | /* Common symbols less than the GP size are automatically | |
4230 | treated as SHN_MIPS_SCOMMON symbols on IRIX5. */ | |
4231 | if (asym->value > elf_gp_size (abfd) | |
4232 | || IRIX_COMPAT (abfd) == ict_irix6) | |
4233 | break; | |
4234 | /* Fall through. */ | |
4235 | case SHN_MIPS_SCOMMON: | |
4236 | if (mips_elf_scom_section.name == NULL) | |
4237 | { | |
4238 | /* Initialize the small common section. */ | |
4239 | mips_elf_scom_section.name = ".scommon"; | |
4240 | mips_elf_scom_section.flags = SEC_IS_COMMON; | |
4241 | mips_elf_scom_section.output_section = &mips_elf_scom_section; | |
4242 | mips_elf_scom_section.symbol = &mips_elf_scom_symbol; | |
4243 | mips_elf_scom_section.symbol_ptr_ptr = &mips_elf_scom_symbol_ptr; | |
4244 | mips_elf_scom_symbol.name = ".scommon"; | |
4245 | mips_elf_scom_symbol.flags = BSF_SECTION_SYM; | |
4246 | mips_elf_scom_symbol.section = &mips_elf_scom_section; | |
4247 | mips_elf_scom_symbol_ptr = &mips_elf_scom_symbol; | |
4248 | } | |
4249 | asym->section = &mips_elf_scom_section; | |
4250 | asym->value = elfsym->internal_elf_sym.st_size; | |
4251 | break; | |
4252 | ||
4253 | case SHN_MIPS_SUNDEFINED: | |
4254 | asym->section = bfd_und_section_ptr; | |
4255 | break; | |
4256 | ||
4257 | #if 0 /* for SGI_COMPAT */ | |
4258 | case SHN_MIPS_TEXT: | |
4259 | asym->section = mips_elf_text_section_ptr; | |
4260 | break; | |
4261 | ||
4262 | case SHN_MIPS_DATA: | |
4263 | asym->section = mips_elf_data_section_ptr; | |
4264 | break; | |
4265 | #endif | |
4266 | } | |
4267 | } | |
4268 | \f | |
174fd7f9 RS |
4269 | /* There appears to be a bug in the MIPSpro linker that causes GOT_DISP |
4270 | relocations against two unnamed section symbols to resolve to the | |
4271 | same address. For example, if we have code like: | |
4272 | ||
4273 | lw $4,%got_disp(.data)($gp) | |
4274 | lw $25,%got_disp(.text)($gp) | |
4275 | jalr $25 | |
4276 | ||
4277 | then the linker will resolve both relocations to .data and the program | |
4278 | will jump there rather than to .text. | |
4279 | ||
4280 | We can work around this problem by giving names to local section symbols. | |
4281 | This is also what the MIPSpro tools do. */ | |
4282 | ||
4283 | bfd_boolean | |
4284 | _bfd_mips_elf_name_local_section_symbols (bfd *abfd) | |
4285 | { | |
4286 | return SGI_COMPAT (abfd); | |
4287 | } | |
4288 | \f | |
b49e97c9 TS |
4289 | /* Work over a section just before writing it out. This routine is |
4290 | used by both the 32-bit and the 64-bit ABI. FIXME: We recognize | |
4291 | sections that need the SHF_MIPS_GPREL flag by name; there has to be | |
4292 | a better way. */ | |
4293 | ||
b34976b6 | 4294 | bfd_boolean |
9719ad41 | 4295 | _bfd_mips_elf_section_processing (bfd *abfd, Elf_Internal_Shdr *hdr) |
b49e97c9 TS |
4296 | { |
4297 | if (hdr->sh_type == SHT_MIPS_REGINFO | |
4298 | && hdr->sh_size > 0) | |
4299 | { | |
4300 | bfd_byte buf[4]; | |
4301 | ||
4302 | BFD_ASSERT (hdr->sh_size == sizeof (Elf32_External_RegInfo)); | |
4303 | BFD_ASSERT (hdr->contents == NULL); | |
4304 | ||
4305 | if (bfd_seek (abfd, | |
4306 | hdr->sh_offset + sizeof (Elf32_External_RegInfo) - 4, | |
4307 | SEEK_SET) != 0) | |
b34976b6 | 4308 | return FALSE; |
b49e97c9 | 4309 | H_PUT_32 (abfd, elf_gp (abfd), buf); |
9719ad41 | 4310 | if (bfd_bwrite (buf, 4, abfd) != 4) |
b34976b6 | 4311 | return FALSE; |
b49e97c9 TS |
4312 | } |
4313 | ||
4314 | if (hdr->sh_type == SHT_MIPS_OPTIONS | |
4315 | && hdr->bfd_section != NULL | |
f0abc2a1 AM |
4316 | && mips_elf_section_data (hdr->bfd_section) != NULL |
4317 | && mips_elf_section_data (hdr->bfd_section)->u.tdata != NULL) | |
b49e97c9 TS |
4318 | { |
4319 | bfd_byte *contents, *l, *lend; | |
4320 | ||
f0abc2a1 AM |
4321 | /* We stored the section contents in the tdata field in the |
4322 | set_section_contents routine. We save the section contents | |
4323 | so that we don't have to read them again. | |
b49e97c9 TS |
4324 | At this point we know that elf_gp is set, so we can look |
4325 | through the section contents to see if there is an | |
4326 | ODK_REGINFO structure. */ | |
4327 | ||
f0abc2a1 | 4328 | contents = mips_elf_section_data (hdr->bfd_section)->u.tdata; |
b49e97c9 TS |
4329 | l = contents; |
4330 | lend = contents + hdr->sh_size; | |
4331 | while (l + sizeof (Elf_External_Options) <= lend) | |
4332 | { | |
4333 | Elf_Internal_Options intopt; | |
4334 | ||
4335 | bfd_mips_elf_swap_options_in (abfd, (Elf_External_Options *) l, | |
4336 | &intopt); | |
4337 | if (ABI_64_P (abfd) && intopt.kind == ODK_REGINFO) | |
4338 | { | |
4339 | bfd_byte buf[8]; | |
4340 | ||
4341 | if (bfd_seek (abfd, | |
4342 | (hdr->sh_offset | |
4343 | + (l - contents) | |
4344 | + sizeof (Elf_External_Options) | |
4345 | + (sizeof (Elf64_External_RegInfo) - 8)), | |
4346 | SEEK_SET) != 0) | |
b34976b6 | 4347 | return FALSE; |
b49e97c9 | 4348 | H_PUT_64 (abfd, elf_gp (abfd), buf); |
9719ad41 | 4349 | if (bfd_bwrite (buf, 8, abfd) != 8) |
b34976b6 | 4350 | return FALSE; |
b49e97c9 TS |
4351 | } |
4352 | else if (intopt.kind == ODK_REGINFO) | |
4353 | { | |
4354 | bfd_byte buf[4]; | |
4355 | ||
4356 | if (bfd_seek (abfd, | |
4357 | (hdr->sh_offset | |
4358 | + (l - contents) | |
4359 | + sizeof (Elf_External_Options) | |
4360 | + (sizeof (Elf32_External_RegInfo) - 4)), | |
4361 | SEEK_SET) != 0) | |
b34976b6 | 4362 | return FALSE; |
b49e97c9 | 4363 | H_PUT_32 (abfd, elf_gp (abfd), buf); |
9719ad41 | 4364 | if (bfd_bwrite (buf, 4, abfd) != 4) |
b34976b6 | 4365 | return FALSE; |
b49e97c9 TS |
4366 | } |
4367 | l += intopt.size; | |
4368 | } | |
4369 | } | |
4370 | ||
4371 | if (hdr->bfd_section != NULL) | |
4372 | { | |
4373 | const char *name = bfd_get_section_name (abfd, hdr->bfd_section); | |
4374 | ||
4375 | if (strcmp (name, ".sdata") == 0 | |
4376 | || strcmp (name, ".lit8") == 0 | |
4377 | || strcmp (name, ".lit4") == 0) | |
4378 | { | |
4379 | hdr->sh_flags |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL; | |
4380 | hdr->sh_type = SHT_PROGBITS; | |
4381 | } | |
4382 | else if (strcmp (name, ".sbss") == 0) | |
4383 | { | |
4384 | hdr->sh_flags |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL; | |
4385 | hdr->sh_type = SHT_NOBITS; | |
4386 | } | |
4387 | else if (strcmp (name, ".srdata") == 0) | |
4388 | { | |
4389 | hdr->sh_flags |= SHF_ALLOC | SHF_MIPS_GPREL; | |
4390 | hdr->sh_type = SHT_PROGBITS; | |
4391 | } | |
4392 | else if (strcmp (name, ".compact_rel") == 0) | |
4393 | { | |
4394 | hdr->sh_flags = 0; | |
4395 | hdr->sh_type = SHT_PROGBITS; | |
4396 | } | |
4397 | else if (strcmp (name, ".rtproc") == 0) | |
4398 | { | |
4399 | if (hdr->sh_addralign != 0 && hdr->sh_entsize == 0) | |
4400 | { | |
4401 | unsigned int adjust; | |
4402 | ||
4403 | adjust = hdr->sh_size % hdr->sh_addralign; | |
4404 | if (adjust != 0) | |
4405 | hdr->sh_size += hdr->sh_addralign - adjust; | |
4406 | } | |
4407 | } | |
4408 | } | |
4409 | ||
b34976b6 | 4410 | return TRUE; |
b49e97c9 TS |
4411 | } |
4412 | ||
4413 | /* Handle a MIPS specific section when reading an object file. This | |
4414 | is called when elfcode.h finds a section with an unknown type. | |
4415 | This routine supports both the 32-bit and 64-bit ELF ABI. | |
4416 | ||
4417 | FIXME: We need to handle the SHF_MIPS_GPREL flag, but I'm not sure | |
4418 | how to. */ | |
4419 | ||
b34976b6 | 4420 | bfd_boolean |
9719ad41 RS |
4421 | _bfd_mips_elf_section_from_shdr (bfd *abfd, Elf_Internal_Shdr *hdr, |
4422 | const char *name) | |
b49e97c9 TS |
4423 | { |
4424 | flagword flags = 0; | |
4425 | ||
4426 | /* There ought to be a place to keep ELF backend specific flags, but | |
4427 | at the moment there isn't one. We just keep track of the | |
4428 | sections by their name, instead. Fortunately, the ABI gives | |
4429 | suggested names for all the MIPS specific sections, so we will | |
4430 | probably get away with this. */ | |
4431 | switch (hdr->sh_type) | |
4432 | { | |
4433 | case SHT_MIPS_LIBLIST: | |
4434 | if (strcmp (name, ".liblist") != 0) | |
b34976b6 | 4435 | return FALSE; |
b49e97c9 TS |
4436 | break; |
4437 | case SHT_MIPS_MSYM: | |
4438 | if (strcmp (name, ".msym") != 0) | |
b34976b6 | 4439 | return FALSE; |
b49e97c9 TS |
4440 | break; |
4441 | case SHT_MIPS_CONFLICT: | |
4442 | if (strcmp (name, ".conflict") != 0) | |
b34976b6 | 4443 | return FALSE; |
b49e97c9 TS |
4444 | break; |
4445 | case SHT_MIPS_GPTAB: | |
4446 | if (strncmp (name, ".gptab.", sizeof ".gptab." - 1) != 0) | |
b34976b6 | 4447 | return FALSE; |
b49e97c9 TS |
4448 | break; |
4449 | case SHT_MIPS_UCODE: | |
4450 | if (strcmp (name, ".ucode") != 0) | |
b34976b6 | 4451 | return FALSE; |
b49e97c9 TS |
4452 | break; |
4453 | case SHT_MIPS_DEBUG: | |
4454 | if (strcmp (name, ".mdebug") != 0) | |
b34976b6 | 4455 | return FALSE; |
b49e97c9 TS |
4456 | flags = SEC_DEBUGGING; |
4457 | break; | |
4458 | case SHT_MIPS_REGINFO: | |
4459 | if (strcmp (name, ".reginfo") != 0 | |
4460 | || hdr->sh_size != sizeof (Elf32_External_RegInfo)) | |
b34976b6 | 4461 | return FALSE; |
b49e97c9 TS |
4462 | flags = (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_SAME_SIZE); |
4463 | break; | |
4464 | case SHT_MIPS_IFACE: | |
4465 | if (strcmp (name, ".MIPS.interfaces") != 0) | |
b34976b6 | 4466 | return FALSE; |
b49e97c9 TS |
4467 | break; |
4468 | case SHT_MIPS_CONTENT: | |
4469 | if (strncmp (name, ".MIPS.content", sizeof ".MIPS.content" - 1) != 0) | |
b34976b6 | 4470 | return FALSE; |
b49e97c9 TS |
4471 | break; |
4472 | case SHT_MIPS_OPTIONS: | |
4473 | if (strcmp (name, MIPS_ELF_OPTIONS_SECTION_NAME (abfd)) != 0) | |
b34976b6 | 4474 | return FALSE; |
b49e97c9 TS |
4475 | break; |
4476 | case SHT_MIPS_DWARF: | |
4477 | if (strncmp (name, ".debug_", sizeof ".debug_" - 1) != 0) | |
b34976b6 | 4478 | return FALSE; |
b49e97c9 TS |
4479 | break; |
4480 | case SHT_MIPS_SYMBOL_LIB: | |
4481 | if (strcmp (name, ".MIPS.symlib") != 0) | |
b34976b6 | 4482 | return FALSE; |
b49e97c9 TS |
4483 | break; |
4484 | case SHT_MIPS_EVENTS: | |
4485 | if (strncmp (name, ".MIPS.events", sizeof ".MIPS.events" - 1) != 0 | |
4486 | && strncmp (name, ".MIPS.post_rel", | |
4487 | sizeof ".MIPS.post_rel" - 1) != 0) | |
b34976b6 | 4488 | return FALSE; |
b49e97c9 TS |
4489 | break; |
4490 | default: | |
b34976b6 | 4491 | return FALSE; |
b49e97c9 TS |
4492 | } |
4493 | ||
4494 | if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name)) | |
b34976b6 | 4495 | return FALSE; |
b49e97c9 TS |
4496 | |
4497 | if (flags) | |
4498 | { | |
4499 | if (! bfd_set_section_flags (abfd, hdr->bfd_section, | |
4500 | (bfd_get_section_flags (abfd, | |
4501 | hdr->bfd_section) | |
4502 | | flags))) | |
b34976b6 | 4503 | return FALSE; |
b49e97c9 TS |
4504 | } |
4505 | ||
4506 | /* FIXME: We should record sh_info for a .gptab section. */ | |
4507 | ||
4508 | /* For a .reginfo section, set the gp value in the tdata information | |
4509 | from the contents of this section. We need the gp value while | |
4510 | processing relocs, so we just get it now. The .reginfo section | |
4511 | is not used in the 64-bit MIPS ELF ABI. */ | |
4512 | if (hdr->sh_type == SHT_MIPS_REGINFO) | |
4513 | { | |
4514 | Elf32_External_RegInfo ext; | |
4515 | Elf32_RegInfo s; | |
4516 | ||
9719ad41 RS |
4517 | if (! bfd_get_section_contents (abfd, hdr->bfd_section, |
4518 | &ext, 0, sizeof ext)) | |
b34976b6 | 4519 | return FALSE; |
b49e97c9 TS |
4520 | bfd_mips_elf32_swap_reginfo_in (abfd, &ext, &s); |
4521 | elf_gp (abfd) = s.ri_gp_value; | |
4522 | } | |
4523 | ||
4524 | /* For a SHT_MIPS_OPTIONS section, look for a ODK_REGINFO entry, and | |
4525 | set the gp value based on what we find. We may see both | |
4526 | SHT_MIPS_REGINFO and SHT_MIPS_OPTIONS/ODK_REGINFO; in that case, | |
4527 | they should agree. */ | |
4528 | if (hdr->sh_type == SHT_MIPS_OPTIONS) | |
4529 | { | |
4530 | bfd_byte *contents, *l, *lend; | |
4531 | ||
9719ad41 | 4532 | contents = bfd_malloc (hdr->sh_size); |
b49e97c9 | 4533 | if (contents == NULL) |
b34976b6 | 4534 | return FALSE; |
b49e97c9 | 4535 | if (! bfd_get_section_contents (abfd, hdr->bfd_section, contents, |
9719ad41 | 4536 | 0, hdr->sh_size)) |
b49e97c9 TS |
4537 | { |
4538 | free (contents); | |
b34976b6 | 4539 | return FALSE; |
b49e97c9 TS |
4540 | } |
4541 | l = contents; | |
4542 | lend = contents + hdr->sh_size; | |
4543 | while (l + sizeof (Elf_External_Options) <= lend) | |
4544 | { | |
4545 | Elf_Internal_Options intopt; | |
4546 | ||
4547 | bfd_mips_elf_swap_options_in (abfd, (Elf_External_Options *) l, | |
4548 | &intopt); | |
4549 | if (ABI_64_P (abfd) && intopt.kind == ODK_REGINFO) | |
4550 | { | |
4551 | Elf64_Internal_RegInfo intreg; | |
4552 | ||
4553 | bfd_mips_elf64_swap_reginfo_in | |
4554 | (abfd, | |
4555 | ((Elf64_External_RegInfo *) | |
4556 | (l + sizeof (Elf_External_Options))), | |
4557 | &intreg); | |
4558 | elf_gp (abfd) = intreg.ri_gp_value; | |
4559 | } | |
4560 | else if (intopt.kind == ODK_REGINFO) | |
4561 | { | |
4562 | Elf32_RegInfo intreg; | |
4563 | ||
4564 | bfd_mips_elf32_swap_reginfo_in | |
4565 | (abfd, | |
4566 | ((Elf32_External_RegInfo *) | |
4567 | (l + sizeof (Elf_External_Options))), | |
4568 | &intreg); | |
4569 | elf_gp (abfd) = intreg.ri_gp_value; | |
4570 | } | |
4571 | l += intopt.size; | |
4572 | } | |
4573 | free (contents); | |
4574 | } | |
4575 | ||
b34976b6 | 4576 | return TRUE; |
b49e97c9 TS |
4577 | } |
4578 | ||
4579 | /* Set the correct type for a MIPS ELF section. We do this by the | |
4580 | section name, which is a hack, but ought to work. This routine is | |
4581 | used by both the 32-bit and the 64-bit ABI. */ | |
4582 | ||
b34976b6 | 4583 | bfd_boolean |
9719ad41 | 4584 | _bfd_mips_elf_fake_sections (bfd *abfd, Elf_Internal_Shdr *hdr, asection *sec) |
b49e97c9 TS |
4585 | { |
4586 | register const char *name; | |
4587 | ||
4588 | name = bfd_get_section_name (abfd, sec); | |
4589 | ||
4590 | if (strcmp (name, ".liblist") == 0) | |
4591 | { | |
4592 | hdr->sh_type = SHT_MIPS_LIBLIST; | |
4593 | hdr->sh_info = sec->_raw_size / sizeof (Elf32_Lib); | |
4594 | /* The sh_link field is set in final_write_processing. */ | |
4595 | } | |
4596 | else if (strcmp (name, ".conflict") == 0) | |
4597 | hdr->sh_type = SHT_MIPS_CONFLICT; | |
4598 | else if (strncmp (name, ".gptab.", sizeof ".gptab." - 1) == 0) | |
4599 | { | |
4600 | hdr->sh_type = SHT_MIPS_GPTAB; | |
4601 | hdr->sh_entsize = sizeof (Elf32_External_gptab); | |
4602 | /* The sh_info field is set in final_write_processing. */ | |
4603 | } | |
4604 | else if (strcmp (name, ".ucode") == 0) | |
4605 | hdr->sh_type = SHT_MIPS_UCODE; | |
4606 | else if (strcmp (name, ".mdebug") == 0) | |
4607 | { | |
4608 | hdr->sh_type = SHT_MIPS_DEBUG; | |
8dc1a139 | 4609 | /* In a shared object on IRIX 5.3, the .mdebug section has an |
b49e97c9 TS |
4610 | entsize of 0. FIXME: Does this matter? */ |
4611 | if (SGI_COMPAT (abfd) && (abfd->flags & DYNAMIC) != 0) | |
4612 | hdr->sh_entsize = 0; | |
4613 | else | |
4614 | hdr->sh_entsize = 1; | |
4615 | } | |
4616 | else if (strcmp (name, ".reginfo") == 0) | |
4617 | { | |
4618 | hdr->sh_type = SHT_MIPS_REGINFO; | |
8dc1a139 | 4619 | /* In a shared object on IRIX 5.3, the .reginfo section has an |
b49e97c9 TS |
4620 | entsize of 0x18. FIXME: Does this matter? */ |
4621 | if (SGI_COMPAT (abfd)) | |
4622 | { | |
4623 | if ((abfd->flags & DYNAMIC) != 0) | |
4624 | hdr->sh_entsize = sizeof (Elf32_External_RegInfo); | |
4625 | else | |
4626 | hdr->sh_entsize = 1; | |
4627 | } | |
4628 | else | |
4629 | hdr->sh_entsize = sizeof (Elf32_External_RegInfo); | |
4630 | } | |
4631 | else if (SGI_COMPAT (abfd) | |
4632 | && (strcmp (name, ".hash") == 0 | |
4633 | || strcmp (name, ".dynamic") == 0 | |
4634 | || strcmp (name, ".dynstr") == 0)) | |
4635 | { | |
4636 | if (SGI_COMPAT (abfd)) | |
4637 | hdr->sh_entsize = 0; | |
4638 | #if 0 | |
8dc1a139 | 4639 | /* This isn't how the IRIX6 linker behaves. */ |
b49e97c9 TS |
4640 | hdr->sh_info = SIZEOF_MIPS_DYNSYM_SECNAMES; |
4641 | #endif | |
4642 | } | |
4643 | else if (strcmp (name, ".got") == 0 | |
4644 | || strcmp (name, ".srdata") == 0 | |
4645 | || strcmp (name, ".sdata") == 0 | |
4646 | || strcmp (name, ".sbss") == 0 | |
4647 | || strcmp (name, ".lit4") == 0 | |
4648 | || strcmp (name, ".lit8") == 0) | |
4649 | hdr->sh_flags |= SHF_MIPS_GPREL; | |
4650 | else if (strcmp (name, ".MIPS.interfaces") == 0) | |
4651 | { | |
4652 | hdr->sh_type = SHT_MIPS_IFACE; | |
4653 | hdr->sh_flags |= SHF_MIPS_NOSTRIP; | |
4654 | } | |
4655 | else if (strncmp (name, ".MIPS.content", strlen (".MIPS.content")) == 0) | |
4656 | { | |
4657 | hdr->sh_type = SHT_MIPS_CONTENT; | |
4658 | hdr->sh_flags |= SHF_MIPS_NOSTRIP; | |
4659 | /* The sh_info field is set in final_write_processing. */ | |
4660 | } | |
4661 | else if (strcmp (name, MIPS_ELF_OPTIONS_SECTION_NAME (abfd)) == 0) | |
4662 | { | |
4663 | hdr->sh_type = SHT_MIPS_OPTIONS; | |
4664 | hdr->sh_entsize = 1; | |
4665 | hdr->sh_flags |= SHF_MIPS_NOSTRIP; | |
4666 | } | |
4667 | else if (strncmp (name, ".debug_", sizeof ".debug_" - 1) == 0) | |
4668 | hdr->sh_type = SHT_MIPS_DWARF; | |
4669 | else if (strcmp (name, ".MIPS.symlib") == 0) | |
4670 | { | |
4671 | hdr->sh_type = SHT_MIPS_SYMBOL_LIB; | |
4672 | /* The sh_link and sh_info fields are set in | |
4673 | final_write_processing. */ | |
4674 | } | |
4675 | else if (strncmp (name, ".MIPS.events", sizeof ".MIPS.events" - 1) == 0 | |
4676 | || strncmp (name, ".MIPS.post_rel", | |
4677 | sizeof ".MIPS.post_rel" - 1) == 0) | |
4678 | { | |
4679 | hdr->sh_type = SHT_MIPS_EVENTS; | |
4680 | hdr->sh_flags |= SHF_MIPS_NOSTRIP; | |
4681 | /* The sh_link field is set in final_write_processing. */ | |
4682 | } | |
4683 | else if (strcmp (name, ".msym") == 0) | |
4684 | { | |
4685 | hdr->sh_type = SHT_MIPS_MSYM; | |
4686 | hdr->sh_flags |= SHF_ALLOC; | |
4687 | hdr->sh_entsize = 8; | |
4688 | } | |
4689 | ||
7a79a000 TS |
4690 | /* The generic elf_fake_sections will set up REL_HDR using the default |
4691 | kind of relocations. We used to set up a second header for the | |
4692 | non-default kind of relocations here, but only NewABI would use | |
4693 | these, and the IRIX ld doesn't like resulting empty RELA sections. | |
4694 | Thus we create those header only on demand now. */ | |
b49e97c9 | 4695 | |
b34976b6 | 4696 | return TRUE; |
b49e97c9 TS |
4697 | } |
4698 | ||
4699 | /* Given a BFD section, try to locate the corresponding ELF section | |
4700 | index. This is used by both the 32-bit and the 64-bit ABI. | |
4701 | Actually, it's not clear to me that the 64-bit ABI supports these, | |
4702 | but for non-PIC objects we will certainly want support for at least | |
4703 | the .scommon section. */ | |
4704 | ||
b34976b6 | 4705 | bfd_boolean |
9719ad41 RS |
4706 | _bfd_mips_elf_section_from_bfd_section (bfd *abfd ATTRIBUTE_UNUSED, |
4707 | asection *sec, int *retval) | |
b49e97c9 TS |
4708 | { |
4709 | if (strcmp (bfd_get_section_name (abfd, sec), ".scommon") == 0) | |
4710 | { | |
4711 | *retval = SHN_MIPS_SCOMMON; | |
b34976b6 | 4712 | return TRUE; |
b49e97c9 TS |
4713 | } |
4714 | if (strcmp (bfd_get_section_name (abfd, sec), ".acommon") == 0) | |
4715 | { | |
4716 | *retval = SHN_MIPS_ACOMMON; | |
b34976b6 | 4717 | return TRUE; |
b49e97c9 | 4718 | } |
b34976b6 | 4719 | return FALSE; |
b49e97c9 TS |
4720 | } |
4721 | \f | |
4722 | /* Hook called by the linker routine which adds symbols from an object | |
4723 | file. We must handle the special MIPS section numbers here. */ | |
4724 | ||
b34976b6 | 4725 | bfd_boolean |
9719ad41 RS |
4726 | _bfd_mips_elf_add_symbol_hook (bfd *abfd, struct bfd_link_info *info, |
4727 | const Elf_Internal_Sym *sym, const char **namep, | |
4728 | flagword *flagsp ATTRIBUTE_UNUSED, | |
4729 | asection **secp, bfd_vma *valp) | |
b49e97c9 TS |
4730 | { |
4731 | if (SGI_COMPAT (abfd) | |
4732 | && (abfd->flags & DYNAMIC) != 0 | |
4733 | && strcmp (*namep, "_rld_new_interface") == 0) | |
4734 | { | |
8dc1a139 | 4735 | /* Skip IRIX5 rld entry name. */ |
b49e97c9 | 4736 | *namep = NULL; |
b34976b6 | 4737 | return TRUE; |
b49e97c9 TS |
4738 | } |
4739 | ||
4740 | switch (sym->st_shndx) | |
4741 | { | |
4742 | case SHN_COMMON: | |
4743 | /* Common symbols less than the GP size are automatically | |
4744 | treated as SHN_MIPS_SCOMMON symbols. */ | |
4745 | if (sym->st_size > elf_gp_size (abfd) | |
4746 | || IRIX_COMPAT (abfd) == ict_irix6) | |
4747 | break; | |
4748 | /* Fall through. */ | |
4749 | case SHN_MIPS_SCOMMON: | |
4750 | *secp = bfd_make_section_old_way (abfd, ".scommon"); | |
4751 | (*secp)->flags |= SEC_IS_COMMON; | |
4752 | *valp = sym->st_size; | |
4753 | break; | |
4754 | ||
4755 | case SHN_MIPS_TEXT: | |
4756 | /* This section is used in a shared object. */ | |
4757 | if (elf_tdata (abfd)->elf_text_section == NULL) | |
4758 | { | |
4759 | asymbol *elf_text_symbol; | |
4760 | asection *elf_text_section; | |
4761 | bfd_size_type amt = sizeof (asection); | |
4762 | ||
4763 | elf_text_section = bfd_zalloc (abfd, amt); | |
4764 | if (elf_text_section == NULL) | |
b34976b6 | 4765 | return FALSE; |
b49e97c9 TS |
4766 | |
4767 | amt = sizeof (asymbol); | |
4768 | elf_text_symbol = bfd_zalloc (abfd, amt); | |
4769 | if (elf_text_symbol == NULL) | |
b34976b6 | 4770 | return FALSE; |
b49e97c9 TS |
4771 | |
4772 | /* Initialize the section. */ | |
4773 | ||
4774 | elf_tdata (abfd)->elf_text_section = elf_text_section; | |
4775 | elf_tdata (abfd)->elf_text_symbol = elf_text_symbol; | |
4776 | ||
4777 | elf_text_section->symbol = elf_text_symbol; | |
4778 | elf_text_section->symbol_ptr_ptr = &elf_tdata (abfd)->elf_text_symbol; | |
4779 | ||
4780 | elf_text_section->name = ".text"; | |
4781 | elf_text_section->flags = SEC_NO_FLAGS; | |
4782 | elf_text_section->output_section = NULL; | |
4783 | elf_text_section->owner = abfd; | |
4784 | elf_text_symbol->name = ".text"; | |
4785 | elf_text_symbol->flags = BSF_SECTION_SYM | BSF_DYNAMIC; | |
4786 | elf_text_symbol->section = elf_text_section; | |
4787 | } | |
4788 | /* This code used to do *secp = bfd_und_section_ptr if | |
4789 | info->shared. I don't know why, and that doesn't make sense, | |
4790 | so I took it out. */ | |
4791 | *secp = elf_tdata (abfd)->elf_text_section; | |
4792 | break; | |
4793 | ||
4794 | case SHN_MIPS_ACOMMON: | |
4795 | /* Fall through. XXX Can we treat this as allocated data? */ | |
4796 | case SHN_MIPS_DATA: | |
4797 | /* This section is used in a shared object. */ | |
4798 | if (elf_tdata (abfd)->elf_data_section == NULL) | |
4799 | { | |
4800 | asymbol *elf_data_symbol; | |
4801 | asection *elf_data_section; | |
4802 | bfd_size_type amt = sizeof (asection); | |
4803 | ||
4804 | elf_data_section = bfd_zalloc (abfd, amt); | |
4805 | if (elf_data_section == NULL) | |
b34976b6 | 4806 | return FALSE; |
b49e97c9 TS |
4807 | |
4808 | amt = sizeof (asymbol); | |
4809 | elf_data_symbol = bfd_zalloc (abfd, amt); | |
4810 | if (elf_data_symbol == NULL) | |
b34976b6 | 4811 | return FALSE; |
b49e97c9 TS |
4812 | |
4813 | /* Initialize the section. */ | |
4814 | ||
4815 | elf_tdata (abfd)->elf_data_section = elf_data_section; | |
4816 | elf_tdata (abfd)->elf_data_symbol = elf_data_symbol; | |
4817 | ||
4818 | elf_data_section->symbol = elf_data_symbol; | |
4819 | elf_data_section->symbol_ptr_ptr = &elf_tdata (abfd)->elf_data_symbol; | |
4820 | ||
4821 | elf_data_section->name = ".data"; | |
4822 | elf_data_section->flags = SEC_NO_FLAGS; | |
4823 | elf_data_section->output_section = NULL; | |
4824 | elf_data_section->owner = abfd; | |
4825 | elf_data_symbol->name = ".data"; | |
4826 | elf_data_symbol->flags = BSF_SECTION_SYM | BSF_DYNAMIC; | |
4827 | elf_data_symbol->section = elf_data_section; | |
4828 | } | |
4829 | /* This code used to do *secp = bfd_und_section_ptr if | |
4830 | info->shared. I don't know why, and that doesn't make sense, | |
4831 | so I took it out. */ | |
4832 | *secp = elf_tdata (abfd)->elf_data_section; | |
4833 | break; | |
4834 | ||
4835 | case SHN_MIPS_SUNDEFINED: | |
4836 | *secp = bfd_und_section_ptr; | |
4837 | break; | |
4838 | } | |
4839 | ||
4840 | if (SGI_COMPAT (abfd) | |
4841 | && ! info->shared | |
4842 | && info->hash->creator == abfd->xvec | |
4843 | && strcmp (*namep, "__rld_obj_head") == 0) | |
4844 | { | |
4845 | struct elf_link_hash_entry *h; | |
14a793b2 | 4846 | struct bfd_link_hash_entry *bh; |
b49e97c9 TS |
4847 | |
4848 | /* Mark __rld_obj_head as dynamic. */ | |
14a793b2 | 4849 | bh = NULL; |
b49e97c9 | 4850 | if (! (_bfd_generic_link_add_one_symbol |
9719ad41 | 4851 | (info, abfd, *namep, BSF_GLOBAL, *secp, *valp, NULL, FALSE, |
14a793b2 | 4852 | get_elf_backend_data (abfd)->collect, &bh))) |
b34976b6 | 4853 | return FALSE; |
14a793b2 AM |
4854 | |
4855 | h = (struct elf_link_hash_entry *) bh; | |
b49e97c9 TS |
4856 | h->elf_link_hash_flags &= ~ELF_LINK_NON_ELF; |
4857 | h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR; | |
4858 | h->type = STT_OBJECT; | |
4859 | ||
4860 | if (! bfd_elf32_link_record_dynamic_symbol (info, h)) | |
b34976b6 | 4861 | return FALSE; |
b49e97c9 | 4862 | |
b34976b6 | 4863 | mips_elf_hash_table (info)->use_rld_obj_head = TRUE; |
b49e97c9 TS |
4864 | } |
4865 | ||
4866 | /* If this is a mips16 text symbol, add 1 to the value to make it | |
4867 | odd. This will cause something like .word SYM to come up with | |
4868 | the right value when it is loaded into the PC. */ | |
4869 | if (sym->st_other == STO_MIPS16) | |
4870 | ++*valp; | |
4871 | ||
b34976b6 | 4872 | return TRUE; |
b49e97c9 TS |
4873 | } |
4874 | ||
4875 | /* This hook function is called before the linker writes out a global | |
4876 | symbol. We mark symbols as small common if appropriate. This is | |
4877 | also where we undo the increment of the value for a mips16 symbol. */ | |
4878 | ||
b34976b6 | 4879 | bfd_boolean |
9719ad41 RS |
4880 | _bfd_mips_elf_link_output_symbol_hook |
4881 | (struct bfd_link_info *info ATTRIBUTE_UNUSED, | |
4882 | const char *name ATTRIBUTE_UNUSED, Elf_Internal_Sym *sym, | |
4883 | asection *input_sec, struct elf_link_hash_entry *h ATTRIBUTE_UNUSED) | |
b49e97c9 TS |
4884 | { |
4885 | /* If we see a common symbol, which implies a relocatable link, then | |
4886 | if a symbol was small common in an input file, mark it as small | |
4887 | common in the output file. */ | |
4888 | if (sym->st_shndx == SHN_COMMON | |
4889 | && strcmp (input_sec->name, ".scommon") == 0) | |
4890 | sym->st_shndx = SHN_MIPS_SCOMMON; | |
4891 | ||
79cda7cf FF |
4892 | if (sym->st_other == STO_MIPS16) |
4893 | sym->st_value &= ~1; | |
b49e97c9 | 4894 | |
b34976b6 | 4895 | return TRUE; |
b49e97c9 TS |
4896 | } |
4897 | \f | |
4898 | /* Functions for the dynamic linker. */ | |
4899 | ||
4900 | /* Create dynamic sections when linking against a dynamic object. */ | |
4901 | ||
b34976b6 | 4902 | bfd_boolean |
9719ad41 | 4903 | _bfd_mips_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info) |
b49e97c9 TS |
4904 | { |
4905 | struct elf_link_hash_entry *h; | |
14a793b2 | 4906 | struct bfd_link_hash_entry *bh; |
b49e97c9 TS |
4907 | flagword flags; |
4908 | register asection *s; | |
4909 | const char * const *namep; | |
4910 | ||
4911 | flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY | |
4912 | | SEC_LINKER_CREATED | SEC_READONLY); | |
4913 | ||
4914 | /* Mips ABI requests the .dynamic section to be read only. */ | |
4915 | s = bfd_get_section_by_name (abfd, ".dynamic"); | |
4916 | if (s != NULL) | |
4917 | { | |
4918 | if (! bfd_set_section_flags (abfd, s, flags)) | |
b34976b6 | 4919 | return FALSE; |
b49e97c9 TS |
4920 | } |
4921 | ||
4922 | /* We need to create .got section. */ | |
f4416af6 AO |
4923 | if (! mips_elf_create_got_section (abfd, info, FALSE)) |
4924 | return FALSE; | |
4925 | ||
4926 | if (! mips_elf_rel_dyn_section (elf_hash_table (info)->dynobj, TRUE)) | |
b34976b6 | 4927 | return FALSE; |
b49e97c9 | 4928 | |
b49e97c9 TS |
4929 | /* Create .stub section. */ |
4930 | if (bfd_get_section_by_name (abfd, | |
4931 | MIPS_ELF_STUB_SECTION_NAME (abfd)) == NULL) | |
4932 | { | |
4933 | s = bfd_make_section (abfd, MIPS_ELF_STUB_SECTION_NAME (abfd)); | |
4934 | if (s == NULL | |
4935 | || ! bfd_set_section_flags (abfd, s, flags | SEC_CODE) | |
4936 | || ! bfd_set_section_alignment (abfd, s, | |
4937 | MIPS_ELF_LOG_FILE_ALIGN (abfd))) | |
b34976b6 | 4938 | return FALSE; |
b49e97c9 TS |
4939 | } |
4940 | ||
4941 | if ((IRIX_COMPAT (abfd) == ict_irix5 || IRIX_COMPAT (abfd) == ict_none) | |
4942 | && !info->shared | |
4943 | && bfd_get_section_by_name (abfd, ".rld_map") == NULL) | |
4944 | { | |
4945 | s = bfd_make_section (abfd, ".rld_map"); | |
4946 | if (s == NULL | |
4947 | || ! bfd_set_section_flags (abfd, s, flags &~ (flagword) SEC_READONLY) | |
4948 | || ! bfd_set_section_alignment (abfd, s, | |
4949 | MIPS_ELF_LOG_FILE_ALIGN (abfd))) | |
b34976b6 | 4950 | return FALSE; |
b49e97c9 TS |
4951 | } |
4952 | ||
4953 | /* On IRIX5, we adjust add some additional symbols and change the | |
4954 | alignments of several sections. There is no ABI documentation | |
4955 | indicating that this is necessary on IRIX6, nor any evidence that | |
4956 | the linker takes such action. */ | |
4957 | if (IRIX_COMPAT (abfd) == ict_irix5) | |
4958 | { | |
4959 | for (namep = mips_elf_dynsym_rtproc_names; *namep != NULL; namep++) | |
4960 | { | |
14a793b2 | 4961 | bh = NULL; |
b49e97c9 | 4962 | if (! (_bfd_generic_link_add_one_symbol |
9719ad41 RS |
4963 | (info, abfd, *namep, BSF_GLOBAL, bfd_und_section_ptr, 0, |
4964 | NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh))) | |
b34976b6 | 4965 | return FALSE; |
14a793b2 AM |
4966 | |
4967 | h = (struct elf_link_hash_entry *) bh; | |
b49e97c9 TS |
4968 | h->elf_link_hash_flags &= ~ELF_LINK_NON_ELF; |
4969 | h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR; | |
4970 | h->type = STT_SECTION; | |
4971 | ||
4972 | if (! bfd_elf32_link_record_dynamic_symbol (info, h)) | |
b34976b6 | 4973 | return FALSE; |
b49e97c9 TS |
4974 | } |
4975 | ||
4976 | /* We need to create a .compact_rel section. */ | |
4977 | if (SGI_COMPAT (abfd)) | |
4978 | { | |
4979 | if (!mips_elf_create_compact_rel_section (abfd, info)) | |
b34976b6 | 4980 | return FALSE; |
b49e97c9 TS |
4981 | } |
4982 | ||
44c410de | 4983 | /* Change alignments of some sections. */ |
b49e97c9 TS |
4984 | s = bfd_get_section_by_name (abfd, ".hash"); |
4985 | if (s != NULL) | |
d80dcc6a | 4986 | bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd)); |
b49e97c9 TS |
4987 | s = bfd_get_section_by_name (abfd, ".dynsym"); |
4988 | if (s != NULL) | |
d80dcc6a | 4989 | bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd)); |
b49e97c9 TS |
4990 | s = bfd_get_section_by_name (abfd, ".dynstr"); |
4991 | if (s != NULL) | |
d80dcc6a | 4992 | bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd)); |
b49e97c9 TS |
4993 | s = bfd_get_section_by_name (abfd, ".reginfo"); |
4994 | if (s != NULL) | |
d80dcc6a | 4995 | bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd)); |
b49e97c9 TS |
4996 | s = bfd_get_section_by_name (abfd, ".dynamic"); |
4997 | if (s != NULL) | |
d80dcc6a | 4998 | bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd)); |
b49e97c9 TS |
4999 | } |
5000 | ||
5001 | if (!info->shared) | |
5002 | { | |
14a793b2 AM |
5003 | const char *name; |
5004 | ||
5005 | name = SGI_COMPAT (abfd) ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING"; | |
5006 | bh = NULL; | |
5007 | if (!(_bfd_generic_link_add_one_symbol | |
9719ad41 RS |
5008 | (info, abfd, name, BSF_GLOBAL, bfd_abs_section_ptr, 0, |
5009 | NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh))) | |
b34976b6 | 5010 | return FALSE; |
14a793b2 AM |
5011 | |
5012 | h = (struct elf_link_hash_entry *) bh; | |
b49e97c9 TS |
5013 | h->elf_link_hash_flags &= ~ELF_LINK_NON_ELF; |
5014 | h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR; | |
5015 | h->type = STT_SECTION; | |
5016 | ||
5017 | if (! bfd_elf32_link_record_dynamic_symbol (info, h)) | |
b34976b6 | 5018 | return FALSE; |
b49e97c9 TS |
5019 | |
5020 | if (! mips_elf_hash_table (info)->use_rld_obj_head) | |
5021 | { | |
5022 | /* __rld_map is a four byte word located in the .data section | |
5023 | and is filled in by the rtld to contain a pointer to | |
5024 | the _r_debug structure. Its symbol value will be set in | |
5025 | _bfd_mips_elf_finish_dynamic_symbol. */ | |
5026 | s = bfd_get_section_by_name (abfd, ".rld_map"); | |
5027 | BFD_ASSERT (s != NULL); | |
5028 | ||
14a793b2 AM |
5029 | name = SGI_COMPAT (abfd) ? "__rld_map" : "__RLD_MAP"; |
5030 | bh = NULL; | |
5031 | if (!(_bfd_generic_link_add_one_symbol | |
9719ad41 | 5032 | (info, abfd, name, BSF_GLOBAL, s, 0, NULL, FALSE, |
14a793b2 | 5033 | get_elf_backend_data (abfd)->collect, &bh))) |
b34976b6 | 5034 | return FALSE; |
14a793b2 AM |
5035 | |
5036 | h = (struct elf_link_hash_entry *) bh; | |
b49e97c9 TS |
5037 | h->elf_link_hash_flags &= ~ELF_LINK_NON_ELF; |
5038 | h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR; | |
5039 | h->type = STT_OBJECT; | |
5040 | ||
5041 | if (! bfd_elf32_link_record_dynamic_symbol (info, h)) | |
b34976b6 | 5042 | return FALSE; |
b49e97c9 TS |
5043 | } |
5044 | } | |
5045 | ||
b34976b6 | 5046 | return TRUE; |
b49e97c9 TS |
5047 | } |
5048 | \f | |
5049 | /* Look through the relocs for a section during the first phase, and | |
5050 | allocate space in the global offset table. */ | |
5051 | ||
b34976b6 | 5052 | bfd_boolean |
9719ad41 RS |
5053 | _bfd_mips_elf_check_relocs (bfd *abfd, struct bfd_link_info *info, |
5054 | asection *sec, const Elf_Internal_Rela *relocs) | |
b49e97c9 TS |
5055 | { |
5056 | const char *name; | |
5057 | bfd *dynobj; | |
5058 | Elf_Internal_Shdr *symtab_hdr; | |
5059 | struct elf_link_hash_entry **sym_hashes; | |
5060 | struct mips_got_info *g; | |
5061 | size_t extsymoff; | |
5062 | const Elf_Internal_Rela *rel; | |
5063 | const Elf_Internal_Rela *rel_end; | |
5064 | asection *sgot; | |
5065 | asection *sreloc; | |
9c5bfbb7 | 5066 | const struct elf_backend_data *bed; |
b49e97c9 | 5067 | |
1049f94e | 5068 | if (info->relocatable) |
b34976b6 | 5069 | return TRUE; |
b49e97c9 TS |
5070 | |
5071 | dynobj = elf_hash_table (info)->dynobj; | |
5072 | symtab_hdr = &elf_tdata (abfd)->symtab_hdr; | |
5073 | sym_hashes = elf_sym_hashes (abfd); | |
5074 | extsymoff = (elf_bad_symtab (abfd)) ? 0 : symtab_hdr->sh_info; | |
5075 | ||
5076 | /* Check for the mips16 stub sections. */ | |
5077 | ||
5078 | name = bfd_get_section_name (abfd, sec); | |
5079 | if (strncmp (name, FN_STUB, sizeof FN_STUB - 1) == 0) | |
5080 | { | |
5081 | unsigned long r_symndx; | |
5082 | ||
5083 | /* Look at the relocation information to figure out which symbol | |
5084 | this is for. */ | |
5085 | ||
5086 | r_symndx = ELF_R_SYM (abfd, relocs->r_info); | |
5087 | ||
5088 | if (r_symndx < extsymoff | |
5089 | || sym_hashes[r_symndx - extsymoff] == NULL) | |
5090 | { | |
5091 | asection *o; | |
5092 | ||
5093 | /* This stub is for a local symbol. This stub will only be | |
5094 | needed if there is some relocation in this BFD, other | |
5095 | than a 16 bit function call, which refers to this symbol. */ | |
5096 | for (o = abfd->sections; o != NULL; o = o->next) | |
5097 | { | |
5098 | Elf_Internal_Rela *sec_relocs; | |
5099 | const Elf_Internal_Rela *r, *rend; | |
5100 | ||
5101 | /* We can ignore stub sections when looking for relocs. */ | |
5102 | if ((o->flags & SEC_RELOC) == 0 | |
5103 | || o->reloc_count == 0 | |
5104 | || strncmp (bfd_get_section_name (abfd, o), FN_STUB, | |
5105 | sizeof FN_STUB - 1) == 0 | |
5106 | || strncmp (bfd_get_section_name (abfd, o), CALL_STUB, | |
5107 | sizeof CALL_STUB - 1) == 0 | |
5108 | || strncmp (bfd_get_section_name (abfd, o), CALL_FP_STUB, | |
5109 | sizeof CALL_FP_STUB - 1) == 0) | |
5110 | continue; | |
5111 | ||
45d6a902 | 5112 | sec_relocs |
9719ad41 | 5113 | = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL, |
45d6a902 | 5114 | info->keep_memory); |
b49e97c9 | 5115 | if (sec_relocs == NULL) |
b34976b6 | 5116 | return FALSE; |
b49e97c9 TS |
5117 | |
5118 | rend = sec_relocs + o->reloc_count; | |
5119 | for (r = sec_relocs; r < rend; r++) | |
5120 | if (ELF_R_SYM (abfd, r->r_info) == r_symndx | |
5121 | && ELF_R_TYPE (abfd, r->r_info) != R_MIPS16_26) | |
5122 | break; | |
5123 | ||
6cdc0ccc | 5124 | if (elf_section_data (o)->relocs != sec_relocs) |
b49e97c9 TS |
5125 | free (sec_relocs); |
5126 | ||
5127 | if (r < rend) | |
5128 | break; | |
5129 | } | |
5130 | ||
5131 | if (o == NULL) | |
5132 | { | |
5133 | /* There is no non-call reloc for this stub, so we do | |
5134 | not need it. Since this function is called before | |
5135 | the linker maps input sections to output sections, we | |
5136 | can easily discard it by setting the SEC_EXCLUDE | |
5137 | flag. */ | |
5138 | sec->flags |= SEC_EXCLUDE; | |
b34976b6 | 5139 | return TRUE; |
b49e97c9 TS |
5140 | } |
5141 | ||
5142 | /* Record this stub in an array of local symbol stubs for | |
5143 | this BFD. */ | |
5144 | if (elf_tdata (abfd)->local_stubs == NULL) | |
5145 | { | |
5146 | unsigned long symcount; | |
5147 | asection **n; | |
5148 | bfd_size_type amt; | |
5149 | ||
5150 | if (elf_bad_symtab (abfd)) | |
5151 | symcount = NUM_SHDR_ENTRIES (symtab_hdr); | |
5152 | else | |
5153 | symcount = symtab_hdr->sh_info; | |
5154 | amt = symcount * sizeof (asection *); | |
9719ad41 | 5155 | n = bfd_zalloc (abfd, amt); |
b49e97c9 | 5156 | if (n == NULL) |
b34976b6 | 5157 | return FALSE; |
b49e97c9 TS |
5158 | elf_tdata (abfd)->local_stubs = n; |
5159 | } | |
5160 | ||
5161 | elf_tdata (abfd)->local_stubs[r_symndx] = sec; | |
5162 | ||
5163 | /* We don't need to set mips16_stubs_seen in this case. | |
5164 | That flag is used to see whether we need to look through | |
5165 | the global symbol table for stubs. We don't need to set | |
5166 | it here, because we just have a local stub. */ | |
5167 | } | |
5168 | else | |
5169 | { | |
5170 | struct mips_elf_link_hash_entry *h; | |
5171 | ||
5172 | h = ((struct mips_elf_link_hash_entry *) | |
5173 | sym_hashes[r_symndx - extsymoff]); | |
5174 | ||
5175 | /* H is the symbol this stub is for. */ | |
5176 | ||
5177 | h->fn_stub = sec; | |
b34976b6 | 5178 | mips_elf_hash_table (info)->mips16_stubs_seen = TRUE; |
b49e97c9 TS |
5179 | } |
5180 | } | |
5181 | else if (strncmp (name, CALL_STUB, sizeof CALL_STUB - 1) == 0 | |
5182 | || strncmp (name, CALL_FP_STUB, sizeof CALL_FP_STUB - 1) == 0) | |
5183 | { | |
5184 | unsigned long r_symndx; | |
5185 | struct mips_elf_link_hash_entry *h; | |
5186 | asection **loc; | |
5187 | ||
5188 | /* Look at the relocation information to figure out which symbol | |
5189 | this is for. */ | |
5190 | ||
5191 | r_symndx = ELF_R_SYM (abfd, relocs->r_info); | |
5192 | ||
5193 | if (r_symndx < extsymoff | |
5194 | || sym_hashes[r_symndx - extsymoff] == NULL) | |
5195 | { | |
5196 | /* This stub was actually built for a static symbol defined | |
5197 | in the same file. We assume that all static symbols in | |
5198 | mips16 code are themselves mips16, so we can simply | |
5199 | discard this stub. Since this function is called before | |
5200 | the linker maps input sections to output sections, we can | |
5201 | easily discard it by setting the SEC_EXCLUDE flag. */ | |
5202 | sec->flags |= SEC_EXCLUDE; | |
b34976b6 | 5203 | return TRUE; |
b49e97c9 TS |
5204 | } |
5205 | ||
5206 | h = ((struct mips_elf_link_hash_entry *) | |
5207 | sym_hashes[r_symndx - extsymoff]); | |
5208 | ||
5209 | /* H is the symbol this stub is for. */ | |
5210 | ||
5211 | if (strncmp (name, CALL_FP_STUB, sizeof CALL_FP_STUB - 1) == 0) | |
5212 | loc = &h->call_fp_stub; | |
5213 | else | |
5214 | loc = &h->call_stub; | |
5215 | ||
5216 | /* If we already have an appropriate stub for this function, we | |
5217 | don't need another one, so we can discard this one. Since | |
5218 | this function is called before the linker maps input sections | |
5219 | to output sections, we can easily discard it by setting the | |
5220 | SEC_EXCLUDE flag. We can also discard this section if we | |
5221 | happen to already know that this is a mips16 function; it is | |
5222 | not necessary to check this here, as it is checked later, but | |
5223 | it is slightly faster to check now. */ | |
5224 | if (*loc != NULL || h->root.other == STO_MIPS16) | |
5225 | { | |
5226 | sec->flags |= SEC_EXCLUDE; | |
b34976b6 | 5227 | return TRUE; |
b49e97c9 TS |
5228 | } |
5229 | ||
5230 | *loc = sec; | |
b34976b6 | 5231 | mips_elf_hash_table (info)->mips16_stubs_seen = TRUE; |
b49e97c9 TS |
5232 | } |
5233 | ||
5234 | if (dynobj == NULL) | |
5235 | { | |
5236 | sgot = NULL; | |
5237 | g = NULL; | |
5238 | } | |
5239 | else | |
5240 | { | |
f4416af6 | 5241 | sgot = mips_elf_got_section (dynobj, FALSE); |
b49e97c9 TS |
5242 | if (sgot == NULL) |
5243 | g = NULL; | |
5244 | else | |
5245 | { | |
f0abc2a1 AM |
5246 | BFD_ASSERT (mips_elf_section_data (sgot) != NULL); |
5247 | g = mips_elf_section_data (sgot)->u.got_info; | |
b49e97c9 TS |
5248 | BFD_ASSERT (g != NULL); |
5249 | } | |
5250 | } | |
5251 | ||
5252 | sreloc = NULL; | |
5253 | bed = get_elf_backend_data (abfd); | |
5254 | rel_end = relocs + sec->reloc_count * bed->s->int_rels_per_ext_rel; | |
5255 | for (rel = relocs; rel < rel_end; ++rel) | |
5256 | { | |
5257 | unsigned long r_symndx; | |
5258 | unsigned int r_type; | |
5259 | struct elf_link_hash_entry *h; | |
5260 | ||
5261 | r_symndx = ELF_R_SYM (abfd, rel->r_info); | |
5262 | r_type = ELF_R_TYPE (abfd, rel->r_info); | |
5263 | ||
5264 | if (r_symndx < extsymoff) | |
5265 | h = NULL; | |
5266 | else if (r_symndx >= extsymoff + NUM_SHDR_ENTRIES (symtab_hdr)) | |
5267 | { | |
5268 | (*_bfd_error_handler) | |
5269 | (_("%s: Malformed reloc detected for section %s"), | |
5270 | bfd_archive_filename (abfd), name); | |
5271 | bfd_set_error (bfd_error_bad_value); | |
b34976b6 | 5272 | return FALSE; |
b49e97c9 TS |
5273 | } |
5274 | else | |
5275 | { | |
5276 | h = sym_hashes[r_symndx - extsymoff]; | |
5277 | ||
5278 | /* This may be an indirect symbol created because of a version. */ | |
5279 | if (h != NULL) | |
5280 | { | |
5281 | while (h->root.type == bfd_link_hash_indirect) | |
5282 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
5283 | } | |
5284 | } | |
5285 | ||
5286 | /* Some relocs require a global offset table. */ | |
5287 | if (dynobj == NULL || sgot == NULL) | |
5288 | { | |
5289 | switch (r_type) | |
5290 | { | |
5291 | case R_MIPS_GOT16: | |
5292 | case R_MIPS_CALL16: | |
5293 | case R_MIPS_CALL_HI16: | |
5294 | case R_MIPS_CALL_LO16: | |
5295 | case R_MIPS_GOT_HI16: | |
5296 | case R_MIPS_GOT_LO16: | |
5297 | case R_MIPS_GOT_PAGE: | |
5298 | case R_MIPS_GOT_OFST: | |
5299 | case R_MIPS_GOT_DISP: | |
5300 | if (dynobj == NULL) | |
5301 | elf_hash_table (info)->dynobj = dynobj = abfd; | |
f4416af6 | 5302 | if (! mips_elf_create_got_section (dynobj, info, FALSE)) |
b34976b6 | 5303 | return FALSE; |
b49e97c9 TS |
5304 | g = mips_elf_got_info (dynobj, &sgot); |
5305 | break; | |
5306 | ||
5307 | case R_MIPS_32: | |
5308 | case R_MIPS_REL32: | |
5309 | case R_MIPS_64: | |
5310 | if (dynobj == NULL | |
5311 | && (info->shared || h != NULL) | |
5312 | && (sec->flags & SEC_ALLOC) != 0) | |
5313 | elf_hash_table (info)->dynobj = dynobj = abfd; | |
5314 | break; | |
5315 | ||
5316 | default: | |
5317 | break; | |
5318 | } | |
5319 | } | |
5320 | ||
5321 | if (!h && (r_type == R_MIPS_CALL_LO16 | |
5322 | || r_type == R_MIPS_GOT_LO16 | |
5323 | || r_type == R_MIPS_GOT_DISP)) | |
5324 | { | |
5325 | /* We may need a local GOT entry for this relocation. We | |
5326 | don't count R_MIPS_GOT_PAGE because we can estimate the | |
5327 | maximum number of pages needed by looking at the size of | |
5328 | the segment. Similar comments apply to R_MIPS_GOT16 and | |
5329 | R_MIPS_CALL16. We don't count R_MIPS_GOT_HI16, or | |
5330 | R_MIPS_CALL_HI16 because these are always followed by an | |
b15e6682 | 5331 | R_MIPS_GOT_LO16 or R_MIPS_CALL_LO16. */ |
f4416af6 AO |
5332 | if (! mips_elf_record_local_got_symbol (abfd, r_symndx, |
5333 | rel->r_addend, g)) | |
5334 | return FALSE; | |
b49e97c9 TS |
5335 | } |
5336 | ||
5337 | switch (r_type) | |
5338 | { | |
5339 | case R_MIPS_CALL16: | |
5340 | if (h == NULL) | |
5341 | { | |
5342 | (*_bfd_error_handler) | |
5343 | (_("%s: CALL16 reloc at 0x%lx not against global symbol"), | |
5344 | bfd_archive_filename (abfd), (unsigned long) rel->r_offset); | |
5345 | bfd_set_error (bfd_error_bad_value); | |
b34976b6 | 5346 | return FALSE; |
b49e97c9 TS |
5347 | } |
5348 | /* Fall through. */ | |
5349 | ||
5350 | case R_MIPS_CALL_HI16: | |
5351 | case R_MIPS_CALL_LO16: | |
5352 | if (h != NULL) | |
5353 | { | |
5354 | /* This symbol requires a global offset table entry. */ | |
f4416af6 | 5355 | if (! mips_elf_record_global_got_symbol (h, abfd, info, g)) |
b34976b6 | 5356 | return FALSE; |
b49e97c9 TS |
5357 | |
5358 | /* We need a stub, not a plt entry for the undefined | |
5359 | function. But we record it as if it needs plt. See | |
5360 | elf_adjust_dynamic_symbol in elflink.h. */ | |
5361 | h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT; | |
5362 | h->type = STT_FUNC; | |
5363 | } | |
5364 | break; | |
5365 | ||
0fdc1bf1 AO |
5366 | case R_MIPS_GOT_PAGE: |
5367 | /* If this is a global, overridable symbol, GOT_PAGE will | |
5368 | decay to GOT_DISP, so we'll need a GOT entry for it. */ | |
5369 | if (h == NULL) | |
5370 | break; | |
5371 | else | |
5372 | { | |
5373 | struct mips_elf_link_hash_entry *hmips = | |
5374 | (struct mips_elf_link_hash_entry *) h; | |
143d77c5 | 5375 | |
0fdc1bf1 AO |
5376 | while (hmips->root.root.type == bfd_link_hash_indirect |
5377 | || hmips->root.root.type == bfd_link_hash_warning) | |
5378 | hmips = (struct mips_elf_link_hash_entry *) | |
5379 | hmips->root.root.u.i.link; | |
143d77c5 | 5380 | |
d25aed71 | 5381 | if ((hmips->root.elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) |
0fdc1bf1 AO |
5382 | && ! (info->shared && ! info->symbolic |
5383 | && ! (hmips->root.elf_link_hash_flags | |
d25aed71 | 5384 | & ELF_LINK_FORCED_LOCAL))) |
0fdc1bf1 AO |
5385 | break; |
5386 | } | |
5387 | /* Fall through. */ | |
5388 | ||
b49e97c9 TS |
5389 | case R_MIPS_GOT16: |
5390 | case R_MIPS_GOT_HI16: | |
5391 | case R_MIPS_GOT_LO16: | |
5392 | case R_MIPS_GOT_DISP: | |
5393 | /* This symbol requires a global offset table entry. */ | |
f4416af6 | 5394 | if (h && ! mips_elf_record_global_got_symbol (h, abfd, info, g)) |
b34976b6 | 5395 | return FALSE; |
b49e97c9 TS |
5396 | break; |
5397 | ||
5398 | case R_MIPS_32: | |
5399 | case R_MIPS_REL32: | |
5400 | case R_MIPS_64: | |
5401 | if ((info->shared || h != NULL) | |
5402 | && (sec->flags & SEC_ALLOC) != 0) | |
5403 | { | |
5404 | if (sreloc == NULL) | |
5405 | { | |
f4416af6 | 5406 | sreloc = mips_elf_rel_dyn_section (dynobj, TRUE); |
b49e97c9 | 5407 | if (sreloc == NULL) |
f4416af6 | 5408 | return FALSE; |
b49e97c9 TS |
5409 | } |
5410 | #define MIPS_READONLY_SECTION (SEC_ALLOC | SEC_LOAD | SEC_READONLY) | |
5411 | if (info->shared) | |
5412 | { | |
5413 | /* When creating a shared object, we must copy these | |
5414 | reloc types into the output file as R_MIPS_REL32 | |
5415 | relocs. We make room for this reloc in the | |
5416 | .rel.dyn reloc section. */ | |
5417 | mips_elf_allocate_dynamic_relocations (dynobj, 1); | |
5418 | if ((sec->flags & MIPS_READONLY_SECTION) | |
5419 | == MIPS_READONLY_SECTION) | |
5420 | /* We tell the dynamic linker that there are | |
5421 | relocations against the text segment. */ | |
5422 | info->flags |= DF_TEXTREL; | |
5423 | } | |
5424 | else | |
5425 | { | |
5426 | struct mips_elf_link_hash_entry *hmips; | |
5427 | ||
5428 | /* We only need to copy this reloc if the symbol is | |
5429 | defined in a dynamic object. */ | |
5430 | hmips = (struct mips_elf_link_hash_entry *) h; | |
5431 | ++hmips->possibly_dynamic_relocs; | |
5432 | if ((sec->flags & MIPS_READONLY_SECTION) | |
5433 | == MIPS_READONLY_SECTION) | |
5434 | /* We need it to tell the dynamic linker if there | |
5435 | are relocations against the text segment. */ | |
b34976b6 | 5436 | hmips->readonly_reloc = TRUE; |
b49e97c9 TS |
5437 | } |
5438 | ||
5439 | /* Even though we don't directly need a GOT entry for | |
5440 | this symbol, a symbol must have a dynamic symbol | |
5441 | table index greater that DT_MIPS_GOTSYM if there are | |
5442 | dynamic relocations against it. */ | |
f4416af6 AO |
5443 | if (h != NULL) |
5444 | { | |
5445 | if (dynobj == NULL) | |
5446 | elf_hash_table (info)->dynobj = dynobj = abfd; | |
5447 | if (! mips_elf_create_got_section (dynobj, info, TRUE)) | |
5448 | return FALSE; | |
5449 | g = mips_elf_got_info (dynobj, &sgot); | |
5450 | if (! mips_elf_record_global_got_symbol (h, abfd, info, g)) | |
5451 | return FALSE; | |
5452 | } | |
b49e97c9 TS |
5453 | } |
5454 | ||
5455 | if (SGI_COMPAT (abfd)) | |
5456 | mips_elf_hash_table (info)->compact_rel_size += | |
5457 | sizeof (Elf32_External_crinfo); | |
5458 | break; | |
5459 | ||
5460 | case R_MIPS_26: | |
5461 | case R_MIPS_GPREL16: | |
5462 | case R_MIPS_LITERAL: | |
5463 | case R_MIPS_GPREL32: | |
5464 | if (SGI_COMPAT (abfd)) | |
5465 | mips_elf_hash_table (info)->compact_rel_size += | |
5466 | sizeof (Elf32_External_crinfo); | |
5467 | break; | |
5468 | ||
5469 | /* This relocation describes the C++ object vtable hierarchy. | |
5470 | Reconstruct it for later use during GC. */ | |
5471 | case R_MIPS_GNU_VTINHERIT: | |
5472 | if (!_bfd_elf32_gc_record_vtinherit (abfd, sec, h, rel->r_offset)) | |
b34976b6 | 5473 | return FALSE; |
b49e97c9 TS |
5474 | break; |
5475 | ||
5476 | /* This relocation describes which C++ vtable entries are actually | |
5477 | used. Record for later use during GC. */ | |
5478 | case R_MIPS_GNU_VTENTRY: | |
5479 | if (!_bfd_elf32_gc_record_vtentry (abfd, sec, h, rel->r_offset)) | |
b34976b6 | 5480 | return FALSE; |
b49e97c9 TS |
5481 | break; |
5482 | ||
5483 | default: | |
5484 | break; | |
5485 | } | |
5486 | ||
5487 | /* We must not create a stub for a symbol that has relocations | |
5488 | related to taking the function's address. */ | |
5489 | switch (r_type) | |
5490 | { | |
5491 | default: | |
5492 | if (h != NULL) | |
5493 | { | |
5494 | struct mips_elf_link_hash_entry *mh; | |
5495 | ||
5496 | mh = (struct mips_elf_link_hash_entry *) h; | |
b34976b6 | 5497 | mh->no_fn_stub = TRUE; |
b49e97c9 TS |
5498 | } |
5499 | break; | |
5500 | case R_MIPS_CALL16: | |
5501 | case R_MIPS_CALL_HI16: | |
5502 | case R_MIPS_CALL_LO16: | |
2b86c02e | 5503 | case R_MIPS_JALR: |
b49e97c9 TS |
5504 | break; |
5505 | } | |
5506 | ||
5507 | /* If this reloc is not a 16 bit call, and it has a global | |
5508 | symbol, then we will need the fn_stub if there is one. | |
5509 | References from a stub section do not count. */ | |
5510 | if (h != NULL | |
5511 | && r_type != R_MIPS16_26 | |
5512 | && strncmp (bfd_get_section_name (abfd, sec), FN_STUB, | |
5513 | sizeof FN_STUB - 1) != 0 | |
5514 | && strncmp (bfd_get_section_name (abfd, sec), CALL_STUB, | |
5515 | sizeof CALL_STUB - 1) != 0 | |
5516 | && strncmp (bfd_get_section_name (abfd, sec), CALL_FP_STUB, | |
5517 | sizeof CALL_FP_STUB - 1) != 0) | |
5518 | { | |
5519 | struct mips_elf_link_hash_entry *mh; | |
5520 | ||
5521 | mh = (struct mips_elf_link_hash_entry *) h; | |
b34976b6 | 5522 | mh->need_fn_stub = TRUE; |
b49e97c9 TS |
5523 | } |
5524 | } | |
5525 | ||
b34976b6 | 5526 | return TRUE; |
b49e97c9 TS |
5527 | } |
5528 | \f | |
d0647110 | 5529 | bfd_boolean |
9719ad41 RS |
5530 | _bfd_mips_relax_section (bfd *abfd, asection *sec, |
5531 | struct bfd_link_info *link_info, | |
5532 | bfd_boolean *again) | |
d0647110 AO |
5533 | { |
5534 | Elf_Internal_Rela *internal_relocs; | |
5535 | Elf_Internal_Rela *irel, *irelend; | |
5536 | Elf_Internal_Shdr *symtab_hdr; | |
5537 | bfd_byte *contents = NULL; | |
5538 | bfd_byte *free_contents = NULL; | |
5539 | size_t extsymoff; | |
5540 | bfd_boolean changed_contents = FALSE; | |
5541 | bfd_vma sec_start = sec->output_section->vma + sec->output_offset; | |
5542 | Elf_Internal_Sym *isymbuf = NULL; | |
5543 | ||
5544 | /* We are not currently changing any sizes, so only one pass. */ | |
5545 | *again = FALSE; | |
5546 | ||
1049f94e | 5547 | if (link_info->relocatable) |
d0647110 AO |
5548 | return TRUE; |
5549 | ||
9719ad41 | 5550 | internal_relocs = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL, |
45d6a902 | 5551 | link_info->keep_memory); |
d0647110 AO |
5552 | if (internal_relocs == NULL) |
5553 | return TRUE; | |
5554 | ||
5555 | irelend = internal_relocs + sec->reloc_count | |
5556 | * get_elf_backend_data (abfd)->s->int_rels_per_ext_rel; | |
5557 | symtab_hdr = &elf_tdata (abfd)->symtab_hdr; | |
5558 | extsymoff = (elf_bad_symtab (abfd)) ? 0 : symtab_hdr->sh_info; | |
5559 | ||
5560 | for (irel = internal_relocs; irel < irelend; irel++) | |
5561 | { | |
5562 | bfd_vma symval; | |
5563 | bfd_signed_vma sym_offset; | |
5564 | unsigned int r_type; | |
5565 | unsigned long r_symndx; | |
5566 | asection *sym_sec; | |
5567 | unsigned long instruction; | |
5568 | ||
5569 | /* Turn jalr into bgezal, and jr into beq, if they're marked | |
5570 | with a JALR relocation, that indicate where they jump to. | |
5571 | This saves some pipeline bubbles. */ | |
5572 | r_type = ELF_R_TYPE (abfd, irel->r_info); | |
5573 | if (r_type != R_MIPS_JALR) | |
5574 | continue; | |
5575 | ||
5576 | r_symndx = ELF_R_SYM (abfd, irel->r_info); | |
5577 | /* Compute the address of the jump target. */ | |
5578 | if (r_symndx >= extsymoff) | |
5579 | { | |
5580 | struct mips_elf_link_hash_entry *h | |
5581 | = ((struct mips_elf_link_hash_entry *) | |
5582 | elf_sym_hashes (abfd) [r_symndx - extsymoff]); | |
5583 | ||
5584 | while (h->root.root.type == bfd_link_hash_indirect | |
5585 | || h->root.root.type == bfd_link_hash_warning) | |
5586 | h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link; | |
143d77c5 | 5587 | |
d0647110 AO |
5588 | /* If a symbol is undefined, or if it may be overridden, |
5589 | skip it. */ | |
5590 | if (! ((h->root.root.type == bfd_link_hash_defined | |
5591 | || h->root.root.type == bfd_link_hash_defweak) | |
5592 | && h->root.root.u.def.section) | |
5593 | || (link_info->shared && ! link_info->symbolic | |
5594 | && ! (h->root.elf_link_hash_flags & ELF_LINK_FORCED_LOCAL))) | |
5595 | continue; | |
5596 | ||
5597 | sym_sec = h->root.root.u.def.section; | |
5598 | if (sym_sec->output_section) | |
5599 | symval = (h->root.root.u.def.value | |
5600 | + sym_sec->output_section->vma | |
5601 | + sym_sec->output_offset); | |
5602 | else | |
5603 | symval = h->root.root.u.def.value; | |
5604 | } | |
5605 | else | |
5606 | { | |
5607 | Elf_Internal_Sym *isym; | |
5608 | ||
5609 | /* Read this BFD's symbols if we haven't done so already. */ | |
5610 | if (isymbuf == NULL && symtab_hdr->sh_info != 0) | |
5611 | { | |
5612 | isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents; | |
5613 | if (isymbuf == NULL) | |
5614 | isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr, | |
5615 | symtab_hdr->sh_info, 0, | |
5616 | NULL, NULL, NULL); | |
5617 | if (isymbuf == NULL) | |
5618 | goto relax_return; | |
5619 | } | |
5620 | ||
5621 | isym = isymbuf + r_symndx; | |
5622 | if (isym->st_shndx == SHN_UNDEF) | |
5623 | continue; | |
5624 | else if (isym->st_shndx == SHN_ABS) | |
5625 | sym_sec = bfd_abs_section_ptr; | |
5626 | else if (isym->st_shndx == SHN_COMMON) | |
5627 | sym_sec = bfd_com_section_ptr; | |
5628 | else | |
5629 | sym_sec | |
5630 | = bfd_section_from_elf_index (abfd, isym->st_shndx); | |
5631 | symval = isym->st_value | |
5632 | + sym_sec->output_section->vma | |
5633 | + sym_sec->output_offset; | |
5634 | } | |
5635 | ||
5636 | /* Compute branch offset, from delay slot of the jump to the | |
5637 | branch target. */ | |
5638 | sym_offset = (symval + irel->r_addend) | |
5639 | - (sec_start + irel->r_offset + 4); | |
5640 | ||
5641 | /* Branch offset must be properly aligned. */ | |
5642 | if ((sym_offset & 3) != 0) | |
5643 | continue; | |
5644 | ||
5645 | sym_offset >>= 2; | |
5646 | ||
5647 | /* Check that it's in range. */ | |
5648 | if (sym_offset < -0x8000 || sym_offset >= 0x8000) | |
5649 | continue; | |
143d77c5 | 5650 | |
d0647110 AO |
5651 | /* Get the section contents if we haven't done so already. */ |
5652 | if (contents == NULL) | |
5653 | { | |
5654 | /* Get cached copy if it exists. */ | |
5655 | if (elf_section_data (sec)->this_hdr.contents != NULL) | |
5656 | contents = elf_section_data (sec)->this_hdr.contents; | |
5657 | else | |
5658 | { | |
9719ad41 | 5659 | contents = bfd_malloc (sec->_raw_size); |
d0647110 AO |
5660 | if (contents == NULL) |
5661 | goto relax_return; | |
5662 | ||
5663 | free_contents = contents; | |
5664 | if (! bfd_get_section_contents (abfd, sec, contents, | |
9719ad41 | 5665 | 0, sec->_raw_size)) |
d0647110 AO |
5666 | goto relax_return; |
5667 | } | |
5668 | } | |
5669 | ||
5670 | instruction = bfd_get_32 (abfd, contents + irel->r_offset); | |
5671 | ||
5672 | /* If it was jalr <reg>, turn it into bgezal $zero, <target>. */ | |
5673 | if ((instruction & 0xfc1fffff) == 0x0000f809) | |
5674 | instruction = 0x04110000; | |
5675 | /* If it was jr <reg>, turn it into b <target>. */ | |
5676 | else if ((instruction & 0xfc1fffff) == 0x00000008) | |
5677 | instruction = 0x10000000; | |
5678 | else | |
5679 | continue; | |
5680 | ||
5681 | instruction |= (sym_offset & 0xffff); | |
5682 | bfd_put_32 (abfd, instruction, contents + irel->r_offset); | |
5683 | changed_contents = TRUE; | |
5684 | } | |
5685 | ||
5686 | if (contents != NULL | |
5687 | && elf_section_data (sec)->this_hdr.contents != contents) | |
5688 | { | |
5689 | if (!changed_contents && !link_info->keep_memory) | |
5690 | free (contents); | |
5691 | else | |
5692 | { | |
5693 | /* Cache the section contents for elf_link_input_bfd. */ | |
5694 | elf_section_data (sec)->this_hdr.contents = contents; | |
5695 | } | |
5696 | } | |
5697 | return TRUE; | |
5698 | ||
143d77c5 | 5699 | relax_return: |
d0647110 AO |
5700 | if (free_contents != NULL) |
5701 | free (free_contents); | |
5702 | return FALSE; | |
5703 | } | |
5704 | \f | |
b49e97c9 TS |
5705 | /* Adjust a symbol defined by a dynamic object and referenced by a |
5706 | regular object. The current definition is in some section of the | |
5707 | dynamic object, but we're not including those sections. We have to | |
5708 | change the definition to something the rest of the link can | |
5709 | understand. */ | |
5710 | ||
b34976b6 | 5711 | bfd_boolean |
9719ad41 RS |
5712 | _bfd_mips_elf_adjust_dynamic_symbol (struct bfd_link_info *info, |
5713 | struct elf_link_hash_entry *h) | |
b49e97c9 TS |
5714 | { |
5715 | bfd *dynobj; | |
5716 | struct mips_elf_link_hash_entry *hmips; | |
5717 | asection *s; | |
5718 | ||
5719 | dynobj = elf_hash_table (info)->dynobj; | |
5720 | ||
5721 | /* Make sure we know what is going on here. */ | |
5722 | BFD_ASSERT (dynobj != NULL | |
5723 | && ((h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT) | |
5724 | || h->weakdef != NULL | |
5725 | || ((h->elf_link_hash_flags | |
5726 | & ELF_LINK_HASH_DEF_DYNAMIC) != 0 | |
5727 | && (h->elf_link_hash_flags | |
5728 | & ELF_LINK_HASH_REF_REGULAR) != 0 | |
5729 | && (h->elf_link_hash_flags | |
5730 | & ELF_LINK_HASH_DEF_REGULAR) == 0))); | |
5731 | ||
5732 | /* If this symbol is defined in a dynamic object, we need to copy | |
5733 | any R_MIPS_32 or R_MIPS_REL32 relocs against it into the output | |
5734 | file. */ | |
5735 | hmips = (struct mips_elf_link_hash_entry *) h; | |
1049f94e | 5736 | if (! info->relocatable |
b49e97c9 TS |
5737 | && hmips->possibly_dynamic_relocs != 0 |
5738 | && (h->root.type == bfd_link_hash_defweak | |
5739 | || (h->elf_link_hash_flags | |
5740 | & ELF_LINK_HASH_DEF_REGULAR) == 0)) | |
5741 | { | |
5742 | mips_elf_allocate_dynamic_relocations (dynobj, | |
5743 | hmips->possibly_dynamic_relocs); | |
5744 | if (hmips->readonly_reloc) | |
5745 | /* We tell the dynamic linker that there are relocations | |
5746 | against the text segment. */ | |
5747 | info->flags |= DF_TEXTREL; | |
5748 | } | |
5749 | ||
5750 | /* For a function, create a stub, if allowed. */ | |
5751 | if (! hmips->no_fn_stub | |
5752 | && (h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT) != 0) | |
5753 | { | |
5754 | if (! elf_hash_table (info)->dynamic_sections_created) | |
b34976b6 | 5755 | return TRUE; |
b49e97c9 TS |
5756 | |
5757 | /* If this symbol is not defined in a regular file, then set | |
5758 | the symbol to the stub location. This is required to make | |
5759 | function pointers compare as equal between the normal | |
5760 | executable and the shared library. */ | |
5761 | if ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0) | |
5762 | { | |
5763 | /* We need .stub section. */ | |
5764 | s = bfd_get_section_by_name (dynobj, | |
5765 | MIPS_ELF_STUB_SECTION_NAME (dynobj)); | |
5766 | BFD_ASSERT (s != NULL); | |
5767 | ||
5768 | h->root.u.def.section = s; | |
5769 | h->root.u.def.value = s->_raw_size; | |
5770 | ||
5771 | /* XXX Write this stub address somewhere. */ | |
5772 | h->plt.offset = s->_raw_size; | |
5773 | ||
5774 | /* Make room for this stub code. */ | |
5775 | s->_raw_size += MIPS_FUNCTION_STUB_SIZE; | |
5776 | ||
5777 | /* The last half word of the stub will be filled with the index | |
5778 | of this symbol in .dynsym section. */ | |
b34976b6 | 5779 | return TRUE; |
b49e97c9 TS |
5780 | } |
5781 | } | |
5782 | else if ((h->type == STT_FUNC) | |
5783 | && (h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT) == 0) | |
5784 | { | |
5785 | /* This will set the entry for this symbol in the GOT to 0, and | |
5786 | the dynamic linker will take care of this. */ | |
5787 | h->root.u.def.value = 0; | |
b34976b6 | 5788 | return TRUE; |
b49e97c9 TS |
5789 | } |
5790 | ||
5791 | /* If this is a weak symbol, and there is a real definition, the | |
5792 | processor independent code will have arranged for us to see the | |
5793 | real definition first, and we can just use the same value. */ | |
5794 | if (h->weakdef != NULL) | |
5795 | { | |
5796 | BFD_ASSERT (h->weakdef->root.type == bfd_link_hash_defined | |
5797 | || h->weakdef->root.type == bfd_link_hash_defweak); | |
5798 | h->root.u.def.section = h->weakdef->root.u.def.section; | |
5799 | h->root.u.def.value = h->weakdef->root.u.def.value; | |
b34976b6 | 5800 | return TRUE; |
b49e97c9 TS |
5801 | } |
5802 | ||
5803 | /* This is a reference to a symbol defined by a dynamic object which | |
5804 | is not a function. */ | |
5805 | ||
b34976b6 | 5806 | return TRUE; |
b49e97c9 TS |
5807 | } |
5808 | \f | |
5809 | /* This function is called after all the input files have been read, | |
5810 | and the input sections have been assigned to output sections. We | |
5811 | check for any mips16 stub sections that we can discard. */ | |
5812 | ||
b34976b6 | 5813 | bfd_boolean |
9719ad41 RS |
5814 | _bfd_mips_elf_always_size_sections (bfd *output_bfd, |
5815 | struct bfd_link_info *info) | |
b49e97c9 TS |
5816 | { |
5817 | asection *ri; | |
5818 | ||
f4416af6 AO |
5819 | bfd *dynobj; |
5820 | asection *s; | |
5821 | struct mips_got_info *g; | |
5822 | int i; | |
5823 | bfd_size_type loadable_size = 0; | |
5824 | bfd_size_type local_gotno; | |
5825 | bfd *sub; | |
5826 | ||
b49e97c9 TS |
5827 | /* The .reginfo section has a fixed size. */ |
5828 | ri = bfd_get_section_by_name (output_bfd, ".reginfo"); | |
5829 | if (ri != NULL) | |
9719ad41 | 5830 | bfd_set_section_size (output_bfd, ri, sizeof (Elf32_External_RegInfo)); |
b49e97c9 | 5831 | |
1049f94e | 5832 | if (! (info->relocatable |
f4416af6 AO |
5833 | || ! mips_elf_hash_table (info)->mips16_stubs_seen)) |
5834 | mips_elf_link_hash_traverse (mips_elf_hash_table (info), | |
9719ad41 | 5835 | mips_elf_check_mips16_stubs, NULL); |
f4416af6 AO |
5836 | |
5837 | dynobj = elf_hash_table (info)->dynobj; | |
5838 | if (dynobj == NULL) | |
5839 | /* Relocatable links don't have it. */ | |
5840 | return TRUE; | |
143d77c5 | 5841 | |
f4416af6 AO |
5842 | g = mips_elf_got_info (dynobj, &s); |
5843 | if (s == NULL) | |
b34976b6 | 5844 | return TRUE; |
b49e97c9 | 5845 | |
f4416af6 AO |
5846 | /* Calculate the total loadable size of the output. That |
5847 | will give us the maximum number of GOT_PAGE entries | |
5848 | required. */ | |
5849 | for (sub = info->input_bfds; sub; sub = sub->link_next) | |
5850 | { | |
5851 | asection *subsection; | |
5852 | ||
5853 | for (subsection = sub->sections; | |
5854 | subsection; | |
5855 | subsection = subsection->next) | |
5856 | { | |
5857 | if ((subsection->flags & SEC_ALLOC) == 0) | |
5858 | continue; | |
5859 | loadable_size += ((subsection->_raw_size + 0xf) | |
5860 | &~ (bfd_size_type) 0xf); | |
5861 | } | |
5862 | } | |
5863 | ||
5864 | /* There has to be a global GOT entry for every symbol with | |
5865 | a dynamic symbol table index of DT_MIPS_GOTSYM or | |
5866 | higher. Therefore, it make sense to put those symbols | |
5867 | that need GOT entries at the end of the symbol table. We | |
5868 | do that here. */ | |
5869 | if (! mips_elf_sort_hash_table (info, 1)) | |
5870 | return FALSE; | |
5871 | ||
5872 | if (g->global_gotsym != NULL) | |
5873 | i = elf_hash_table (info)->dynsymcount - g->global_gotsym->dynindx; | |
5874 | else | |
5875 | /* If there are no global symbols, or none requiring | |
5876 | relocations, then GLOBAL_GOTSYM will be NULL. */ | |
5877 | i = 0; | |
5878 | ||
5879 | /* In the worst case, we'll get one stub per dynamic symbol, plus | |
5880 | one to account for the dummy entry at the end required by IRIX | |
5881 | rld. */ | |
5882 | loadable_size += MIPS_FUNCTION_STUB_SIZE * (i + 1); | |
5883 | ||
5884 | /* Assume there are two loadable segments consisting of | |
5885 | contiguous sections. Is 5 enough? */ | |
5886 | local_gotno = (loadable_size >> 16) + 5; | |
5887 | ||
5888 | g->local_gotno += local_gotno; | |
5889 | s->_raw_size += g->local_gotno * MIPS_ELF_GOT_SIZE (output_bfd); | |
5890 | ||
5891 | g->global_gotno = i; | |
5892 | s->_raw_size += i * MIPS_ELF_GOT_SIZE (output_bfd); | |
5893 | ||
5894 | if (s->_raw_size > MIPS_ELF_GOT_MAX_SIZE (output_bfd) | |
5895 | && ! mips_elf_multi_got (output_bfd, info, g, s, local_gotno)) | |
5896 | return FALSE; | |
b49e97c9 | 5897 | |
b34976b6 | 5898 | return TRUE; |
b49e97c9 TS |
5899 | } |
5900 | ||
5901 | /* Set the sizes of the dynamic sections. */ | |
5902 | ||
b34976b6 | 5903 | bfd_boolean |
9719ad41 RS |
5904 | _bfd_mips_elf_size_dynamic_sections (bfd *output_bfd, |
5905 | struct bfd_link_info *info) | |
b49e97c9 TS |
5906 | { |
5907 | bfd *dynobj; | |
5908 | asection *s; | |
b34976b6 | 5909 | bfd_boolean reltext; |
b49e97c9 TS |
5910 | |
5911 | dynobj = elf_hash_table (info)->dynobj; | |
5912 | BFD_ASSERT (dynobj != NULL); | |
5913 | ||
5914 | if (elf_hash_table (info)->dynamic_sections_created) | |
5915 | { | |
5916 | /* Set the contents of the .interp section to the interpreter. */ | |
893c4fe2 | 5917 | if (info->executable) |
b49e97c9 TS |
5918 | { |
5919 | s = bfd_get_section_by_name (dynobj, ".interp"); | |
5920 | BFD_ASSERT (s != NULL); | |
5921 | s->_raw_size | |
5922 | = strlen (ELF_DYNAMIC_INTERPRETER (output_bfd)) + 1; | |
5923 | s->contents | |
5924 | = (bfd_byte *) ELF_DYNAMIC_INTERPRETER (output_bfd); | |
5925 | } | |
5926 | } | |
5927 | ||
5928 | /* The check_relocs and adjust_dynamic_symbol entry points have | |
5929 | determined the sizes of the various dynamic sections. Allocate | |
5930 | memory for them. */ | |
b34976b6 | 5931 | reltext = FALSE; |
b49e97c9 TS |
5932 | for (s = dynobj->sections; s != NULL; s = s->next) |
5933 | { | |
5934 | const char *name; | |
b34976b6 | 5935 | bfd_boolean strip; |
b49e97c9 TS |
5936 | |
5937 | /* It's OK to base decisions on the section name, because none | |
5938 | of the dynobj section names depend upon the input files. */ | |
5939 | name = bfd_get_section_name (dynobj, s); | |
5940 | ||
5941 | if ((s->flags & SEC_LINKER_CREATED) == 0) | |
5942 | continue; | |
5943 | ||
b34976b6 | 5944 | strip = FALSE; |
b49e97c9 TS |
5945 | |
5946 | if (strncmp (name, ".rel", 4) == 0) | |
5947 | { | |
5948 | if (s->_raw_size == 0) | |
5949 | { | |
5950 | /* We only strip the section if the output section name | |
5951 | has the same name. Otherwise, there might be several | |
5952 | input sections for this output section. FIXME: This | |
5953 | code is probably not needed these days anyhow, since | |
5954 | the linker now does not create empty output sections. */ | |
5955 | if (s->output_section != NULL | |
5956 | && strcmp (name, | |
5957 | bfd_get_section_name (s->output_section->owner, | |
5958 | s->output_section)) == 0) | |
b34976b6 | 5959 | strip = TRUE; |
b49e97c9 TS |
5960 | } |
5961 | else | |
5962 | { | |
5963 | const char *outname; | |
5964 | asection *target; | |
5965 | ||
5966 | /* If this relocation section applies to a read only | |
5967 | section, then we probably need a DT_TEXTREL entry. | |
5968 | If the relocation section is .rel.dyn, we always | |
5969 | assert a DT_TEXTREL entry rather than testing whether | |
5970 | there exists a relocation to a read only section or | |
5971 | not. */ | |
5972 | outname = bfd_get_section_name (output_bfd, | |
5973 | s->output_section); | |
5974 | target = bfd_get_section_by_name (output_bfd, outname + 4); | |
5975 | if ((target != NULL | |
5976 | && (target->flags & SEC_READONLY) != 0 | |
5977 | && (target->flags & SEC_ALLOC) != 0) | |
5978 | || strcmp (outname, ".rel.dyn") == 0) | |
b34976b6 | 5979 | reltext = TRUE; |
b49e97c9 TS |
5980 | |
5981 | /* We use the reloc_count field as a counter if we need | |
5982 | to copy relocs into the output file. */ | |
5983 | if (strcmp (name, ".rel.dyn") != 0) | |
5984 | s->reloc_count = 0; | |
f4416af6 AO |
5985 | |
5986 | /* If combreloc is enabled, elf_link_sort_relocs() will | |
5987 | sort relocations, but in a different way than we do, | |
5988 | and before we're done creating relocations. Also, it | |
5989 | will move them around between input sections' | |
5990 | relocation's contents, so our sorting would be | |
5991 | broken, so don't let it run. */ | |
5992 | info->combreloc = 0; | |
b49e97c9 TS |
5993 | } |
5994 | } | |
5995 | else if (strncmp (name, ".got", 4) == 0) | |
5996 | { | |
f4416af6 AO |
5997 | /* _bfd_mips_elf_always_size_sections() has already done |
5998 | most of the work, but some symbols may have been mapped | |
5999 | to versions that we must now resolve in the got_entries | |
6000 | hash tables. */ | |
6001 | struct mips_got_info *gg = mips_elf_got_info (dynobj, NULL); | |
6002 | struct mips_got_info *g = gg; | |
6003 | struct mips_elf_set_global_got_offset_arg set_got_offset_arg; | |
6004 | unsigned int needed_relocs = 0; | |
143d77c5 | 6005 | |
f4416af6 | 6006 | if (gg->next) |
b49e97c9 | 6007 | { |
f4416af6 AO |
6008 | set_got_offset_arg.value = MIPS_ELF_GOT_SIZE (output_bfd); |
6009 | set_got_offset_arg.info = info; | |
b49e97c9 | 6010 | |
f4416af6 AO |
6011 | mips_elf_resolve_final_got_entries (gg); |
6012 | for (g = gg->next; g && g->next != gg; g = g->next) | |
b49e97c9 | 6013 | { |
f4416af6 AO |
6014 | unsigned int save_assign; |
6015 | ||
6016 | mips_elf_resolve_final_got_entries (g); | |
6017 | ||
6018 | /* Assign offsets to global GOT entries. */ | |
6019 | save_assign = g->assigned_gotno; | |
6020 | g->assigned_gotno = g->local_gotno; | |
6021 | set_got_offset_arg.g = g; | |
6022 | set_got_offset_arg.needed_relocs = 0; | |
6023 | htab_traverse (g->got_entries, | |
6024 | mips_elf_set_global_got_offset, | |
6025 | &set_got_offset_arg); | |
6026 | needed_relocs += set_got_offset_arg.needed_relocs; | |
6027 | BFD_ASSERT (g->assigned_gotno - g->local_gotno | |
6028 | <= g->global_gotno); | |
6029 | ||
6030 | g->assigned_gotno = save_assign; | |
6031 | if (info->shared) | |
6032 | { | |
6033 | needed_relocs += g->local_gotno - g->assigned_gotno; | |
6034 | BFD_ASSERT (g->assigned_gotno == g->next->local_gotno | |
6035 | + g->next->global_gotno | |
6036 | + MIPS_RESERVED_GOTNO); | |
6037 | } | |
b49e97c9 | 6038 | } |
b49e97c9 | 6039 | |
f4416af6 AO |
6040 | if (needed_relocs) |
6041 | mips_elf_allocate_dynamic_relocations (dynobj, needed_relocs); | |
6042 | } | |
b49e97c9 TS |
6043 | } |
6044 | else if (strcmp (name, MIPS_ELF_STUB_SECTION_NAME (output_bfd)) == 0) | |
6045 | { | |
8dc1a139 | 6046 | /* IRIX rld assumes that the function stub isn't at the end |
b49e97c9 TS |
6047 | of .text section. So put a dummy. XXX */ |
6048 | s->_raw_size += MIPS_FUNCTION_STUB_SIZE; | |
6049 | } | |
6050 | else if (! info->shared | |
6051 | && ! mips_elf_hash_table (info)->use_rld_obj_head | |
6052 | && strncmp (name, ".rld_map", 8) == 0) | |
6053 | { | |
6054 | /* We add a room for __rld_map. It will be filled in by the | |
6055 | rtld to contain a pointer to the _r_debug structure. */ | |
6056 | s->_raw_size += 4; | |
6057 | } | |
6058 | else if (SGI_COMPAT (output_bfd) | |
6059 | && strncmp (name, ".compact_rel", 12) == 0) | |
6060 | s->_raw_size += mips_elf_hash_table (info)->compact_rel_size; | |
b49e97c9 TS |
6061 | else if (strncmp (name, ".init", 5) != 0) |
6062 | { | |
6063 | /* It's not one of our sections, so don't allocate space. */ | |
6064 | continue; | |
6065 | } | |
6066 | ||
6067 | if (strip) | |
6068 | { | |
6069 | _bfd_strip_section_from_output (info, s); | |
6070 | continue; | |
6071 | } | |
6072 | ||
6073 | /* Allocate memory for the section contents. */ | |
9719ad41 | 6074 | s->contents = bfd_zalloc (dynobj, s->_raw_size); |
b49e97c9 TS |
6075 | if (s->contents == NULL && s->_raw_size != 0) |
6076 | { | |
6077 | bfd_set_error (bfd_error_no_memory); | |
b34976b6 | 6078 | return FALSE; |
b49e97c9 TS |
6079 | } |
6080 | } | |
6081 | ||
6082 | if (elf_hash_table (info)->dynamic_sections_created) | |
6083 | { | |
6084 | /* Add some entries to the .dynamic section. We fill in the | |
6085 | values later, in _bfd_mips_elf_finish_dynamic_sections, but we | |
6086 | must add the entries now so that we get the correct size for | |
6087 | the .dynamic section. The DT_DEBUG entry is filled in by the | |
6088 | dynamic linker and used by the debugger. */ | |
6089 | if (! info->shared) | |
6090 | { | |
6091 | /* SGI object has the equivalence of DT_DEBUG in the | |
6092 | DT_MIPS_RLD_MAP entry. */ | |
6093 | if (!MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_RLD_MAP, 0)) | |
b34976b6 | 6094 | return FALSE; |
b49e97c9 TS |
6095 | if (!SGI_COMPAT (output_bfd)) |
6096 | { | |
6097 | if (!MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_DEBUG, 0)) | |
b34976b6 | 6098 | return FALSE; |
b49e97c9 TS |
6099 | } |
6100 | } | |
6101 | else | |
6102 | { | |
6103 | /* Shared libraries on traditional mips have DT_DEBUG. */ | |
6104 | if (!SGI_COMPAT (output_bfd)) | |
6105 | { | |
6106 | if (!MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_DEBUG, 0)) | |
b34976b6 | 6107 | return FALSE; |
b49e97c9 TS |
6108 | } |
6109 | } | |
6110 | ||
6111 | if (reltext && SGI_COMPAT (output_bfd)) | |
6112 | info->flags |= DF_TEXTREL; | |
6113 | ||
6114 | if ((info->flags & DF_TEXTREL) != 0) | |
6115 | { | |
6116 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_TEXTREL, 0)) | |
b34976b6 | 6117 | return FALSE; |
b49e97c9 TS |
6118 | } |
6119 | ||
6120 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTGOT, 0)) | |
b34976b6 | 6121 | return FALSE; |
b49e97c9 | 6122 | |
f4416af6 | 6123 | if (mips_elf_rel_dyn_section (dynobj, FALSE)) |
b49e97c9 TS |
6124 | { |
6125 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_REL, 0)) | |
b34976b6 | 6126 | return FALSE; |
b49e97c9 TS |
6127 | |
6128 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELSZ, 0)) | |
b34976b6 | 6129 | return FALSE; |
b49e97c9 TS |
6130 | |
6131 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELENT, 0)) | |
b34976b6 | 6132 | return FALSE; |
b49e97c9 TS |
6133 | } |
6134 | ||
b49e97c9 | 6135 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_RLD_VERSION, 0)) |
b34976b6 | 6136 | return FALSE; |
b49e97c9 TS |
6137 | |
6138 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_FLAGS, 0)) | |
b34976b6 | 6139 | return FALSE; |
b49e97c9 TS |
6140 | |
6141 | #if 0 | |
6142 | /* Time stamps in executable files are a bad idea. */ | |
6143 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_TIME_STAMP, 0)) | |
b34976b6 | 6144 | return FALSE; |
b49e97c9 TS |
6145 | #endif |
6146 | ||
6147 | #if 0 /* FIXME */ | |
6148 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_ICHECKSUM, 0)) | |
b34976b6 | 6149 | return FALSE; |
b49e97c9 TS |
6150 | #endif |
6151 | ||
6152 | #if 0 /* FIXME */ | |
6153 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_IVERSION, 0)) | |
b34976b6 | 6154 | return FALSE; |
b49e97c9 TS |
6155 | #endif |
6156 | ||
6157 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_BASE_ADDRESS, 0)) | |
b34976b6 | 6158 | return FALSE; |
b49e97c9 TS |
6159 | |
6160 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_LOCAL_GOTNO, 0)) | |
b34976b6 | 6161 | return FALSE; |
b49e97c9 TS |
6162 | |
6163 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_SYMTABNO, 0)) | |
b34976b6 | 6164 | return FALSE; |
b49e97c9 TS |
6165 | |
6166 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_UNREFEXTNO, 0)) | |
b34976b6 | 6167 | return FALSE; |
b49e97c9 TS |
6168 | |
6169 | if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_GOTSYM, 0)) | |
b34976b6 | 6170 | return FALSE; |
b49e97c9 TS |
6171 | |
6172 | if (IRIX_COMPAT (dynobj) == ict_irix5 | |
6173 | && ! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_HIPAGENO, 0)) | |
b34976b6 | 6174 | return FALSE; |
b49e97c9 TS |
6175 | |
6176 | if (IRIX_COMPAT (dynobj) == ict_irix6 | |
6177 | && (bfd_get_section_by_name | |
6178 | (dynobj, MIPS_ELF_OPTIONS_SECTION_NAME (dynobj))) | |
6179 | && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_OPTIONS, 0)) | |
b34976b6 | 6180 | return FALSE; |
b49e97c9 TS |
6181 | } |
6182 | ||
b34976b6 | 6183 | return TRUE; |
b49e97c9 TS |
6184 | } |
6185 | \f | |
6186 | /* Relocate a MIPS ELF section. */ | |
6187 | ||
b34976b6 | 6188 | bfd_boolean |
9719ad41 RS |
6189 | _bfd_mips_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info, |
6190 | bfd *input_bfd, asection *input_section, | |
6191 | bfd_byte *contents, Elf_Internal_Rela *relocs, | |
6192 | Elf_Internal_Sym *local_syms, | |
6193 | asection **local_sections) | |
b49e97c9 TS |
6194 | { |
6195 | Elf_Internal_Rela *rel; | |
6196 | const Elf_Internal_Rela *relend; | |
6197 | bfd_vma addend = 0; | |
b34976b6 | 6198 | bfd_boolean use_saved_addend_p = FALSE; |
9c5bfbb7 | 6199 | const struct elf_backend_data *bed; |
b49e97c9 TS |
6200 | |
6201 | bed = get_elf_backend_data (output_bfd); | |
6202 | relend = relocs + input_section->reloc_count * bed->s->int_rels_per_ext_rel; | |
6203 | for (rel = relocs; rel < relend; ++rel) | |
6204 | { | |
6205 | const char *name; | |
6206 | bfd_vma value; | |
6207 | reloc_howto_type *howto; | |
b34976b6 AM |
6208 | bfd_boolean require_jalx; |
6209 | /* TRUE if the relocation is a RELA relocation, rather than a | |
b49e97c9 | 6210 | REL relocation. */ |
b34976b6 | 6211 | bfd_boolean rela_relocation_p = TRUE; |
b49e97c9 | 6212 | unsigned int r_type = ELF_R_TYPE (output_bfd, rel->r_info); |
9719ad41 | 6213 | const char *msg; |
b49e97c9 TS |
6214 | |
6215 | /* Find the relocation howto for this relocation. */ | |
4a14403c | 6216 | if (r_type == R_MIPS_64 && ! NEWABI_P (input_bfd)) |
b49e97c9 TS |
6217 | { |
6218 | /* Some 32-bit code uses R_MIPS_64. In particular, people use | |
6219 | 64-bit code, but make sure all their addresses are in the | |
6220 | lowermost or uppermost 32-bit section of the 64-bit address | |
6221 | space. Thus, when they use an R_MIPS_64 they mean what is | |
6222 | usually meant by R_MIPS_32, with the exception that the | |
6223 | stored value is sign-extended to 64 bits. */ | |
b34976b6 | 6224 | howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, R_MIPS_32, FALSE); |
b49e97c9 TS |
6225 | |
6226 | /* On big-endian systems, we need to lie about the position | |
6227 | of the reloc. */ | |
6228 | if (bfd_big_endian (input_bfd)) | |
6229 | rel->r_offset += 4; | |
6230 | } | |
6231 | else | |
6232 | /* NewABI defaults to RELA relocations. */ | |
6233 | howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, r_type, | |
4ffba85c AO |
6234 | NEWABI_P (input_bfd) |
6235 | && (MIPS_RELOC_RELA_P | |
6236 | (input_bfd, input_section, | |
6237 | rel - relocs))); | |
b49e97c9 TS |
6238 | |
6239 | if (!use_saved_addend_p) | |
6240 | { | |
6241 | Elf_Internal_Shdr *rel_hdr; | |
6242 | ||
6243 | /* If these relocations were originally of the REL variety, | |
6244 | we must pull the addend out of the field that will be | |
6245 | relocated. Otherwise, we simply use the contents of the | |
6246 | RELA relocation. To determine which flavor or relocation | |
6247 | this is, we depend on the fact that the INPUT_SECTION's | |
6248 | REL_HDR is read before its REL_HDR2. */ | |
6249 | rel_hdr = &elf_section_data (input_section)->rel_hdr; | |
6250 | if ((size_t) (rel - relocs) | |
6251 | >= (NUM_SHDR_ENTRIES (rel_hdr) * bed->s->int_rels_per_ext_rel)) | |
6252 | rel_hdr = elf_section_data (input_section)->rel_hdr2; | |
6253 | if (rel_hdr->sh_entsize == MIPS_ELF_REL_SIZE (input_bfd)) | |
6254 | { | |
6255 | /* Note that this is a REL relocation. */ | |
b34976b6 | 6256 | rela_relocation_p = FALSE; |
b49e97c9 TS |
6257 | |
6258 | /* Get the addend, which is stored in the input file. */ | |
6259 | addend = mips_elf_obtain_contents (howto, rel, input_bfd, | |
6260 | contents); | |
6261 | addend &= howto->src_mask; | |
6262 | ||
6263 | /* For some kinds of relocations, the ADDEND is a | |
6264 | combination of the addend stored in two different | |
6265 | relocations. */ | |
6266 | if (r_type == R_MIPS_HI16 | |
6267 | || r_type == R_MIPS_GNU_REL_HI16 | |
6268 | || (r_type == R_MIPS_GOT16 | |
6269 | && mips_elf_local_relocation_p (input_bfd, rel, | |
b34976b6 | 6270 | local_sections, FALSE))) |
b49e97c9 TS |
6271 | { |
6272 | bfd_vma l; | |
6273 | const Elf_Internal_Rela *lo16_relocation; | |
6274 | reloc_howto_type *lo16_howto; | |
6275 | unsigned int lo; | |
6276 | ||
6277 | /* The combined value is the sum of the HI16 addend, | |
6278 | left-shifted by sixteen bits, and the LO16 | |
6279 | addend, sign extended. (Usually, the code does | |
6280 | a `lui' of the HI16 value, and then an `addiu' of | |
6281 | the LO16 value.) | |
6282 | ||
6283 | Scan ahead to find a matching LO16 relocation. */ | |
6284 | if (r_type == R_MIPS_GNU_REL_HI16) | |
6285 | lo = R_MIPS_GNU_REL_LO16; | |
6286 | else | |
6287 | lo = R_MIPS_LO16; | |
6288 | lo16_relocation = mips_elf_next_relocation (input_bfd, lo, | |
6289 | rel, relend); | |
6290 | if (lo16_relocation == NULL) | |
b34976b6 | 6291 | return FALSE; |
b49e97c9 TS |
6292 | |
6293 | /* Obtain the addend kept there. */ | |
b34976b6 | 6294 | lo16_howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, lo, FALSE); |
b49e97c9 TS |
6295 | l = mips_elf_obtain_contents (lo16_howto, lo16_relocation, |
6296 | input_bfd, contents); | |
6297 | l &= lo16_howto->src_mask; | |
5a659663 | 6298 | l <<= lo16_howto->rightshift; |
a7ebbfdf | 6299 | l = _bfd_mips_elf_sign_extend (l, 16); |
b49e97c9 TS |
6300 | |
6301 | addend <<= 16; | |
6302 | ||
6303 | /* Compute the combined addend. */ | |
6304 | addend += l; | |
6305 | ||
6306 | /* If PC-relative, subtract the difference between the | |
6307 | address of the LO part of the reloc and the address of | |
6308 | the HI part. The relocation is relative to the LO | |
6309 | part, but mips_elf_calculate_relocation() doesn't | |
6310 | know its address or the difference from the HI part, so | |
6311 | we subtract that difference here. See also the | |
6312 | comment in mips_elf_calculate_relocation(). */ | |
6313 | if (r_type == R_MIPS_GNU_REL_HI16) | |
6314 | addend -= (lo16_relocation->r_offset - rel->r_offset); | |
6315 | } | |
6316 | else if (r_type == R_MIPS16_GPREL) | |
6317 | { | |
6318 | /* The addend is scrambled in the object file. See | |
6319 | mips_elf_perform_relocation for details on the | |
6320 | format. */ | |
6321 | addend = (((addend & 0x1f0000) >> 5) | |
6322 | | ((addend & 0x7e00000) >> 16) | |
6323 | | (addend & 0x1f)); | |
6324 | } | |
30ac9238 RS |
6325 | else |
6326 | addend <<= howto->rightshift; | |
b49e97c9 TS |
6327 | } |
6328 | else | |
6329 | addend = rel->r_addend; | |
6330 | } | |
6331 | ||
1049f94e | 6332 | if (info->relocatable) |
b49e97c9 TS |
6333 | { |
6334 | Elf_Internal_Sym *sym; | |
6335 | unsigned long r_symndx; | |
6336 | ||
4a14403c | 6337 | if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd) |
b49e97c9 TS |
6338 | && bfd_big_endian (input_bfd)) |
6339 | rel->r_offset -= 4; | |
6340 | ||
6341 | /* Since we're just relocating, all we need to do is copy | |
6342 | the relocations back out to the object file, unless | |
6343 | they're against a section symbol, in which case we need | |
6344 | to adjust by the section offset, or unless they're GP | |
6345 | relative in which case we need to adjust by the amount | |
1049f94e | 6346 | that we're adjusting GP in this relocatable object. */ |
b49e97c9 TS |
6347 | |
6348 | if (! mips_elf_local_relocation_p (input_bfd, rel, local_sections, | |
b34976b6 | 6349 | FALSE)) |
b49e97c9 TS |
6350 | /* There's nothing to do for non-local relocations. */ |
6351 | continue; | |
6352 | ||
6353 | if (r_type == R_MIPS16_GPREL | |
6354 | || r_type == R_MIPS_GPREL16 | |
6355 | || r_type == R_MIPS_GPREL32 | |
6356 | || r_type == R_MIPS_LITERAL) | |
6357 | addend -= (_bfd_get_gp_value (output_bfd) | |
6358 | - _bfd_get_gp_value (input_bfd)); | |
b49e97c9 TS |
6359 | |
6360 | r_symndx = ELF_R_SYM (output_bfd, rel->r_info); | |
6361 | sym = local_syms + r_symndx; | |
6362 | if (ELF_ST_TYPE (sym->st_info) == STT_SECTION) | |
6363 | /* Adjust the addend appropriately. */ | |
6364 | addend += local_sections[r_symndx]->output_offset; | |
6365 | ||
30ac9238 RS |
6366 | if (rela_relocation_p) |
6367 | /* If this is a RELA relocation, just update the addend. */ | |
6368 | rel->r_addend = addend; | |
6369 | else | |
5a659663 | 6370 | { |
30ac9238 RS |
6371 | if (r_type == R_MIPS_HI16 |
6372 | || r_type == R_MIPS_GOT16 | |
5a659663 TS |
6373 | || r_type == R_MIPS_GNU_REL_HI16) |
6374 | addend = mips_elf_high (addend); | |
6375 | else if (r_type == R_MIPS_HIGHER) | |
6376 | addend = mips_elf_higher (addend); | |
6377 | else if (r_type == R_MIPS_HIGHEST) | |
6378 | addend = mips_elf_highest (addend); | |
30ac9238 RS |
6379 | else |
6380 | addend >>= howto->rightshift; | |
b49e97c9 | 6381 | |
30ac9238 RS |
6382 | /* We use the source mask, rather than the destination |
6383 | mask because the place to which we are writing will be | |
6384 | source of the addend in the final link. */ | |
b49e97c9 TS |
6385 | addend &= howto->src_mask; |
6386 | ||
5a659663 | 6387 | if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd)) |
b49e97c9 TS |
6388 | /* See the comment above about using R_MIPS_64 in the 32-bit |
6389 | ABI. Here, we need to update the addend. It would be | |
6390 | possible to get away with just using the R_MIPS_32 reloc | |
6391 | but for endianness. */ | |
6392 | { | |
6393 | bfd_vma sign_bits; | |
6394 | bfd_vma low_bits; | |
6395 | bfd_vma high_bits; | |
6396 | ||
6397 | if (addend & ((bfd_vma) 1 << 31)) | |
6398 | #ifdef BFD64 | |
6399 | sign_bits = ((bfd_vma) 1 << 32) - 1; | |
6400 | #else | |
6401 | sign_bits = -1; | |
6402 | #endif | |
6403 | else | |
6404 | sign_bits = 0; | |
6405 | ||
6406 | /* If we don't know that we have a 64-bit type, | |
6407 | do two separate stores. */ | |
6408 | if (bfd_big_endian (input_bfd)) | |
6409 | { | |
6410 | /* Store the sign-bits (which are most significant) | |
6411 | first. */ | |
6412 | low_bits = sign_bits; | |
6413 | high_bits = addend; | |
6414 | } | |
6415 | else | |
6416 | { | |
6417 | low_bits = addend; | |
6418 | high_bits = sign_bits; | |
6419 | } | |
6420 | bfd_put_32 (input_bfd, low_bits, | |
6421 | contents + rel->r_offset); | |
6422 | bfd_put_32 (input_bfd, high_bits, | |
6423 | contents + rel->r_offset + 4); | |
6424 | continue; | |
6425 | } | |
6426 | ||
6427 | if (! mips_elf_perform_relocation (info, howto, rel, addend, | |
6428 | input_bfd, input_section, | |
b34976b6 AM |
6429 | contents, FALSE)) |
6430 | return FALSE; | |
b49e97c9 TS |
6431 | } |
6432 | ||
6433 | /* Go on to the next relocation. */ | |
6434 | continue; | |
6435 | } | |
6436 | ||
6437 | /* In the N32 and 64-bit ABIs there may be multiple consecutive | |
6438 | relocations for the same offset. In that case we are | |
6439 | supposed to treat the output of each relocation as the addend | |
6440 | for the next. */ | |
6441 | if (rel + 1 < relend | |
6442 | && rel->r_offset == rel[1].r_offset | |
6443 | && ELF_R_TYPE (input_bfd, rel[1].r_info) != R_MIPS_NONE) | |
b34976b6 | 6444 | use_saved_addend_p = TRUE; |
b49e97c9 | 6445 | else |
b34976b6 | 6446 | use_saved_addend_p = FALSE; |
b49e97c9 TS |
6447 | |
6448 | /* Figure out what value we are supposed to relocate. */ | |
6449 | switch (mips_elf_calculate_relocation (output_bfd, input_bfd, | |
6450 | input_section, info, rel, | |
6451 | addend, howto, local_syms, | |
6452 | local_sections, &value, | |
bce03d3d AO |
6453 | &name, &require_jalx, |
6454 | use_saved_addend_p)) | |
b49e97c9 TS |
6455 | { |
6456 | case bfd_reloc_continue: | |
6457 | /* There's nothing to do. */ | |
6458 | continue; | |
6459 | ||
6460 | case bfd_reloc_undefined: | |
6461 | /* mips_elf_calculate_relocation already called the | |
6462 | undefined_symbol callback. There's no real point in | |
6463 | trying to perform the relocation at this point, so we | |
6464 | just skip ahead to the next relocation. */ | |
6465 | continue; | |
6466 | ||
6467 | case bfd_reloc_notsupported: | |
6468 | msg = _("internal error: unsupported relocation error"); | |
6469 | info->callbacks->warning | |
6470 | (info, msg, name, input_bfd, input_section, rel->r_offset); | |
b34976b6 | 6471 | return FALSE; |
b49e97c9 TS |
6472 | |
6473 | case bfd_reloc_overflow: | |
6474 | if (use_saved_addend_p) | |
6475 | /* Ignore overflow until we reach the last relocation for | |
6476 | a given location. */ | |
6477 | ; | |
6478 | else | |
6479 | { | |
6480 | BFD_ASSERT (name != NULL); | |
6481 | if (! ((*info->callbacks->reloc_overflow) | |
9719ad41 | 6482 | (info, name, howto->name, 0, |
b49e97c9 | 6483 | input_bfd, input_section, rel->r_offset))) |
b34976b6 | 6484 | return FALSE; |
b49e97c9 TS |
6485 | } |
6486 | break; | |
6487 | ||
6488 | case bfd_reloc_ok: | |
6489 | break; | |
6490 | ||
6491 | default: | |
6492 | abort (); | |
6493 | break; | |
6494 | } | |
6495 | ||
6496 | /* If we've got another relocation for the address, keep going | |
6497 | until we reach the last one. */ | |
6498 | if (use_saved_addend_p) | |
6499 | { | |
6500 | addend = value; | |
6501 | continue; | |
6502 | } | |
6503 | ||
4a14403c | 6504 | if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd)) |
b49e97c9 TS |
6505 | /* See the comment above about using R_MIPS_64 in the 32-bit |
6506 | ABI. Until now, we've been using the HOWTO for R_MIPS_32; | |
6507 | that calculated the right value. Now, however, we | |
6508 | sign-extend the 32-bit result to 64-bits, and store it as a | |
6509 | 64-bit value. We are especially generous here in that we | |
6510 | go to extreme lengths to support this usage on systems with | |
6511 | only a 32-bit VMA. */ | |
6512 | { | |
6513 | bfd_vma sign_bits; | |
6514 | bfd_vma low_bits; | |
6515 | bfd_vma high_bits; | |
6516 | ||
6517 | if (value & ((bfd_vma) 1 << 31)) | |
6518 | #ifdef BFD64 | |
6519 | sign_bits = ((bfd_vma) 1 << 32) - 1; | |
6520 | #else | |
6521 | sign_bits = -1; | |
6522 | #endif | |
6523 | else | |
6524 | sign_bits = 0; | |
6525 | ||
6526 | /* If we don't know that we have a 64-bit type, | |
6527 | do two separate stores. */ | |
6528 | if (bfd_big_endian (input_bfd)) | |
6529 | { | |
6530 | /* Undo what we did above. */ | |
6531 | rel->r_offset -= 4; | |
6532 | /* Store the sign-bits (which are most significant) | |
6533 | first. */ | |
6534 | low_bits = sign_bits; | |
6535 | high_bits = value; | |
6536 | } | |
6537 | else | |
6538 | { | |
6539 | low_bits = value; | |
6540 | high_bits = sign_bits; | |
6541 | } | |
6542 | bfd_put_32 (input_bfd, low_bits, | |
6543 | contents + rel->r_offset); | |
6544 | bfd_put_32 (input_bfd, high_bits, | |
6545 | contents + rel->r_offset + 4); | |
6546 | continue; | |
6547 | } | |
6548 | ||
6549 | /* Actually perform the relocation. */ | |
6550 | if (! mips_elf_perform_relocation (info, howto, rel, value, | |
6551 | input_bfd, input_section, | |
6552 | contents, require_jalx)) | |
b34976b6 | 6553 | return FALSE; |
b49e97c9 TS |
6554 | } |
6555 | ||
b34976b6 | 6556 | return TRUE; |
b49e97c9 TS |
6557 | } |
6558 | \f | |
6559 | /* If NAME is one of the special IRIX6 symbols defined by the linker, | |
6560 | adjust it appropriately now. */ | |
6561 | ||
6562 | static void | |
9719ad41 RS |
6563 | mips_elf_irix6_finish_dynamic_symbol (bfd *abfd ATTRIBUTE_UNUSED, |
6564 | const char *name, Elf_Internal_Sym *sym) | |
b49e97c9 TS |
6565 | { |
6566 | /* The linker script takes care of providing names and values for | |
6567 | these, but we must place them into the right sections. */ | |
6568 | static const char* const text_section_symbols[] = { | |
6569 | "_ftext", | |
6570 | "_etext", | |
6571 | "__dso_displacement", | |
6572 | "__elf_header", | |
6573 | "__program_header_table", | |
6574 | NULL | |
6575 | }; | |
6576 | ||
6577 | static const char* const data_section_symbols[] = { | |
6578 | "_fdata", | |
6579 | "_edata", | |
6580 | "_end", | |
6581 | "_fbss", | |
6582 | NULL | |
6583 | }; | |
6584 | ||
6585 | const char* const *p; | |
6586 | int i; | |
6587 | ||
6588 | for (i = 0; i < 2; ++i) | |
6589 | for (p = (i == 0) ? text_section_symbols : data_section_symbols; | |
6590 | *p; | |
6591 | ++p) | |
6592 | if (strcmp (*p, name) == 0) | |
6593 | { | |
6594 | /* All of these symbols are given type STT_SECTION by the | |
6595 | IRIX6 linker. */ | |
6596 | sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION); | |
e10609d3 | 6597 | sym->st_other = STO_PROTECTED; |
b49e97c9 TS |
6598 | |
6599 | /* The IRIX linker puts these symbols in special sections. */ | |
6600 | if (i == 0) | |
6601 | sym->st_shndx = SHN_MIPS_TEXT; | |
6602 | else | |
6603 | sym->st_shndx = SHN_MIPS_DATA; | |
6604 | ||
6605 | break; | |
6606 | } | |
6607 | } | |
6608 | ||
6609 | /* Finish up dynamic symbol handling. We set the contents of various | |
6610 | dynamic sections here. */ | |
6611 | ||
b34976b6 | 6612 | bfd_boolean |
9719ad41 RS |
6613 | _bfd_mips_elf_finish_dynamic_symbol (bfd *output_bfd, |
6614 | struct bfd_link_info *info, | |
6615 | struct elf_link_hash_entry *h, | |
6616 | Elf_Internal_Sym *sym) | |
b49e97c9 TS |
6617 | { |
6618 | bfd *dynobj; | |
6619 | bfd_vma gval; | |
6620 | asection *sgot; | |
f4416af6 | 6621 | struct mips_got_info *g, *gg; |
b49e97c9 | 6622 | const char *name; |
b49e97c9 TS |
6623 | |
6624 | dynobj = elf_hash_table (info)->dynobj; | |
6625 | gval = sym->st_value; | |
b49e97c9 TS |
6626 | |
6627 | if (h->plt.offset != (bfd_vma) -1) | |
6628 | { | |
6629 | asection *s; | |
6630 | bfd_byte stub[MIPS_FUNCTION_STUB_SIZE]; | |
6631 | ||
6632 | /* This symbol has a stub. Set it up. */ | |
6633 | ||
6634 | BFD_ASSERT (h->dynindx != -1); | |
6635 | ||
6636 | s = bfd_get_section_by_name (dynobj, | |
6637 | MIPS_ELF_STUB_SECTION_NAME (dynobj)); | |
6638 | BFD_ASSERT (s != NULL); | |
6639 | ||
6640 | /* FIXME: Can h->dynindex be more than 64K? */ | |
6641 | if (h->dynindx & 0xffff0000) | |
b34976b6 | 6642 | return FALSE; |
b49e97c9 TS |
6643 | |
6644 | /* Fill the stub. */ | |
6645 | bfd_put_32 (output_bfd, STUB_LW (output_bfd), stub); | |
6646 | bfd_put_32 (output_bfd, STUB_MOVE (output_bfd), stub + 4); | |
6647 | bfd_put_32 (output_bfd, STUB_JALR, stub + 8); | |
6648 | bfd_put_32 (output_bfd, STUB_LI16 (output_bfd) + h->dynindx, stub + 12); | |
6649 | ||
6650 | BFD_ASSERT (h->plt.offset <= s->_raw_size); | |
6651 | memcpy (s->contents + h->plt.offset, stub, MIPS_FUNCTION_STUB_SIZE); | |
6652 | ||
6653 | /* Mark the symbol as undefined. plt.offset != -1 occurs | |
6654 | only for the referenced symbol. */ | |
6655 | sym->st_shndx = SHN_UNDEF; | |
6656 | ||
6657 | /* The run-time linker uses the st_value field of the symbol | |
6658 | to reset the global offset table entry for this external | |
6659 | to its stub address when unlinking a shared object. */ | |
6660 | gval = s->output_section->vma + s->output_offset + h->plt.offset; | |
6661 | sym->st_value = gval; | |
6662 | } | |
6663 | ||
6664 | BFD_ASSERT (h->dynindx != -1 | |
6665 | || (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0); | |
6666 | ||
f4416af6 | 6667 | sgot = mips_elf_got_section (dynobj, FALSE); |
b49e97c9 | 6668 | BFD_ASSERT (sgot != NULL); |
f4416af6 | 6669 | BFD_ASSERT (mips_elf_section_data (sgot) != NULL); |
f0abc2a1 | 6670 | g = mips_elf_section_data (sgot)->u.got_info; |
b49e97c9 TS |
6671 | BFD_ASSERT (g != NULL); |
6672 | ||
6673 | /* Run through the global symbol table, creating GOT entries for all | |
6674 | the symbols that need them. */ | |
6675 | if (g->global_gotsym != NULL | |
6676 | && h->dynindx >= g->global_gotsym->dynindx) | |
6677 | { | |
6678 | bfd_vma offset; | |
6679 | bfd_vma value; | |
6680 | ||
6eaa6adc | 6681 | value = sym->st_value; |
f4416af6 | 6682 | offset = mips_elf_global_got_index (dynobj, output_bfd, h); |
b49e97c9 TS |
6683 | MIPS_ELF_PUT_WORD (output_bfd, value, sgot->contents + offset); |
6684 | } | |
6685 | ||
f4416af6 AO |
6686 | if (g->next && h->dynindx != -1) |
6687 | { | |
6688 | struct mips_got_entry e, *p; | |
0626d451 | 6689 | bfd_vma entry; |
f4416af6 | 6690 | bfd_vma offset; |
f4416af6 AO |
6691 | |
6692 | gg = g; | |
6693 | ||
6694 | e.abfd = output_bfd; | |
6695 | e.symndx = -1; | |
6696 | e.d.h = (struct mips_elf_link_hash_entry *)h; | |
143d77c5 | 6697 | |
f4416af6 AO |
6698 | for (g = g->next; g->next != gg; g = g->next) |
6699 | { | |
6700 | if (g->got_entries | |
6701 | && (p = (struct mips_got_entry *) htab_find (g->got_entries, | |
6702 | &e))) | |
6703 | { | |
6704 | offset = p->gotidx; | |
0626d451 RS |
6705 | if (info->shared |
6706 | || (elf_hash_table (info)->dynamic_sections_created | |
6707 | && p->d.h != NULL | |
6708 | && ((p->d.h->root.elf_link_hash_flags | |
6709 | & ELF_LINK_HASH_DEF_DYNAMIC) != 0) | |
6710 | && ((p->d.h->root.elf_link_hash_flags | |
6711 | & ELF_LINK_HASH_DEF_REGULAR) == 0))) | |
6712 | { | |
6713 | /* Create an R_MIPS_REL32 relocation for this entry. Due to | |
6714 | the various compatibility problems, it's easier to mock | |
6715 | up an R_MIPS_32 or R_MIPS_64 relocation and leave | |
6716 | mips_elf_create_dynamic_relocation to calculate the | |
6717 | appropriate addend. */ | |
6718 | Elf_Internal_Rela rel[3]; | |
6719 | ||
6720 | memset (rel, 0, sizeof (rel)); | |
6721 | if (ABI_64_P (output_bfd)) | |
6722 | rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_64); | |
6723 | else | |
6724 | rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_32); | |
6725 | rel[0].r_offset = rel[1].r_offset = rel[2].r_offset = offset; | |
6726 | ||
6727 | entry = 0; | |
6728 | if (! (mips_elf_create_dynamic_relocation | |
6729 | (output_bfd, info, rel, | |
6730 | e.d.h, NULL, sym->st_value, &entry, sgot))) | |
6731 | return FALSE; | |
6732 | } | |
6733 | else | |
6734 | entry = sym->st_value; | |
6735 | MIPS_ELF_PUT_WORD (output_bfd, entry, sgot->contents + offset); | |
f4416af6 AO |
6736 | } |
6737 | } | |
6738 | } | |
6739 | ||
b49e97c9 TS |
6740 | /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */ |
6741 | name = h->root.root.string; | |
6742 | if (strcmp (name, "_DYNAMIC") == 0 | |
6743 | || strcmp (name, "_GLOBAL_OFFSET_TABLE_") == 0) | |
6744 | sym->st_shndx = SHN_ABS; | |
6745 | else if (strcmp (name, "_DYNAMIC_LINK") == 0 | |
6746 | || strcmp (name, "_DYNAMIC_LINKING") == 0) | |
6747 | { | |
6748 | sym->st_shndx = SHN_ABS; | |
6749 | sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION); | |
6750 | sym->st_value = 1; | |
6751 | } | |
4a14403c | 6752 | else if (strcmp (name, "_gp_disp") == 0 && ! NEWABI_P (output_bfd)) |
b49e97c9 TS |
6753 | { |
6754 | sym->st_shndx = SHN_ABS; | |
6755 | sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION); | |
6756 | sym->st_value = elf_gp (output_bfd); | |
6757 | } | |
6758 | else if (SGI_COMPAT (output_bfd)) | |
6759 | { | |
6760 | if (strcmp (name, mips_elf_dynsym_rtproc_names[0]) == 0 | |
6761 | || strcmp (name, mips_elf_dynsym_rtproc_names[1]) == 0) | |
6762 | { | |
6763 | sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION); | |
6764 | sym->st_other = STO_PROTECTED; | |
6765 | sym->st_value = 0; | |
6766 | sym->st_shndx = SHN_MIPS_DATA; | |
6767 | } | |
6768 | else if (strcmp (name, mips_elf_dynsym_rtproc_names[2]) == 0) | |
6769 | { | |
6770 | sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION); | |
6771 | sym->st_other = STO_PROTECTED; | |
6772 | sym->st_value = mips_elf_hash_table (info)->procedure_count; | |
6773 | sym->st_shndx = SHN_ABS; | |
6774 | } | |
6775 | else if (sym->st_shndx != SHN_UNDEF && sym->st_shndx != SHN_ABS) | |
6776 | { | |
6777 | if (h->type == STT_FUNC) | |
6778 | sym->st_shndx = SHN_MIPS_TEXT; | |
6779 | else if (h->type == STT_OBJECT) | |
6780 | sym->st_shndx = SHN_MIPS_DATA; | |
6781 | } | |
6782 | } | |
6783 | ||
6784 | /* Handle the IRIX6-specific symbols. */ | |
6785 | if (IRIX_COMPAT (output_bfd) == ict_irix6) | |
6786 | mips_elf_irix6_finish_dynamic_symbol (output_bfd, name, sym); | |
6787 | ||
6788 | if (! info->shared) | |
6789 | { | |
6790 | if (! mips_elf_hash_table (info)->use_rld_obj_head | |
6791 | && (strcmp (name, "__rld_map") == 0 | |
6792 | || strcmp (name, "__RLD_MAP") == 0)) | |
6793 | { | |
6794 | asection *s = bfd_get_section_by_name (dynobj, ".rld_map"); | |
6795 | BFD_ASSERT (s != NULL); | |
6796 | sym->st_value = s->output_section->vma + s->output_offset; | |
9719ad41 | 6797 | bfd_put_32 (output_bfd, 0, s->contents); |
b49e97c9 TS |
6798 | if (mips_elf_hash_table (info)->rld_value == 0) |
6799 | mips_elf_hash_table (info)->rld_value = sym->st_value; | |
6800 | } | |
6801 | else if (mips_elf_hash_table (info)->use_rld_obj_head | |
6802 | && strcmp (name, "__rld_obj_head") == 0) | |
6803 | { | |
6804 | /* IRIX6 does not use a .rld_map section. */ | |
6805 | if (IRIX_COMPAT (output_bfd) == ict_irix5 | |
6806 | || IRIX_COMPAT (output_bfd) == ict_none) | |
6807 | BFD_ASSERT (bfd_get_section_by_name (dynobj, ".rld_map") | |
6808 | != NULL); | |
6809 | mips_elf_hash_table (info)->rld_value = sym->st_value; | |
6810 | } | |
6811 | } | |
6812 | ||
6813 | /* If this is a mips16 symbol, force the value to be even. */ | |
79cda7cf FF |
6814 | if (sym->st_other == STO_MIPS16) |
6815 | sym->st_value &= ~1; | |
b49e97c9 | 6816 | |
b34976b6 | 6817 | return TRUE; |
b49e97c9 TS |
6818 | } |
6819 | ||
6820 | /* Finish up the dynamic sections. */ | |
6821 | ||
b34976b6 | 6822 | bfd_boolean |
9719ad41 RS |
6823 | _bfd_mips_elf_finish_dynamic_sections (bfd *output_bfd, |
6824 | struct bfd_link_info *info) | |
b49e97c9 TS |
6825 | { |
6826 | bfd *dynobj; | |
6827 | asection *sdyn; | |
6828 | asection *sgot; | |
f4416af6 | 6829 | struct mips_got_info *gg, *g; |
b49e97c9 TS |
6830 | |
6831 | dynobj = elf_hash_table (info)->dynobj; | |
6832 | ||
6833 | sdyn = bfd_get_section_by_name (dynobj, ".dynamic"); | |
6834 | ||
f4416af6 | 6835 | sgot = mips_elf_got_section (dynobj, FALSE); |
b49e97c9 | 6836 | if (sgot == NULL) |
f4416af6 | 6837 | gg = g = NULL; |
b49e97c9 TS |
6838 | else |
6839 | { | |
f4416af6 AO |
6840 | BFD_ASSERT (mips_elf_section_data (sgot) != NULL); |
6841 | gg = mips_elf_section_data (sgot)->u.got_info; | |
6842 | BFD_ASSERT (gg != NULL); | |
6843 | g = mips_elf_got_for_ibfd (gg, output_bfd); | |
b49e97c9 TS |
6844 | BFD_ASSERT (g != NULL); |
6845 | } | |
6846 | ||
6847 | if (elf_hash_table (info)->dynamic_sections_created) | |
6848 | { | |
6849 | bfd_byte *b; | |
6850 | ||
6851 | BFD_ASSERT (sdyn != NULL); | |
6852 | BFD_ASSERT (g != NULL); | |
6853 | ||
6854 | for (b = sdyn->contents; | |
6855 | b < sdyn->contents + sdyn->_raw_size; | |
6856 | b += MIPS_ELF_DYN_SIZE (dynobj)) | |
6857 | { | |
6858 | Elf_Internal_Dyn dyn; | |
6859 | const char *name; | |
6860 | size_t elemsize; | |
6861 | asection *s; | |
b34976b6 | 6862 | bfd_boolean swap_out_p; |
b49e97c9 TS |
6863 | |
6864 | /* Read in the current dynamic entry. */ | |
6865 | (*get_elf_backend_data (dynobj)->s->swap_dyn_in) (dynobj, b, &dyn); | |
6866 | ||
6867 | /* Assume that we're going to modify it and write it out. */ | |
b34976b6 | 6868 | swap_out_p = TRUE; |
b49e97c9 TS |
6869 | |
6870 | switch (dyn.d_tag) | |
6871 | { | |
6872 | case DT_RELENT: | |
f4416af6 | 6873 | s = mips_elf_rel_dyn_section (dynobj, FALSE); |
b49e97c9 TS |
6874 | BFD_ASSERT (s != NULL); |
6875 | dyn.d_un.d_val = MIPS_ELF_REL_SIZE (dynobj); | |
6876 | break; | |
6877 | ||
6878 | case DT_STRSZ: | |
6879 | /* Rewrite DT_STRSZ. */ | |
6880 | dyn.d_un.d_val = | |
6881 | _bfd_elf_strtab_size (elf_hash_table (info)->dynstr); | |
6882 | break; | |
6883 | ||
6884 | case DT_PLTGOT: | |
6885 | name = ".got"; | |
b49e97c9 TS |
6886 | s = bfd_get_section_by_name (output_bfd, name); |
6887 | BFD_ASSERT (s != NULL); | |
6888 | dyn.d_un.d_ptr = s->vma; | |
6889 | break; | |
6890 | ||
6891 | case DT_MIPS_RLD_VERSION: | |
6892 | dyn.d_un.d_val = 1; /* XXX */ | |
6893 | break; | |
6894 | ||
6895 | case DT_MIPS_FLAGS: | |
6896 | dyn.d_un.d_val = RHF_NOTPOT; /* XXX */ | |
6897 | break; | |
6898 | ||
b49e97c9 TS |
6899 | case DT_MIPS_TIME_STAMP: |
6900 | time ((time_t *) &dyn.d_un.d_val); | |
6901 | break; | |
6902 | ||
6903 | case DT_MIPS_ICHECKSUM: | |
6904 | /* XXX FIXME: */ | |
b34976b6 | 6905 | swap_out_p = FALSE; |
b49e97c9 TS |
6906 | break; |
6907 | ||
6908 | case DT_MIPS_IVERSION: | |
6909 | /* XXX FIXME: */ | |
b34976b6 | 6910 | swap_out_p = FALSE; |
b49e97c9 TS |
6911 | break; |
6912 | ||
6913 | case DT_MIPS_BASE_ADDRESS: | |
6914 | s = output_bfd->sections; | |
6915 | BFD_ASSERT (s != NULL); | |
6916 | dyn.d_un.d_ptr = s->vma & ~(bfd_vma) 0xffff; | |
6917 | break; | |
6918 | ||
6919 | case DT_MIPS_LOCAL_GOTNO: | |
6920 | dyn.d_un.d_val = g->local_gotno; | |
6921 | break; | |
6922 | ||
6923 | case DT_MIPS_UNREFEXTNO: | |
6924 | /* The index into the dynamic symbol table which is the | |
6925 | entry of the first external symbol that is not | |
6926 | referenced within the same object. */ | |
6927 | dyn.d_un.d_val = bfd_count_sections (output_bfd) + 1; | |
6928 | break; | |
6929 | ||
6930 | case DT_MIPS_GOTSYM: | |
f4416af6 | 6931 | if (gg->global_gotsym) |
b49e97c9 | 6932 | { |
f4416af6 | 6933 | dyn.d_un.d_val = gg->global_gotsym->dynindx; |
b49e97c9 TS |
6934 | break; |
6935 | } | |
6936 | /* In case if we don't have global got symbols we default | |
6937 | to setting DT_MIPS_GOTSYM to the same value as | |
6938 | DT_MIPS_SYMTABNO, so we just fall through. */ | |
6939 | ||
6940 | case DT_MIPS_SYMTABNO: | |
6941 | name = ".dynsym"; | |
6942 | elemsize = MIPS_ELF_SYM_SIZE (output_bfd); | |
6943 | s = bfd_get_section_by_name (output_bfd, name); | |
6944 | BFD_ASSERT (s != NULL); | |
6945 | ||
6946 | if (s->_cooked_size != 0) | |
6947 | dyn.d_un.d_val = s->_cooked_size / elemsize; | |
6948 | else | |
6949 | dyn.d_un.d_val = s->_raw_size / elemsize; | |
6950 | break; | |
6951 | ||
6952 | case DT_MIPS_HIPAGENO: | |
6953 | dyn.d_un.d_val = g->local_gotno - MIPS_RESERVED_GOTNO; | |
6954 | break; | |
6955 | ||
6956 | case DT_MIPS_RLD_MAP: | |
6957 | dyn.d_un.d_ptr = mips_elf_hash_table (info)->rld_value; | |
6958 | break; | |
6959 | ||
6960 | case DT_MIPS_OPTIONS: | |
6961 | s = (bfd_get_section_by_name | |
6962 | (output_bfd, MIPS_ELF_OPTIONS_SECTION_NAME (output_bfd))); | |
6963 | dyn.d_un.d_ptr = s->vma; | |
6964 | break; | |
6965 | ||
98a8deaf RS |
6966 | case DT_RELSZ: |
6967 | /* Reduce DT_RELSZ to account for any relocations we | |
6968 | decided not to make. This is for the n64 irix rld, | |
6969 | which doesn't seem to apply any relocations if there | |
6970 | are trailing null entries. */ | |
6971 | s = mips_elf_rel_dyn_section (dynobj, FALSE); | |
6972 | dyn.d_un.d_val = (s->reloc_count | |
6973 | * (ABI_64_P (output_bfd) | |
6974 | ? sizeof (Elf64_Mips_External_Rel) | |
6975 | : sizeof (Elf32_External_Rel))); | |
b49e97c9 TS |
6976 | break; |
6977 | ||
6978 | default: | |
b34976b6 | 6979 | swap_out_p = FALSE; |
b49e97c9 TS |
6980 | break; |
6981 | } | |
6982 | ||
6983 | if (swap_out_p) | |
6984 | (*get_elf_backend_data (dynobj)->s->swap_dyn_out) | |
6985 | (dynobj, &dyn, b); | |
6986 | } | |
6987 | } | |
6988 | ||
6989 | /* The first entry of the global offset table will be filled at | |
6990 | runtime. The second entry will be used by some runtime loaders. | |
8dc1a139 | 6991 | This isn't the case of IRIX rld. */ |
b49e97c9 TS |
6992 | if (sgot != NULL && sgot->_raw_size > 0) |
6993 | { | |
9719ad41 RS |
6994 | MIPS_ELF_PUT_WORD (output_bfd, 0, sgot->contents); |
6995 | MIPS_ELF_PUT_WORD (output_bfd, 0x80000000, | |
b49e97c9 TS |
6996 | sgot->contents + MIPS_ELF_GOT_SIZE (output_bfd)); |
6997 | } | |
6998 | ||
6999 | if (sgot != NULL) | |
7000 | elf_section_data (sgot->output_section)->this_hdr.sh_entsize | |
7001 | = MIPS_ELF_GOT_SIZE (output_bfd); | |
7002 | ||
f4416af6 AO |
7003 | /* Generate dynamic relocations for the non-primary gots. */ |
7004 | if (gg != NULL && gg->next) | |
7005 | { | |
7006 | Elf_Internal_Rela rel[3]; | |
7007 | bfd_vma addend = 0; | |
7008 | ||
7009 | memset (rel, 0, sizeof (rel)); | |
7010 | rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_REL32); | |
7011 | ||
7012 | for (g = gg->next; g->next != gg; g = g->next) | |
7013 | { | |
7014 | bfd_vma index = g->next->local_gotno + g->next->global_gotno; | |
7015 | ||
9719ad41 | 7016 | MIPS_ELF_PUT_WORD (output_bfd, 0, sgot->contents |
f4416af6 | 7017 | + index++ * MIPS_ELF_GOT_SIZE (output_bfd)); |
9719ad41 | 7018 | MIPS_ELF_PUT_WORD (output_bfd, 0x80000000, sgot->contents |
f4416af6 AO |
7019 | + index++ * MIPS_ELF_GOT_SIZE (output_bfd)); |
7020 | ||
7021 | if (! info->shared) | |
7022 | continue; | |
7023 | ||
7024 | while (index < g->assigned_gotno) | |
7025 | { | |
7026 | rel[0].r_offset = rel[1].r_offset = rel[2].r_offset | |
7027 | = index++ * MIPS_ELF_GOT_SIZE (output_bfd); | |
7028 | if (!(mips_elf_create_dynamic_relocation | |
7029 | (output_bfd, info, rel, NULL, | |
7030 | bfd_abs_section_ptr, | |
7031 | 0, &addend, sgot))) | |
7032 | return FALSE; | |
7033 | BFD_ASSERT (addend == 0); | |
7034 | } | |
7035 | } | |
7036 | } | |
7037 | ||
b49e97c9 | 7038 | { |
b49e97c9 TS |
7039 | asection *s; |
7040 | Elf32_compact_rel cpt; | |
7041 | ||
b49e97c9 TS |
7042 | if (SGI_COMPAT (output_bfd)) |
7043 | { | |
7044 | /* Write .compact_rel section out. */ | |
7045 | s = bfd_get_section_by_name (dynobj, ".compact_rel"); | |
7046 | if (s != NULL) | |
7047 | { | |
7048 | cpt.id1 = 1; | |
7049 | cpt.num = s->reloc_count; | |
7050 | cpt.id2 = 2; | |
7051 | cpt.offset = (s->output_section->filepos | |
7052 | + sizeof (Elf32_External_compact_rel)); | |
7053 | cpt.reserved0 = 0; | |
7054 | cpt.reserved1 = 0; | |
7055 | bfd_elf32_swap_compact_rel_out (output_bfd, &cpt, | |
7056 | ((Elf32_External_compact_rel *) | |
7057 | s->contents)); | |
7058 | ||
7059 | /* Clean up a dummy stub function entry in .text. */ | |
7060 | s = bfd_get_section_by_name (dynobj, | |
7061 | MIPS_ELF_STUB_SECTION_NAME (dynobj)); | |
7062 | if (s != NULL) | |
7063 | { | |
7064 | file_ptr dummy_offset; | |
7065 | ||
7066 | BFD_ASSERT (s->_raw_size >= MIPS_FUNCTION_STUB_SIZE); | |
7067 | dummy_offset = s->_raw_size - MIPS_FUNCTION_STUB_SIZE; | |
7068 | memset (s->contents + dummy_offset, 0, | |
7069 | MIPS_FUNCTION_STUB_SIZE); | |
7070 | } | |
7071 | } | |
7072 | } | |
7073 | ||
7074 | /* We need to sort the entries of the dynamic relocation section. */ | |
7075 | ||
f4416af6 AO |
7076 | s = mips_elf_rel_dyn_section (dynobj, FALSE); |
7077 | ||
7078 | if (s != NULL | |
7079 | && s->_raw_size > (bfd_vma)2 * MIPS_ELF_REL_SIZE (output_bfd)) | |
b49e97c9 | 7080 | { |
f4416af6 | 7081 | reldyn_sorting_bfd = output_bfd; |
b49e97c9 | 7082 | |
f4416af6 | 7083 | if (ABI_64_P (output_bfd)) |
9719ad41 | 7084 | qsort ((Elf64_External_Rel *) s->contents + 1, s->reloc_count - 1, |
f4416af6 AO |
7085 | sizeof (Elf64_Mips_External_Rel), sort_dynamic_relocs_64); |
7086 | else | |
9719ad41 | 7087 | qsort ((Elf32_External_Rel *) s->contents + 1, s->reloc_count - 1, |
f4416af6 | 7088 | sizeof (Elf32_External_Rel), sort_dynamic_relocs); |
b49e97c9 | 7089 | } |
b49e97c9 TS |
7090 | } |
7091 | ||
b34976b6 | 7092 | return TRUE; |
b49e97c9 TS |
7093 | } |
7094 | ||
b49e97c9 | 7095 | |
64543e1a RS |
7096 | /* Set ABFD's EF_MIPS_ARCH and EF_MIPS_MACH flags. */ |
7097 | ||
7098 | static void | |
9719ad41 | 7099 | mips_set_isa_flags (bfd *abfd) |
b49e97c9 | 7100 | { |
64543e1a | 7101 | flagword val; |
b49e97c9 TS |
7102 | |
7103 | switch (bfd_get_mach (abfd)) | |
7104 | { | |
7105 | default: | |
7106 | case bfd_mach_mips3000: | |
7107 | val = E_MIPS_ARCH_1; | |
7108 | break; | |
7109 | ||
7110 | case bfd_mach_mips3900: | |
7111 | val = E_MIPS_ARCH_1 | E_MIPS_MACH_3900; | |
7112 | break; | |
7113 | ||
7114 | case bfd_mach_mips6000: | |
7115 | val = E_MIPS_ARCH_2; | |
7116 | break; | |
7117 | ||
7118 | case bfd_mach_mips4000: | |
7119 | case bfd_mach_mips4300: | |
7120 | case bfd_mach_mips4400: | |
7121 | case bfd_mach_mips4600: | |
7122 | val = E_MIPS_ARCH_3; | |
7123 | break; | |
7124 | ||
7125 | case bfd_mach_mips4010: | |
7126 | val = E_MIPS_ARCH_3 | E_MIPS_MACH_4010; | |
7127 | break; | |
7128 | ||
7129 | case bfd_mach_mips4100: | |
7130 | val = E_MIPS_ARCH_3 | E_MIPS_MACH_4100; | |
7131 | break; | |
7132 | ||
7133 | case bfd_mach_mips4111: | |
7134 | val = E_MIPS_ARCH_3 | E_MIPS_MACH_4111; | |
7135 | break; | |
7136 | ||
00707a0e RS |
7137 | case bfd_mach_mips4120: |
7138 | val = E_MIPS_ARCH_3 | E_MIPS_MACH_4120; | |
7139 | break; | |
7140 | ||
b49e97c9 TS |
7141 | case bfd_mach_mips4650: |
7142 | val = E_MIPS_ARCH_3 | E_MIPS_MACH_4650; | |
7143 | break; | |
7144 | ||
00707a0e RS |
7145 | case bfd_mach_mips5400: |
7146 | val = E_MIPS_ARCH_4 | E_MIPS_MACH_5400; | |
7147 | break; | |
7148 | ||
7149 | case bfd_mach_mips5500: | |
7150 | val = E_MIPS_ARCH_4 | E_MIPS_MACH_5500; | |
7151 | break; | |
7152 | ||
b49e97c9 | 7153 | case bfd_mach_mips5000: |
5a7ea749 | 7154 | case bfd_mach_mips7000: |
b49e97c9 TS |
7155 | case bfd_mach_mips8000: |
7156 | case bfd_mach_mips10000: | |
7157 | case bfd_mach_mips12000: | |
7158 | val = E_MIPS_ARCH_4; | |
7159 | break; | |
7160 | ||
7161 | case bfd_mach_mips5: | |
7162 | val = E_MIPS_ARCH_5; | |
7163 | break; | |
7164 | ||
7165 | case bfd_mach_mips_sb1: | |
7166 | val = E_MIPS_ARCH_64 | E_MIPS_MACH_SB1; | |
7167 | break; | |
7168 | ||
7169 | case bfd_mach_mipsisa32: | |
7170 | val = E_MIPS_ARCH_32; | |
7171 | break; | |
7172 | ||
7173 | case bfd_mach_mipsisa64: | |
7174 | val = E_MIPS_ARCH_64; | |
af7ee8bf CD |
7175 | break; |
7176 | ||
7177 | case bfd_mach_mipsisa32r2: | |
7178 | val = E_MIPS_ARCH_32R2; | |
7179 | break; | |
5f74bc13 CD |
7180 | |
7181 | case bfd_mach_mipsisa64r2: | |
7182 | val = E_MIPS_ARCH_64R2; | |
7183 | break; | |
b49e97c9 | 7184 | } |
b49e97c9 TS |
7185 | elf_elfheader (abfd)->e_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH); |
7186 | elf_elfheader (abfd)->e_flags |= val; | |
7187 | ||
64543e1a RS |
7188 | } |
7189 | ||
7190 | ||
7191 | /* The final processing done just before writing out a MIPS ELF object | |
7192 | file. This gets the MIPS architecture right based on the machine | |
7193 | number. This is used by both the 32-bit and the 64-bit ABI. */ | |
7194 | ||
7195 | void | |
9719ad41 RS |
7196 | _bfd_mips_elf_final_write_processing (bfd *abfd, |
7197 | bfd_boolean linker ATTRIBUTE_UNUSED) | |
64543e1a RS |
7198 | { |
7199 | unsigned int i; | |
7200 | Elf_Internal_Shdr **hdrpp; | |
7201 | const char *name; | |
7202 | asection *sec; | |
7203 | ||
7204 | /* Keep the existing EF_MIPS_MACH and EF_MIPS_ARCH flags if the former | |
7205 | is nonzero. This is for compatibility with old objects, which used | |
7206 | a combination of a 32-bit EF_MIPS_ARCH and a 64-bit EF_MIPS_MACH. */ | |
7207 | if ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == 0) | |
7208 | mips_set_isa_flags (abfd); | |
7209 | ||
b49e97c9 TS |
7210 | /* Set the sh_info field for .gptab sections and other appropriate |
7211 | info for each special section. */ | |
7212 | for (i = 1, hdrpp = elf_elfsections (abfd) + 1; | |
7213 | i < elf_numsections (abfd); | |
7214 | i++, hdrpp++) | |
7215 | { | |
7216 | switch ((*hdrpp)->sh_type) | |
7217 | { | |
7218 | case SHT_MIPS_MSYM: | |
7219 | case SHT_MIPS_LIBLIST: | |
7220 | sec = bfd_get_section_by_name (abfd, ".dynstr"); | |
7221 | if (sec != NULL) | |
7222 | (*hdrpp)->sh_link = elf_section_data (sec)->this_idx; | |
7223 | break; | |
7224 | ||
7225 | case SHT_MIPS_GPTAB: | |
7226 | BFD_ASSERT ((*hdrpp)->bfd_section != NULL); | |
7227 | name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section); | |
7228 | BFD_ASSERT (name != NULL | |
7229 | && strncmp (name, ".gptab.", sizeof ".gptab." - 1) == 0); | |
7230 | sec = bfd_get_section_by_name (abfd, name + sizeof ".gptab" - 1); | |
7231 | BFD_ASSERT (sec != NULL); | |
7232 | (*hdrpp)->sh_info = elf_section_data (sec)->this_idx; | |
7233 | break; | |
7234 | ||
7235 | case SHT_MIPS_CONTENT: | |
7236 | BFD_ASSERT ((*hdrpp)->bfd_section != NULL); | |
7237 | name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section); | |
7238 | BFD_ASSERT (name != NULL | |
7239 | && strncmp (name, ".MIPS.content", | |
7240 | sizeof ".MIPS.content" - 1) == 0); | |
7241 | sec = bfd_get_section_by_name (abfd, | |
7242 | name + sizeof ".MIPS.content" - 1); | |
7243 | BFD_ASSERT (sec != NULL); | |
7244 | (*hdrpp)->sh_link = elf_section_data (sec)->this_idx; | |
7245 | break; | |
7246 | ||
7247 | case SHT_MIPS_SYMBOL_LIB: | |
7248 | sec = bfd_get_section_by_name (abfd, ".dynsym"); | |
7249 | if (sec != NULL) | |
7250 | (*hdrpp)->sh_link = elf_section_data (sec)->this_idx; | |
7251 | sec = bfd_get_section_by_name (abfd, ".liblist"); | |
7252 | if (sec != NULL) | |
7253 | (*hdrpp)->sh_info = elf_section_data (sec)->this_idx; | |
7254 | break; | |
7255 | ||
7256 | case SHT_MIPS_EVENTS: | |
7257 | BFD_ASSERT ((*hdrpp)->bfd_section != NULL); | |
7258 | name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section); | |
7259 | BFD_ASSERT (name != NULL); | |
7260 | if (strncmp (name, ".MIPS.events", sizeof ".MIPS.events" - 1) == 0) | |
7261 | sec = bfd_get_section_by_name (abfd, | |
7262 | name + sizeof ".MIPS.events" - 1); | |
7263 | else | |
7264 | { | |
7265 | BFD_ASSERT (strncmp (name, ".MIPS.post_rel", | |
7266 | sizeof ".MIPS.post_rel" - 1) == 0); | |
7267 | sec = bfd_get_section_by_name (abfd, | |
7268 | (name | |
7269 | + sizeof ".MIPS.post_rel" - 1)); | |
7270 | } | |
7271 | BFD_ASSERT (sec != NULL); | |
7272 | (*hdrpp)->sh_link = elf_section_data (sec)->this_idx; | |
7273 | break; | |
7274 | ||
7275 | } | |
7276 | } | |
7277 | } | |
7278 | \f | |
8dc1a139 | 7279 | /* When creating an IRIX5 executable, we need REGINFO and RTPROC |
b49e97c9 TS |
7280 | segments. */ |
7281 | ||
7282 | int | |
9719ad41 | 7283 | _bfd_mips_elf_additional_program_headers (bfd *abfd) |
b49e97c9 TS |
7284 | { |
7285 | asection *s; | |
7286 | int ret = 0; | |
7287 | ||
7288 | /* See if we need a PT_MIPS_REGINFO segment. */ | |
7289 | s = bfd_get_section_by_name (abfd, ".reginfo"); | |
7290 | if (s && (s->flags & SEC_LOAD)) | |
7291 | ++ret; | |
7292 | ||
7293 | /* See if we need a PT_MIPS_OPTIONS segment. */ | |
7294 | if (IRIX_COMPAT (abfd) == ict_irix6 | |
7295 | && bfd_get_section_by_name (abfd, | |
7296 | MIPS_ELF_OPTIONS_SECTION_NAME (abfd))) | |
7297 | ++ret; | |
7298 | ||
7299 | /* See if we need a PT_MIPS_RTPROC segment. */ | |
7300 | if (IRIX_COMPAT (abfd) == ict_irix5 | |
7301 | && bfd_get_section_by_name (abfd, ".dynamic") | |
7302 | && bfd_get_section_by_name (abfd, ".mdebug")) | |
7303 | ++ret; | |
7304 | ||
7305 | return ret; | |
7306 | } | |
7307 | ||
8dc1a139 | 7308 | /* Modify the segment map for an IRIX5 executable. */ |
b49e97c9 | 7309 | |
b34976b6 | 7310 | bfd_boolean |
9719ad41 RS |
7311 | _bfd_mips_elf_modify_segment_map (bfd *abfd, |
7312 | struct bfd_link_info *info ATTRIBUTE_UNUSED) | |
b49e97c9 TS |
7313 | { |
7314 | asection *s; | |
7315 | struct elf_segment_map *m, **pm; | |
7316 | bfd_size_type amt; | |
7317 | ||
7318 | /* If there is a .reginfo section, we need a PT_MIPS_REGINFO | |
7319 | segment. */ | |
7320 | s = bfd_get_section_by_name (abfd, ".reginfo"); | |
7321 | if (s != NULL && (s->flags & SEC_LOAD) != 0) | |
7322 | { | |
7323 | for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next) | |
7324 | if (m->p_type == PT_MIPS_REGINFO) | |
7325 | break; | |
7326 | if (m == NULL) | |
7327 | { | |
7328 | amt = sizeof *m; | |
9719ad41 | 7329 | m = bfd_zalloc (abfd, amt); |
b49e97c9 | 7330 | if (m == NULL) |
b34976b6 | 7331 | return FALSE; |
b49e97c9 TS |
7332 | |
7333 | m->p_type = PT_MIPS_REGINFO; | |
7334 | m->count = 1; | |
7335 | m->sections[0] = s; | |
7336 | ||
7337 | /* We want to put it after the PHDR and INTERP segments. */ | |
7338 | pm = &elf_tdata (abfd)->segment_map; | |
7339 | while (*pm != NULL | |
7340 | && ((*pm)->p_type == PT_PHDR | |
7341 | || (*pm)->p_type == PT_INTERP)) | |
7342 | pm = &(*pm)->next; | |
7343 | ||
7344 | m->next = *pm; | |
7345 | *pm = m; | |
7346 | } | |
7347 | } | |
7348 | ||
7349 | /* For IRIX 6, we don't have .mdebug sections, nor does anything but | |
7350 | .dynamic end up in PT_DYNAMIC. However, we do have to insert a | |
98a8deaf | 7351 | PT_MIPS_OPTIONS segment immediately following the program header |
b49e97c9 | 7352 | table. */ |
c1fd6598 AO |
7353 | if (NEWABI_P (abfd) |
7354 | /* On non-IRIX6 new abi, we'll have already created a segment | |
7355 | for this section, so don't create another. I'm not sure this | |
7356 | is not also the case for IRIX 6, but I can't test it right | |
7357 | now. */ | |
7358 | && IRIX_COMPAT (abfd) == ict_irix6) | |
b49e97c9 TS |
7359 | { |
7360 | for (s = abfd->sections; s; s = s->next) | |
7361 | if (elf_section_data (s)->this_hdr.sh_type == SHT_MIPS_OPTIONS) | |
7362 | break; | |
7363 | ||
7364 | if (s) | |
7365 | { | |
7366 | struct elf_segment_map *options_segment; | |
7367 | ||
98a8deaf RS |
7368 | pm = &elf_tdata (abfd)->segment_map; |
7369 | while (*pm != NULL | |
7370 | && ((*pm)->p_type == PT_PHDR | |
7371 | || (*pm)->p_type == PT_INTERP)) | |
7372 | pm = &(*pm)->next; | |
b49e97c9 TS |
7373 | |
7374 | amt = sizeof (struct elf_segment_map); | |
7375 | options_segment = bfd_zalloc (abfd, amt); | |
7376 | options_segment->next = *pm; | |
7377 | options_segment->p_type = PT_MIPS_OPTIONS; | |
7378 | options_segment->p_flags = PF_R; | |
b34976b6 | 7379 | options_segment->p_flags_valid = TRUE; |
b49e97c9 TS |
7380 | options_segment->count = 1; |
7381 | options_segment->sections[0] = s; | |
7382 | *pm = options_segment; | |
7383 | } | |
7384 | } | |
7385 | else | |
7386 | { | |
7387 | if (IRIX_COMPAT (abfd) == ict_irix5) | |
7388 | { | |
7389 | /* If there are .dynamic and .mdebug sections, we make a room | |
7390 | for the RTPROC header. FIXME: Rewrite without section names. */ | |
7391 | if (bfd_get_section_by_name (abfd, ".interp") == NULL | |
7392 | && bfd_get_section_by_name (abfd, ".dynamic") != NULL | |
7393 | && bfd_get_section_by_name (abfd, ".mdebug") != NULL) | |
7394 | { | |
7395 | for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next) | |
7396 | if (m->p_type == PT_MIPS_RTPROC) | |
7397 | break; | |
7398 | if (m == NULL) | |
7399 | { | |
7400 | amt = sizeof *m; | |
9719ad41 | 7401 | m = bfd_zalloc (abfd, amt); |
b49e97c9 | 7402 | if (m == NULL) |
b34976b6 | 7403 | return FALSE; |
b49e97c9 TS |
7404 | |
7405 | m->p_type = PT_MIPS_RTPROC; | |
7406 | ||
7407 | s = bfd_get_section_by_name (abfd, ".rtproc"); | |
7408 | if (s == NULL) | |
7409 | { | |
7410 | m->count = 0; | |
7411 | m->p_flags = 0; | |
7412 | m->p_flags_valid = 1; | |
7413 | } | |
7414 | else | |
7415 | { | |
7416 | m->count = 1; | |
7417 | m->sections[0] = s; | |
7418 | } | |
7419 | ||
7420 | /* We want to put it after the DYNAMIC segment. */ | |
7421 | pm = &elf_tdata (abfd)->segment_map; | |
7422 | while (*pm != NULL && (*pm)->p_type != PT_DYNAMIC) | |
7423 | pm = &(*pm)->next; | |
7424 | if (*pm != NULL) | |
7425 | pm = &(*pm)->next; | |
7426 | ||
7427 | m->next = *pm; | |
7428 | *pm = m; | |
7429 | } | |
7430 | } | |
7431 | } | |
8dc1a139 | 7432 | /* On IRIX5, the PT_DYNAMIC segment includes the .dynamic, |
b49e97c9 TS |
7433 | .dynstr, .dynsym, and .hash sections, and everything in |
7434 | between. */ | |
7435 | for (pm = &elf_tdata (abfd)->segment_map; *pm != NULL; | |
7436 | pm = &(*pm)->next) | |
7437 | if ((*pm)->p_type == PT_DYNAMIC) | |
7438 | break; | |
7439 | m = *pm; | |
7440 | if (m != NULL && IRIX_COMPAT (abfd) == ict_none) | |
7441 | { | |
7442 | /* For a normal mips executable the permissions for the PT_DYNAMIC | |
7443 | segment are read, write and execute. We do that here since | |
7444 | the code in elf.c sets only the read permission. This matters | |
7445 | sometimes for the dynamic linker. */ | |
7446 | if (bfd_get_section_by_name (abfd, ".dynamic") != NULL) | |
7447 | { | |
7448 | m->p_flags = PF_R | PF_W | PF_X; | |
7449 | m->p_flags_valid = 1; | |
7450 | } | |
7451 | } | |
7452 | if (m != NULL | |
7453 | && m->count == 1 && strcmp (m->sections[0]->name, ".dynamic") == 0) | |
7454 | { | |
7455 | static const char *sec_names[] = | |
7456 | { | |
7457 | ".dynamic", ".dynstr", ".dynsym", ".hash" | |
7458 | }; | |
7459 | bfd_vma low, high; | |
7460 | unsigned int i, c; | |
7461 | struct elf_segment_map *n; | |
7462 | ||
792b4a53 | 7463 | low = ~(bfd_vma) 0; |
b49e97c9 TS |
7464 | high = 0; |
7465 | for (i = 0; i < sizeof sec_names / sizeof sec_names[0]; i++) | |
7466 | { | |
7467 | s = bfd_get_section_by_name (abfd, sec_names[i]); | |
7468 | if (s != NULL && (s->flags & SEC_LOAD) != 0) | |
7469 | { | |
7470 | bfd_size_type sz; | |
7471 | ||
7472 | if (low > s->vma) | |
7473 | low = s->vma; | |
7474 | sz = s->_cooked_size; | |
7475 | if (sz == 0) | |
7476 | sz = s->_raw_size; | |
7477 | if (high < s->vma + sz) | |
7478 | high = s->vma + sz; | |
7479 | } | |
7480 | } | |
7481 | ||
7482 | c = 0; | |
7483 | for (s = abfd->sections; s != NULL; s = s->next) | |
7484 | if ((s->flags & SEC_LOAD) != 0 | |
7485 | && s->vma >= low | |
7486 | && ((s->vma | |
7487 | + (s->_cooked_size != | |
7488 | 0 ? s->_cooked_size : s->_raw_size)) <= high)) | |
7489 | ++c; | |
7490 | ||
7491 | amt = sizeof *n + (bfd_size_type) (c - 1) * sizeof (asection *); | |
9719ad41 | 7492 | n = bfd_zalloc (abfd, amt); |
b49e97c9 | 7493 | if (n == NULL) |
b34976b6 | 7494 | return FALSE; |
b49e97c9 TS |
7495 | *n = *m; |
7496 | n->count = c; | |
7497 | ||
7498 | i = 0; | |
7499 | for (s = abfd->sections; s != NULL; s = s->next) | |
7500 | { | |
7501 | if ((s->flags & SEC_LOAD) != 0 | |
7502 | && s->vma >= low | |
7503 | && ((s->vma | |
7504 | + (s->_cooked_size != 0 ? | |
7505 | s->_cooked_size : s->_raw_size)) <= high)) | |
7506 | { | |
7507 | n->sections[i] = s; | |
7508 | ++i; | |
7509 | } | |
7510 | } | |
7511 | ||
7512 | *pm = n; | |
7513 | } | |
7514 | } | |
7515 | ||
b34976b6 | 7516 | return TRUE; |
b49e97c9 TS |
7517 | } |
7518 | \f | |
7519 | /* Return the section that should be marked against GC for a given | |
7520 | relocation. */ | |
7521 | ||
7522 | asection * | |
9719ad41 RS |
7523 | _bfd_mips_elf_gc_mark_hook (asection *sec, |
7524 | struct bfd_link_info *info ATTRIBUTE_UNUSED, | |
7525 | Elf_Internal_Rela *rel, | |
7526 | struct elf_link_hash_entry *h, | |
7527 | Elf_Internal_Sym *sym) | |
b49e97c9 TS |
7528 | { |
7529 | /* ??? Do mips16 stub sections need to be handled special? */ | |
7530 | ||
7531 | if (h != NULL) | |
7532 | { | |
1e2f5b6e | 7533 | switch (ELF_R_TYPE (sec->owner, rel->r_info)) |
b49e97c9 TS |
7534 | { |
7535 | case R_MIPS_GNU_VTINHERIT: | |
7536 | case R_MIPS_GNU_VTENTRY: | |
7537 | break; | |
7538 | ||
7539 | default: | |
7540 | switch (h->root.type) | |
7541 | { | |
7542 | case bfd_link_hash_defined: | |
7543 | case bfd_link_hash_defweak: | |
7544 | return h->root.u.def.section; | |
7545 | ||
7546 | case bfd_link_hash_common: | |
7547 | return h->root.u.c.p->section; | |
7548 | ||
7549 | default: | |
7550 | break; | |
7551 | } | |
7552 | } | |
7553 | } | |
7554 | else | |
1e2f5b6e | 7555 | return bfd_section_from_elf_index (sec->owner, sym->st_shndx); |
b49e97c9 TS |
7556 | |
7557 | return NULL; | |
7558 | } | |
7559 | ||
7560 | /* Update the got entry reference counts for the section being removed. */ | |
7561 | ||
b34976b6 | 7562 | bfd_boolean |
9719ad41 RS |
7563 | _bfd_mips_elf_gc_sweep_hook (bfd *abfd ATTRIBUTE_UNUSED, |
7564 | struct bfd_link_info *info ATTRIBUTE_UNUSED, | |
7565 | asection *sec ATTRIBUTE_UNUSED, | |
7566 | const Elf_Internal_Rela *relocs ATTRIBUTE_UNUSED) | |
b49e97c9 TS |
7567 | { |
7568 | #if 0 | |
7569 | Elf_Internal_Shdr *symtab_hdr; | |
7570 | struct elf_link_hash_entry **sym_hashes; | |
7571 | bfd_signed_vma *local_got_refcounts; | |
7572 | const Elf_Internal_Rela *rel, *relend; | |
7573 | unsigned long r_symndx; | |
7574 | struct elf_link_hash_entry *h; | |
7575 | ||
7576 | symtab_hdr = &elf_tdata (abfd)->symtab_hdr; | |
7577 | sym_hashes = elf_sym_hashes (abfd); | |
7578 | local_got_refcounts = elf_local_got_refcounts (abfd); | |
7579 | ||
7580 | relend = relocs + sec->reloc_count; | |
7581 | for (rel = relocs; rel < relend; rel++) | |
7582 | switch (ELF_R_TYPE (abfd, rel->r_info)) | |
7583 | { | |
7584 | case R_MIPS_GOT16: | |
7585 | case R_MIPS_CALL16: | |
7586 | case R_MIPS_CALL_HI16: | |
7587 | case R_MIPS_CALL_LO16: | |
7588 | case R_MIPS_GOT_HI16: | |
7589 | case R_MIPS_GOT_LO16: | |
4a14403c TS |
7590 | case R_MIPS_GOT_DISP: |
7591 | case R_MIPS_GOT_PAGE: | |
7592 | case R_MIPS_GOT_OFST: | |
b49e97c9 TS |
7593 | /* ??? It would seem that the existing MIPS code does no sort |
7594 | of reference counting or whatnot on its GOT and PLT entries, | |
7595 | so it is not possible to garbage collect them at this time. */ | |
7596 | break; | |
7597 | ||
7598 | default: | |
7599 | break; | |
7600 | } | |
7601 | #endif | |
7602 | ||
b34976b6 | 7603 | return TRUE; |
b49e97c9 TS |
7604 | } |
7605 | \f | |
7606 | /* Copy data from a MIPS ELF indirect symbol to its direct symbol, | |
7607 | hiding the old indirect symbol. Process additional relocation | |
7608 | information. Also called for weakdefs, in which case we just let | |
7609 | _bfd_elf_link_hash_copy_indirect copy the flags for us. */ | |
7610 | ||
7611 | void | |
9719ad41 RS |
7612 | _bfd_mips_elf_copy_indirect_symbol (const struct elf_backend_data *bed, |
7613 | struct elf_link_hash_entry *dir, | |
7614 | struct elf_link_hash_entry *ind) | |
b49e97c9 TS |
7615 | { |
7616 | struct mips_elf_link_hash_entry *dirmips, *indmips; | |
7617 | ||
b48fa14c | 7618 | _bfd_elf_link_hash_copy_indirect (bed, dir, ind); |
b49e97c9 TS |
7619 | |
7620 | if (ind->root.type != bfd_link_hash_indirect) | |
7621 | return; | |
7622 | ||
7623 | dirmips = (struct mips_elf_link_hash_entry *) dir; | |
7624 | indmips = (struct mips_elf_link_hash_entry *) ind; | |
7625 | dirmips->possibly_dynamic_relocs += indmips->possibly_dynamic_relocs; | |
7626 | if (indmips->readonly_reloc) | |
b34976b6 | 7627 | dirmips->readonly_reloc = TRUE; |
b49e97c9 | 7628 | if (indmips->no_fn_stub) |
b34976b6 | 7629 | dirmips->no_fn_stub = TRUE; |
b49e97c9 TS |
7630 | } |
7631 | ||
7632 | void | |
9719ad41 RS |
7633 | _bfd_mips_elf_hide_symbol (struct bfd_link_info *info, |
7634 | struct elf_link_hash_entry *entry, | |
7635 | bfd_boolean force_local) | |
b49e97c9 TS |
7636 | { |
7637 | bfd *dynobj; | |
7638 | asection *got; | |
7639 | struct mips_got_info *g; | |
7640 | struct mips_elf_link_hash_entry *h; | |
7c5fcef7 | 7641 | |
b49e97c9 | 7642 | h = (struct mips_elf_link_hash_entry *) entry; |
7c5fcef7 L |
7643 | if (h->forced_local) |
7644 | return; | |
4b555070 | 7645 | h->forced_local = force_local; |
7c5fcef7 | 7646 | |
b49e97c9 | 7647 | dynobj = elf_hash_table (info)->dynobj; |
4b555070 | 7648 | if (dynobj != NULL && force_local) |
f4416af6 | 7649 | { |
c45a316a AM |
7650 | got = mips_elf_got_section (dynobj, FALSE); |
7651 | g = mips_elf_section_data (got)->u.got_info; | |
f4416af6 | 7652 | |
c45a316a AM |
7653 | if (g->next) |
7654 | { | |
7655 | struct mips_got_entry e; | |
7656 | struct mips_got_info *gg = g; | |
7657 | ||
7658 | /* Since we're turning what used to be a global symbol into a | |
7659 | local one, bump up the number of local entries of each GOT | |
7660 | that had an entry for it. This will automatically decrease | |
7661 | the number of global entries, since global_gotno is actually | |
7662 | the upper limit of global entries. */ | |
7663 | e.abfd = dynobj; | |
7664 | e.symndx = -1; | |
7665 | e.d.h = h; | |
7666 | ||
7667 | for (g = g->next; g != gg; g = g->next) | |
7668 | if (htab_find (g->got_entries, &e)) | |
7669 | { | |
7670 | BFD_ASSERT (g->global_gotno > 0); | |
7671 | g->local_gotno++; | |
7672 | g->global_gotno--; | |
7673 | } | |
b49e97c9 | 7674 | |
c45a316a AM |
7675 | /* If this was a global symbol forced into the primary GOT, we |
7676 | no longer need an entry for it. We can't release the entry | |
7677 | at this point, but we must at least stop counting it as one | |
7678 | of the symbols that required a forced got entry. */ | |
7679 | if (h->root.got.offset == 2) | |
7680 | { | |
7681 | BFD_ASSERT (gg->assigned_gotno > 0); | |
7682 | gg->assigned_gotno--; | |
7683 | } | |
7684 | } | |
7685 | else if (g->global_gotno == 0 && g->global_gotsym == NULL) | |
7686 | /* If we haven't got through GOT allocation yet, just bump up the | |
7687 | number of local entries, as this symbol won't be counted as | |
7688 | global. */ | |
7689 | g->local_gotno++; | |
7690 | else if (h->root.got.offset == 1) | |
f4416af6 | 7691 | { |
c45a316a AM |
7692 | /* If we're past non-multi-GOT allocation and this symbol had |
7693 | been marked for a global got entry, give it a local entry | |
7694 | instead. */ | |
7695 | BFD_ASSERT (g->global_gotno > 0); | |
7696 | g->local_gotno++; | |
7697 | g->global_gotno--; | |
f4416af6 AO |
7698 | } |
7699 | } | |
f4416af6 AO |
7700 | |
7701 | _bfd_elf_link_hash_hide_symbol (info, &h->root, force_local); | |
b49e97c9 TS |
7702 | } |
7703 | \f | |
d01414a5 TS |
7704 | #define PDR_SIZE 32 |
7705 | ||
b34976b6 | 7706 | bfd_boolean |
9719ad41 RS |
7707 | _bfd_mips_elf_discard_info (bfd *abfd, struct elf_reloc_cookie *cookie, |
7708 | struct bfd_link_info *info) | |
d01414a5 TS |
7709 | { |
7710 | asection *o; | |
b34976b6 | 7711 | bfd_boolean ret = FALSE; |
d01414a5 TS |
7712 | unsigned char *tdata; |
7713 | size_t i, skip; | |
7714 | ||
7715 | o = bfd_get_section_by_name (abfd, ".pdr"); | |
7716 | if (! o) | |
b34976b6 | 7717 | return FALSE; |
d01414a5 | 7718 | if (o->_raw_size == 0) |
b34976b6 | 7719 | return FALSE; |
d01414a5 | 7720 | if (o->_raw_size % PDR_SIZE != 0) |
b34976b6 | 7721 | return FALSE; |
d01414a5 TS |
7722 | if (o->output_section != NULL |
7723 | && bfd_is_abs_section (o->output_section)) | |
b34976b6 | 7724 | return FALSE; |
d01414a5 TS |
7725 | |
7726 | tdata = bfd_zmalloc (o->_raw_size / PDR_SIZE); | |
7727 | if (! tdata) | |
b34976b6 | 7728 | return FALSE; |
d01414a5 | 7729 | |
9719ad41 | 7730 | cookie->rels = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL, |
45d6a902 | 7731 | info->keep_memory); |
d01414a5 TS |
7732 | if (!cookie->rels) |
7733 | { | |
7734 | free (tdata); | |
b34976b6 | 7735 | return FALSE; |
d01414a5 TS |
7736 | } |
7737 | ||
7738 | cookie->rel = cookie->rels; | |
7739 | cookie->relend = cookie->rels + o->reloc_count; | |
7740 | ||
c9c27aad | 7741 | for (i = 0, skip = 0; i < o->_raw_size / PDR_SIZE; i ++) |
d01414a5 | 7742 | { |
ee6423ed | 7743 | if (MNAME(abfd,_bfd_elf,reloc_symbol_deleted_p) (i * PDR_SIZE, cookie)) |
d01414a5 TS |
7744 | { |
7745 | tdata[i] = 1; | |
7746 | skip ++; | |
7747 | } | |
7748 | } | |
7749 | ||
7750 | if (skip != 0) | |
7751 | { | |
f0abc2a1 | 7752 | mips_elf_section_data (o)->u.tdata = tdata; |
d01414a5 | 7753 | o->_cooked_size = o->_raw_size - skip * PDR_SIZE; |
b34976b6 | 7754 | ret = TRUE; |
d01414a5 TS |
7755 | } |
7756 | else | |
7757 | free (tdata); | |
7758 | ||
7759 | if (! info->keep_memory) | |
7760 | free (cookie->rels); | |
7761 | ||
7762 | return ret; | |
7763 | } | |
7764 | ||
b34976b6 | 7765 | bfd_boolean |
9719ad41 | 7766 | _bfd_mips_elf_ignore_discarded_relocs (asection *sec) |
53bfd6b4 MR |
7767 | { |
7768 | if (strcmp (sec->name, ".pdr") == 0) | |
b34976b6 AM |
7769 | return TRUE; |
7770 | return FALSE; | |
53bfd6b4 | 7771 | } |
d01414a5 | 7772 | |
b34976b6 | 7773 | bfd_boolean |
9719ad41 RS |
7774 | _bfd_mips_elf_write_section (bfd *output_bfd, asection *sec, |
7775 | bfd_byte *contents) | |
d01414a5 TS |
7776 | { |
7777 | bfd_byte *to, *from, *end; | |
7778 | int i; | |
7779 | ||
7780 | if (strcmp (sec->name, ".pdr") != 0) | |
b34976b6 | 7781 | return FALSE; |
d01414a5 | 7782 | |
f0abc2a1 | 7783 | if (mips_elf_section_data (sec)->u.tdata == NULL) |
b34976b6 | 7784 | return FALSE; |
d01414a5 TS |
7785 | |
7786 | to = contents; | |
7787 | end = contents + sec->_raw_size; | |
7788 | for (from = contents, i = 0; | |
7789 | from < end; | |
7790 | from += PDR_SIZE, i++) | |
7791 | { | |
f0abc2a1 | 7792 | if ((mips_elf_section_data (sec)->u.tdata)[i] == 1) |
d01414a5 TS |
7793 | continue; |
7794 | if (to != from) | |
7795 | memcpy (to, from, PDR_SIZE); | |
7796 | to += PDR_SIZE; | |
7797 | } | |
7798 | bfd_set_section_contents (output_bfd, sec->output_section, contents, | |
9719ad41 | 7799 | sec->output_offset, sec->_cooked_size); |
b34976b6 | 7800 | return TRUE; |
d01414a5 | 7801 | } |
53bfd6b4 | 7802 | \f |
b49e97c9 TS |
7803 | /* MIPS ELF uses a special find_nearest_line routine in order the |
7804 | handle the ECOFF debugging information. */ | |
7805 | ||
7806 | struct mips_elf_find_line | |
7807 | { | |
7808 | struct ecoff_debug_info d; | |
7809 | struct ecoff_find_line i; | |
7810 | }; | |
7811 | ||
b34976b6 | 7812 | bfd_boolean |
9719ad41 RS |
7813 | _bfd_mips_elf_find_nearest_line (bfd *abfd, asection *section, |
7814 | asymbol **symbols, bfd_vma offset, | |
7815 | const char **filename_ptr, | |
7816 | const char **functionname_ptr, | |
7817 | unsigned int *line_ptr) | |
b49e97c9 TS |
7818 | { |
7819 | asection *msec; | |
7820 | ||
7821 | if (_bfd_dwarf1_find_nearest_line (abfd, section, symbols, offset, | |
7822 | filename_ptr, functionname_ptr, | |
7823 | line_ptr)) | |
b34976b6 | 7824 | return TRUE; |
b49e97c9 TS |
7825 | |
7826 | if (_bfd_dwarf2_find_nearest_line (abfd, section, symbols, offset, | |
7827 | filename_ptr, functionname_ptr, | |
9719ad41 | 7828 | line_ptr, ABI_64_P (abfd) ? 8 : 0, |
b49e97c9 | 7829 | &elf_tdata (abfd)->dwarf2_find_line_info)) |
b34976b6 | 7830 | return TRUE; |
b49e97c9 TS |
7831 | |
7832 | msec = bfd_get_section_by_name (abfd, ".mdebug"); | |
7833 | if (msec != NULL) | |
7834 | { | |
7835 | flagword origflags; | |
7836 | struct mips_elf_find_line *fi; | |
7837 | const struct ecoff_debug_swap * const swap = | |
7838 | get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap; | |
7839 | ||
7840 | /* If we are called during a link, mips_elf_final_link may have | |
7841 | cleared the SEC_HAS_CONTENTS field. We force it back on here | |
7842 | if appropriate (which it normally will be). */ | |
7843 | origflags = msec->flags; | |
7844 | if (elf_section_data (msec)->this_hdr.sh_type != SHT_NOBITS) | |
7845 | msec->flags |= SEC_HAS_CONTENTS; | |
7846 | ||
7847 | fi = elf_tdata (abfd)->find_line_info; | |
7848 | if (fi == NULL) | |
7849 | { | |
7850 | bfd_size_type external_fdr_size; | |
7851 | char *fraw_src; | |
7852 | char *fraw_end; | |
7853 | struct fdr *fdr_ptr; | |
7854 | bfd_size_type amt = sizeof (struct mips_elf_find_line); | |
7855 | ||
9719ad41 | 7856 | fi = bfd_zalloc (abfd, amt); |
b49e97c9 TS |
7857 | if (fi == NULL) |
7858 | { | |
7859 | msec->flags = origflags; | |
b34976b6 | 7860 | return FALSE; |
b49e97c9 TS |
7861 | } |
7862 | ||
7863 | if (! _bfd_mips_elf_read_ecoff_info (abfd, msec, &fi->d)) | |
7864 | { | |
7865 | msec->flags = origflags; | |
b34976b6 | 7866 | return FALSE; |
b49e97c9 TS |
7867 | } |
7868 | ||
7869 | /* Swap in the FDR information. */ | |
7870 | amt = fi->d.symbolic_header.ifdMax * sizeof (struct fdr); | |
9719ad41 | 7871 | fi->d.fdr = bfd_alloc (abfd, amt); |
b49e97c9 TS |
7872 | if (fi->d.fdr == NULL) |
7873 | { | |
7874 | msec->flags = origflags; | |
b34976b6 | 7875 | return FALSE; |
b49e97c9 TS |
7876 | } |
7877 | external_fdr_size = swap->external_fdr_size; | |
7878 | fdr_ptr = fi->d.fdr; | |
7879 | fraw_src = (char *) fi->d.external_fdr; | |
7880 | fraw_end = (fraw_src | |
7881 | + fi->d.symbolic_header.ifdMax * external_fdr_size); | |
7882 | for (; fraw_src < fraw_end; fraw_src += external_fdr_size, fdr_ptr++) | |
9719ad41 | 7883 | (*swap->swap_fdr_in) (abfd, fraw_src, fdr_ptr); |
b49e97c9 TS |
7884 | |
7885 | elf_tdata (abfd)->find_line_info = fi; | |
7886 | ||
7887 | /* Note that we don't bother to ever free this information. | |
7888 | find_nearest_line is either called all the time, as in | |
7889 | objdump -l, so the information should be saved, or it is | |
7890 | rarely called, as in ld error messages, so the memory | |
7891 | wasted is unimportant. Still, it would probably be a | |
7892 | good idea for free_cached_info to throw it away. */ | |
7893 | } | |
7894 | ||
7895 | if (_bfd_ecoff_locate_line (abfd, section, offset, &fi->d, swap, | |
7896 | &fi->i, filename_ptr, functionname_ptr, | |
7897 | line_ptr)) | |
7898 | { | |
7899 | msec->flags = origflags; | |
b34976b6 | 7900 | return TRUE; |
b49e97c9 TS |
7901 | } |
7902 | ||
7903 | msec->flags = origflags; | |
7904 | } | |
7905 | ||
7906 | /* Fall back on the generic ELF find_nearest_line routine. */ | |
7907 | ||
7908 | return _bfd_elf_find_nearest_line (abfd, section, symbols, offset, | |
7909 | filename_ptr, functionname_ptr, | |
7910 | line_ptr); | |
7911 | } | |
7912 | \f | |
7913 | /* When are writing out the .options or .MIPS.options section, | |
7914 | remember the bytes we are writing out, so that we can install the | |
7915 | GP value in the section_processing routine. */ | |
7916 | ||
b34976b6 | 7917 | bfd_boolean |
9719ad41 RS |
7918 | _bfd_mips_elf_set_section_contents (bfd *abfd, sec_ptr section, |
7919 | const void *location, | |
7920 | file_ptr offset, bfd_size_type count) | |
b49e97c9 TS |
7921 | { |
7922 | if (strcmp (section->name, MIPS_ELF_OPTIONS_SECTION_NAME (abfd)) == 0) | |
7923 | { | |
7924 | bfd_byte *c; | |
7925 | ||
7926 | if (elf_section_data (section) == NULL) | |
7927 | { | |
7928 | bfd_size_type amt = sizeof (struct bfd_elf_section_data); | |
9719ad41 | 7929 | section->used_by_bfd = bfd_zalloc (abfd, amt); |
b49e97c9 | 7930 | if (elf_section_data (section) == NULL) |
b34976b6 | 7931 | return FALSE; |
b49e97c9 | 7932 | } |
f0abc2a1 | 7933 | c = mips_elf_section_data (section)->u.tdata; |
b49e97c9 TS |
7934 | if (c == NULL) |
7935 | { | |
7936 | bfd_size_type size; | |
7937 | ||
7938 | if (section->_cooked_size != 0) | |
7939 | size = section->_cooked_size; | |
7940 | else | |
7941 | size = section->_raw_size; | |
9719ad41 | 7942 | c = bfd_zalloc (abfd, size); |
b49e97c9 | 7943 | if (c == NULL) |
b34976b6 | 7944 | return FALSE; |
f0abc2a1 | 7945 | mips_elf_section_data (section)->u.tdata = c; |
b49e97c9 TS |
7946 | } |
7947 | ||
9719ad41 | 7948 | memcpy (c + offset, location, count); |
b49e97c9 TS |
7949 | } |
7950 | ||
7951 | return _bfd_elf_set_section_contents (abfd, section, location, offset, | |
7952 | count); | |
7953 | } | |
7954 | ||
7955 | /* This is almost identical to bfd_generic_get_... except that some | |
7956 | MIPS relocations need to be handled specially. Sigh. */ | |
7957 | ||
7958 | bfd_byte * | |
9719ad41 RS |
7959 | _bfd_elf_mips_get_relocated_section_contents |
7960 | (bfd *abfd, | |
7961 | struct bfd_link_info *link_info, | |
7962 | struct bfd_link_order *link_order, | |
7963 | bfd_byte *data, | |
7964 | bfd_boolean relocatable, | |
7965 | asymbol **symbols) | |
b49e97c9 TS |
7966 | { |
7967 | /* Get enough memory to hold the stuff */ | |
7968 | bfd *input_bfd = link_order->u.indirect.section->owner; | |
7969 | asection *input_section = link_order->u.indirect.section; | |
7970 | ||
7971 | long reloc_size = bfd_get_reloc_upper_bound (input_bfd, input_section); | |
7972 | arelent **reloc_vector = NULL; | |
7973 | long reloc_count; | |
7974 | ||
7975 | if (reloc_size < 0) | |
7976 | goto error_return; | |
7977 | ||
9719ad41 | 7978 | reloc_vector = bfd_malloc (reloc_size); |
b49e97c9 TS |
7979 | if (reloc_vector == NULL && reloc_size != 0) |
7980 | goto error_return; | |
7981 | ||
7982 | /* read in the section */ | |
9719ad41 | 7983 | if (!bfd_get_section_contents (input_bfd, input_section, data, 0, |
b49e97c9 TS |
7984 | input_section->_raw_size)) |
7985 | goto error_return; | |
7986 | ||
7987 | /* We're not relaxing the section, so just copy the size info */ | |
7988 | input_section->_cooked_size = input_section->_raw_size; | |
b34976b6 | 7989 | input_section->reloc_done = TRUE; |
b49e97c9 TS |
7990 | |
7991 | reloc_count = bfd_canonicalize_reloc (input_bfd, | |
7992 | input_section, | |
7993 | reloc_vector, | |
7994 | symbols); | |
7995 | if (reloc_count < 0) | |
7996 | goto error_return; | |
7997 | ||
7998 | if (reloc_count > 0) | |
7999 | { | |
8000 | arelent **parent; | |
8001 | /* for mips */ | |
8002 | int gp_found; | |
8003 | bfd_vma gp = 0x12345678; /* initialize just to shut gcc up */ | |
8004 | ||
8005 | { | |
8006 | struct bfd_hash_entry *h; | |
8007 | struct bfd_link_hash_entry *lh; | |
8008 | /* Skip all this stuff if we aren't mixing formats. */ | |
8009 | if (abfd && input_bfd | |
8010 | && abfd->xvec == input_bfd->xvec) | |
8011 | lh = 0; | |
8012 | else | |
8013 | { | |
b34976b6 | 8014 | h = bfd_hash_lookup (&link_info->hash->table, "_gp", FALSE, FALSE); |
b49e97c9 TS |
8015 | lh = (struct bfd_link_hash_entry *) h; |
8016 | } | |
8017 | lookup: | |
8018 | if (lh) | |
8019 | { | |
8020 | switch (lh->type) | |
8021 | { | |
8022 | case bfd_link_hash_undefined: | |
8023 | case bfd_link_hash_undefweak: | |
8024 | case bfd_link_hash_common: | |
8025 | gp_found = 0; | |
8026 | break; | |
8027 | case bfd_link_hash_defined: | |
8028 | case bfd_link_hash_defweak: | |
8029 | gp_found = 1; | |
8030 | gp = lh->u.def.value; | |
8031 | break; | |
8032 | case bfd_link_hash_indirect: | |
8033 | case bfd_link_hash_warning: | |
8034 | lh = lh->u.i.link; | |
8035 | /* @@FIXME ignoring warning for now */ | |
8036 | goto lookup; | |
8037 | case bfd_link_hash_new: | |
8038 | default: | |
8039 | abort (); | |
8040 | } | |
8041 | } | |
8042 | else | |
8043 | gp_found = 0; | |
8044 | } | |
8045 | /* end mips */ | |
9719ad41 | 8046 | for (parent = reloc_vector; *parent != NULL; parent++) |
b49e97c9 | 8047 | { |
9719ad41 | 8048 | char *error_message = NULL; |
b49e97c9 TS |
8049 | bfd_reloc_status_type r; |
8050 | ||
8051 | /* Specific to MIPS: Deal with relocation types that require | |
8052 | knowing the gp of the output bfd. */ | |
8053 | asymbol *sym = *(*parent)->sym_ptr_ptr; | |
8054 | if (bfd_is_abs_section (sym->section) && abfd) | |
8055 | { | |
44c410de | 8056 | /* The special_function wouldn't get called anyway. */ |
b49e97c9 TS |
8057 | } |
8058 | else if (!gp_found) | |
8059 | { | |
8060 | /* The gp isn't there; let the special function code | |
8061 | fall over on its own. */ | |
8062 | } | |
8063 | else if ((*parent)->howto->special_function | |
8064 | == _bfd_mips_elf32_gprel16_reloc) | |
8065 | { | |
8066 | /* bypass special_function call */ | |
8067 | r = _bfd_mips_elf_gprel16_with_gp (input_bfd, sym, *parent, | |
1049f94e | 8068 | input_section, relocatable, |
9719ad41 | 8069 | data, gp); |
b49e97c9 TS |
8070 | goto skip_bfd_perform_relocation; |
8071 | } | |
8072 | /* end mips specific stuff */ | |
8073 | ||
9719ad41 RS |
8074 | r = bfd_perform_relocation (input_bfd, *parent, data, input_section, |
8075 | relocatable ? abfd : NULL, | |
b49e97c9 TS |
8076 | &error_message); |
8077 | skip_bfd_perform_relocation: | |
8078 | ||
1049f94e | 8079 | if (relocatable) |
b49e97c9 TS |
8080 | { |
8081 | asection *os = input_section->output_section; | |
8082 | ||
8083 | /* A partial link, so keep the relocs */ | |
8084 | os->orelocation[os->reloc_count] = *parent; | |
8085 | os->reloc_count++; | |
8086 | } | |
8087 | ||
8088 | if (r != bfd_reloc_ok) | |
8089 | { | |
8090 | switch (r) | |
8091 | { | |
8092 | case bfd_reloc_undefined: | |
8093 | if (!((*link_info->callbacks->undefined_symbol) | |
8094 | (link_info, bfd_asymbol_name (*(*parent)->sym_ptr_ptr), | |
8095 | input_bfd, input_section, (*parent)->address, | |
b34976b6 | 8096 | TRUE))) |
b49e97c9 TS |
8097 | goto error_return; |
8098 | break; | |
8099 | case bfd_reloc_dangerous: | |
9719ad41 | 8100 | BFD_ASSERT (error_message != NULL); |
b49e97c9 TS |
8101 | if (!((*link_info->callbacks->reloc_dangerous) |
8102 | (link_info, error_message, input_bfd, input_section, | |
8103 | (*parent)->address))) | |
8104 | goto error_return; | |
8105 | break; | |
8106 | case bfd_reloc_overflow: | |
8107 | if (!((*link_info->callbacks->reloc_overflow) | |
8108 | (link_info, bfd_asymbol_name (*(*parent)->sym_ptr_ptr), | |
8109 | (*parent)->howto->name, (*parent)->addend, | |
8110 | input_bfd, input_section, (*parent)->address))) | |
8111 | goto error_return; | |
8112 | break; | |
8113 | case bfd_reloc_outofrange: | |
8114 | default: | |
8115 | abort (); | |
8116 | break; | |
8117 | } | |
8118 | ||
8119 | } | |
8120 | } | |
8121 | } | |
8122 | if (reloc_vector != NULL) | |
8123 | free (reloc_vector); | |
8124 | return data; | |
8125 | ||
8126 | error_return: | |
8127 | if (reloc_vector != NULL) | |
8128 | free (reloc_vector); | |
8129 | return NULL; | |
8130 | } | |
8131 | \f | |
8132 | /* Create a MIPS ELF linker hash table. */ | |
8133 | ||
8134 | struct bfd_link_hash_table * | |
9719ad41 | 8135 | _bfd_mips_elf_link_hash_table_create (bfd *abfd) |
b49e97c9 TS |
8136 | { |
8137 | struct mips_elf_link_hash_table *ret; | |
8138 | bfd_size_type amt = sizeof (struct mips_elf_link_hash_table); | |
8139 | ||
9719ad41 RS |
8140 | ret = bfd_malloc (amt); |
8141 | if (ret == NULL) | |
b49e97c9 TS |
8142 | return NULL; |
8143 | ||
8144 | if (! _bfd_elf_link_hash_table_init (&ret->root, abfd, | |
8145 | mips_elf_link_hash_newfunc)) | |
8146 | { | |
e2d34d7d | 8147 | free (ret); |
b49e97c9 TS |
8148 | return NULL; |
8149 | } | |
8150 | ||
8151 | #if 0 | |
8152 | /* We no longer use this. */ | |
8153 | for (i = 0; i < SIZEOF_MIPS_DYNSYM_SECNAMES; i++) | |
8154 | ret->dynsym_sec_strindex[i] = (bfd_size_type) -1; | |
8155 | #endif | |
8156 | ret->procedure_count = 0; | |
8157 | ret->compact_rel_size = 0; | |
b34976b6 | 8158 | ret->use_rld_obj_head = FALSE; |
b49e97c9 | 8159 | ret->rld_value = 0; |
b34976b6 | 8160 | ret->mips16_stubs_seen = FALSE; |
b49e97c9 TS |
8161 | |
8162 | return &ret->root.root; | |
8163 | } | |
8164 | \f | |
8165 | /* We need to use a special link routine to handle the .reginfo and | |
8166 | the .mdebug sections. We need to merge all instances of these | |
8167 | sections together, not write them all out sequentially. */ | |
8168 | ||
b34976b6 | 8169 | bfd_boolean |
9719ad41 | 8170 | _bfd_mips_elf_final_link (bfd *abfd, struct bfd_link_info *info) |
b49e97c9 TS |
8171 | { |
8172 | asection **secpp; | |
8173 | asection *o; | |
8174 | struct bfd_link_order *p; | |
8175 | asection *reginfo_sec, *mdebug_sec, *gptab_data_sec, *gptab_bss_sec; | |
8176 | asection *rtproc_sec; | |
8177 | Elf32_RegInfo reginfo; | |
8178 | struct ecoff_debug_info debug; | |
8179 | const struct ecoff_debug_swap *swap | |
8180 | = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap; | |
8181 | HDRR *symhdr = &debug.symbolic_header; | |
9719ad41 | 8182 | void *mdebug_handle = NULL; |
b49e97c9 TS |
8183 | asection *s; |
8184 | EXTR esym; | |
8185 | unsigned int i; | |
8186 | bfd_size_type amt; | |
8187 | ||
8188 | static const char * const secname[] = | |
8189 | { | |
8190 | ".text", ".init", ".fini", ".data", | |
8191 | ".rodata", ".sdata", ".sbss", ".bss" | |
8192 | }; | |
8193 | static const int sc[] = | |
8194 | { | |
8195 | scText, scInit, scFini, scData, | |
8196 | scRData, scSData, scSBss, scBss | |
8197 | }; | |
8198 | ||
b49e97c9 TS |
8199 | /* We'd carefully arranged the dynamic symbol indices, and then the |
8200 | generic size_dynamic_sections renumbered them out from under us. | |
8201 | Rather than trying somehow to prevent the renumbering, just do | |
8202 | the sort again. */ | |
8203 | if (elf_hash_table (info)->dynamic_sections_created) | |
8204 | { | |
8205 | bfd *dynobj; | |
8206 | asection *got; | |
8207 | struct mips_got_info *g; | |
8208 | ||
8209 | /* When we resort, we must tell mips_elf_sort_hash_table what | |
8210 | the lowest index it may use is. That's the number of section | |
8211 | symbols we're going to add. The generic ELF linker only | |
8212 | adds these symbols when building a shared object. Note that | |
8213 | we count the sections after (possibly) removing the .options | |
8214 | section above. */ | |
8215 | if (! mips_elf_sort_hash_table (info, (info->shared | |
8216 | ? bfd_count_sections (abfd) + 1 | |
8217 | : 1))) | |
b34976b6 | 8218 | return FALSE; |
b49e97c9 TS |
8219 | |
8220 | /* Make sure we didn't grow the global .got region. */ | |
8221 | dynobj = elf_hash_table (info)->dynobj; | |
f4416af6 | 8222 | got = mips_elf_got_section (dynobj, FALSE); |
f0abc2a1 | 8223 | g = mips_elf_section_data (got)->u.got_info; |
b49e97c9 TS |
8224 | |
8225 | if (g->global_gotsym != NULL) | |
8226 | BFD_ASSERT ((elf_hash_table (info)->dynsymcount | |
8227 | - g->global_gotsym->dynindx) | |
8228 | <= g->global_gotno); | |
8229 | } | |
8230 | ||
a902ee94 SC |
8231 | #if 0 |
8232 | /* We want to set the GP value for ld -r. */ | |
b49e97c9 TS |
8233 | /* On IRIX5, we omit the .options section. On IRIX6, however, we |
8234 | include it, even though we don't process it quite right. (Some | |
8235 | entries are supposed to be merged.) Empirically, we seem to be | |
8236 | better off including it then not. */ | |
8237 | if (IRIX_COMPAT (abfd) == ict_irix5 || IRIX_COMPAT (abfd) == ict_none) | |
8238 | for (secpp = &abfd->sections; *secpp != NULL; secpp = &(*secpp)->next) | |
8239 | { | |
8240 | if (strcmp ((*secpp)->name, MIPS_ELF_OPTIONS_SECTION_NAME (abfd)) == 0) | |
8241 | { | |
8242 | for (p = (*secpp)->link_order_head; p != NULL; p = p->next) | |
8243 | if (p->type == bfd_indirect_link_order) | |
8244 | p->u.indirect.section->flags &= ~SEC_HAS_CONTENTS; | |
8245 | (*secpp)->link_order_head = NULL; | |
8246 | bfd_section_list_remove (abfd, secpp); | |
8247 | --abfd->section_count; | |
8248 | ||
8249 | break; | |
8250 | } | |
8251 | } | |
8252 | ||
8253 | /* We include .MIPS.options, even though we don't process it quite right. | |
8254 | (Some entries are supposed to be merged.) At IRIX6 empirically we seem | |
8255 | to be better off including it than not. */ | |
8256 | for (secpp = &abfd->sections; *secpp != NULL; secpp = &(*secpp)->next) | |
8257 | { | |
8258 | if (strcmp ((*secpp)->name, ".MIPS.options") == 0) | |
8259 | { | |
8260 | for (p = (*secpp)->link_order_head; p != NULL; p = p->next) | |
8261 | if (p->type == bfd_indirect_link_order) | |
8262 | p->u.indirect.section->flags &=~ SEC_HAS_CONTENTS; | |
8263 | (*secpp)->link_order_head = NULL; | |
8264 | bfd_section_list_remove (abfd, secpp); | |
8265 | --abfd->section_count; | |
b34976b6 | 8266 | |
b49e97c9 TS |
8267 | break; |
8268 | } | |
8269 | } | |
a902ee94 | 8270 | #endif |
b49e97c9 TS |
8271 | |
8272 | /* Get a value for the GP register. */ | |
8273 | if (elf_gp (abfd) == 0) | |
8274 | { | |
8275 | struct bfd_link_hash_entry *h; | |
8276 | ||
b34976b6 | 8277 | h = bfd_link_hash_lookup (info->hash, "_gp", FALSE, FALSE, TRUE); |
9719ad41 | 8278 | if (h != NULL && h->type == bfd_link_hash_defined) |
b49e97c9 TS |
8279 | elf_gp (abfd) = (h->u.def.value |
8280 | + h->u.def.section->output_section->vma | |
8281 | + h->u.def.section->output_offset); | |
1049f94e | 8282 | else if (info->relocatable) |
b49e97c9 TS |
8283 | { |
8284 | bfd_vma lo = MINUS_ONE; | |
8285 | ||
8286 | /* Find the GP-relative section with the lowest offset. */ | |
9719ad41 | 8287 | for (o = abfd->sections; o != NULL; o = o->next) |
b49e97c9 TS |
8288 | if (o->vma < lo |
8289 | && (elf_section_data (o)->this_hdr.sh_flags & SHF_MIPS_GPREL)) | |
8290 | lo = o->vma; | |
8291 | ||
8292 | /* And calculate GP relative to that. */ | |
8293 | elf_gp (abfd) = lo + ELF_MIPS_GP_OFFSET (abfd); | |
8294 | } | |
8295 | else | |
8296 | { | |
8297 | /* If the relocate_section function needs to do a reloc | |
8298 | involving the GP value, it should make a reloc_dangerous | |
8299 | callback to warn that GP is not defined. */ | |
8300 | } | |
8301 | } | |
8302 | ||
8303 | /* Go through the sections and collect the .reginfo and .mdebug | |
8304 | information. */ | |
8305 | reginfo_sec = NULL; | |
8306 | mdebug_sec = NULL; | |
8307 | gptab_data_sec = NULL; | |
8308 | gptab_bss_sec = NULL; | |
9719ad41 | 8309 | for (o = abfd->sections; o != NULL; o = o->next) |
b49e97c9 TS |
8310 | { |
8311 | if (strcmp (o->name, ".reginfo") == 0) | |
8312 | { | |
8313 | memset (®info, 0, sizeof reginfo); | |
8314 | ||
8315 | /* We have found the .reginfo section in the output file. | |
8316 | Look through all the link_orders comprising it and merge | |
8317 | the information together. */ | |
9719ad41 | 8318 | for (p = o->link_order_head; p != NULL; p = p->next) |
b49e97c9 TS |
8319 | { |
8320 | asection *input_section; | |
8321 | bfd *input_bfd; | |
8322 | Elf32_External_RegInfo ext; | |
8323 | Elf32_RegInfo sub; | |
8324 | ||
8325 | if (p->type != bfd_indirect_link_order) | |
8326 | { | |
8327 | if (p->type == bfd_data_link_order) | |
8328 | continue; | |
8329 | abort (); | |
8330 | } | |
8331 | ||
8332 | input_section = p->u.indirect.section; | |
8333 | input_bfd = input_section->owner; | |
8334 | ||
8335 | /* The linker emulation code has probably clobbered the | |
8336 | size to be zero bytes. */ | |
8337 | if (input_section->_raw_size == 0) | |
8338 | input_section->_raw_size = sizeof (Elf32_External_RegInfo); | |
8339 | ||
8340 | if (! bfd_get_section_contents (input_bfd, input_section, | |
9719ad41 | 8341 | &ext, 0, sizeof ext)) |
b34976b6 | 8342 | return FALSE; |
b49e97c9 TS |
8343 | |
8344 | bfd_mips_elf32_swap_reginfo_in (input_bfd, &ext, &sub); | |
8345 | ||
8346 | reginfo.ri_gprmask |= sub.ri_gprmask; | |
8347 | reginfo.ri_cprmask[0] |= sub.ri_cprmask[0]; | |
8348 | reginfo.ri_cprmask[1] |= sub.ri_cprmask[1]; | |
8349 | reginfo.ri_cprmask[2] |= sub.ri_cprmask[2]; | |
8350 | reginfo.ri_cprmask[3] |= sub.ri_cprmask[3]; | |
8351 | ||
8352 | /* ri_gp_value is set by the function | |
8353 | mips_elf32_section_processing when the section is | |
8354 | finally written out. */ | |
8355 | ||
8356 | /* Hack: reset the SEC_HAS_CONTENTS flag so that | |
8357 | elf_link_input_bfd ignores this section. */ | |
8358 | input_section->flags &= ~SEC_HAS_CONTENTS; | |
8359 | } | |
8360 | ||
8361 | /* Size has been set in _bfd_mips_elf_always_size_sections. */ | |
8362 | BFD_ASSERT(o->_raw_size == sizeof (Elf32_External_RegInfo)); | |
8363 | ||
8364 | /* Skip this section later on (I don't think this currently | |
8365 | matters, but someday it might). */ | |
9719ad41 | 8366 | o->link_order_head = NULL; |
b49e97c9 TS |
8367 | |
8368 | reginfo_sec = o; | |
8369 | } | |
8370 | ||
8371 | if (strcmp (o->name, ".mdebug") == 0) | |
8372 | { | |
8373 | struct extsym_info einfo; | |
8374 | bfd_vma last; | |
8375 | ||
8376 | /* We have found the .mdebug section in the output file. | |
8377 | Look through all the link_orders comprising it and merge | |
8378 | the information together. */ | |
8379 | symhdr->magic = swap->sym_magic; | |
8380 | /* FIXME: What should the version stamp be? */ | |
8381 | symhdr->vstamp = 0; | |
8382 | symhdr->ilineMax = 0; | |
8383 | symhdr->cbLine = 0; | |
8384 | symhdr->idnMax = 0; | |
8385 | symhdr->ipdMax = 0; | |
8386 | symhdr->isymMax = 0; | |
8387 | symhdr->ioptMax = 0; | |
8388 | symhdr->iauxMax = 0; | |
8389 | symhdr->issMax = 0; | |
8390 | symhdr->issExtMax = 0; | |
8391 | symhdr->ifdMax = 0; | |
8392 | symhdr->crfd = 0; | |
8393 | symhdr->iextMax = 0; | |
8394 | ||
8395 | /* We accumulate the debugging information itself in the | |
8396 | debug_info structure. */ | |
8397 | debug.line = NULL; | |
8398 | debug.external_dnr = NULL; | |
8399 | debug.external_pdr = NULL; | |
8400 | debug.external_sym = NULL; | |
8401 | debug.external_opt = NULL; | |
8402 | debug.external_aux = NULL; | |
8403 | debug.ss = NULL; | |
8404 | debug.ssext = debug.ssext_end = NULL; | |
8405 | debug.external_fdr = NULL; | |
8406 | debug.external_rfd = NULL; | |
8407 | debug.external_ext = debug.external_ext_end = NULL; | |
8408 | ||
8409 | mdebug_handle = bfd_ecoff_debug_init (abfd, &debug, swap, info); | |
9719ad41 | 8410 | if (mdebug_handle == NULL) |
b34976b6 | 8411 | return FALSE; |
b49e97c9 TS |
8412 | |
8413 | esym.jmptbl = 0; | |
8414 | esym.cobol_main = 0; | |
8415 | esym.weakext = 0; | |
8416 | esym.reserved = 0; | |
8417 | esym.ifd = ifdNil; | |
8418 | esym.asym.iss = issNil; | |
8419 | esym.asym.st = stLocal; | |
8420 | esym.asym.reserved = 0; | |
8421 | esym.asym.index = indexNil; | |
8422 | last = 0; | |
8423 | for (i = 0; i < sizeof (secname) / sizeof (secname[0]); i++) | |
8424 | { | |
8425 | esym.asym.sc = sc[i]; | |
8426 | s = bfd_get_section_by_name (abfd, secname[i]); | |
8427 | if (s != NULL) | |
8428 | { | |
8429 | esym.asym.value = s->vma; | |
8430 | last = s->vma + s->_raw_size; | |
8431 | } | |
8432 | else | |
8433 | esym.asym.value = last; | |
8434 | if (!bfd_ecoff_debug_one_external (abfd, &debug, swap, | |
8435 | secname[i], &esym)) | |
b34976b6 | 8436 | return FALSE; |
b49e97c9 TS |
8437 | } |
8438 | ||
9719ad41 | 8439 | for (p = o->link_order_head; p != NULL; p = p->next) |
b49e97c9 TS |
8440 | { |
8441 | asection *input_section; | |
8442 | bfd *input_bfd; | |
8443 | const struct ecoff_debug_swap *input_swap; | |
8444 | struct ecoff_debug_info input_debug; | |
8445 | char *eraw_src; | |
8446 | char *eraw_end; | |
8447 | ||
8448 | if (p->type != bfd_indirect_link_order) | |
8449 | { | |
8450 | if (p->type == bfd_data_link_order) | |
8451 | continue; | |
8452 | abort (); | |
8453 | } | |
8454 | ||
8455 | input_section = p->u.indirect.section; | |
8456 | input_bfd = input_section->owner; | |
8457 | ||
8458 | if (bfd_get_flavour (input_bfd) != bfd_target_elf_flavour | |
8459 | || (get_elf_backend_data (input_bfd) | |
8460 | ->elf_backend_ecoff_debug_swap) == NULL) | |
8461 | { | |
8462 | /* I don't know what a non MIPS ELF bfd would be | |
8463 | doing with a .mdebug section, but I don't really | |
8464 | want to deal with it. */ | |
8465 | continue; | |
8466 | } | |
8467 | ||
8468 | input_swap = (get_elf_backend_data (input_bfd) | |
8469 | ->elf_backend_ecoff_debug_swap); | |
8470 | ||
8471 | BFD_ASSERT (p->size == input_section->_raw_size); | |
8472 | ||
8473 | /* The ECOFF linking code expects that we have already | |
8474 | read in the debugging information and set up an | |
8475 | ecoff_debug_info structure, so we do that now. */ | |
8476 | if (! _bfd_mips_elf_read_ecoff_info (input_bfd, input_section, | |
8477 | &input_debug)) | |
b34976b6 | 8478 | return FALSE; |
b49e97c9 TS |
8479 | |
8480 | if (! (bfd_ecoff_debug_accumulate | |
8481 | (mdebug_handle, abfd, &debug, swap, input_bfd, | |
8482 | &input_debug, input_swap, info))) | |
b34976b6 | 8483 | return FALSE; |
b49e97c9 TS |
8484 | |
8485 | /* Loop through the external symbols. For each one with | |
8486 | interesting information, try to find the symbol in | |
8487 | the linker global hash table and save the information | |
8488 | for the output external symbols. */ | |
8489 | eraw_src = input_debug.external_ext; | |
8490 | eraw_end = (eraw_src | |
8491 | + (input_debug.symbolic_header.iextMax | |
8492 | * input_swap->external_ext_size)); | |
8493 | for (; | |
8494 | eraw_src < eraw_end; | |
8495 | eraw_src += input_swap->external_ext_size) | |
8496 | { | |
8497 | EXTR ext; | |
8498 | const char *name; | |
8499 | struct mips_elf_link_hash_entry *h; | |
8500 | ||
9719ad41 | 8501 | (*input_swap->swap_ext_in) (input_bfd, eraw_src, &ext); |
b49e97c9 TS |
8502 | if (ext.asym.sc == scNil |
8503 | || ext.asym.sc == scUndefined | |
8504 | || ext.asym.sc == scSUndefined) | |
8505 | continue; | |
8506 | ||
8507 | name = input_debug.ssext + ext.asym.iss; | |
8508 | h = mips_elf_link_hash_lookup (mips_elf_hash_table (info), | |
b34976b6 | 8509 | name, FALSE, FALSE, TRUE); |
b49e97c9 TS |
8510 | if (h == NULL || h->esym.ifd != -2) |
8511 | continue; | |
8512 | ||
8513 | if (ext.ifd != -1) | |
8514 | { | |
8515 | BFD_ASSERT (ext.ifd | |
8516 | < input_debug.symbolic_header.ifdMax); | |
8517 | ext.ifd = input_debug.ifdmap[ext.ifd]; | |
8518 | } | |
8519 | ||
8520 | h->esym = ext; | |
8521 | } | |
8522 | ||
8523 | /* Free up the information we just read. */ | |
8524 | free (input_debug.line); | |
8525 | free (input_debug.external_dnr); | |
8526 | free (input_debug.external_pdr); | |
8527 | free (input_debug.external_sym); | |
8528 | free (input_debug.external_opt); | |
8529 | free (input_debug.external_aux); | |
8530 | free (input_debug.ss); | |
8531 | free (input_debug.ssext); | |
8532 | free (input_debug.external_fdr); | |
8533 | free (input_debug.external_rfd); | |
8534 | free (input_debug.external_ext); | |
8535 | ||
8536 | /* Hack: reset the SEC_HAS_CONTENTS flag so that | |
8537 | elf_link_input_bfd ignores this section. */ | |
8538 | input_section->flags &= ~SEC_HAS_CONTENTS; | |
8539 | } | |
8540 | ||
8541 | if (SGI_COMPAT (abfd) && info->shared) | |
8542 | { | |
8543 | /* Create .rtproc section. */ | |
8544 | rtproc_sec = bfd_get_section_by_name (abfd, ".rtproc"); | |
8545 | if (rtproc_sec == NULL) | |
8546 | { | |
8547 | flagword flags = (SEC_HAS_CONTENTS | SEC_IN_MEMORY | |
8548 | | SEC_LINKER_CREATED | SEC_READONLY); | |
8549 | ||
8550 | rtproc_sec = bfd_make_section (abfd, ".rtproc"); | |
8551 | if (rtproc_sec == NULL | |
8552 | || ! bfd_set_section_flags (abfd, rtproc_sec, flags) | |
8553 | || ! bfd_set_section_alignment (abfd, rtproc_sec, 4)) | |
b34976b6 | 8554 | return FALSE; |
b49e97c9 TS |
8555 | } |
8556 | ||
8557 | if (! mips_elf_create_procedure_table (mdebug_handle, abfd, | |
8558 | info, rtproc_sec, | |
8559 | &debug)) | |
b34976b6 | 8560 | return FALSE; |
b49e97c9 TS |
8561 | } |
8562 | ||
8563 | /* Build the external symbol information. */ | |
8564 | einfo.abfd = abfd; | |
8565 | einfo.info = info; | |
8566 | einfo.debug = &debug; | |
8567 | einfo.swap = swap; | |
b34976b6 | 8568 | einfo.failed = FALSE; |
b49e97c9 | 8569 | mips_elf_link_hash_traverse (mips_elf_hash_table (info), |
9719ad41 | 8570 | mips_elf_output_extsym, &einfo); |
b49e97c9 | 8571 | if (einfo.failed) |
b34976b6 | 8572 | return FALSE; |
b49e97c9 TS |
8573 | |
8574 | /* Set the size of the .mdebug section. */ | |
8575 | o->_raw_size = bfd_ecoff_debug_size (abfd, &debug, swap); | |
8576 | ||
8577 | /* Skip this section later on (I don't think this currently | |
8578 | matters, but someday it might). */ | |
9719ad41 | 8579 | o->link_order_head = NULL; |
b49e97c9 TS |
8580 | |
8581 | mdebug_sec = o; | |
8582 | } | |
8583 | ||
8584 | if (strncmp (o->name, ".gptab.", sizeof ".gptab." - 1) == 0) | |
8585 | { | |
8586 | const char *subname; | |
8587 | unsigned int c; | |
8588 | Elf32_gptab *tab; | |
8589 | Elf32_External_gptab *ext_tab; | |
8590 | unsigned int j; | |
8591 | ||
8592 | /* The .gptab.sdata and .gptab.sbss sections hold | |
8593 | information describing how the small data area would | |
8594 | change depending upon the -G switch. These sections | |
8595 | not used in executables files. */ | |
1049f94e | 8596 | if (! info->relocatable) |
b49e97c9 | 8597 | { |
9719ad41 | 8598 | for (p = o->link_order_head; p != NULL; p = p->next) |
b49e97c9 TS |
8599 | { |
8600 | asection *input_section; | |
8601 | ||
8602 | if (p->type != bfd_indirect_link_order) | |
8603 | { | |
8604 | if (p->type == bfd_data_link_order) | |
8605 | continue; | |
8606 | abort (); | |
8607 | } | |
8608 | ||
8609 | input_section = p->u.indirect.section; | |
8610 | ||
8611 | /* Hack: reset the SEC_HAS_CONTENTS flag so that | |
8612 | elf_link_input_bfd ignores this section. */ | |
8613 | input_section->flags &= ~SEC_HAS_CONTENTS; | |
8614 | } | |
8615 | ||
8616 | /* Skip this section later on (I don't think this | |
8617 | currently matters, but someday it might). */ | |
9719ad41 | 8618 | o->link_order_head = NULL; |
b49e97c9 TS |
8619 | |
8620 | /* Really remove the section. */ | |
8621 | for (secpp = &abfd->sections; | |
8622 | *secpp != o; | |
8623 | secpp = &(*secpp)->next) | |
8624 | ; | |
8625 | bfd_section_list_remove (abfd, secpp); | |
8626 | --abfd->section_count; | |
8627 | ||
8628 | continue; | |
8629 | } | |
8630 | ||
8631 | /* There is one gptab for initialized data, and one for | |
8632 | uninitialized data. */ | |
8633 | if (strcmp (o->name, ".gptab.sdata") == 0) | |
8634 | gptab_data_sec = o; | |
8635 | else if (strcmp (o->name, ".gptab.sbss") == 0) | |
8636 | gptab_bss_sec = o; | |
8637 | else | |
8638 | { | |
8639 | (*_bfd_error_handler) | |
8640 | (_("%s: illegal section name `%s'"), | |
8641 | bfd_get_filename (abfd), o->name); | |
8642 | bfd_set_error (bfd_error_nonrepresentable_section); | |
b34976b6 | 8643 | return FALSE; |
b49e97c9 TS |
8644 | } |
8645 | ||
8646 | /* The linker script always combines .gptab.data and | |
8647 | .gptab.sdata into .gptab.sdata, and likewise for | |
8648 | .gptab.bss and .gptab.sbss. It is possible that there is | |
8649 | no .sdata or .sbss section in the output file, in which | |
8650 | case we must change the name of the output section. */ | |
8651 | subname = o->name + sizeof ".gptab" - 1; | |
8652 | if (bfd_get_section_by_name (abfd, subname) == NULL) | |
8653 | { | |
8654 | if (o == gptab_data_sec) | |
8655 | o->name = ".gptab.data"; | |
8656 | else | |
8657 | o->name = ".gptab.bss"; | |
8658 | subname = o->name + sizeof ".gptab" - 1; | |
8659 | BFD_ASSERT (bfd_get_section_by_name (abfd, subname) != NULL); | |
8660 | } | |
8661 | ||
8662 | /* Set up the first entry. */ | |
8663 | c = 1; | |
8664 | amt = c * sizeof (Elf32_gptab); | |
9719ad41 | 8665 | tab = bfd_malloc (amt); |
b49e97c9 | 8666 | if (tab == NULL) |
b34976b6 | 8667 | return FALSE; |
b49e97c9 TS |
8668 | tab[0].gt_header.gt_current_g_value = elf_gp_size (abfd); |
8669 | tab[0].gt_header.gt_unused = 0; | |
8670 | ||
8671 | /* Combine the input sections. */ | |
9719ad41 | 8672 | for (p = o->link_order_head; p != NULL; p = p->next) |
b49e97c9 TS |
8673 | { |
8674 | asection *input_section; | |
8675 | bfd *input_bfd; | |
8676 | bfd_size_type size; | |
8677 | unsigned long last; | |
8678 | bfd_size_type gpentry; | |
8679 | ||
8680 | if (p->type != bfd_indirect_link_order) | |
8681 | { | |
8682 | if (p->type == bfd_data_link_order) | |
8683 | continue; | |
8684 | abort (); | |
8685 | } | |
8686 | ||
8687 | input_section = p->u.indirect.section; | |
8688 | input_bfd = input_section->owner; | |
8689 | ||
8690 | /* Combine the gptab entries for this input section one | |
8691 | by one. We know that the input gptab entries are | |
8692 | sorted by ascending -G value. */ | |
8693 | size = bfd_section_size (input_bfd, input_section); | |
8694 | last = 0; | |
8695 | for (gpentry = sizeof (Elf32_External_gptab); | |
8696 | gpentry < size; | |
8697 | gpentry += sizeof (Elf32_External_gptab)) | |
8698 | { | |
8699 | Elf32_External_gptab ext_gptab; | |
8700 | Elf32_gptab int_gptab; | |
8701 | unsigned long val; | |
8702 | unsigned long add; | |
b34976b6 | 8703 | bfd_boolean exact; |
b49e97c9 TS |
8704 | unsigned int look; |
8705 | ||
8706 | if (! (bfd_get_section_contents | |
9719ad41 RS |
8707 | (input_bfd, input_section, &ext_gptab, gpentry, |
8708 | sizeof (Elf32_External_gptab)))) | |
b49e97c9 TS |
8709 | { |
8710 | free (tab); | |
b34976b6 | 8711 | return FALSE; |
b49e97c9 TS |
8712 | } |
8713 | ||
8714 | bfd_mips_elf32_swap_gptab_in (input_bfd, &ext_gptab, | |
8715 | &int_gptab); | |
8716 | val = int_gptab.gt_entry.gt_g_value; | |
8717 | add = int_gptab.gt_entry.gt_bytes - last; | |
8718 | ||
b34976b6 | 8719 | exact = FALSE; |
b49e97c9 TS |
8720 | for (look = 1; look < c; look++) |
8721 | { | |
8722 | if (tab[look].gt_entry.gt_g_value >= val) | |
8723 | tab[look].gt_entry.gt_bytes += add; | |
8724 | ||
8725 | if (tab[look].gt_entry.gt_g_value == val) | |
b34976b6 | 8726 | exact = TRUE; |
b49e97c9 TS |
8727 | } |
8728 | ||
8729 | if (! exact) | |
8730 | { | |
8731 | Elf32_gptab *new_tab; | |
8732 | unsigned int max; | |
8733 | ||
8734 | /* We need a new table entry. */ | |
8735 | amt = (bfd_size_type) (c + 1) * sizeof (Elf32_gptab); | |
9719ad41 | 8736 | new_tab = bfd_realloc (tab, amt); |
b49e97c9 TS |
8737 | if (new_tab == NULL) |
8738 | { | |
8739 | free (tab); | |
b34976b6 | 8740 | return FALSE; |
b49e97c9 TS |
8741 | } |
8742 | tab = new_tab; | |
8743 | tab[c].gt_entry.gt_g_value = val; | |
8744 | tab[c].gt_entry.gt_bytes = add; | |
8745 | ||
8746 | /* Merge in the size for the next smallest -G | |
8747 | value, since that will be implied by this new | |
8748 | value. */ | |
8749 | max = 0; | |
8750 | for (look = 1; look < c; look++) | |
8751 | { | |
8752 | if (tab[look].gt_entry.gt_g_value < val | |
8753 | && (max == 0 | |
8754 | || (tab[look].gt_entry.gt_g_value | |
8755 | > tab[max].gt_entry.gt_g_value))) | |
8756 | max = look; | |
8757 | } | |
8758 | if (max != 0) | |
8759 | tab[c].gt_entry.gt_bytes += | |
8760 | tab[max].gt_entry.gt_bytes; | |
8761 | ||
8762 | ++c; | |
8763 | } | |
8764 | ||
8765 | last = int_gptab.gt_entry.gt_bytes; | |
8766 | } | |
8767 | ||
8768 | /* Hack: reset the SEC_HAS_CONTENTS flag so that | |
8769 | elf_link_input_bfd ignores this section. */ | |
8770 | input_section->flags &= ~SEC_HAS_CONTENTS; | |
8771 | } | |
8772 | ||
8773 | /* The table must be sorted by -G value. */ | |
8774 | if (c > 2) | |
8775 | qsort (tab + 1, c - 1, sizeof (tab[0]), gptab_compare); | |
8776 | ||
8777 | /* Swap out the table. */ | |
8778 | amt = (bfd_size_type) c * sizeof (Elf32_External_gptab); | |
9719ad41 | 8779 | ext_tab = bfd_alloc (abfd, amt); |
b49e97c9 TS |
8780 | if (ext_tab == NULL) |
8781 | { | |
8782 | free (tab); | |
b34976b6 | 8783 | return FALSE; |
b49e97c9 TS |
8784 | } |
8785 | ||
8786 | for (j = 0; j < c; j++) | |
8787 | bfd_mips_elf32_swap_gptab_out (abfd, tab + j, ext_tab + j); | |
8788 | free (tab); | |
8789 | ||
8790 | o->_raw_size = c * sizeof (Elf32_External_gptab); | |
8791 | o->contents = (bfd_byte *) ext_tab; | |
8792 | ||
8793 | /* Skip this section later on (I don't think this currently | |
8794 | matters, but someday it might). */ | |
9719ad41 | 8795 | o->link_order_head = NULL; |
b49e97c9 TS |
8796 | } |
8797 | } | |
8798 | ||
8799 | /* Invoke the regular ELF backend linker to do all the work. */ | |
ee6423ed | 8800 | if (!MNAME(abfd,bfd_elf,bfd_final_link) (abfd, info)) |
b34976b6 | 8801 | return FALSE; |
b49e97c9 TS |
8802 | |
8803 | /* Now write out the computed sections. */ | |
8804 | ||
9719ad41 | 8805 | if (reginfo_sec != NULL) |
b49e97c9 TS |
8806 | { |
8807 | Elf32_External_RegInfo ext; | |
8808 | ||
8809 | bfd_mips_elf32_swap_reginfo_out (abfd, ®info, &ext); | |
9719ad41 | 8810 | if (! bfd_set_section_contents (abfd, reginfo_sec, &ext, 0, sizeof ext)) |
b34976b6 | 8811 | return FALSE; |
b49e97c9 TS |
8812 | } |
8813 | ||
9719ad41 | 8814 | if (mdebug_sec != NULL) |
b49e97c9 TS |
8815 | { |
8816 | BFD_ASSERT (abfd->output_has_begun); | |
8817 | if (! bfd_ecoff_write_accumulated_debug (mdebug_handle, abfd, &debug, | |
8818 | swap, info, | |
8819 | mdebug_sec->filepos)) | |
b34976b6 | 8820 | return FALSE; |
b49e97c9 TS |
8821 | |
8822 | bfd_ecoff_debug_free (mdebug_handle, abfd, &debug, swap, info); | |
8823 | } | |
8824 | ||
9719ad41 | 8825 | if (gptab_data_sec != NULL) |
b49e97c9 TS |
8826 | { |
8827 | if (! bfd_set_section_contents (abfd, gptab_data_sec, | |
8828 | gptab_data_sec->contents, | |
9719ad41 | 8829 | 0, gptab_data_sec->_raw_size)) |
b34976b6 | 8830 | return FALSE; |
b49e97c9 TS |
8831 | } |
8832 | ||
9719ad41 | 8833 | if (gptab_bss_sec != NULL) |
b49e97c9 TS |
8834 | { |
8835 | if (! bfd_set_section_contents (abfd, gptab_bss_sec, | |
8836 | gptab_bss_sec->contents, | |
9719ad41 | 8837 | 0, gptab_bss_sec->_raw_size)) |
b34976b6 | 8838 | return FALSE; |
b49e97c9 TS |
8839 | } |
8840 | ||
8841 | if (SGI_COMPAT (abfd)) | |
8842 | { | |
8843 | rtproc_sec = bfd_get_section_by_name (abfd, ".rtproc"); | |
8844 | if (rtproc_sec != NULL) | |
8845 | { | |
8846 | if (! bfd_set_section_contents (abfd, rtproc_sec, | |
8847 | rtproc_sec->contents, | |
9719ad41 | 8848 | 0, rtproc_sec->_raw_size)) |
b34976b6 | 8849 | return FALSE; |
b49e97c9 TS |
8850 | } |
8851 | } | |
8852 | ||
b34976b6 | 8853 | return TRUE; |
b49e97c9 TS |
8854 | } |
8855 | \f | |
64543e1a RS |
8856 | /* Structure for saying that BFD machine EXTENSION extends BASE. */ |
8857 | ||
8858 | struct mips_mach_extension { | |
8859 | unsigned long extension, base; | |
8860 | }; | |
8861 | ||
8862 | ||
8863 | /* An array describing how BFD machines relate to one another. The entries | |
8864 | are ordered topologically with MIPS I extensions listed last. */ | |
8865 | ||
8866 | static const struct mips_mach_extension mips_mach_extensions[] = { | |
8867 | /* MIPS64 extensions. */ | |
5f74bc13 | 8868 | { bfd_mach_mipsisa64r2, bfd_mach_mipsisa64 }, |
64543e1a RS |
8869 | { bfd_mach_mips_sb1, bfd_mach_mipsisa64 }, |
8870 | ||
8871 | /* MIPS V extensions. */ | |
8872 | { bfd_mach_mipsisa64, bfd_mach_mips5 }, | |
8873 | ||
8874 | /* R10000 extensions. */ | |
8875 | { bfd_mach_mips12000, bfd_mach_mips10000 }, | |
8876 | ||
8877 | /* R5000 extensions. Note: the vr5500 ISA is an extension of the core | |
8878 | vr5400 ISA, but doesn't include the multimedia stuff. It seems | |
8879 | better to allow vr5400 and vr5500 code to be merged anyway, since | |
8880 | many libraries will just use the core ISA. Perhaps we could add | |
8881 | some sort of ASE flag if this ever proves a problem. */ | |
8882 | { bfd_mach_mips5500, bfd_mach_mips5400 }, | |
8883 | { bfd_mach_mips5400, bfd_mach_mips5000 }, | |
8884 | ||
8885 | /* MIPS IV extensions. */ | |
8886 | { bfd_mach_mips5, bfd_mach_mips8000 }, | |
8887 | { bfd_mach_mips10000, bfd_mach_mips8000 }, | |
8888 | { bfd_mach_mips5000, bfd_mach_mips8000 }, | |
5a7ea749 | 8889 | { bfd_mach_mips7000, bfd_mach_mips8000 }, |
64543e1a RS |
8890 | |
8891 | /* VR4100 extensions. */ | |
8892 | { bfd_mach_mips4120, bfd_mach_mips4100 }, | |
8893 | { bfd_mach_mips4111, bfd_mach_mips4100 }, | |
8894 | ||
8895 | /* MIPS III extensions. */ | |
8896 | { bfd_mach_mips8000, bfd_mach_mips4000 }, | |
8897 | { bfd_mach_mips4650, bfd_mach_mips4000 }, | |
8898 | { bfd_mach_mips4600, bfd_mach_mips4000 }, | |
8899 | { bfd_mach_mips4400, bfd_mach_mips4000 }, | |
8900 | { bfd_mach_mips4300, bfd_mach_mips4000 }, | |
8901 | { bfd_mach_mips4100, bfd_mach_mips4000 }, | |
8902 | { bfd_mach_mips4010, bfd_mach_mips4000 }, | |
8903 | ||
8904 | /* MIPS32 extensions. */ | |
8905 | { bfd_mach_mipsisa32r2, bfd_mach_mipsisa32 }, | |
8906 | ||
8907 | /* MIPS II extensions. */ | |
8908 | { bfd_mach_mips4000, bfd_mach_mips6000 }, | |
8909 | { bfd_mach_mipsisa32, bfd_mach_mips6000 }, | |
8910 | ||
8911 | /* MIPS I extensions. */ | |
8912 | { bfd_mach_mips6000, bfd_mach_mips3000 }, | |
8913 | { bfd_mach_mips3900, bfd_mach_mips3000 } | |
8914 | }; | |
8915 | ||
8916 | ||
8917 | /* Return true if bfd machine EXTENSION is an extension of machine BASE. */ | |
8918 | ||
8919 | static bfd_boolean | |
9719ad41 | 8920 | mips_mach_extends_p (unsigned long base, unsigned long extension) |
64543e1a RS |
8921 | { |
8922 | size_t i; | |
8923 | ||
8924 | for (i = 0; extension != base && i < ARRAY_SIZE (mips_mach_extensions); i++) | |
8925 | if (extension == mips_mach_extensions[i].extension) | |
8926 | extension = mips_mach_extensions[i].base; | |
8927 | ||
8928 | return extension == base; | |
8929 | } | |
8930 | ||
8931 | ||
8932 | /* Return true if the given ELF header flags describe a 32-bit binary. */ | |
00707a0e | 8933 | |
b34976b6 | 8934 | static bfd_boolean |
9719ad41 | 8935 | mips_32bit_flags_p (flagword flags) |
00707a0e | 8936 | { |
64543e1a RS |
8937 | return ((flags & EF_MIPS_32BITMODE) != 0 |
8938 | || (flags & EF_MIPS_ABI) == E_MIPS_ABI_O32 | |
8939 | || (flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI32 | |
8940 | || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1 | |
8941 | || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_2 | |
8942 | || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32 | |
8943 | || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R2); | |
00707a0e RS |
8944 | } |
8945 | ||
64543e1a | 8946 | |
b49e97c9 TS |
8947 | /* Merge backend specific data from an object file to the output |
8948 | object file when linking. */ | |
8949 | ||
b34976b6 | 8950 | bfd_boolean |
9719ad41 | 8951 | _bfd_mips_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd) |
b49e97c9 TS |
8952 | { |
8953 | flagword old_flags; | |
8954 | flagword new_flags; | |
b34976b6 AM |
8955 | bfd_boolean ok; |
8956 | bfd_boolean null_input_bfd = TRUE; | |
b49e97c9 TS |
8957 | asection *sec; |
8958 | ||
8959 | /* Check if we have the same endianess */ | |
82e51918 | 8960 | if (! _bfd_generic_verify_endian_match (ibfd, obfd)) |
aa701218 AO |
8961 | { |
8962 | (*_bfd_error_handler) | |
8963 | (_("%s: endianness incompatible with that of the selected emulation"), | |
8964 | bfd_archive_filename (ibfd)); | |
8965 | return FALSE; | |
8966 | } | |
b49e97c9 TS |
8967 | |
8968 | if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour | |
8969 | || bfd_get_flavour (obfd) != bfd_target_elf_flavour) | |
b34976b6 | 8970 | return TRUE; |
b49e97c9 | 8971 | |
aa701218 AO |
8972 | if (strcmp (bfd_get_target (ibfd), bfd_get_target (obfd)) != 0) |
8973 | { | |
8974 | (*_bfd_error_handler) | |
8975 | (_("%s: ABI is incompatible with that of the selected emulation"), | |
8976 | bfd_archive_filename (ibfd)); | |
8977 | return FALSE; | |
8978 | } | |
8979 | ||
b49e97c9 TS |
8980 | new_flags = elf_elfheader (ibfd)->e_flags; |
8981 | elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_NOREORDER; | |
8982 | old_flags = elf_elfheader (obfd)->e_flags; | |
8983 | ||
8984 | if (! elf_flags_init (obfd)) | |
8985 | { | |
b34976b6 | 8986 | elf_flags_init (obfd) = TRUE; |
b49e97c9 TS |
8987 | elf_elfheader (obfd)->e_flags = new_flags; |
8988 | elf_elfheader (obfd)->e_ident[EI_CLASS] | |
8989 | = elf_elfheader (ibfd)->e_ident[EI_CLASS]; | |
8990 | ||
8991 | if (bfd_get_arch (obfd) == bfd_get_arch (ibfd) | |
8992 | && bfd_get_arch_info (obfd)->the_default) | |
8993 | { | |
8994 | if (! bfd_set_arch_mach (obfd, bfd_get_arch (ibfd), | |
8995 | bfd_get_mach (ibfd))) | |
b34976b6 | 8996 | return FALSE; |
b49e97c9 TS |
8997 | } |
8998 | ||
b34976b6 | 8999 | return TRUE; |
b49e97c9 TS |
9000 | } |
9001 | ||
9002 | /* Check flag compatibility. */ | |
9003 | ||
9004 | new_flags &= ~EF_MIPS_NOREORDER; | |
9005 | old_flags &= ~EF_MIPS_NOREORDER; | |
9006 | ||
f4416af6 AO |
9007 | /* Some IRIX 6 BSD-compatibility objects have this bit set. It |
9008 | doesn't seem to matter. */ | |
9009 | new_flags &= ~EF_MIPS_XGOT; | |
9010 | old_flags &= ~EF_MIPS_XGOT; | |
9011 | ||
98a8deaf RS |
9012 | /* MIPSpro generates ucode info in n64 objects. Again, we should |
9013 | just be able to ignore this. */ | |
9014 | new_flags &= ~EF_MIPS_UCODE; | |
9015 | old_flags &= ~EF_MIPS_UCODE; | |
9016 | ||
b49e97c9 | 9017 | if (new_flags == old_flags) |
b34976b6 | 9018 | return TRUE; |
b49e97c9 TS |
9019 | |
9020 | /* Check to see if the input BFD actually contains any sections. | |
9021 | If not, its flags may not have been initialised either, but it cannot | |
9022 | actually cause any incompatibility. */ | |
9023 | for (sec = ibfd->sections; sec != NULL; sec = sec->next) | |
9024 | { | |
9025 | /* Ignore synthetic sections and empty .text, .data and .bss sections | |
9026 | which are automatically generated by gas. */ | |
9027 | if (strcmp (sec->name, ".reginfo") | |
9028 | && strcmp (sec->name, ".mdebug") | |
d13d89fa NS |
9029 | && (sec->_raw_size != 0 |
9030 | || (strcmp (sec->name, ".text") | |
9031 | && strcmp (sec->name, ".data") | |
9032 | && strcmp (sec->name, ".bss")))) | |
b49e97c9 | 9033 | { |
b34976b6 | 9034 | null_input_bfd = FALSE; |
b49e97c9 TS |
9035 | break; |
9036 | } | |
9037 | } | |
9038 | if (null_input_bfd) | |
b34976b6 | 9039 | return TRUE; |
b49e97c9 | 9040 | |
b34976b6 | 9041 | ok = TRUE; |
b49e97c9 | 9042 | |
143d77c5 EC |
9043 | if (((new_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) != 0) |
9044 | != ((old_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) != 0)) | |
b49e97c9 | 9045 | { |
b49e97c9 | 9046 | (*_bfd_error_handler) |
143d77c5 | 9047 | (_("%s: warning: linking PIC files with non-PIC files"), |
b49e97c9 | 9048 | bfd_archive_filename (ibfd)); |
143d77c5 | 9049 | ok = TRUE; |
b49e97c9 TS |
9050 | } |
9051 | ||
143d77c5 EC |
9052 | if (new_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) |
9053 | elf_elfheader (obfd)->e_flags |= EF_MIPS_CPIC; | |
9054 | if (! (new_flags & EF_MIPS_PIC)) | |
9055 | elf_elfheader (obfd)->e_flags &= ~EF_MIPS_PIC; | |
9056 | ||
9057 | new_flags &= ~ (EF_MIPS_PIC | EF_MIPS_CPIC); | |
9058 | old_flags &= ~ (EF_MIPS_PIC | EF_MIPS_CPIC); | |
b49e97c9 | 9059 | |
64543e1a RS |
9060 | /* Compare the ISAs. */ |
9061 | if (mips_32bit_flags_p (old_flags) != mips_32bit_flags_p (new_flags)) | |
b49e97c9 | 9062 | { |
64543e1a RS |
9063 | (*_bfd_error_handler) |
9064 | (_("%s: linking 32-bit code with 64-bit code"), | |
9065 | bfd_archive_filename (ibfd)); | |
9066 | ok = FALSE; | |
9067 | } | |
9068 | else if (!mips_mach_extends_p (bfd_get_mach (ibfd), bfd_get_mach (obfd))) | |
9069 | { | |
9070 | /* OBFD's ISA isn't the same as, or an extension of, IBFD's. */ | |
9071 | if (mips_mach_extends_p (bfd_get_mach (obfd), bfd_get_mach (ibfd))) | |
b49e97c9 | 9072 | { |
64543e1a RS |
9073 | /* Copy the architecture info from IBFD to OBFD. Also copy |
9074 | the 32-bit flag (if set) so that we continue to recognise | |
9075 | OBFD as a 32-bit binary. */ | |
9076 | bfd_set_arch_info (obfd, bfd_get_arch_info (ibfd)); | |
9077 | elf_elfheader (obfd)->e_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH); | |
9078 | elf_elfheader (obfd)->e_flags | |
9079 | |= new_flags & (EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE); | |
9080 | ||
9081 | /* Copy across the ABI flags if OBFD doesn't use them | |
9082 | and if that was what caused us to treat IBFD as 32-bit. */ | |
9083 | if ((old_flags & EF_MIPS_ABI) == 0 | |
9084 | && mips_32bit_flags_p (new_flags) | |
9085 | && !mips_32bit_flags_p (new_flags & ~EF_MIPS_ABI)) | |
9086 | elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_ABI; | |
b49e97c9 TS |
9087 | } |
9088 | else | |
9089 | { | |
64543e1a | 9090 | /* The ISAs aren't compatible. */ |
b49e97c9 | 9091 | (*_bfd_error_handler) |
64543e1a | 9092 | (_("%s: linking %s module with previous %s modules"), |
b49e97c9 | 9093 | bfd_archive_filename (ibfd), |
64543e1a RS |
9094 | bfd_printable_name (ibfd), |
9095 | bfd_printable_name (obfd)); | |
b34976b6 | 9096 | ok = FALSE; |
b49e97c9 | 9097 | } |
b49e97c9 TS |
9098 | } |
9099 | ||
64543e1a RS |
9100 | new_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE); |
9101 | old_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE); | |
9102 | ||
9103 | /* Compare ABIs. The 64-bit ABI does not use EF_MIPS_ABI. But, it | |
b49e97c9 TS |
9104 | does set EI_CLASS differently from any 32-bit ABI. */ |
9105 | if ((new_flags & EF_MIPS_ABI) != (old_flags & EF_MIPS_ABI) | |
9106 | || (elf_elfheader (ibfd)->e_ident[EI_CLASS] | |
9107 | != elf_elfheader (obfd)->e_ident[EI_CLASS])) | |
9108 | { | |
9109 | /* Only error if both are set (to different values). */ | |
9110 | if (((new_flags & EF_MIPS_ABI) && (old_flags & EF_MIPS_ABI)) | |
9111 | || (elf_elfheader (ibfd)->e_ident[EI_CLASS] | |
9112 | != elf_elfheader (obfd)->e_ident[EI_CLASS])) | |
9113 | { | |
9114 | (*_bfd_error_handler) | |
9115 | (_("%s: ABI mismatch: linking %s module with previous %s modules"), | |
9116 | bfd_archive_filename (ibfd), | |
9117 | elf_mips_abi_name (ibfd), | |
9118 | elf_mips_abi_name (obfd)); | |
b34976b6 | 9119 | ok = FALSE; |
b49e97c9 TS |
9120 | } |
9121 | new_flags &= ~EF_MIPS_ABI; | |
9122 | old_flags &= ~EF_MIPS_ABI; | |
9123 | } | |
9124 | ||
fb39dac1 RS |
9125 | /* For now, allow arbitrary mixing of ASEs (retain the union). */ |
9126 | if ((new_flags & EF_MIPS_ARCH_ASE) != (old_flags & EF_MIPS_ARCH_ASE)) | |
9127 | { | |
9128 | elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_ARCH_ASE; | |
9129 | ||
9130 | new_flags &= ~ EF_MIPS_ARCH_ASE; | |
9131 | old_flags &= ~ EF_MIPS_ARCH_ASE; | |
9132 | } | |
9133 | ||
b49e97c9 TS |
9134 | /* Warn about any other mismatches */ |
9135 | if (new_flags != old_flags) | |
9136 | { | |
9137 | (*_bfd_error_handler) | |
9138 | (_("%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)"), | |
9139 | bfd_archive_filename (ibfd), (unsigned long) new_flags, | |
9140 | (unsigned long) old_flags); | |
b34976b6 | 9141 | ok = FALSE; |
b49e97c9 TS |
9142 | } |
9143 | ||
9144 | if (! ok) | |
9145 | { | |
9146 | bfd_set_error (bfd_error_bad_value); | |
b34976b6 | 9147 | return FALSE; |
b49e97c9 TS |
9148 | } |
9149 | ||
b34976b6 | 9150 | return TRUE; |
b49e97c9 TS |
9151 | } |
9152 | ||
9153 | /* Function to keep MIPS specific file flags like as EF_MIPS_PIC. */ | |
9154 | ||
b34976b6 | 9155 | bfd_boolean |
9719ad41 | 9156 | _bfd_mips_elf_set_private_flags (bfd *abfd, flagword flags) |
b49e97c9 TS |
9157 | { |
9158 | BFD_ASSERT (!elf_flags_init (abfd) | |
9159 | || elf_elfheader (abfd)->e_flags == flags); | |
9160 | ||
9161 | elf_elfheader (abfd)->e_flags = flags; | |
b34976b6 AM |
9162 | elf_flags_init (abfd) = TRUE; |
9163 | return TRUE; | |
b49e97c9 TS |
9164 | } |
9165 | ||
b34976b6 | 9166 | bfd_boolean |
9719ad41 | 9167 | _bfd_mips_elf_print_private_bfd_data (bfd *abfd, void *ptr) |
b49e97c9 | 9168 | { |
9719ad41 | 9169 | FILE *file = ptr; |
b49e97c9 TS |
9170 | |
9171 | BFD_ASSERT (abfd != NULL && ptr != NULL); | |
9172 | ||
9173 | /* Print normal ELF private data. */ | |
9174 | _bfd_elf_print_private_bfd_data (abfd, ptr); | |
9175 | ||
9176 | /* xgettext:c-format */ | |
9177 | fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags); | |
9178 | ||
9179 | if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O32) | |
9180 | fprintf (file, _(" [abi=O32]")); | |
9181 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O64) | |
9182 | fprintf (file, _(" [abi=O64]")); | |
9183 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI32) | |
9184 | fprintf (file, _(" [abi=EABI32]")); | |
9185 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64) | |
9186 | fprintf (file, _(" [abi=EABI64]")); | |
9187 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI)) | |
9188 | fprintf (file, _(" [abi unknown]")); | |
9189 | else if (ABI_N32_P (abfd)) | |
9190 | fprintf (file, _(" [abi=N32]")); | |
9191 | else if (ABI_64_P (abfd)) | |
9192 | fprintf (file, _(" [abi=64]")); | |
9193 | else | |
9194 | fprintf (file, _(" [no abi set]")); | |
9195 | ||
9196 | if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1) | |
9197 | fprintf (file, _(" [mips1]")); | |
9198 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_2) | |
9199 | fprintf (file, _(" [mips2]")); | |
9200 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_3) | |
9201 | fprintf (file, _(" [mips3]")); | |
9202 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_4) | |
9203 | fprintf (file, _(" [mips4]")); | |
9204 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_5) | |
9205 | fprintf (file, _(" [mips5]")); | |
9206 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32) | |
9207 | fprintf (file, _(" [mips32]")); | |
9208 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64) | |
9209 | fprintf (file, _(" [mips64]")); | |
af7ee8bf CD |
9210 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R2) |
9211 | fprintf (file, _(" [mips32r2]")); | |
5f74bc13 CD |
9212 | else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64R2) |
9213 | fprintf (file, _(" [mips64r2]")); | |
b49e97c9 TS |
9214 | else |
9215 | fprintf (file, _(" [unknown ISA]")); | |
9216 | ||
40d32fc6 CD |
9217 | if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MDMX) |
9218 | fprintf (file, _(" [mdmx]")); | |
9219 | ||
9220 | if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_M16) | |
9221 | fprintf (file, _(" [mips16]")); | |
9222 | ||
b49e97c9 TS |
9223 | if (elf_elfheader (abfd)->e_flags & EF_MIPS_32BITMODE) |
9224 | fprintf (file, _(" [32bitmode]")); | |
9225 | else | |
9226 | fprintf (file, _(" [not 32bitmode]")); | |
9227 | ||
9228 | fputc ('\n', file); | |
9229 | ||
b34976b6 | 9230 | return TRUE; |
b49e97c9 | 9231 | } |
2f89ff8d L |
9232 | |
9233 | struct bfd_elf_special_section const _bfd_mips_elf_special_sections[]= | |
9234 | { | |
7dcb9820 AM |
9235 | { ".sdata", 6, -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL }, |
9236 | { ".sbss", 5, -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL }, | |
9237 | { ".lit4", 5, 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL }, | |
9238 | { ".lit8", 5, 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL }, | |
9239 | { ".ucode", 6, 0, SHT_MIPS_UCODE, 0 }, | |
9240 | { ".mdebug", 7, 0, SHT_MIPS_DEBUG, 0 }, | |
9241 | { NULL, 0, 0, 0, 0 } | |
2f89ff8d | 9242 | }; |