Decouple inferior_ptid/inferior_thread(); dup ptids in thread list (PR 25412)
[deliverable/binutils-gdb.git] / bfd / elfxx-mips.c
CommitLineData
b49e97c9 1/* MIPS-specific support for ELF
b3adc24a 2 Copyright (C) 1993-2020 Free Software Foundation, Inc.
b49e97c9
TS
3
4 Most of the information added by Ian Lance Taylor, Cygnus Support,
5 <ian@cygnus.com>.
6 N32/64 ABI support added by Mark Mitchell, CodeSourcery, LLC.
7 <mark@codesourcery.com>
8 Traditional MIPS targets support added by Koundinya.K, Dansk Data
9 Elektronik & Operations Research Group. <kk@ddeorg.soft.net>
10
ae9a127f 11 This file is part of BFD, the Binary File Descriptor library.
b49e97c9 12
ae9a127f
NC
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
cd123cb7 15 the Free Software Foundation; either version 3 of the License, or
ae9a127f 16 (at your option) any later version.
b49e97c9 17
ae9a127f
NC
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
b49e97c9 22
ae9a127f
NC
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
cd123cb7
NC
25 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
26 MA 02110-1301, USA. */
27
b49e97c9
TS
28
29/* This file handles functionality common to the different MIPS ABI's. */
30
b49e97c9 31#include "sysdep.h"
3db64b00 32#include "bfd.h"
b49e97c9 33#include "libbfd.h"
64543e1a 34#include "libiberty.h"
b49e97c9 35#include "elf-bfd.h"
0ba9378a 36#include "ecoff-bfd.h"
b49e97c9
TS
37#include "elfxx-mips.h"
38#include "elf/mips.h"
0a44bf69 39#include "elf-vxworks.h"
2f0c68f2 40#include "dwarf2.h"
b49e97c9
TS
41
42/* Get the ECOFF swapping routines. */
43#include "coff/sym.h"
44#include "coff/symconst.h"
45#include "coff/ecoff.h"
46#include "coff/mips.h"
47
b15e6682
AO
48#include "hashtab.h"
49
9ab066b4
RS
50/* Types of TLS GOT entry. */
51enum mips_got_tls_type {
52 GOT_TLS_NONE,
53 GOT_TLS_GD,
54 GOT_TLS_LDM,
55 GOT_TLS_IE
56};
57
ead49a57 58/* This structure is used to hold information about one GOT entry.
3dff0dd1
RS
59 There are four types of entry:
60
61 (1) an absolute address
62 requires: abfd == NULL
63 fields: d.address
64
65 (2) a SYMBOL + OFFSET address, where SYMBOL is local to an input bfd
66 requires: abfd != NULL, symndx >= 0, tls_type != GOT_TLS_LDM
67 fields: abfd, symndx, d.addend, tls_type
68
69 (3) a SYMBOL address, where SYMBOL is not local to an input bfd
70 requires: abfd != NULL, symndx == -1
71 fields: d.h, tls_type
72
73 (4) a TLS LDM slot
74 requires: abfd != NULL, symndx == 0, tls_type == GOT_TLS_LDM
75 fields: none; there's only one of these per GOT. */
b15e6682
AO
76struct mips_got_entry
77{
3dff0dd1 78 /* One input bfd that needs the GOT entry. */
b15e6682 79 bfd *abfd;
f4416af6
AO
80 /* The index of the symbol, as stored in the relocation r_info, if
81 we have a local symbol; -1 otherwise. */
82 long symndx;
83 union
84 {
85 /* If abfd == NULL, an address that must be stored in the got. */
86 bfd_vma address;
87 /* If abfd != NULL && symndx != -1, the addend of the relocation
88 that should be added to the symbol value. */
89 bfd_vma addend;
90 /* If abfd != NULL && symndx == -1, the hash table entry
3dff0dd1 91 corresponding to a symbol in the GOT. The symbol's entry
020d7251
RS
92 is in the local area if h->global_got_area is GGA_NONE,
93 otherwise it is in the global area. */
f4416af6
AO
94 struct mips_elf_link_hash_entry *h;
95 } d;
0f20cc35 96
9ab066b4
RS
97 /* The TLS type of this GOT entry. An LDM GOT entry will be a local
98 symbol entry with r_symndx == 0. */
0f20cc35
DJ
99 unsigned char tls_type;
100
9ab066b4
RS
101 /* True if we have filled in the GOT contents for a TLS entry,
102 and created the associated relocations. */
103 unsigned char tls_initialized;
104
b15e6682 105 /* The offset from the beginning of the .got section to the entry
f4416af6
AO
106 corresponding to this symbol+addend. If it's a global symbol
107 whose offset is yet to be decided, it's going to be -1. */
108 long gotidx;
b15e6682
AO
109};
110
13db6b44
RS
111/* This structure represents a GOT page reference from an input bfd.
112 Each instance represents a symbol + ADDEND, where the representation
113 of the symbol depends on whether it is local to the input bfd.
114 If it is, then SYMNDX >= 0, and the symbol has index SYMNDX in U.ABFD.
115 Otherwise, SYMNDX < 0 and U.H points to the symbol's hash table entry.
116
117 Page references with SYMNDX >= 0 always become page references
118 in the output. Page references with SYMNDX < 0 only become page
119 references if the symbol binds locally; in other cases, the page
120 reference decays to a global GOT reference. */
121struct mips_got_page_ref
122{
123 long symndx;
124 union
125 {
126 struct mips_elf_link_hash_entry *h;
127 bfd *abfd;
128 } u;
129 bfd_vma addend;
130};
131
c224138d
RS
132/* This structure describes a range of addends: [MIN_ADDEND, MAX_ADDEND].
133 The structures form a non-overlapping list that is sorted by increasing
134 MIN_ADDEND. */
135struct mips_got_page_range
136{
137 struct mips_got_page_range *next;
138 bfd_signed_vma min_addend;
139 bfd_signed_vma max_addend;
140};
141
142/* This structure describes the range of addends that are applied to page
13db6b44 143 relocations against a given section. */
c224138d
RS
144struct mips_got_page_entry
145{
13db6b44
RS
146 /* The section that these entries are based on. */
147 asection *sec;
c224138d
RS
148 /* The ranges for this page entry. */
149 struct mips_got_page_range *ranges;
150 /* The maximum number of page entries needed for RANGES. */
151 bfd_vma num_pages;
152};
153
f0abc2a1 154/* This structure is used to hold .got information when linking. */
b49e97c9
TS
155
156struct mips_got_info
157{
b49e97c9
TS
158 /* The number of global .got entries. */
159 unsigned int global_gotno;
23cc69b6
RS
160 /* The number of global .got entries that are in the GGA_RELOC_ONLY area. */
161 unsigned int reloc_only_gotno;
0f20cc35
DJ
162 /* The number of .got slots used for TLS. */
163 unsigned int tls_gotno;
164 /* The first unused TLS .got entry. Used only during
165 mips_elf_initialize_tls_index. */
166 unsigned int tls_assigned_gotno;
c224138d 167 /* The number of local .got entries, eventually including page entries. */
b49e97c9 168 unsigned int local_gotno;
c224138d
RS
169 /* The maximum number of page entries needed. */
170 unsigned int page_gotno;
ab361d49
RS
171 /* The number of relocations needed for the GOT entries. */
172 unsigned int relocs;
cb22ccf4
KCY
173 /* The first unused local .got entry. */
174 unsigned int assigned_low_gotno;
175 /* The last unused local .got entry. */
176 unsigned int assigned_high_gotno;
b15e6682
AO
177 /* A hash table holding members of the got. */
178 struct htab *got_entries;
13db6b44
RS
179 /* A hash table holding mips_got_page_ref structures. */
180 struct htab *got_page_refs;
c224138d
RS
181 /* A hash table of mips_got_page_entry structures. */
182 struct htab *got_page_entries;
f4416af6
AO
183 /* In multi-got links, a pointer to the next got (err, rather, most
184 of the time, it points to the previous got). */
185 struct mips_got_info *next;
186};
187
d7206569 188/* Structure passed when merging bfds' gots. */
f4416af6
AO
189
190struct mips_elf_got_per_bfd_arg
191{
f4416af6
AO
192 /* The output bfd. */
193 bfd *obfd;
194 /* The link information. */
195 struct bfd_link_info *info;
196 /* A pointer to the primary got, i.e., the one that's going to get
197 the implicit relocations from DT_MIPS_LOCAL_GOTNO and
198 DT_MIPS_GOTSYM. */
199 struct mips_got_info *primary;
200 /* A non-primary got we're trying to merge with other input bfd's
201 gots. */
202 struct mips_got_info *current;
203 /* The maximum number of got entries that can be addressed with a
204 16-bit offset. */
205 unsigned int max_count;
c224138d
RS
206 /* The maximum number of page entries needed by each got. */
207 unsigned int max_pages;
0f20cc35
DJ
208 /* The total number of global entries which will live in the
209 primary got and be automatically relocated. This includes
210 those not referenced by the primary GOT but included in
211 the "master" GOT. */
212 unsigned int global_count;
f4416af6
AO
213};
214
ab361d49
RS
215/* A structure used to pass information to htab_traverse callbacks
216 when laying out the GOT. */
f4416af6 217
ab361d49 218struct mips_elf_traverse_got_arg
f4416af6 219{
ab361d49 220 struct bfd_link_info *info;
f4416af6
AO
221 struct mips_got_info *g;
222 int value;
0f20cc35
DJ
223};
224
f0abc2a1
AM
225struct _mips_elf_section_data
226{
227 struct bfd_elf_section_data elf;
228 union
229 {
f0abc2a1
AM
230 bfd_byte *tdata;
231 } u;
232};
233
234#define mips_elf_section_data(sec) \
68bfbfcc 235 ((struct _mips_elf_section_data *) elf_section_data (sec))
f0abc2a1 236
d5eaccd7
RS
237#define is_mips_elf(bfd) \
238 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
239 && elf_tdata (bfd) != NULL \
4dfe6ac6 240 && elf_object_id (bfd) == MIPS_ELF_DATA)
d5eaccd7 241
634835ae
RS
242/* The ABI says that every symbol used by dynamic relocations must have
243 a global GOT entry. Among other things, this provides the dynamic
244 linker with a free, directly-indexed cache. The GOT can therefore
245 contain symbols that are not referenced by GOT relocations themselves
246 (in other words, it may have symbols that are not referenced by things
247 like R_MIPS_GOT16 and R_MIPS_GOT_PAGE).
248
249 GOT relocations are less likely to overflow if we put the associated
250 GOT entries towards the beginning. We therefore divide the global
251 GOT entries into two areas: "normal" and "reloc-only". Entries in
252 the first area can be used for both dynamic relocations and GP-relative
253 accesses, while those in the "reloc-only" area are for dynamic
254 relocations only.
255
256 These GGA_* ("Global GOT Area") values are organised so that lower
257 values are more general than higher values. Also, non-GGA_NONE
258 values are ordered by the position of the area in the GOT. */
259#define GGA_NORMAL 0
260#define GGA_RELOC_ONLY 1
261#define GGA_NONE 2
262
861fb55a
DJ
263/* Information about a non-PIC interface to a PIC function. There are
264 two ways of creating these interfaces. The first is to add:
265
266 lui $25,%hi(func)
267 addiu $25,$25,%lo(func)
268
269 immediately before a PIC function "func". The second is to add:
270
271 lui $25,%hi(func)
272 j func
273 addiu $25,$25,%lo(func)
274
275 to a separate trampoline section.
276
277 Stubs of the first kind go in a new section immediately before the
278 target function. Stubs of the second kind go in a single section
279 pointed to by the hash table's "strampoline" field. */
280struct mips_elf_la25_stub {
281 /* The generated section that contains this stub. */
282 asection *stub_section;
283
284 /* The offset of the stub from the start of STUB_SECTION. */
285 bfd_vma offset;
286
287 /* One symbol for the original function. Its location is available
288 in H->root.root.u.def. */
289 struct mips_elf_link_hash_entry *h;
290};
291
292/* Macros for populating a mips_elf_la25_stub. */
293
294#define LA25_LUI(VAL) (0x3c190000 | (VAL)) /* lui t9,VAL */
295#define LA25_J(VAL) (0x08000000 | (((VAL) >> 2) & 0x3ffffff)) /* j VAL */
3734320d 296#define LA25_BC(VAL) (0xc8000000 | (((VAL) >> 2) & 0x3ffffff)) /* bc VAL */
861fb55a 297#define LA25_ADDIU(VAL) (0x27390000 | (VAL)) /* addiu t9,t9,VAL */
d21911ea
MR
298#define LA25_LUI_MICROMIPS(VAL) \
299 (0x41b90000 | (VAL)) /* lui t9,VAL */
300#define LA25_J_MICROMIPS(VAL) \
301 (0xd4000000 | (((VAL) >> 1) & 0x3ffffff)) /* j VAL */
302#define LA25_ADDIU_MICROMIPS(VAL) \
303 (0x33390000 | (VAL)) /* addiu t9,t9,VAL */
861fb55a 304
b49e97c9
TS
305/* This structure is passed to mips_elf_sort_hash_table_f when sorting
306 the dynamic symbols. */
307
308struct mips_elf_hash_sort_data
309{
310 /* The symbol in the global GOT with the lowest dynamic symbol table
311 index. */
312 struct elf_link_hash_entry *low;
0f20cc35
DJ
313 /* The least dynamic symbol table index corresponding to a non-TLS
314 symbol with a GOT entry. */
55f8b9d2 315 bfd_size_type min_got_dynindx;
f4416af6
AO
316 /* The greatest dynamic symbol table index corresponding to a symbol
317 with a GOT entry that is not referenced (e.g., a dynamic symbol
9e4aeb93 318 with dynamic relocations pointing to it from non-primary GOTs). */
55f8b9d2 319 bfd_size_type max_unref_got_dynindx;
e17b0c35
MR
320 /* The greatest dynamic symbol table index corresponding to a local
321 symbol. */
322 bfd_size_type max_local_dynindx;
323 /* The greatest dynamic symbol table index corresponding to an external
b49e97c9 324 symbol without a GOT entry. */
55f8b9d2 325 bfd_size_type max_non_got_dynindx;
f16a9783
MS
326 /* If non-NULL, output BFD for .MIPS.xhash finalization. */
327 bfd *output_bfd;
328 /* If non-NULL, pointer to contents of .MIPS.xhash for filling in
329 real final dynindx. */
330 bfd_byte *mipsxhash;
b49e97c9
TS
331};
332
1bbce132
MR
333/* We make up to two PLT entries if needed, one for standard MIPS code
334 and one for compressed code, either a MIPS16 or microMIPS one. We
335 keep a separate record of traditional lazy-binding stubs, for easier
336 processing. */
337
338struct plt_entry
339{
340 /* Traditional SVR4 stub offset, or -1 if none. */
341 bfd_vma stub_offset;
342
343 /* Standard PLT entry offset, or -1 if none. */
344 bfd_vma mips_offset;
345
346 /* Compressed PLT entry offset, or -1 if none. */
347 bfd_vma comp_offset;
348
349 /* The corresponding .got.plt index, or -1 if none. */
350 bfd_vma gotplt_index;
351
352 /* Whether we need a standard PLT entry. */
353 unsigned int need_mips : 1;
354
355 /* Whether we need a compressed PLT entry. */
356 unsigned int need_comp : 1;
357};
358
b49e97c9
TS
359/* The MIPS ELF linker needs additional information for each symbol in
360 the global hash table. */
361
362struct mips_elf_link_hash_entry
363{
364 struct elf_link_hash_entry root;
365
366 /* External symbol information. */
367 EXTR esym;
368
861fb55a
DJ
369 /* The la25 stub we have created for ths symbol, if any. */
370 struct mips_elf_la25_stub *la25_stub;
371
b49e97c9
TS
372 /* Number of R_MIPS_32, R_MIPS_REL32, or R_MIPS_64 relocs against
373 this symbol. */
374 unsigned int possibly_dynamic_relocs;
375
b49e97c9
TS
376 /* If there is a stub that 32 bit functions should use to call this
377 16 bit function, this points to the section containing the stub. */
378 asection *fn_stub;
379
b49e97c9
TS
380 /* If there is a stub that 16 bit functions should use to call this
381 32 bit function, this points to the section containing the stub. */
382 asection *call_stub;
383
384 /* This is like the call_stub field, but it is used if the function
385 being called returns a floating point value. */
386 asection *call_fp_stub;
7c5fcef7 387
f16a9783
MS
388 /* If non-zero, location in .MIPS.xhash to write real final dynindx. */
389 bfd_vma mipsxhash_loc;
390
634835ae
RS
391 /* The highest GGA_* value that satisfies all references to this symbol. */
392 unsigned int global_got_area : 2;
393
6ccf4795
RS
394 /* True if all GOT relocations against this symbol are for calls. This is
395 a looser condition than no_fn_stub below, because there may be other
396 non-call non-GOT relocations against the symbol. */
397 unsigned int got_only_for_calls : 1;
398
71782a75
RS
399 /* True if one of the relocations described by possibly_dynamic_relocs
400 is against a readonly section. */
401 unsigned int readonly_reloc : 1;
402
861fb55a
DJ
403 /* True if there is a relocation against this symbol that must be
404 resolved by the static linker (in other words, if the relocation
405 cannot possibly be made dynamic). */
406 unsigned int has_static_relocs : 1;
407
71782a75
RS
408 /* True if we must not create a .MIPS.stubs entry for this symbol.
409 This is set, for example, if there are relocations related to
410 taking the function's address, i.e. any but R_MIPS_CALL*16 ones.
411 See "MIPS ABI Supplement, 3rd Edition", p. 4-20. */
412 unsigned int no_fn_stub : 1;
413
414 /* Whether we need the fn_stub; this is true if this symbol appears
415 in any relocs other than a 16 bit call. */
416 unsigned int need_fn_stub : 1;
417
861fb55a
DJ
418 /* True if this symbol is referenced by branch relocations from
419 any non-PIC input file. This is used to determine whether an
420 la25 stub is required. */
421 unsigned int has_nonpic_branches : 1;
33bb52fb
RS
422
423 /* Does this symbol need a traditional MIPS lazy-binding stub
424 (as opposed to a PLT entry)? */
425 unsigned int needs_lazy_stub : 1;
1bbce132
MR
426
427 /* Does this symbol resolve to a PLT entry? */
428 unsigned int use_plt_entry : 1;
b49e97c9
TS
429};
430
431/* MIPS ELF linker hash table. */
432
433struct mips_elf_link_hash_table
434{
435 struct elf_link_hash_table root;
861fb55a 436
b49e97c9
TS
437 /* The number of .rtproc entries. */
438 bfd_size_type procedure_count;
861fb55a 439
b49e97c9
TS
440 /* The size of the .compact_rel section (if SGI_COMPAT). */
441 bfd_size_type compact_rel_size;
861fb55a 442
e6aea42d
MR
443 /* This flag indicates that the value of DT_MIPS_RLD_MAP dynamic entry
444 is set to the address of __rld_obj_head as in IRIX5 and IRIX6. */
b34976b6 445 bfd_boolean use_rld_obj_head;
861fb55a 446
b4082c70
DD
447 /* The __rld_map or __rld_obj_head symbol. */
448 struct elf_link_hash_entry *rld_symbol;
861fb55a 449
b49e97c9 450 /* This is set if we see any mips16 stub sections. */
b34976b6 451 bfd_boolean mips16_stubs_seen;
861fb55a
DJ
452
453 /* True if we can generate copy relocs and PLTs. */
454 bfd_boolean use_plts_and_copy_relocs;
455
833794fc
MR
456 /* True if we can only use 32-bit microMIPS instructions. */
457 bfd_boolean insn32;
458
8b10b0b3
MR
459 /* True if we suppress checks for invalid branches between ISA modes. */
460 bfd_boolean ignore_branch_isa;
461
3734320d
MF
462 /* True if we are targetting R6 compact branches. */
463 bfd_boolean compact_branches;
464
0e53d9da
AN
465 /* True if we already reported the small-data section overflow. */
466 bfd_boolean small_data_overflow_reported;
861fb55a 467
47275900
MR
468 /* True if we use the special `__gnu_absolute_zero' symbol. */
469 bfd_boolean use_absolute_zero;
470
471 /* True if we have been configured for a GNU target. */
472 bfd_boolean gnu_target;
473
0a44bf69
RS
474 /* Shortcuts to some dynamic sections, or NULL if they are not
475 being used. */
0a44bf69 476 asection *srelplt2;
4e41d0d7 477 asection *sstubs;
861fb55a 478
a8028dd0
RS
479 /* The master GOT information. */
480 struct mips_got_info *got_info;
861fb55a 481
d222d210
RS
482 /* The global symbol in the GOT with the lowest index in the dynamic
483 symbol table. */
484 struct elf_link_hash_entry *global_gotsym;
485
861fb55a 486 /* The size of the PLT header in bytes. */
0a44bf69 487 bfd_vma plt_header_size;
861fb55a 488
1bbce132
MR
489 /* The size of a standard PLT entry in bytes. */
490 bfd_vma plt_mips_entry_size;
491
492 /* The size of a compressed PLT entry in bytes. */
493 bfd_vma plt_comp_entry_size;
494
495 /* The offset of the next standard PLT entry to create. */
496 bfd_vma plt_mips_offset;
497
498 /* The offset of the next compressed PLT entry to create. */
499 bfd_vma plt_comp_offset;
500
501 /* The index of the next .got.plt entry to create. */
502 bfd_vma plt_got_index;
861fb55a 503
33bb52fb
RS
504 /* The number of functions that need a lazy-binding stub. */
505 bfd_vma lazy_stub_count;
861fb55a 506
5108fc1b
RS
507 /* The size of a function stub entry in bytes. */
508 bfd_vma function_stub_size;
861fb55a
DJ
509
510 /* The number of reserved entries at the beginning of the GOT. */
511 unsigned int reserved_gotno;
512
513 /* The section used for mips_elf_la25_stub trampolines.
514 See the comment above that structure for details. */
515 asection *strampoline;
516
517 /* A table of mips_elf_la25_stubs, indexed by (input_section, offset)
518 pairs. */
519 htab_t la25_stubs;
520
521 /* A function FN (NAME, IS, OS) that creates a new input section
522 called NAME and links it to output section OS. If IS is nonnull,
523 the new section should go immediately before it, otherwise it
524 should go at the (current) beginning of OS.
525
526 The function returns the new section on success, otherwise it
527 returns null. */
528 asection *(*add_stub_section) (const char *, asection *, asection *);
13db6b44
RS
529
530 /* Small local sym cache. */
531 struct sym_cache sym_cache;
1bbce132
MR
532
533 /* Is the PLT header compressed? */
534 unsigned int plt_header_is_comp : 1;
861fb55a
DJ
535};
536
4dfe6ac6
NC
537/* Get the MIPS ELF linker hash table from a link_info structure. */
538
539#define mips_elf_hash_table(p) \
540 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
541 == MIPS_ELF_DATA ? ((struct mips_elf_link_hash_table *) ((p)->hash)) : NULL)
542
861fb55a 543/* A structure used to communicate with htab_traverse callbacks. */
4dfe6ac6
NC
544struct mips_htab_traverse_info
545{
861fb55a
DJ
546 /* The usual link-wide information. */
547 struct bfd_link_info *info;
548 bfd *output_bfd;
549
550 /* Starts off FALSE and is set to TRUE if the link should be aborted. */
551 bfd_boolean error;
b49e97c9
TS
552};
553
6ae68ba3
MR
554/* MIPS ELF private object data. */
555
556struct mips_elf_obj_tdata
557{
558 /* Generic ELF private object data. */
559 struct elf_obj_tdata root;
560
561 /* Input BFD providing Tag_GNU_MIPS_ABI_FP attribute for output. */
562 bfd *abi_fp_bfd;
ee227692 563
b60bf9be
CF
564 /* Input BFD providing Tag_GNU_MIPS_ABI_MSA attribute for output. */
565 bfd *abi_msa_bfd;
566
351cdf24
MF
567 /* The abiflags for this object. */
568 Elf_Internal_ABIFlags_v0 abiflags;
569 bfd_boolean abiflags_valid;
570
ee227692
RS
571 /* The GOT requirements of input bfds. */
572 struct mips_got_info *got;
698600e4
AM
573
574 /* Used by _bfd_mips_elf_find_nearest_line. The structure could be
575 included directly in this one, but there's no point to wasting
576 the memory just for the infrequently called find_nearest_line. */
577 struct mips_elf_find_line *find_line_info;
578
579 /* An array of stub sections indexed by symbol number. */
580 asection **local_stubs;
581 asection **local_call_stubs;
582
583 /* The Irix 5 support uses two virtual sections, which represent
584 text/data symbols defined in dynamic objects. */
585 asymbol *elf_data_symbol;
586 asymbol *elf_text_symbol;
587 asection *elf_data_section;
588 asection *elf_text_section;
6ae68ba3
MR
589};
590
591/* Get MIPS ELF private object data from BFD's tdata. */
592
593#define mips_elf_tdata(bfd) \
594 ((struct mips_elf_obj_tdata *) (bfd)->tdata.any)
595
0f20cc35
DJ
596#define TLS_RELOC_P(r_type) \
597 (r_type == R_MIPS_TLS_DTPMOD32 \
598 || r_type == R_MIPS_TLS_DTPMOD64 \
599 || r_type == R_MIPS_TLS_DTPREL32 \
600 || r_type == R_MIPS_TLS_DTPREL64 \
601 || r_type == R_MIPS_TLS_GD \
602 || r_type == R_MIPS_TLS_LDM \
603 || r_type == R_MIPS_TLS_DTPREL_HI16 \
604 || r_type == R_MIPS_TLS_DTPREL_LO16 \
605 || r_type == R_MIPS_TLS_GOTTPREL \
606 || r_type == R_MIPS_TLS_TPREL32 \
607 || r_type == R_MIPS_TLS_TPREL64 \
608 || r_type == R_MIPS_TLS_TPREL_HI16 \
df58fc94 609 || r_type == R_MIPS_TLS_TPREL_LO16 \
d0f13682
CLT
610 || r_type == R_MIPS16_TLS_GD \
611 || r_type == R_MIPS16_TLS_LDM \
612 || r_type == R_MIPS16_TLS_DTPREL_HI16 \
613 || r_type == R_MIPS16_TLS_DTPREL_LO16 \
614 || r_type == R_MIPS16_TLS_GOTTPREL \
615 || r_type == R_MIPS16_TLS_TPREL_HI16 \
616 || r_type == R_MIPS16_TLS_TPREL_LO16 \
df58fc94
RS
617 || r_type == R_MICROMIPS_TLS_GD \
618 || r_type == R_MICROMIPS_TLS_LDM \
619 || r_type == R_MICROMIPS_TLS_DTPREL_HI16 \
620 || r_type == R_MICROMIPS_TLS_DTPREL_LO16 \
621 || r_type == R_MICROMIPS_TLS_GOTTPREL \
622 || r_type == R_MICROMIPS_TLS_TPREL_HI16 \
623 || r_type == R_MICROMIPS_TLS_TPREL_LO16)
0f20cc35 624
b49e97c9
TS
625/* Structure used to pass information to mips_elf_output_extsym. */
626
627struct extsym_info
628{
9e4aeb93
RS
629 bfd *abfd;
630 struct bfd_link_info *info;
b49e97c9
TS
631 struct ecoff_debug_info *debug;
632 const struct ecoff_debug_swap *swap;
b34976b6 633 bfd_boolean failed;
b49e97c9
TS
634};
635
8dc1a139 636/* The names of the runtime procedure table symbols used on IRIX5. */
b49e97c9
TS
637
638static const char * const mips_elf_dynsym_rtproc_names[] =
639{
640 "_procedure_table",
641 "_procedure_string_table",
642 "_procedure_table_size",
643 NULL
644};
645
646/* These structures are used to generate the .compact_rel section on
8dc1a139 647 IRIX5. */
b49e97c9
TS
648
649typedef struct
650{
651 unsigned long id1; /* Always one? */
652 unsigned long num; /* Number of compact relocation entries. */
653 unsigned long id2; /* Always two? */
654 unsigned long offset; /* The file offset of the first relocation. */
655 unsigned long reserved0; /* Zero? */
656 unsigned long reserved1; /* Zero? */
657} Elf32_compact_rel;
658
659typedef struct
660{
661 bfd_byte id1[4];
662 bfd_byte num[4];
663 bfd_byte id2[4];
664 bfd_byte offset[4];
665 bfd_byte reserved0[4];
666 bfd_byte reserved1[4];
667} Elf32_External_compact_rel;
668
669typedef struct
670{
671 unsigned int ctype : 1; /* 1: long 0: short format. See below. */
672 unsigned int rtype : 4; /* Relocation types. See below. */
673 unsigned int dist2to : 8;
674 unsigned int relvaddr : 19; /* (VADDR - vaddr of the previous entry)/ 4 */
675 unsigned long konst; /* KONST field. See below. */
676 unsigned long vaddr; /* VADDR to be relocated. */
677} Elf32_crinfo;
678
679typedef struct
680{
681 unsigned int ctype : 1; /* 1: long 0: short format. See below. */
682 unsigned int rtype : 4; /* Relocation types. See below. */
683 unsigned int dist2to : 8;
684 unsigned int relvaddr : 19; /* (VADDR - vaddr of the previous entry)/ 4 */
685 unsigned long konst; /* KONST field. See below. */
686} Elf32_crinfo2;
687
688typedef struct
689{
690 bfd_byte info[4];
691 bfd_byte konst[4];
692 bfd_byte vaddr[4];
693} Elf32_External_crinfo;
694
695typedef struct
696{
697 bfd_byte info[4];
698 bfd_byte konst[4];
699} Elf32_External_crinfo2;
700
701/* These are the constants used to swap the bitfields in a crinfo. */
702
703#define CRINFO_CTYPE (0x1)
704#define CRINFO_CTYPE_SH (31)
705#define CRINFO_RTYPE (0xf)
706#define CRINFO_RTYPE_SH (27)
707#define CRINFO_DIST2TO (0xff)
708#define CRINFO_DIST2TO_SH (19)
709#define CRINFO_RELVADDR (0x7ffff)
710#define CRINFO_RELVADDR_SH (0)
711
712/* A compact relocation info has long (3 words) or short (2 words)
713 formats. A short format doesn't have VADDR field and relvaddr
714 fields contains ((VADDR - vaddr of the previous entry) >> 2). */
715#define CRF_MIPS_LONG 1
716#define CRF_MIPS_SHORT 0
717
718/* There are 4 types of compact relocation at least. The value KONST
719 has different meaning for each type:
720
721 (type) (konst)
722 CT_MIPS_REL32 Address in data
723 CT_MIPS_WORD Address in word (XXX)
724 CT_MIPS_GPHI_LO GP - vaddr
725 CT_MIPS_JMPAD Address to jump
726 */
727
728#define CRT_MIPS_REL32 0xa
729#define CRT_MIPS_WORD 0xb
730#define CRT_MIPS_GPHI_LO 0xc
731#define CRT_MIPS_JMPAD 0xd
732
733#define mips_elf_set_cr_format(x,format) ((x).ctype = (format))
734#define mips_elf_set_cr_type(x,type) ((x).rtype = (type))
735#define mips_elf_set_cr_dist2to(x,v) ((x).dist2to = (v))
736#define mips_elf_set_cr_relvaddr(x,d) ((x).relvaddr = (d)<<2)
737\f
738/* The structure of the runtime procedure descriptor created by the
739 loader for use by the static exception system. */
740
741typedef struct runtime_pdr {
ae9a127f
NC
742 bfd_vma adr; /* Memory address of start of procedure. */
743 long regmask; /* Save register mask. */
744 long regoffset; /* Save register offset. */
745 long fregmask; /* Save floating point register mask. */
746 long fregoffset; /* Save floating point register offset. */
747 long frameoffset; /* Frame size. */
748 short framereg; /* Frame pointer register. */
749 short pcreg; /* Offset or reg of return pc. */
750 long irpss; /* Index into the runtime string table. */
b49e97c9 751 long reserved;
ae9a127f 752 struct exception_info *exception_info;/* Pointer to exception array. */
b49e97c9
TS
753} RPDR, *pRPDR;
754#define cbRPDR sizeof (RPDR)
755#define rpdNil ((pRPDR) 0)
756\f
b15e6682 757static struct mips_got_entry *mips_elf_create_local_got_entry
a8028dd0
RS
758 (bfd *, struct bfd_link_info *, bfd *, bfd_vma, unsigned long,
759 struct mips_elf_link_hash_entry *, int);
b34976b6 760static bfd_boolean mips_elf_sort_hash_table_f
9719ad41 761 (struct mips_elf_link_hash_entry *, void *);
9719ad41
RS
762static bfd_vma mips_elf_high
763 (bfd_vma);
b34976b6 764static bfd_boolean mips_elf_create_dynamic_relocation
9719ad41
RS
765 (bfd *, struct bfd_link_info *, const Elf_Internal_Rela *,
766 struct mips_elf_link_hash_entry *, asection *, bfd_vma,
767 bfd_vma *, asection *);
f4416af6 768static bfd_vma mips_elf_adjust_gp
9719ad41 769 (bfd *, struct mips_got_info *, bfd *);
f4416af6 770
b49e97c9
TS
771/* This will be used when we sort the dynamic relocation records. */
772static bfd *reldyn_sorting_bfd;
773
6d30f5b2
NC
774/* True if ABFD is for CPUs with load interlocking that include
775 non-MIPS1 CPUs and R3900. */
776#define LOAD_INTERLOCKS_P(abfd) \
777 ( ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) != E_MIPS_ARCH_1) \
778 || ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == E_MIPS_MACH_3900))
779
cd8d5a82
CF
780/* True if ABFD is for CPUs that are faster if JAL is converted to BAL.
781 This should be safe for all architectures. We enable this predicate
782 for RM9000 for now. */
783#define JAL_TO_BAL_P(abfd) \
784 ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == E_MIPS_MACH_9000)
785
786/* True if ABFD is for CPUs that are faster if JALR is converted to BAL.
787 This should be safe for all architectures. We enable this predicate for
788 all CPUs. */
789#define JALR_TO_BAL_P(abfd) 1
790
38a7df63
CF
791/* True if ABFD is for CPUs that are faster if JR is converted to B.
792 This should be safe for all architectures. We enable this predicate for
793 all CPUs. */
794#define JR_TO_B_P(abfd) 1
795
861fb55a
DJ
796/* True if ABFD is a PIC object. */
797#define PIC_OBJECT_P(abfd) \
798 ((elf_elfheader (abfd)->e_flags & EF_MIPS_PIC) != 0)
799
351cdf24
MF
800/* Nonzero if ABFD is using the O32 ABI. */
801#define ABI_O32_P(abfd) \
802 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O32)
803
b49e97c9 804/* Nonzero if ABFD is using the N32 ABI. */
b49e97c9
TS
805#define ABI_N32_P(abfd) \
806 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI2) != 0)
807
4a14403c 808/* Nonzero if ABFD is using the N64 ABI. */
b49e97c9 809#define ABI_64_P(abfd) \
141ff970 810 (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64)
b49e97c9 811
4a14403c
TS
812/* Nonzero if ABFD is using NewABI conventions. */
813#define NEWABI_P(abfd) (ABI_N32_P (abfd) || ABI_64_P (abfd))
814
e8faf7d1
MR
815/* Nonzero if ABFD has microMIPS code. */
816#define MICROMIPS_P(abfd) \
817 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MICROMIPS) != 0)
818
7361da2c
AB
819/* Nonzero if ABFD is MIPS R6. */
820#define MIPSR6_P(abfd) \
821 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R6 \
822 || (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64R6)
823
4a14403c 824/* The IRIX compatibility level we are striving for. */
b49e97c9
TS
825#define IRIX_COMPAT(abfd) \
826 (get_elf_backend_data (abfd)->elf_backend_mips_irix_compat (abfd))
827
b49e97c9
TS
828/* Whether we are trying to be compatible with IRIX at all. */
829#define SGI_COMPAT(abfd) \
830 (IRIX_COMPAT (abfd) != ict_none)
831
832/* The name of the options section. */
833#define MIPS_ELF_OPTIONS_SECTION_NAME(abfd) \
d80dcc6a 834 (NEWABI_P (abfd) ? ".MIPS.options" : ".options")
b49e97c9 835
cc2e31b9
RS
836/* True if NAME is the recognized name of any SHT_MIPS_OPTIONS section.
837 Some IRIX system files do not use MIPS_ELF_OPTIONS_SECTION_NAME. */
838#define MIPS_ELF_OPTIONS_SECTION_NAME_P(NAME) \
839 (strcmp (NAME, ".MIPS.options") == 0 || strcmp (NAME, ".options") == 0)
840
351cdf24
MF
841/* True if NAME is the recognized name of any SHT_MIPS_ABIFLAGS section. */
842#define MIPS_ELF_ABIFLAGS_SECTION_NAME_P(NAME) \
843 (strcmp (NAME, ".MIPS.abiflags") == 0)
844
943284cc
DJ
845/* Whether the section is readonly. */
846#define MIPS_ELF_READONLY_SECTION(sec) \
847 ((sec->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY)) \
848 == (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
849
b49e97c9 850/* The name of the stub section. */
ca07892d 851#define MIPS_ELF_STUB_SECTION_NAME(abfd) ".MIPS.stubs"
b49e97c9
TS
852
853/* The size of an external REL relocation. */
854#define MIPS_ELF_REL_SIZE(abfd) \
855 (get_elf_backend_data (abfd)->s->sizeof_rel)
856
0a44bf69
RS
857/* The size of an external RELA relocation. */
858#define MIPS_ELF_RELA_SIZE(abfd) \
859 (get_elf_backend_data (abfd)->s->sizeof_rela)
860
b49e97c9
TS
861/* The size of an external dynamic table entry. */
862#define MIPS_ELF_DYN_SIZE(abfd) \
863 (get_elf_backend_data (abfd)->s->sizeof_dyn)
864
865/* The size of a GOT entry. */
866#define MIPS_ELF_GOT_SIZE(abfd) \
867 (get_elf_backend_data (abfd)->s->arch_size / 8)
868
b4082c70
DD
869/* The size of the .rld_map section. */
870#define MIPS_ELF_RLD_MAP_SIZE(abfd) \
871 (get_elf_backend_data (abfd)->s->arch_size / 8)
872
b49e97c9
TS
873/* The size of a symbol-table entry. */
874#define MIPS_ELF_SYM_SIZE(abfd) \
875 (get_elf_backend_data (abfd)->s->sizeof_sym)
876
877/* The default alignment for sections, as a power of two. */
878#define MIPS_ELF_LOG_FILE_ALIGN(abfd) \
45d6a902 879 (get_elf_backend_data (abfd)->s->log_file_align)
b49e97c9
TS
880
881/* Get word-sized data. */
882#define MIPS_ELF_GET_WORD(abfd, ptr) \
883 (ABI_64_P (abfd) ? bfd_get_64 (abfd, ptr) : bfd_get_32 (abfd, ptr))
884
885/* Put out word-sized data. */
886#define MIPS_ELF_PUT_WORD(abfd, val, ptr) \
07d6d2b8
AM
887 (ABI_64_P (abfd) \
888 ? bfd_put_64 (abfd, val, ptr) \
b49e97c9
TS
889 : bfd_put_32 (abfd, val, ptr))
890
861fb55a
DJ
891/* The opcode for word-sized loads (LW or LD). */
892#define MIPS_ELF_LOAD_WORD(abfd) \
893 (ABI_64_P (abfd) ? 0xdc000000 : 0x8c000000)
894
b49e97c9 895/* Add a dynamic symbol table-entry. */
9719ad41 896#define MIPS_ELF_ADD_DYNAMIC_ENTRY(info, tag, val) \
5a580b3a 897 _bfd_elf_add_dynamic_entry (info, tag, val)
b49e97c9
TS
898
899#define MIPS_ELF_RTYPE_TO_HOWTO(abfd, rtype, rela) \
0aa13fee 900 (get_elf_backend_data (abfd)->elf_backend_mips_rtype_to_howto (abfd, rtype, rela))
b49e97c9 901
0a44bf69
RS
902/* The name of the dynamic relocation section. */
903#define MIPS_ELF_REL_DYN_NAME(INFO) \
90c14f0c
L
904 (mips_elf_hash_table (INFO)->root.target_os == is_vxworks \
905 ? ".rela.dyn" : ".rel.dyn")
0a44bf69 906
b49e97c9
TS
907/* In case we're on a 32-bit machine, construct a 64-bit "-1" value
908 from smaller values. Start with zero, widen, *then* decrement. */
909#define MINUS_ONE (((bfd_vma)0) - 1)
c5ae1840 910#define MINUS_TWO (((bfd_vma)0) - 2)
b49e97c9 911
51e38d68
RS
912/* The value to write into got[1] for SVR4 targets, to identify it is
913 a GNU object. The dynamic linker can then use got[1] to store the
914 module pointer. */
915#define MIPS_ELF_GNU_GOT1_MASK(abfd) \
916 ((bfd_vma) 1 << (ABI_64_P (abfd) ? 63 : 31))
917
f4416af6 918/* The offset of $gp from the beginning of the .got section. */
0a44bf69 919#define ELF_MIPS_GP_OFFSET(INFO) \
90c14f0c
L
920 (mips_elf_hash_table (INFO)->root.target_os == is_vxworks \
921 ? 0x0 : 0x7ff0)
f4416af6
AO
922
923/* The maximum size of the GOT for it to be addressable using 16-bit
924 offsets from $gp. */
0a44bf69 925#define MIPS_ELF_GOT_MAX_SIZE(INFO) (ELF_MIPS_GP_OFFSET (INFO) + 0x7fff)
f4416af6 926
6a691779 927/* Instructions which appear in a stub. */
3d6746ca
DD
928#define STUB_LW(abfd) \
929 ((ABI_64_P (abfd) \
930 ? 0xdf998010 /* ld t9,0x8010(gp) */ \
07d6d2b8 931 : 0x8f998010)) /* lw t9,0x8010(gp) */
40fc1451 932#define STUB_MOVE 0x03e07825 /* or t7,ra,zero */
3d6746ca 933#define STUB_LUI(VAL) (0x3c180000 + (VAL)) /* lui t8,VAL */
a18a2a34 934#define STUB_JALR 0x0320f809 /* jalr ra,t9 */
3734320d 935#define STUB_JALRC 0xf8190000 /* jalrc ra,t9 */
5108fc1b
RS
936#define STUB_ORI(VAL) (0x37180000 + (VAL)) /* ori t8,t8,VAL */
937#define STUB_LI16U(VAL) (0x34180000 + (VAL)) /* ori t8,zero,VAL unsigned */
3d6746ca
DD
938#define STUB_LI16S(abfd, VAL) \
939 ((ABI_64_P (abfd) \
940 ? (0x64180000 + (VAL)) /* daddiu t8,zero,VAL sign extended */ \
941 : (0x24180000 + (VAL)))) /* addiu t8,zero,VAL sign extended */
942
1bbce132
MR
943/* Likewise for the microMIPS ASE. */
944#define STUB_LW_MICROMIPS(abfd) \
945 (ABI_64_P (abfd) \
946 ? 0xdf3c8010 /* ld t9,0x8010(gp) */ \
947 : 0xff3c8010) /* lw t9,0x8010(gp) */
948#define STUB_MOVE_MICROMIPS 0x0dff /* move t7,ra */
40fc1451 949#define STUB_MOVE32_MICROMIPS 0x001f7a90 /* or t7,ra,zero */
1bbce132
MR
950#define STUB_LUI_MICROMIPS(VAL) \
951 (0x41b80000 + (VAL)) /* lui t8,VAL */
952#define STUB_JALR_MICROMIPS 0x45d9 /* jalr t9 */
833794fc 953#define STUB_JALR32_MICROMIPS 0x03f90f3c /* jalr ra,t9 */
1bbce132
MR
954#define STUB_ORI_MICROMIPS(VAL) \
955 (0x53180000 + (VAL)) /* ori t8,t8,VAL */
956#define STUB_LI16U_MICROMIPS(VAL) \
957 (0x53000000 + (VAL)) /* ori t8,zero,VAL unsigned */
958#define STUB_LI16S_MICROMIPS(abfd, VAL) \
959 (ABI_64_P (abfd) \
960 ? 0x5f000000 + (VAL) /* daddiu t8,zero,VAL sign extended */ \
961 : 0x33000000 + (VAL)) /* addiu t8,zero,VAL sign extended */
962
5108fc1b
RS
963#define MIPS_FUNCTION_STUB_NORMAL_SIZE 16
964#define MIPS_FUNCTION_STUB_BIG_SIZE 20
1bbce132
MR
965#define MICROMIPS_FUNCTION_STUB_NORMAL_SIZE 12
966#define MICROMIPS_FUNCTION_STUB_BIG_SIZE 16
833794fc
MR
967#define MICROMIPS_INSN32_FUNCTION_STUB_NORMAL_SIZE 16
968#define MICROMIPS_INSN32_FUNCTION_STUB_BIG_SIZE 20
b49e97c9
TS
969
970/* The name of the dynamic interpreter. This is put in the .interp
971 section. */
972
07d6d2b8
AM
973#define ELF_DYNAMIC_INTERPRETER(abfd) \
974 (ABI_N32_P (abfd) ? "/usr/lib32/libc.so.1" \
975 : ABI_64_P (abfd) ? "/usr/lib64/libc.so.1" \
b49e97c9
TS
976 : "/usr/lib/libc.so.1")
977
978#ifdef BFD64
ee6423ed
AO
979#define MNAME(bfd,pre,pos) \
980 (ABI_64_P (bfd) ? CONCAT4 (pre,64,_,pos) : CONCAT4 (pre,32,_,pos))
b49e97c9
TS
981#define ELF_R_SYM(bfd, i) \
982 (ABI_64_P (bfd) ? ELF64_R_SYM (i) : ELF32_R_SYM (i))
983#define ELF_R_TYPE(bfd, i) \
984 (ABI_64_P (bfd) ? ELF64_MIPS_R_TYPE (i) : ELF32_R_TYPE (i))
985#define ELF_R_INFO(bfd, s, t) \
986 (ABI_64_P (bfd) ? ELF64_R_INFO (s, t) : ELF32_R_INFO (s, t))
987#else
ee6423ed 988#define MNAME(bfd,pre,pos) CONCAT4 (pre,32,_,pos)
b49e97c9
TS
989#define ELF_R_SYM(bfd, i) \
990 (ELF32_R_SYM (i))
991#define ELF_R_TYPE(bfd, i) \
992 (ELF32_R_TYPE (i))
993#define ELF_R_INFO(bfd, s, t) \
994 (ELF32_R_INFO (s, t))
995#endif
996\f
997 /* The mips16 compiler uses a couple of special sections to handle
998 floating point arguments.
999
1000 Section names that look like .mips16.fn.FNNAME contain stubs that
1001 copy floating point arguments from the fp regs to the gp regs and
1002 then jump to FNNAME. If any 32 bit function calls FNNAME, the
1003 call should be redirected to the stub instead. If no 32 bit
1004 function calls FNNAME, the stub should be discarded. We need to
1005 consider any reference to the function, not just a call, because
1006 if the address of the function is taken we will need the stub,
1007 since the address might be passed to a 32 bit function.
1008
1009 Section names that look like .mips16.call.FNNAME contain stubs
1010 that copy floating point arguments from the gp regs to the fp
1011 regs and then jump to FNNAME. If FNNAME is a 32 bit function,
1012 then any 16 bit function that calls FNNAME should be redirected
1013 to the stub instead. If FNNAME is not a 32 bit function, the
1014 stub should be discarded.
1015
1016 .mips16.call.fp.FNNAME sections are similar, but contain stubs
1017 which call FNNAME and then copy the return value from the fp regs
1018 to the gp regs. These stubs store the return value in $18 while
1019 calling FNNAME; any function which might call one of these stubs
1020 must arrange to save $18 around the call. (This case is not
1021 needed for 32 bit functions that call 16 bit functions, because
1022 16 bit functions always return floating point values in both
1023 $f0/$f1 and $2/$3.)
1024
1025 Note that in all cases FNNAME might be defined statically.
1026 Therefore, FNNAME is not used literally. Instead, the relocation
1027 information will indicate which symbol the section is for.
1028
1029 We record any stubs that we find in the symbol table. */
1030
1031#define FN_STUB ".mips16.fn."
1032#define CALL_STUB ".mips16.call."
1033#define CALL_FP_STUB ".mips16.call.fp."
b9d58d71
TS
1034
1035#define FN_STUB_P(name) CONST_STRNEQ (name, FN_STUB)
1036#define CALL_STUB_P(name) CONST_STRNEQ (name, CALL_STUB)
1037#define CALL_FP_STUB_P(name) CONST_STRNEQ (name, CALL_FP_STUB)
b49e97c9 1038\f
861fb55a 1039/* The format of the first PLT entry in an O32 executable. */
6d30f5b2
NC
1040static const bfd_vma mips_o32_exec_plt0_entry[] =
1041{
861fb55a
DJ
1042 0x3c1c0000, /* lui $28, %hi(&GOTPLT[0]) */
1043 0x8f990000, /* lw $25, %lo(&GOTPLT[0])($28) */
1044 0x279c0000, /* addiu $28, $28, %lo(&GOTPLT[0]) */
1045 0x031cc023, /* subu $24, $24, $28 */
40fc1451 1046 0x03e07825, /* or t7, ra, zero */
861fb55a
DJ
1047 0x0018c082, /* srl $24, $24, 2 */
1048 0x0320f809, /* jalr $25 */
1049 0x2718fffe /* subu $24, $24, 2 */
1050};
1051
3734320d
MF
1052/* The format of the first PLT entry in an O32 executable using compact
1053 jumps. */
1054static const bfd_vma mipsr6_o32_exec_plt0_entry_compact[] =
1055{
1056 0x3c1c0000, /* lui $28, %hi(&GOTPLT[0]) */
1057 0x8f990000, /* lw $25, %lo(&GOTPLT[0])($28) */
1058 0x279c0000, /* addiu $28, $28, %lo(&GOTPLT[0]) */
1059 0x031cc023, /* subu $24, $24, $28 */
1060 0x03e07821, /* move $15, $31 # 32-bit move (addu) */
1061 0x0018c082, /* srl $24, $24, 2 */
1062 0x2718fffe, /* subu $24, $24, 2 */
1063 0xf8190000 /* jalrc $25 */
1064};
1065
861fb55a
DJ
1066/* The format of the first PLT entry in an N32 executable. Different
1067 because gp ($28) is not available; we use t2 ($14) instead. */
6d30f5b2
NC
1068static const bfd_vma mips_n32_exec_plt0_entry[] =
1069{
861fb55a
DJ
1070 0x3c0e0000, /* lui $14, %hi(&GOTPLT[0]) */
1071 0x8dd90000, /* lw $25, %lo(&GOTPLT[0])($14) */
1072 0x25ce0000, /* addiu $14, $14, %lo(&GOTPLT[0]) */
1073 0x030ec023, /* subu $24, $24, $14 */
40fc1451 1074 0x03e07825, /* or t7, ra, zero */
861fb55a
DJ
1075 0x0018c082, /* srl $24, $24, 2 */
1076 0x0320f809, /* jalr $25 */
1077 0x2718fffe /* subu $24, $24, 2 */
1078};
1079
3734320d
MF
1080/* The format of the first PLT entry in an N32 executable using compact
1081 jumps. Different because gp ($28) is not available; we use t2 ($14)
1082 instead. */
1083static const bfd_vma mipsr6_n32_exec_plt0_entry_compact[] =
1084{
1085 0x3c0e0000, /* lui $14, %hi(&GOTPLT[0]) */
1086 0x8dd90000, /* lw $25, %lo(&GOTPLT[0])($14) */
1087 0x25ce0000, /* addiu $14, $14, %lo(&GOTPLT[0]) */
1088 0x030ec023, /* subu $24, $24, $14 */
1089 0x03e07821, /* move $15, $31 # 32-bit move (addu) */
1090 0x0018c082, /* srl $24, $24, 2 */
1091 0x2718fffe, /* subu $24, $24, 2 */
1092 0xf8190000 /* jalrc $25 */
1093};
1094
861fb55a
DJ
1095/* The format of the first PLT entry in an N64 executable. Different
1096 from N32 because of the increased size of GOT entries. */
6d30f5b2
NC
1097static const bfd_vma mips_n64_exec_plt0_entry[] =
1098{
861fb55a
DJ
1099 0x3c0e0000, /* lui $14, %hi(&GOTPLT[0]) */
1100 0xddd90000, /* ld $25, %lo(&GOTPLT[0])($14) */
1101 0x25ce0000, /* addiu $14, $14, %lo(&GOTPLT[0]) */
1102 0x030ec023, /* subu $24, $24, $14 */
40fc1451 1103 0x03e07825, /* or t7, ra, zero */
861fb55a
DJ
1104 0x0018c0c2, /* srl $24, $24, 3 */
1105 0x0320f809, /* jalr $25 */
1106 0x2718fffe /* subu $24, $24, 2 */
1107};
1108
3734320d
MF
1109/* The format of the first PLT entry in an N64 executable using compact
1110 jumps. Different from N32 because of the increased size of GOT
1111 entries. */
1112static const bfd_vma mipsr6_n64_exec_plt0_entry_compact[] =
1113{
1114 0x3c0e0000, /* lui $14, %hi(&GOTPLT[0]) */
1115 0xddd90000, /* ld $25, %lo(&GOTPLT[0])($14) */
1116 0x25ce0000, /* addiu $14, $14, %lo(&GOTPLT[0]) */
1117 0x030ec023, /* subu $24, $24, $14 */
1118 0x03e0782d, /* move $15, $31 # 64-bit move (daddu) */
1119 0x0018c0c2, /* srl $24, $24, 3 */
1120 0x2718fffe, /* subu $24, $24, 2 */
1121 0xf8190000 /* jalrc $25 */
1122};
1123
1124
1bbce132
MR
1125/* The format of the microMIPS first PLT entry in an O32 executable.
1126 We rely on v0 ($2) rather than t8 ($24) to contain the address
1127 of the GOTPLT entry handled, so this stub may only be used when
1128 all the subsequent PLT entries are microMIPS code too.
1129
1130 The trailing NOP is for alignment and correct disassembly only. */
1131static const bfd_vma micromips_o32_exec_plt0_entry[] =
1132{
1133 0x7980, 0x0000, /* addiupc $3, (&GOTPLT[0]) - . */
1134 0xff23, 0x0000, /* lw $25, 0($3) */
1135 0x0535, /* subu $2, $2, $3 */
1136 0x2525, /* srl $2, $2, 2 */
1137 0x3302, 0xfffe, /* subu $24, $2, 2 */
1138 0x0dff, /* move $15, $31 */
1139 0x45f9, /* jalrs $25 */
1140 0x0f83, /* move $28, $3 */
1141 0x0c00 /* nop */
1142};
1143
833794fc
MR
1144/* The format of the microMIPS first PLT entry in an O32 executable
1145 in the insn32 mode. */
1146static const bfd_vma micromips_insn32_o32_exec_plt0_entry[] =
1147{
1148 0x41bc, 0x0000, /* lui $28, %hi(&GOTPLT[0]) */
1149 0xff3c, 0x0000, /* lw $25, %lo(&GOTPLT[0])($28) */
1150 0x339c, 0x0000, /* addiu $28, $28, %lo(&GOTPLT[0]) */
1151 0x0398, 0xc1d0, /* subu $24, $24, $28 */
40fc1451 1152 0x001f, 0x7a90, /* or $15, $31, zero */
833794fc
MR
1153 0x0318, 0x1040, /* srl $24, $24, 2 */
1154 0x03f9, 0x0f3c, /* jalr $25 */
1155 0x3318, 0xfffe /* subu $24, $24, 2 */
1156};
1157
1bbce132 1158/* The format of subsequent standard PLT entries. */
6d30f5b2
NC
1159static const bfd_vma mips_exec_plt_entry[] =
1160{
861fb55a
DJ
1161 0x3c0f0000, /* lui $15, %hi(.got.plt entry) */
1162 0x01f90000, /* l[wd] $25, %lo(.got.plt entry)($15) */
1163 0x25f80000, /* addiu $24, $15, %lo(.got.plt entry) */
1164 0x03200008 /* jr $25 */
1165};
1166
7361da2c
AB
1167static const bfd_vma mipsr6_exec_plt_entry[] =
1168{
1169 0x3c0f0000, /* lui $15, %hi(.got.plt entry) */
1170 0x01f90000, /* l[wd] $25, %lo(.got.plt entry)($15) */
1171 0x25f80000, /* addiu $24, $15, %lo(.got.plt entry) */
1172 0x03200009 /* jr $25 */
1173};
1174
3734320d
MF
1175static const bfd_vma mipsr6_exec_plt_entry_compact[] =
1176{
1177 0x3c0f0000, /* lui $15, %hi(.got.plt entry) */
1178 0x01f90000, /* l[wd] $25, %lo(.got.plt entry)($15) */
1179 0x25f80000, /* addiu $24, $15, %lo(.got.plt entry) */
1180 0xd8190000 /* jic $25, 0 */
1181};
1182
1bbce132
MR
1183/* The format of subsequent MIPS16 o32 PLT entries. We use v0 ($2)
1184 and v1 ($3) as temporaries because t8 ($24) and t9 ($25) are not
1185 directly addressable. */
1186static const bfd_vma mips16_o32_exec_plt_entry[] =
1187{
1188 0xb203, /* lw $2, 12($pc) */
1189 0x9a60, /* lw $3, 0($2) */
1190 0x651a, /* move $24, $2 */
1191 0xeb00, /* jr $3 */
1192 0x653b, /* move $25, $3 */
1193 0x6500, /* nop */
1194 0x0000, 0x0000 /* .word (.got.plt entry) */
1195};
1196
1197/* The format of subsequent microMIPS o32 PLT entries. We use v0 ($2)
1198 as a temporary because t8 ($24) is not addressable with ADDIUPC. */
1199static const bfd_vma micromips_o32_exec_plt_entry[] =
1200{
1201 0x7900, 0x0000, /* addiupc $2, (.got.plt entry) - . */
1202 0xff22, 0x0000, /* lw $25, 0($2) */
1203 0x4599, /* jr $25 */
1204 0x0f02 /* move $24, $2 */
1205};
1206
833794fc
MR
1207/* The format of subsequent microMIPS o32 PLT entries in the insn32 mode. */
1208static const bfd_vma micromips_insn32_o32_exec_plt_entry[] =
1209{
1210 0x41af, 0x0000, /* lui $15, %hi(.got.plt entry) */
1211 0xff2f, 0x0000, /* lw $25, %lo(.got.plt entry)($15) */
1212 0x0019, 0x0f3c, /* jr $25 */
1213 0x330f, 0x0000 /* addiu $24, $15, %lo(.got.plt entry) */
1214};
1215
0a44bf69 1216/* The format of the first PLT entry in a VxWorks executable. */
6d30f5b2
NC
1217static const bfd_vma mips_vxworks_exec_plt0_entry[] =
1218{
0a44bf69
RS
1219 0x3c190000, /* lui t9, %hi(_GLOBAL_OFFSET_TABLE_) */
1220 0x27390000, /* addiu t9, t9, %lo(_GLOBAL_OFFSET_TABLE_) */
1221 0x8f390008, /* lw t9, 8(t9) */
1222 0x00000000, /* nop */
1223 0x03200008, /* jr t9 */
1224 0x00000000 /* nop */
1225};
1226
1227/* The format of subsequent PLT entries. */
6d30f5b2
NC
1228static const bfd_vma mips_vxworks_exec_plt_entry[] =
1229{
0a44bf69
RS
1230 0x10000000, /* b .PLT_resolver */
1231 0x24180000, /* li t8, <pltindex> */
1232 0x3c190000, /* lui t9, %hi(<.got.plt slot>) */
1233 0x27390000, /* addiu t9, t9, %lo(<.got.plt slot>) */
1234 0x8f390000, /* lw t9, 0(t9) */
1235 0x00000000, /* nop */
1236 0x03200008, /* jr t9 */
1237 0x00000000 /* nop */
1238};
1239
1240/* The format of the first PLT entry in a VxWorks shared object. */
6d30f5b2
NC
1241static const bfd_vma mips_vxworks_shared_plt0_entry[] =
1242{
0a44bf69
RS
1243 0x8f990008, /* lw t9, 8(gp) */
1244 0x00000000, /* nop */
1245 0x03200008, /* jr t9 */
1246 0x00000000, /* nop */
1247 0x00000000, /* nop */
1248 0x00000000 /* nop */
1249};
1250
1251/* The format of subsequent PLT entries. */
6d30f5b2
NC
1252static const bfd_vma mips_vxworks_shared_plt_entry[] =
1253{
0a44bf69
RS
1254 0x10000000, /* b .PLT_resolver */
1255 0x24180000 /* li t8, <pltindex> */
1256};
1257\f
d21911ea
MR
1258/* microMIPS 32-bit opcode helper installer. */
1259
1260static void
1261bfd_put_micromips_32 (const bfd *abfd, bfd_vma opcode, bfd_byte *ptr)
1262{
1263 bfd_put_16 (abfd, (opcode >> 16) & 0xffff, ptr);
07d6d2b8 1264 bfd_put_16 (abfd, opcode & 0xffff, ptr + 2);
d21911ea
MR
1265}
1266
1267/* microMIPS 32-bit opcode helper retriever. */
1268
1269static bfd_vma
1270bfd_get_micromips_32 (const bfd *abfd, const bfd_byte *ptr)
1271{
1272 return (bfd_get_16 (abfd, ptr) << 16) | bfd_get_16 (abfd, ptr + 2);
1273}
1274\f
b49e97c9
TS
1275/* Look up an entry in a MIPS ELF linker hash table. */
1276
1277#define mips_elf_link_hash_lookup(table, string, create, copy, follow) \
1278 ((struct mips_elf_link_hash_entry *) \
1279 elf_link_hash_lookup (&(table)->root, (string), (create), \
1280 (copy), (follow)))
1281
1282/* Traverse a MIPS ELF linker hash table. */
1283
1284#define mips_elf_link_hash_traverse(table, func, info) \
1285 (elf_link_hash_traverse \
1286 (&(table)->root, \
9719ad41 1287 (bfd_boolean (*) (struct elf_link_hash_entry *, void *)) (func), \
b49e97c9
TS
1288 (info)))
1289
0f20cc35
DJ
1290/* Find the base offsets for thread-local storage in this object,
1291 for GD/LD and IE/LE respectively. */
1292
1293#define TP_OFFSET 0x7000
1294#define DTP_OFFSET 0x8000
1295
1296static bfd_vma
1297dtprel_base (struct bfd_link_info *info)
1298{
1299 /* If tls_sec is NULL, we should have signalled an error already. */
1300 if (elf_hash_table (info)->tls_sec == NULL)
1301 return 0;
1302 return elf_hash_table (info)->tls_sec->vma + DTP_OFFSET;
1303}
1304
1305static bfd_vma
1306tprel_base (struct bfd_link_info *info)
1307{
1308 /* If tls_sec is NULL, we should have signalled an error already. */
1309 if (elf_hash_table (info)->tls_sec == NULL)
1310 return 0;
1311 return elf_hash_table (info)->tls_sec->vma + TP_OFFSET;
1312}
1313
b49e97c9
TS
1314/* Create an entry in a MIPS ELF linker hash table. */
1315
1316static struct bfd_hash_entry *
9719ad41
RS
1317mips_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
1318 struct bfd_hash_table *table, const char *string)
b49e97c9
TS
1319{
1320 struct mips_elf_link_hash_entry *ret =
1321 (struct mips_elf_link_hash_entry *) entry;
1322
1323 /* Allocate the structure if it has not already been allocated by a
1324 subclass. */
9719ad41
RS
1325 if (ret == NULL)
1326 ret = bfd_hash_allocate (table, sizeof (struct mips_elf_link_hash_entry));
1327 if (ret == NULL)
b49e97c9
TS
1328 return (struct bfd_hash_entry *) ret;
1329
1330 /* Call the allocation method of the superclass. */
1331 ret = ((struct mips_elf_link_hash_entry *)
1332 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
1333 table, string));
9719ad41 1334 if (ret != NULL)
b49e97c9
TS
1335 {
1336 /* Set local fields. */
1337 memset (&ret->esym, 0, sizeof (EXTR));
1338 /* We use -2 as a marker to indicate that the information has
1339 not been set. -1 means there is no associated ifd. */
1340 ret->esym.ifd = -2;
861fb55a 1341 ret->la25_stub = 0;
b49e97c9 1342 ret->possibly_dynamic_relocs = 0;
b49e97c9 1343 ret->fn_stub = NULL;
b49e97c9
TS
1344 ret->call_stub = NULL;
1345 ret->call_fp_stub = NULL;
f16a9783 1346 ret->mipsxhash_loc = 0;
634835ae 1347 ret->global_got_area = GGA_NONE;
6ccf4795 1348 ret->got_only_for_calls = TRUE;
71782a75 1349 ret->readonly_reloc = FALSE;
861fb55a 1350 ret->has_static_relocs = FALSE;
71782a75
RS
1351 ret->no_fn_stub = FALSE;
1352 ret->need_fn_stub = FALSE;
861fb55a 1353 ret->has_nonpic_branches = FALSE;
33bb52fb 1354 ret->needs_lazy_stub = FALSE;
1bbce132 1355 ret->use_plt_entry = FALSE;
b49e97c9
TS
1356 }
1357
1358 return (struct bfd_hash_entry *) ret;
1359}
f0abc2a1 1360
6ae68ba3
MR
1361/* Allocate MIPS ELF private object data. */
1362
1363bfd_boolean
1364_bfd_mips_elf_mkobject (bfd *abfd)
1365{
1366 return bfd_elf_allocate_object (abfd, sizeof (struct mips_elf_obj_tdata),
1367 MIPS_ELF_DATA);
1368}
1369
f0abc2a1 1370bfd_boolean
9719ad41 1371_bfd_mips_elf_new_section_hook (bfd *abfd, asection *sec)
f0abc2a1 1372{
f592407e
AM
1373 if (!sec->used_by_bfd)
1374 {
1375 struct _mips_elf_section_data *sdata;
986f0783 1376 size_t amt = sizeof (*sdata);
f0abc2a1 1377
f592407e
AM
1378 sdata = bfd_zalloc (abfd, amt);
1379 if (sdata == NULL)
1380 return FALSE;
1381 sec->used_by_bfd = sdata;
1382 }
f0abc2a1
AM
1383
1384 return _bfd_elf_new_section_hook (abfd, sec);
1385}
b49e97c9
TS
1386\f
1387/* Read ECOFF debugging information from a .mdebug section into a
1388 ecoff_debug_info structure. */
1389
b34976b6 1390bfd_boolean
9719ad41
RS
1391_bfd_mips_elf_read_ecoff_info (bfd *abfd, asection *section,
1392 struct ecoff_debug_info *debug)
b49e97c9
TS
1393{
1394 HDRR *symhdr;
1395 const struct ecoff_debug_swap *swap;
9719ad41 1396 char *ext_hdr;
b49e97c9
TS
1397
1398 swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
1399 memset (debug, 0, sizeof (*debug));
1400
9719ad41 1401 ext_hdr = bfd_malloc (swap->external_hdr_size);
b49e97c9
TS
1402 if (ext_hdr == NULL && swap->external_hdr_size != 0)
1403 goto error_return;
1404
9719ad41 1405 if (! bfd_get_section_contents (abfd, section, ext_hdr, 0,
82e51918 1406 swap->external_hdr_size))
b49e97c9
TS
1407 goto error_return;
1408
1409 symhdr = &debug->symbolic_header;
1410 (*swap->swap_hdr_in) (abfd, ext_hdr, symhdr);
1411
1412 /* The symbolic header contains absolute file offsets and sizes to
1413 read. */
1414#define READ(ptr, offset, count, size, type) \
1f4361a7 1415 do \
b49e97c9 1416 { \
1f4361a7
AM
1417 size_t amt; \
1418 debug->ptr = NULL; \
1419 if (symhdr->count == 0) \
1420 break; \
1421 if (_bfd_mul_overflow (size, symhdr->count, &amt)) \
1422 { \
1423 bfd_set_error (bfd_error_file_too_big); \
1424 goto error_return; \
1425 } \
2bb3687b 1426 if (bfd_seek (abfd, symhdr->offset, SEEK_SET) != 0) \
b49e97c9 1427 goto error_return; \
2bb3687b
AM
1428 debug->ptr = (type) _bfd_malloc_and_read (abfd, amt, amt); \
1429 if (debug->ptr == NULL) \
b49e97c9 1430 goto error_return; \
1f4361a7 1431 } while (0)
b49e97c9
TS
1432
1433 READ (line, cbLineOffset, cbLine, sizeof (unsigned char), unsigned char *);
9719ad41
RS
1434 READ (external_dnr, cbDnOffset, idnMax, swap->external_dnr_size, void *);
1435 READ (external_pdr, cbPdOffset, ipdMax, swap->external_pdr_size, void *);
1436 READ (external_sym, cbSymOffset, isymMax, swap->external_sym_size, void *);
1437 READ (external_opt, cbOptOffset, ioptMax, swap->external_opt_size, void *);
b49e97c9
TS
1438 READ (external_aux, cbAuxOffset, iauxMax, sizeof (union aux_ext),
1439 union aux_ext *);
1440 READ (ss, cbSsOffset, issMax, sizeof (char), char *);
1441 READ (ssext, cbSsExtOffset, issExtMax, sizeof (char), char *);
9719ad41
RS
1442 READ (external_fdr, cbFdOffset, ifdMax, swap->external_fdr_size, void *);
1443 READ (external_rfd, cbRfdOffset, crfd, swap->external_rfd_size, void *);
1444 READ (external_ext, cbExtOffset, iextMax, swap->external_ext_size, void *);
b49e97c9
TS
1445#undef READ
1446
1447 debug->fdr = NULL;
b49e97c9 1448
b34976b6 1449 return TRUE;
b49e97c9
TS
1450
1451 error_return:
c9594989
AM
1452 free (ext_hdr);
1453 free (debug->line);
1454 free (debug->external_dnr);
1455 free (debug->external_pdr);
1456 free (debug->external_sym);
1457 free (debug->external_opt);
1458 free (debug->external_aux);
1459 free (debug->ss);
1460 free (debug->ssext);
1461 free (debug->external_fdr);
1462 free (debug->external_rfd);
1463 free (debug->external_ext);
b34976b6 1464 return FALSE;
b49e97c9
TS
1465}
1466\f
1467/* Swap RPDR (runtime procedure table entry) for output. */
1468
1469static void
9719ad41 1470ecoff_swap_rpdr_out (bfd *abfd, const RPDR *in, struct rpdr_ext *ex)
b49e97c9
TS
1471{
1472 H_PUT_S32 (abfd, in->adr, ex->p_adr);
1473 H_PUT_32 (abfd, in->regmask, ex->p_regmask);
1474 H_PUT_32 (abfd, in->regoffset, ex->p_regoffset);
1475 H_PUT_32 (abfd, in->fregmask, ex->p_fregmask);
1476 H_PUT_32 (abfd, in->fregoffset, ex->p_fregoffset);
1477 H_PUT_32 (abfd, in->frameoffset, ex->p_frameoffset);
1478
1479 H_PUT_16 (abfd, in->framereg, ex->p_framereg);
1480 H_PUT_16 (abfd, in->pcreg, ex->p_pcreg);
1481
1482 H_PUT_32 (abfd, in->irpss, ex->p_irpss);
b49e97c9
TS
1483}
1484
1485/* Create a runtime procedure table from the .mdebug section. */
1486
b34976b6 1487static bfd_boolean
9719ad41
RS
1488mips_elf_create_procedure_table (void *handle, bfd *abfd,
1489 struct bfd_link_info *info, asection *s,
1490 struct ecoff_debug_info *debug)
b49e97c9
TS
1491{
1492 const struct ecoff_debug_swap *swap;
1493 HDRR *hdr = &debug->symbolic_header;
1494 RPDR *rpdr, *rp;
1495 struct rpdr_ext *erp;
9719ad41 1496 void *rtproc;
b49e97c9
TS
1497 struct pdr_ext *epdr;
1498 struct sym_ext *esym;
1499 char *ss, **sv;
1500 char *str;
1501 bfd_size_type size;
1502 bfd_size_type count;
1503 unsigned long sindex;
1504 unsigned long i;
1505 PDR pdr;
1506 SYMR sym;
1507 const char *no_name_func = _("static procedure (no name)");
1508
1509 epdr = NULL;
1510 rpdr = NULL;
1511 esym = NULL;
1512 ss = NULL;
1513 sv = NULL;
1514
1515 swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
1516
1517 sindex = strlen (no_name_func) + 1;
1518 count = hdr->ipdMax;
1519 if (count > 0)
1520 {
1521 size = swap->external_pdr_size;
1522
9719ad41 1523 epdr = bfd_malloc (size * count);
b49e97c9
TS
1524 if (epdr == NULL)
1525 goto error_return;
1526
9719ad41 1527 if (! _bfd_ecoff_get_accumulated_pdr (handle, (bfd_byte *) epdr))
b49e97c9
TS
1528 goto error_return;
1529
1530 size = sizeof (RPDR);
9719ad41 1531 rp = rpdr = bfd_malloc (size * count);
b49e97c9
TS
1532 if (rpdr == NULL)
1533 goto error_return;
1534
1535 size = sizeof (char *);
9719ad41 1536 sv = bfd_malloc (size * count);
b49e97c9
TS
1537 if (sv == NULL)
1538 goto error_return;
1539
1540 count = hdr->isymMax;
1541 size = swap->external_sym_size;
9719ad41 1542 esym = bfd_malloc (size * count);
b49e97c9
TS
1543 if (esym == NULL)
1544 goto error_return;
1545
9719ad41 1546 if (! _bfd_ecoff_get_accumulated_sym (handle, (bfd_byte *) esym))
b49e97c9
TS
1547 goto error_return;
1548
1549 count = hdr->issMax;
9719ad41 1550 ss = bfd_malloc (count);
b49e97c9
TS
1551 if (ss == NULL)
1552 goto error_return;
f075ee0c 1553 if (! _bfd_ecoff_get_accumulated_ss (handle, (bfd_byte *) ss))
b49e97c9
TS
1554 goto error_return;
1555
1556 count = hdr->ipdMax;
1557 for (i = 0; i < (unsigned long) count; i++, rp++)
1558 {
9719ad41
RS
1559 (*swap->swap_pdr_in) (abfd, epdr + i, &pdr);
1560 (*swap->swap_sym_in) (abfd, &esym[pdr.isym], &sym);
b49e97c9
TS
1561 rp->adr = sym.value;
1562 rp->regmask = pdr.regmask;
1563 rp->regoffset = pdr.regoffset;
1564 rp->fregmask = pdr.fregmask;
1565 rp->fregoffset = pdr.fregoffset;
1566 rp->frameoffset = pdr.frameoffset;
1567 rp->framereg = pdr.framereg;
1568 rp->pcreg = pdr.pcreg;
1569 rp->irpss = sindex;
1570 sv[i] = ss + sym.iss;
1571 sindex += strlen (sv[i]) + 1;
1572 }
1573 }
1574
1575 size = sizeof (struct rpdr_ext) * (count + 2) + sindex;
1576 size = BFD_ALIGN (size, 16);
9719ad41 1577 rtproc = bfd_alloc (abfd, size);
b49e97c9
TS
1578 if (rtproc == NULL)
1579 {
1580 mips_elf_hash_table (info)->procedure_count = 0;
1581 goto error_return;
1582 }
1583
1584 mips_elf_hash_table (info)->procedure_count = count + 2;
1585
9719ad41 1586 erp = rtproc;
b49e97c9
TS
1587 memset (erp, 0, sizeof (struct rpdr_ext));
1588 erp++;
1589 str = (char *) rtproc + sizeof (struct rpdr_ext) * (count + 2);
1590 strcpy (str, no_name_func);
1591 str += strlen (no_name_func) + 1;
1592 for (i = 0; i < count; i++)
1593 {
1594 ecoff_swap_rpdr_out (abfd, rpdr + i, erp + i);
1595 strcpy (str, sv[i]);
1596 str += strlen (sv[i]) + 1;
1597 }
1598 H_PUT_S32 (abfd, -1, (erp + count)->p_adr);
1599
1600 /* Set the size and contents of .rtproc section. */
eea6121a 1601 s->size = size;
9719ad41 1602 s->contents = rtproc;
b49e97c9
TS
1603
1604 /* Skip this section later on (I don't think this currently
1605 matters, but someday it might). */
8423293d 1606 s->map_head.link_order = NULL;
b49e97c9 1607
c9594989
AM
1608 free (epdr);
1609 free (rpdr);
1610 free (esym);
1611 free (ss);
1612 free (sv);
b34976b6 1613 return TRUE;
b49e97c9
TS
1614
1615 error_return:
c9594989
AM
1616 free (epdr);
1617 free (rpdr);
1618 free (esym);
1619 free (ss);
1620 free (sv);
b34976b6 1621 return FALSE;
b49e97c9 1622}
738e5348 1623\f
861fb55a
DJ
1624/* We're going to create a stub for H. Create a symbol for the stub's
1625 value and size, to help make the disassembly easier to read. */
1626
1627static bfd_boolean
1628mips_elf_create_stub_symbol (struct bfd_link_info *info,
1629 struct mips_elf_link_hash_entry *h,
1630 const char *prefix, asection *s, bfd_vma value,
1631 bfd_vma size)
1632{
a848a227 1633 bfd_boolean micromips_p = ELF_ST_IS_MICROMIPS (h->root.other);
861fb55a
DJ
1634 struct bfd_link_hash_entry *bh;
1635 struct elf_link_hash_entry *elfh;
e1fa0163
NC
1636 char *name;
1637 bfd_boolean res;
861fb55a 1638
a848a227 1639 if (micromips_p)
df58fc94
RS
1640 value |= 1;
1641
861fb55a 1642 /* Create a new symbol. */
e1fa0163 1643 name = concat (prefix, h->root.root.root.string, NULL);
861fb55a 1644 bh = NULL;
e1fa0163
NC
1645 res = _bfd_generic_link_add_one_symbol (info, s->owner, name,
1646 BSF_LOCAL, s, value, NULL,
1647 TRUE, FALSE, &bh);
1648 free (name);
1649 if (! res)
861fb55a
DJ
1650 return FALSE;
1651
1652 /* Make it a local function. */
1653 elfh = (struct elf_link_hash_entry *) bh;
1654 elfh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
1655 elfh->size = size;
1656 elfh->forced_local = 1;
a848a227
MR
1657 if (micromips_p)
1658 elfh->other = ELF_ST_SET_MICROMIPS (elfh->other);
861fb55a
DJ
1659 return TRUE;
1660}
1661
738e5348
RS
1662/* We're about to redefine H. Create a symbol to represent H's
1663 current value and size, to help make the disassembly easier
1664 to read. */
1665
1666static bfd_boolean
1667mips_elf_create_shadow_symbol (struct bfd_link_info *info,
1668 struct mips_elf_link_hash_entry *h,
1669 const char *prefix)
1670{
1671 struct bfd_link_hash_entry *bh;
1672 struct elf_link_hash_entry *elfh;
e1fa0163 1673 char *name;
738e5348
RS
1674 asection *s;
1675 bfd_vma value;
e1fa0163 1676 bfd_boolean res;
738e5348
RS
1677
1678 /* Read the symbol's value. */
1679 BFD_ASSERT (h->root.root.type == bfd_link_hash_defined
1680 || h->root.root.type == bfd_link_hash_defweak);
1681 s = h->root.root.u.def.section;
1682 value = h->root.root.u.def.value;
1683
1684 /* Create a new symbol. */
e1fa0163 1685 name = concat (prefix, h->root.root.root.string, NULL);
738e5348 1686 bh = NULL;
e1fa0163
NC
1687 res = _bfd_generic_link_add_one_symbol (info, s->owner, name,
1688 BSF_LOCAL, s, value, NULL,
1689 TRUE, FALSE, &bh);
1690 free (name);
1691 if (! res)
738e5348
RS
1692 return FALSE;
1693
1694 /* Make it local and copy the other attributes from H. */
1695 elfh = (struct elf_link_hash_entry *) bh;
1696 elfh->type = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (h->root.type));
1697 elfh->other = h->root.other;
1698 elfh->size = h->root.size;
1699 elfh->forced_local = 1;
1700 return TRUE;
1701}
1702
1703/* Return TRUE if relocations in SECTION can refer directly to a MIPS16
1704 function rather than to a hard-float stub. */
1705
1706static bfd_boolean
1707section_allows_mips16_refs_p (asection *section)
1708{
1709 const char *name;
1710
fd361982 1711 name = bfd_section_name (section);
738e5348
RS
1712 return (FN_STUB_P (name)
1713 || CALL_STUB_P (name)
1714 || CALL_FP_STUB_P (name)
1715 || strcmp (name, ".pdr") == 0);
1716}
1717
1718/* [RELOCS, RELEND) are the relocations against SEC, which is a MIPS16
1719 stub section of some kind. Return the R_SYMNDX of the target
1720 function, or 0 if we can't decide which function that is. */
1721
1722static unsigned long
cb4437b8
MR
1723mips16_stub_symndx (const struct elf_backend_data *bed,
1724 asection *sec ATTRIBUTE_UNUSED,
502e814e 1725 const Elf_Internal_Rela *relocs,
738e5348
RS
1726 const Elf_Internal_Rela *relend)
1727{
cb4437b8 1728 int int_rels_per_ext_rel = bed->s->int_rels_per_ext_rel;
738e5348
RS
1729 const Elf_Internal_Rela *rel;
1730
cb4437b8
MR
1731 /* Trust the first R_MIPS_NONE relocation, if any, but not a subsequent
1732 one in a compound relocation. */
1733 for (rel = relocs; rel < relend; rel += int_rels_per_ext_rel)
738e5348
RS
1734 if (ELF_R_TYPE (sec->owner, rel->r_info) == R_MIPS_NONE)
1735 return ELF_R_SYM (sec->owner, rel->r_info);
1736
1737 /* Otherwise trust the first relocation, whatever its kind. This is
1738 the traditional behavior. */
1739 if (relocs < relend)
1740 return ELF_R_SYM (sec->owner, relocs->r_info);
1741
1742 return 0;
1743}
b49e97c9
TS
1744
1745/* Check the mips16 stubs for a particular symbol, and see if we can
1746 discard them. */
1747
861fb55a
DJ
1748static void
1749mips_elf_check_mips16_stubs (struct bfd_link_info *info,
1750 struct mips_elf_link_hash_entry *h)
b49e97c9 1751{
738e5348
RS
1752 /* Dynamic symbols must use the standard call interface, in case other
1753 objects try to call them. */
1754 if (h->fn_stub != NULL
1755 && h->root.dynindx != -1)
1756 {
1757 mips_elf_create_shadow_symbol (info, h, ".mips16.");
1758 h->need_fn_stub = TRUE;
1759 }
1760
b49e97c9
TS
1761 if (h->fn_stub != NULL
1762 && ! h->need_fn_stub)
1763 {
1764 /* We don't need the fn_stub; the only references to this symbol
07d6d2b8
AM
1765 are 16 bit calls. Clobber the size to 0 to prevent it from
1766 being included in the link. */
eea6121a 1767 h->fn_stub->size = 0;
b49e97c9
TS
1768 h->fn_stub->flags &= ~SEC_RELOC;
1769 h->fn_stub->reloc_count = 0;
1770 h->fn_stub->flags |= SEC_EXCLUDE;
ca9584fb 1771 h->fn_stub->output_section = bfd_abs_section_ptr;
b49e97c9
TS
1772 }
1773
1774 if (h->call_stub != NULL
30c09090 1775 && ELF_ST_IS_MIPS16 (h->root.other))
b49e97c9
TS
1776 {
1777 /* We don't need the call_stub; this is a 16 bit function, so
07d6d2b8
AM
1778 calls from other 16 bit functions are OK. Clobber the size
1779 to 0 to prevent it from being included in the link. */
eea6121a 1780 h->call_stub->size = 0;
b49e97c9
TS
1781 h->call_stub->flags &= ~SEC_RELOC;
1782 h->call_stub->reloc_count = 0;
1783 h->call_stub->flags |= SEC_EXCLUDE;
ca9584fb 1784 h->call_stub->output_section = bfd_abs_section_ptr;
b49e97c9
TS
1785 }
1786
1787 if (h->call_fp_stub != NULL
30c09090 1788 && ELF_ST_IS_MIPS16 (h->root.other))
b49e97c9
TS
1789 {
1790 /* We don't need the call_stub; this is a 16 bit function, so
07d6d2b8
AM
1791 calls from other 16 bit functions are OK. Clobber the size
1792 to 0 to prevent it from being included in the link. */
eea6121a 1793 h->call_fp_stub->size = 0;
b49e97c9
TS
1794 h->call_fp_stub->flags &= ~SEC_RELOC;
1795 h->call_fp_stub->reloc_count = 0;
1796 h->call_fp_stub->flags |= SEC_EXCLUDE;
ca9584fb 1797 h->call_fp_stub->output_section = bfd_abs_section_ptr;
b49e97c9 1798 }
861fb55a
DJ
1799}
1800
1801/* Hashtable callbacks for mips_elf_la25_stubs. */
1802
1803static hashval_t
1804mips_elf_la25_stub_hash (const void *entry_)
1805{
1806 const struct mips_elf_la25_stub *entry;
1807
1808 entry = (struct mips_elf_la25_stub *) entry_;
1809 return entry->h->root.root.u.def.section->id
1810 + entry->h->root.root.u.def.value;
1811}
1812
1813static int
1814mips_elf_la25_stub_eq (const void *entry1_, const void *entry2_)
1815{
1816 const struct mips_elf_la25_stub *entry1, *entry2;
1817
1818 entry1 = (struct mips_elf_la25_stub *) entry1_;
1819 entry2 = (struct mips_elf_la25_stub *) entry2_;
1820 return ((entry1->h->root.root.u.def.section
1821 == entry2->h->root.root.u.def.section)
1822 && (entry1->h->root.root.u.def.value
1823 == entry2->h->root.root.u.def.value));
1824}
1825
1826/* Called by the linker to set up the la25 stub-creation code. FN is
1827 the linker's implementation of add_stub_function. Return true on
1828 success. */
1829
1830bfd_boolean
1831_bfd_mips_elf_init_stubs (struct bfd_link_info *info,
1832 asection *(*fn) (const char *, asection *,
1833 asection *))
1834{
1835 struct mips_elf_link_hash_table *htab;
1836
1837 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
1838 if (htab == NULL)
1839 return FALSE;
1840
861fb55a
DJ
1841 htab->add_stub_section = fn;
1842 htab->la25_stubs = htab_try_create (1, mips_elf_la25_stub_hash,
1843 mips_elf_la25_stub_eq, NULL);
1844 if (htab->la25_stubs == NULL)
1845 return FALSE;
1846
1847 return TRUE;
1848}
1849
1850/* Return true if H is a locally-defined PIC function, in the sense
8f0c309a
CLT
1851 that it or its fn_stub might need $25 to be valid on entry.
1852 Note that MIPS16 functions set up $gp using PC-relative instructions,
1853 so they themselves never need $25 to be valid. Only non-MIPS16
1854 entry points are of interest here. */
861fb55a
DJ
1855
1856static bfd_boolean
1857mips_elf_local_pic_function_p (struct mips_elf_link_hash_entry *h)
1858{
1859 return ((h->root.root.type == bfd_link_hash_defined
1860 || h->root.root.type == bfd_link_hash_defweak)
1861 && h->root.def_regular
1862 && !bfd_is_abs_section (h->root.root.u.def.section)
f02cb058 1863 && !bfd_is_und_section (h->root.root.u.def.section)
8f0c309a
CLT
1864 && (!ELF_ST_IS_MIPS16 (h->root.other)
1865 || (h->fn_stub && h->need_fn_stub))
861fb55a
DJ
1866 && (PIC_OBJECT_P (h->root.root.u.def.section->owner)
1867 || ELF_ST_IS_MIPS_PIC (h->root.other)));
1868}
1869
8f0c309a
CLT
1870/* Set *SEC to the input section that contains the target of STUB.
1871 Return the offset of the target from the start of that section. */
1872
1873static bfd_vma
1874mips_elf_get_la25_target (struct mips_elf_la25_stub *stub,
1875 asection **sec)
1876{
1877 if (ELF_ST_IS_MIPS16 (stub->h->root.other))
1878 {
1879 BFD_ASSERT (stub->h->need_fn_stub);
1880 *sec = stub->h->fn_stub;
1881 return 0;
1882 }
1883 else
1884 {
1885 *sec = stub->h->root.root.u.def.section;
1886 return stub->h->root.root.u.def.value;
1887 }
1888}
1889
861fb55a
DJ
1890/* STUB describes an la25 stub that we have decided to implement
1891 by inserting an LUI/ADDIU pair before the target function.
1892 Create the section and redirect the function symbol to it. */
1893
1894static bfd_boolean
1895mips_elf_add_la25_intro (struct mips_elf_la25_stub *stub,
1896 struct bfd_link_info *info)
1897{
1898 struct mips_elf_link_hash_table *htab;
1899 char *name;
1900 asection *s, *input_section;
1901 unsigned int align;
1902
1903 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
1904 if (htab == NULL)
1905 return FALSE;
861fb55a
DJ
1906
1907 /* Create a unique name for the new section. */
1908 name = bfd_malloc (11 + sizeof (".text.stub."));
1909 if (name == NULL)
1910 return FALSE;
1911 sprintf (name, ".text.stub.%d", (int) htab_elements (htab->la25_stubs));
1912
1913 /* Create the section. */
8f0c309a 1914 mips_elf_get_la25_target (stub, &input_section);
861fb55a
DJ
1915 s = htab->add_stub_section (name, input_section,
1916 input_section->output_section);
1917 if (s == NULL)
1918 return FALSE;
1919
1920 /* Make sure that any padding goes before the stub. */
1921 align = input_section->alignment_power;
fd361982 1922 if (!bfd_set_section_alignment (s, align))
861fb55a
DJ
1923 return FALSE;
1924 if (align > 3)
1925 s->size = (1 << align) - 8;
1926
1927 /* Create a symbol for the stub. */
1928 mips_elf_create_stub_symbol (info, stub->h, ".pic.", s, s->size, 8);
1929 stub->stub_section = s;
1930 stub->offset = s->size;
1931
1932 /* Allocate room for it. */
1933 s->size += 8;
1934 return TRUE;
1935}
1936
1937/* STUB describes an la25 stub that we have decided to implement
1938 with a separate trampoline. Allocate room for it and redirect
1939 the function symbol to it. */
1940
1941static bfd_boolean
1942mips_elf_add_la25_trampoline (struct mips_elf_la25_stub *stub,
1943 struct bfd_link_info *info)
1944{
1945 struct mips_elf_link_hash_table *htab;
1946 asection *s;
1947
1948 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
1949 if (htab == NULL)
1950 return FALSE;
861fb55a
DJ
1951
1952 /* Create a trampoline section, if we haven't already. */
1953 s = htab->strampoline;
1954 if (s == NULL)
1955 {
1956 asection *input_section = stub->h->root.root.u.def.section;
1957 s = htab->add_stub_section (".text", NULL,
1958 input_section->output_section);
fd361982 1959 if (s == NULL || !bfd_set_section_alignment (s, 4))
861fb55a
DJ
1960 return FALSE;
1961 htab->strampoline = s;
1962 }
1963
1964 /* Create a symbol for the stub. */
1965 mips_elf_create_stub_symbol (info, stub->h, ".pic.", s, s->size, 16);
1966 stub->stub_section = s;
1967 stub->offset = s->size;
1968
1969 /* Allocate room for it. */
1970 s->size += 16;
1971 return TRUE;
1972}
1973
1974/* H describes a symbol that needs an la25 stub. Make sure that an
1975 appropriate stub exists and point H at it. */
1976
1977static bfd_boolean
1978mips_elf_add_la25_stub (struct bfd_link_info *info,
1979 struct mips_elf_link_hash_entry *h)
1980{
1981 struct mips_elf_link_hash_table *htab;
1982 struct mips_elf_la25_stub search, *stub;
1983 bfd_boolean use_trampoline_p;
1984 asection *s;
1985 bfd_vma value;
1986 void **slot;
1987
861fb55a
DJ
1988 /* Describe the stub we want. */
1989 search.stub_section = NULL;
1990 search.offset = 0;
1991 search.h = h;
1992
1993 /* See if we've already created an equivalent stub. */
1994 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
1995 if (htab == NULL)
1996 return FALSE;
1997
861fb55a
DJ
1998 slot = htab_find_slot (htab->la25_stubs, &search, INSERT);
1999 if (slot == NULL)
2000 return FALSE;
2001
2002 stub = (struct mips_elf_la25_stub *) *slot;
2003 if (stub != NULL)
2004 {
2005 /* We can reuse the existing stub. */
2006 h->la25_stub = stub;
2007 return TRUE;
2008 }
2009
2010 /* Create a permanent copy of ENTRY and add it to the hash table. */
2011 stub = bfd_malloc (sizeof (search));
2012 if (stub == NULL)
2013 return FALSE;
2014 *stub = search;
2015 *slot = stub;
2016
8f0c309a
CLT
2017 /* Prefer to use LUI/ADDIU stubs if the function is at the beginning
2018 of the section and if we would need no more than 2 nops. */
2019 value = mips_elf_get_la25_target (stub, &s);
fe152e64
MR
2020 if (ELF_ST_IS_MICROMIPS (stub->h->root.other))
2021 value &= ~1;
8f0c309a
CLT
2022 use_trampoline_p = (value != 0 || s->alignment_power > 4);
2023
861fb55a
DJ
2024 h->la25_stub = stub;
2025 return (use_trampoline_p
2026 ? mips_elf_add_la25_trampoline (stub, info)
2027 : mips_elf_add_la25_intro (stub, info));
2028}
2029
2030/* A mips_elf_link_hash_traverse callback that is called before sizing
2031 sections. DATA points to a mips_htab_traverse_info structure. */
2032
2033static bfd_boolean
2034mips_elf_check_symbols (struct mips_elf_link_hash_entry *h, void *data)
2035{
2036 struct mips_htab_traverse_info *hti;
2037
2038 hti = (struct mips_htab_traverse_info *) data;
0e1862bb 2039 if (!bfd_link_relocatable (hti->info))
861fb55a 2040 mips_elf_check_mips16_stubs (hti->info, h);
b49e97c9 2041
861fb55a
DJ
2042 if (mips_elf_local_pic_function_p (h))
2043 {
ba85c43e
NC
2044 /* PR 12845: If H is in a section that has been garbage
2045 collected it will have its output section set to *ABS*. */
2046 if (bfd_is_abs_section (h->root.root.u.def.section->output_section))
2047 return TRUE;
2048
861fb55a
DJ
2049 /* H is a function that might need $25 to be valid on entry.
2050 If we're creating a non-PIC relocatable object, mark H as
2051 being PIC. If we're creating a non-relocatable object with
2052 non-PIC branches and jumps to H, make sure that H has an la25
2053 stub. */
0e1862bb 2054 if (bfd_link_relocatable (hti->info))
861fb55a
DJ
2055 {
2056 if (!PIC_OBJECT_P (hti->output_bfd))
2057 h->root.other = ELF_ST_SET_MIPS_PIC (h->root.other);
2058 }
2059 else if (h->has_nonpic_branches && !mips_elf_add_la25_stub (hti->info, h))
2060 {
2061 hti->error = TRUE;
2062 return FALSE;
2063 }
2064 }
b34976b6 2065 return TRUE;
b49e97c9
TS
2066}
2067\f
d6f16593
MR
2068/* R_MIPS16_26 is used for the mips16 jal and jalx instructions.
2069 Most mips16 instructions are 16 bits, but these instructions
2070 are 32 bits.
2071
2072 The format of these instructions is:
2073
2074 +--------------+--------------------------------+
2075 | JALX | X| Imm 20:16 | Imm 25:21 |
2076 +--------------+--------------------------------+
07d6d2b8 2077 | Immediate 15:0 |
d6f16593
MR
2078 +-----------------------------------------------+
2079
2080 JALX is the 5-bit value 00011. X is 0 for jal, 1 for jalx.
2081 Note that the immediate value in the first word is swapped.
2082
2083 When producing a relocatable object file, R_MIPS16_26 is
2084 handled mostly like R_MIPS_26. In particular, the addend is
2085 stored as a straight 26-bit value in a 32-bit instruction.
2086 (gas makes life simpler for itself by never adjusting a
2087 R_MIPS16_26 reloc to be against a section, so the addend is
2088 always zero). However, the 32 bit instruction is stored as 2
2089 16-bit values, rather than a single 32-bit value. In a
2090 big-endian file, the result is the same; in a little-endian
2091 file, the two 16-bit halves of the 32 bit value are swapped.
2092 This is so that a disassembler can recognize the jal
2093 instruction.
2094
2095 When doing a final link, R_MIPS16_26 is treated as a 32 bit
2096 instruction stored as two 16-bit values. The addend A is the
2097 contents of the targ26 field. The calculation is the same as
2098 R_MIPS_26. When storing the calculated value, reorder the
2099 immediate value as shown above, and don't forget to store the
2100 value as two 16-bit values.
2101
2102 To put it in MIPS ABI terms, the relocation field is T-targ26-16,
2103 defined as
2104
2105 big-endian:
2106 +--------+----------------------+
07d6d2b8
AM
2107 | | |
2108 | | targ26-16 |
2109 |31 26|25 0|
d6f16593
MR
2110 +--------+----------------------+
2111
2112 little-endian:
2113 +----------+------+-------------+
07d6d2b8
AM
2114 | | | |
2115 | sub1 | | sub2 |
2116 |0 9|10 15|16 31|
d6f16593
MR
2117 +----------+--------------------+
2118 where targ26-16 is sub1 followed by sub2 (i.e., the addend field A is
2119 ((sub1 << 16) | sub2)).
2120
2121 When producing a relocatable object file, the calculation is
2122 (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
2123 When producing a fully linked file, the calculation is
2124 let R = (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
2125 ((R & 0x1f0000) << 5) | ((R & 0x3e00000) >> 5) | (R & 0xffff)
2126
738e5348
RS
2127 The table below lists the other MIPS16 instruction relocations.
2128 Each one is calculated in the same way as the non-MIPS16 relocation
2129 given on the right, but using the extended MIPS16 layout of 16-bit
2130 immediate fields:
2131
2132 R_MIPS16_GPREL R_MIPS_GPREL16
2133 R_MIPS16_GOT16 R_MIPS_GOT16
2134 R_MIPS16_CALL16 R_MIPS_CALL16
2135 R_MIPS16_HI16 R_MIPS_HI16
2136 R_MIPS16_LO16 R_MIPS_LO16
2137
2138 A typical instruction will have a format like this:
d6f16593
MR
2139
2140 +--------------+--------------------------------+
2141 | EXTEND | Imm 10:5 | Imm 15:11 |
2142 +--------------+--------------------------------+
2143 | Major | rx | ry | Imm 4:0 |
2144 +--------------+--------------------------------+
2145
2146 EXTEND is the five bit value 11110. Major is the instruction
2147 opcode.
2148
738e5348
RS
2149 All we need to do here is shuffle the bits appropriately.
2150 As above, the two 16-bit halves must be swapped on a
c9775dde
MR
2151 little-endian system.
2152
2153 Finally R_MIPS16_PC16_S1 corresponds to R_MIPS_PC16, however the
2154 relocatable field is shifted by 1 rather than 2 and the same bit
2155 shuffling is done as with the relocations above. */
738e5348
RS
2156
2157static inline bfd_boolean
2158mips16_reloc_p (int r_type)
2159{
2160 switch (r_type)
2161 {
2162 case R_MIPS16_26:
2163 case R_MIPS16_GPREL:
2164 case R_MIPS16_GOT16:
2165 case R_MIPS16_CALL16:
2166 case R_MIPS16_HI16:
2167 case R_MIPS16_LO16:
d0f13682
CLT
2168 case R_MIPS16_TLS_GD:
2169 case R_MIPS16_TLS_LDM:
2170 case R_MIPS16_TLS_DTPREL_HI16:
2171 case R_MIPS16_TLS_DTPREL_LO16:
2172 case R_MIPS16_TLS_GOTTPREL:
2173 case R_MIPS16_TLS_TPREL_HI16:
2174 case R_MIPS16_TLS_TPREL_LO16:
c9775dde 2175 case R_MIPS16_PC16_S1:
738e5348
RS
2176 return TRUE;
2177
2178 default:
2179 return FALSE;
2180 }
2181}
2182
df58fc94
RS
2183/* Check if a microMIPS reloc. */
2184
2185static inline bfd_boolean
2186micromips_reloc_p (unsigned int r_type)
2187{
2188 return r_type >= R_MICROMIPS_min && r_type < R_MICROMIPS_max;
2189}
2190
2191/* Similar to MIPS16, the two 16-bit halves in microMIPS must be swapped
2192 on a little-endian system. This does not apply to R_MICROMIPS_PC7_S1
2193 and R_MICROMIPS_PC10_S1 relocs that apply to 16-bit instructions. */
2194
2195static inline bfd_boolean
2196micromips_reloc_shuffle_p (unsigned int r_type)
2197{
2198 return (micromips_reloc_p (r_type)
2199 && r_type != R_MICROMIPS_PC7_S1
2200 && r_type != R_MICROMIPS_PC10_S1);
2201}
2202
738e5348
RS
2203static inline bfd_boolean
2204got16_reloc_p (int r_type)
2205{
df58fc94
RS
2206 return (r_type == R_MIPS_GOT16
2207 || r_type == R_MIPS16_GOT16
2208 || r_type == R_MICROMIPS_GOT16);
738e5348
RS
2209}
2210
2211static inline bfd_boolean
2212call16_reloc_p (int r_type)
2213{
df58fc94
RS
2214 return (r_type == R_MIPS_CALL16
2215 || r_type == R_MIPS16_CALL16
2216 || r_type == R_MICROMIPS_CALL16);
2217}
2218
2219static inline bfd_boolean
2220got_disp_reloc_p (unsigned int r_type)
2221{
2222 return r_type == R_MIPS_GOT_DISP || r_type == R_MICROMIPS_GOT_DISP;
2223}
2224
2225static inline bfd_boolean
2226got_page_reloc_p (unsigned int r_type)
2227{
2228 return r_type == R_MIPS_GOT_PAGE || r_type == R_MICROMIPS_GOT_PAGE;
2229}
2230
df58fc94
RS
2231static inline bfd_boolean
2232got_lo16_reloc_p (unsigned int r_type)
2233{
2234 return r_type == R_MIPS_GOT_LO16 || r_type == R_MICROMIPS_GOT_LO16;
2235}
2236
2237static inline bfd_boolean
2238call_hi16_reloc_p (unsigned int r_type)
2239{
2240 return r_type == R_MIPS_CALL_HI16 || r_type == R_MICROMIPS_CALL_HI16;
2241}
2242
2243static inline bfd_boolean
2244call_lo16_reloc_p (unsigned int r_type)
2245{
2246 return r_type == R_MIPS_CALL_LO16 || r_type == R_MICROMIPS_CALL_LO16;
738e5348
RS
2247}
2248
2249static inline bfd_boolean
2250hi16_reloc_p (int r_type)
2251{
df58fc94
RS
2252 return (r_type == R_MIPS_HI16
2253 || r_type == R_MIPS16_HI16
7361da2c
AB
2254 || r_type == R_MICROMIPS_HI16
2255 || r_type == R_MIPS_PCHI16);
738e5348 2256}
d6f16593 2257
738e5348
RS
2258static inline bfd_boolean
2259lo16_reloc_p (int r_type)
2260{
df58fc94
RS
2261 return (r_type == R_MIPS_LO16
2262 || r_type == R_MIPS16_LO16
7361da2c
AB
2263 || r_type == R_MICROMIPS_LO16
2264 || r_type == R_MIPS_PCLO16);
738e5348
RS
2265}
2266
2267static inline bfd_boolean
2268mips16_call_reloc_p (int r_type)
2269{
2270 return r_type == R_MIPS16_26 || r_type == R_MIPS16_CALL16;
2271}
d6f16593 2272
38a7df63
CF
2273static inline bfd_boolean
2274jal_reloc_p (int r_type)
2275{
df58fc94
RS
2276 return (r_type == R_MIPS_26
2277 || r_type == R_MIPS16_26
2278 || r_type == R_MICROMIPS_26_S1);
2279}
2280
99aefae6
MR
2281static inline bfd_boolean
2282b_reloc_p (int r_type)
2283{
2284 return (r_type == R_MIPS_PC26_S2
2285 || r_type == R_MIPS_PC21_S2
2286 || r_type == R_MIPS_PC16
c9775dde 2287 || r_type == R_MIPS_GNU_REL16_S2
9d862524
MR
2288 || r_type == R_MIPS16_PC16_S1
2289 || r_type == R_MICROMIPS_PC16_S1
2290 || r_type == R_MICROMIPS_PC10_S1
2291 || r_type == R_MICROMIPS_PC7_S1);
99aefae6
MR
2292}
2293
7361da2c
AB
2294static inline bfd_boolean
2295aligned_pcrel_reloc_p (int r_type)
2296{
2297 return (r_type == R_MIPS_PC18_S3
2298 || r_type == R_MIPS_PC19_S2);
2299}
2300
9d862524
MR
2301static inline bfd_boolean
2302branch_reloc_p (int r_type)
2303{
2304 return (r_type == R_MIPS_26
2305 || r_type == R_MIPS_PC26_S2
2306 || r_type == R_MIPS_PC21_S2
2307 || r_type == R_MIPS_PC16
2308 || r_type == R_MIPS_GNU_REL16_S2);
2309}
2310
c9775dde
MR
2311static inline bfd_boolean
2312mips16_branch_reloc_p (int r_type)
2313{
2314 return (r_type == R_MIPS16_26
2315 || r_type == R_MIPS16_PC16_S1);
2316}
2317
df58fc94
RS
2318static inline bfd_boolean
2319micromips_branch_reloc_p (int r_type)
2320{
2321 return (r_type == R_MICROMIPS_26_S1
2322 || r_type == R_MICROMIPS_PC16_S1
2323 || r_type == R_MICROMIPS_PC10_S1
2324 || r_type == R_MICROMIPS_PC7_S1);
2325}
2326
2327static inline bfd_boolean
2328tls_gd_reloc_p (unsigned int r_type)
2329{
d0f13682
CLT
2330 return (r_type == R_MIPS_TLS_GD
2331 || r_type == R_MIPS16_TLS_GD
2332 || r_type == R_MICROMIPS_TLS_GD);
df58fc94
RS
2333}
2334
2335static inline bfd_boolean
2336tls_ldm_reloc_p (unsigned int r_type)
2337{
d0f13682
CLT
2338 return (r_type == R_MIPS_TLS_LDM
2339 || r_type == R_MIPS16_TLS_LDM
2340 || r_type == R_MICROMIPS_TLS_LDM);
df58fc94
RS
2341}
2342
2343static inline bfd_boolean
2344tls_gottprel_reloc_p (unsigned int r_type)
2345{
d0f13682
CLT
2346 return (r_type == R_MIPS_TLS_GOTTPREL
2347 || r_type == R_MIPS16_TLS_GOTTPREL
2348 || r_type == R_MICROMIPS_TLS_GOTTPREL);
38a7df63
CF
2349}
2350
d6f16593 2351void
df58fc94
RS
2352_bfd_mips_elf_reloc_unshuffle (bfd *abfd, int r_type,
2353 bfd_boolean jal_shuffle, bfd_byte *data)
d6f16593 2354{
df58fc94 2355 bfd_vma first, second, val;
d6f16593 2356
df58fc94 2357 if (!mips16_reloc_p (r_type) && !micromips_reloc_shuffle_p (r_type))
d6f16593
MR
2358 return;
2359
df58fc94
RS
2360 /* Pick up the first and second halfwords of the instruction. */
2361 first = bfd_get_16 (abfd, data);
2362 second = bfd_get_16 (abfd, data + 2);
2363 if (micromips_reloc_p (r_type) || (r_type == R_MIPS16_26 && !jal_shuffle))
2364 val = first << 16 | second;
2365 else if (r_type != R_MIPS16_26)
2366 val = (((first & 0xf800) << 16) | ((second & 0xffe0) << 11)
2367 | ((first & 0x1f) << 11) | (first & 0x7e0) | (second & 0x1f));
d6f16593 2368 else
df58fc94
RS
2369 val = (((first & 0xfc00) << 16) | ((first & 0x3e0) << 11)
2370 | ((first & 0x1f) << 21) | second);
d6f16593
MR
2371 bfd_put_32 (abfd, val, data);
2372}
2373
2374void
df58fc94
RS
2375_bfd_mips_elf_reloc_shuffle (bfd *abfd, int r_type,
2376 bfd_boolean jal_shuffle, bfd_byte *data)
d6f16593 2377{
df58fc94 2378 bfd_vma first, second, val;
d6f16593 2379
df58fc94 2380 if (!mips16_reloc_p (r_type) && !micromips_reloc_shuffle_p (r_type))
d6f16593
MR
2381 return;
2382
2383 val = bfd_get_32 (abfd, data);
df58fc94 2384 if (micromips_reloc_p (r_type) || (r_type == R_MIPS16_26 && !jal_shuffle))
d6f16593 2385 {
df58fc94
RS
2386 second = val & 0xffff;
2387 first = val >> 16;
2388 }
2389 else if (r_type != R_MIPS16_26)
2390 {
2391 second = ((val >> 11) & 0xffe0) | (val & 0x1f);
2392 first = ((val >> 16) & 0xf800) | ((val >> 11) & 0x1f) | (val & 0x7e0);
d6f16593
MR
2393 }
2394 else
2395 {
df58fc94
RS
2396 second = val & 0xffff;
2397 first = ((val >> 16) & 0xfc00) | ((val >> 11) & 0x3e0)
2398 | ((val >> 21) & 0x1f);
d6f16593 2399 }
df58fc94
RS
2400 bfd_put_16 (abfd, second, data + 2);
2401 bfd_put_16 (abfd, first, data);
d6f16593
MR
2402}
2403
b49e97c9 2404bfd_reloc_status_type
9719ad41
RS
2405_bfd_mips_elf_gprel16_with_gp (bfd *abfd, asymbol *symbol,
2406 arelent *reloc_entry, asection *input_section,
2407 bfd_boolean relocatable, void *data, bfd_vma gp)
b49e97c9
TS
2408{
2409 bfd_vma relocation;
a7ebbfdf 2410 bfd_signed_vma val;
30ac9238 2411 bfd_reloc_status_type status;
b49e97c9
TS
2412
2413 if (bfd_is_com_section (symbol->section))
2414 relocation = 0;
2415 else
2416 relocation = symbol->value;
2417
2418 relocation += symbol->section->output_section->vma;
2419 relocation += symbol->section->output_offset;
2420
07515404 2421 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
b49e97c9
TS
2422 return bfd_reloc_outofrange;
2423
b49e97c9 2424 /* Set val to the offset into the section or symbol. */
a7ebbfdf
TS
2425 val = reloc_entry->addend;
2426
30ac9238 2427 _bfd_mips_elf_sign_extend (val, 16);
a7ebbfdf 2428
b49e97c9 2429 /* Adjust val for the final section location and GP value. If we
1049f94e 2430 are producing relocatable output, we don't want to do this for
b49e97c9 2431 an external symbol. */
1049f94e 2432 if (! relocatable
b49e97c9
TS
2433 || (symbol->flags & BSF_SECTION_SYM) != 0)
2434 val += relocation - gp;
2435
a7ebbfdf
TS
2436 if (reloc_entry->howto->partial_inplace)
2437 {
30ac9238
RS
2438 status = _bfd_relocate_contents (reloc_entry->howto, abfd, val,
2439 (bfd_byte *) data
2440 + reloc_entry->address);
2441 if (status != bfd_reloc_ok)
2442 return status;
a7ebbfdf
TS
2443 }
2444 else
2445 reloc_entry->addend = val;
b49e97c9 2446
1049f94e 2447 if (relocatable)
b49e97c9 2448 reloc_entry->address += input_section->output_offset;
30ac9238
RS
2449
2450 return bfd_reloc_ok;
2451}
2452
2453/* Used to store a REL high-part relocation such as R_MIPS_HI16 or
2454 R_MIPS_GOT16. REL is the relocation, INPUT_SECTION is the section
2455 that contains the relocation field and DATA points to the start of
2456 INPUT_SECTION. */
2457
2458struct mips_hi16
2459{
2460 struct mips_hi16 *next;
2461 bfd_byte *data;
2462 asection *input_section;
2463 arelent rel;
2464};
2465
2466/* FIXME: This should not be a static variable. */
2467
2468static struct mips_hi16 *mips_hi16_list;
2469
2470/* A howto special_function for REL *HI16 relocations. We can only
2471 calculate the correct value once we've seen the partnering
2472 *LO16 relocation, so just save the information for later.
2473
2474 The ABI requires that the *LO16 immediately follow the *HI16.
2475 However, as a GNU extension, we permit an arbitrary number of
2476 *HI16s to be associated with a single *LO16. This significantly
2477 simplies the relocation handling in gcc. */
2478
2479bfd_reloc_status_type
2480_bfd_mips_elf_hi16_reloc (bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry,
2481 asymbol *symbol ATTRIBUTE_UNUSED, void *data,
2482 asection *input_section, bfd *output_bfd,
2483 char **error_message ATTRIBUTE_UNUSED)
2484{
2485 struct mips_hi16 *n;
2486
07515404 2487 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
30ac9238
RS
2488 return bfd_reloc_outofrange;
2489
2490 n = bfd_malloc (sizeof *n);
2491 if (n == NULL)
2492 return bfd_reloc_outofrange;
2493
2494 n->next = mips_hi16_list;
2495 n->data = data;
2496 n->input_section = input_section;
2497 n->rel = *reloc_entry;
2498 mips_hi16_list = n;
2499
2500 if (output_bfd != NULL)
2501 reloc_entry->address += input_section->output_offset;
2502
2503 return bfd_reloc_ok;
2504}
2505
738e5348 2506/* A howto special_function for REL R_MIPS*_GOT16 relocations. This is just
30ac9238
RS
2507 like any other 16-bit relocation when applied to global symbols, but is
2508 treated in the same as R_MIPS_HI16 when applied to local symbols. */
2509
2510bfd_reloc_status_type
2511_bfd_mips_elf_got16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2512 void *data, asection *input_section,
2513 bfd *output_bfd, char **error_message)
2514{
2515 if ((symbol->flags & (BSF_GLOBAL | BSF_WEAK)) != 0
e6f7f6d1
AM
2516 || bfd_is_und_section (bfd_asymbol_section (symbol))
2517 || bfd_is_com_section (bfd_asymbol_section (symbol)))
30ac9238
RS
2518 /* The relocation is against a global symbol. */
2519 return _bfd_mips_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2520 input_section, output_bfd,
2521 error_message);
2522
2523 return _bfd_mips_elf_hi16_reloc (abfd, reloc_entry, symbol, data,
2524 input_section, output_bfd, error_message);
2525}
2526
2527/* A howto special_function for REL *LO16 relocations. The *LO16 itself
2528 is a straightforward 16 bit inplace relocation, but we must deal with
2529 any partnering high-part relocations as well. */
2530
2531bfd_reloc_status_type
2532_bfd_mips_elf_lo16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2533 void *data, asection *input_section,
2534 bfd *output_bfd, char **error_message)
2535{
2536 bfd_vma vallo;
d6f16593 2537 bfd_byte *location = (bfd_byte *) data + reloc_entry->address;
30ac9238 2538
07515404 2539 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
30ac9238
RS
2540 return bfd_reloc_outofrange;
2541
df58fc94 2542 _bfd_mips_elf_reloc_unshuffle (abfd, reloc_entry->howto->type, FALSE,
d6f16593 2543 location);
df58fc94
RS
2544 vallo = bfd_get_32 (abfd, location);
2545 _bfd_mips_elf_reloc_shuffle (abfd, reloc_entry->howto->type, FALSE,
2546 location);
d6f16593 2547
30ac9238
RS
2548 while (mips_hi16_list != NULL)
2549 {
2550 bfd_reloc_status_type ret;
2551 struct mips_hi16 *hi;
2552
2553 hi = mips_hi16_list;
2554
738e5348
RS
2555 /* R_MIPS*_GOT16 relocations are something of a special case. We
2556 want to install the addend in the same way as for a R_MIPS*_HI16
30ac9238
RS
2557 relocation (with a rightshift of 16). However, since GOT16
2558 relocations can also be used with global symbols, their howto
2559 has a rightshift of 0. */
2560 if (hi->rel.howto->type == R_MIPS_GOT16)
2561 hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MIPS_HI16, FALSE);
738e5348
RS
2562 else if (hi->rel.howto->type == R_MIPS16_GOT16)
2563 hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MIPS16_HI16, FALSE);
df58fc94
RS
2564 else if (hi->rel.howto->type == R_MICROMIPS_GOT16)
2565 hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MICROMIPS_HI16, FALSE);
30ac9238
RS
2566
2567 /* VALLO is a signed 16-bit number. Bias it by 0x8000 so that any
2568 carry or borrow will induce a change of +1 or -1 in the high part. */
2569 hi->rel.addend += (vallo + 0x8000) & 0xffff;
2570
30ac9238
RS
2571 ret = _bfd_mips_elf_generic_reloc (abfd, &hi->rel, symbol, hi->data,
2572 hi->input_section, output_bfd,
2573 error_message);
2574 if (ret != bfd_reloc_ok)
2575 return ret;
2576
2577 mips_hi16_list = hi->next;
2578 free (hi);
2579 }
2580
2581 return _bfd_mips_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2582 input_section, output_bfd,
2583 error_message);
2584}
2585
2586/* A generic howto special_function. This calculates and installs the
2587 relocation itself, thus avoiding the oft-discussed problems in
2588 bfd_perform_relocation and bfd_install_relocation. */
2589
2590bfd_reloc_status_type
2591_bfd_mips_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry,
2592 asymbol *symbol, void *data ATTRIBUTE_UNUSED,
2593 asection *input_section, bfd *output_bfd,
2594 char **error_message ATTRIBUTE_UNUSED)
2595{
2596 bfd_signed_vma val;
2597 bfd_reloc_status_type status;
2598 bfd_boolean relocatable;
2599
2600 relocatable = (output_bfd != NULL);
2601
07515404 2602 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
30ac9238
RS
2603 return bfd_reloc_outofrange;
2604
2605 /* Build up the field adjustment in VAL. */
2606 val = 0;
2607 if (!relocatable || (symbol->flags & BSF_SECTION_SYM) != 0)
2608 {
2609 /* Either we're calculating the final field value or we have a
2610 relocation against a section symbol. Add in the section's
2611 offset or address. */
2612 val += symbol->section->output_section->vma;
2613 val += symbol->section->output_offset;
2614 }
2615
2616 if (!relocatable)
2617 {
2618 /* We're calculating the final field value. Add in the symbol's value
2619 and, if pc-relative, subtract the address of the field itself. */
2620 val += symbol->value;
2621 if (reloc_entry->howto->pc_relative)
2622 {
2623 val -= input_section->output_section->vma;
2624 val -= input_section->output_offset;
2625 val -= reloc_entry->address;
2626 }
2627 }
2628
2629 /* VAL is now the final adjustment. If we're keeping this relocation
2630 in the output file, and if the relocation uses a separate addend,
2631 we just need to add VAL to that addend. Otherwise we need to add
2632 VAL to the relocation field itself. */
2633 if (relocatable && !reloc_entry->howto->partial_inplace)
2634 reloc_entry->addend += val;
2635 else
2636 {
d6f16593
MR
2637 bfd_byte *location = (bfd_byte *) data + reloc_entry->address;
2638
30ac9238
RS
2639 /* Add in the separate addend, if any. */
2640 val += reloc_entry->addend;
2641
2642 /* Add VAL to the relocation field. */
df58fc94
RS
2643 _bfd_mips_elf_reloc_unshuffle (abfd, reloc_entry->howto->type, FALSE,
2644 location);
30ac9238 2645 status = _bfd_relocate_contents (reloc_entry->howto, abfd, val,
d6f16593 2646 location);
df58fc94
RS
2647 _bfd_mips_elf_reloc_shuffle (abfd, reloc_entry->howto->type, FALSE,
2648 location);
d6f16593 2649
30ac9238
RS
2650 if (status != bfd_reloc_ok)
2651 return status;
2652 }
2653
2654 if (relocatable)
2655 reloc_entry->address += input_section->output_offset;
b49e97c9
TS
2656
2657 return bfd_reloc_ok;
2658}
2659\f
2660/* Swap an entry in a .gptab section. Note that these routines rely
2661 on the equivalence of the two elements of the union. */
2662
2663static void
9719ad41
RS
2664bfd_mips_elf32_swap_gptab_in (bfd *abfd, const Elf32_External_gptab *ex,
2665 Elf32_gptab *in)
b49e97c9
TS
2666{
2667 in->gt_entry.gt_g_value = H_GET_32 (abfd, ex->gt_entry.gt_g_value);
2668 in->gt_entry.gt_bytes = H_GET_32 (abfd, ex->gt_entry.gt_bytes);
2669}
2670
2671static void
9719ad41
RS
2672bfd_mips_elf32_swap_gptab_out (bfd *abfd, const Elf32_gptab *in,
2673 Elf32_External_gptab *ex)
b49e97c9
TS
2674{
2675 H_PUT_32 (abfd, in->gt_entry.gt_g_value, ex->gt_entry.gt_g_value);
2676 H_PUT_32 (abfd, in->gt_entry.gt_bytes, ex->gt_entry.gt_bytes);
2677}
2678
2679static void
9719ad41
RS
2680bfd_elf32_swap_compact_rel_out (bfd *abfd, const Elf32_compact_rel *in,
2681 Elf32_External_compact_rel *ex)
b49e97c9
TS
2682{
2683 H_PUT_32 (abfd, in->id1, ex->id1);
2684 H_PUT_32 (abfd, in->num, ex->num);
2685 H_PUT_32 (abfd, in->id2, ex->id2);
2686 H_PUT_32 (abfd, in->offset, ex->offset);
2687 H_PUT_32 (abfd, in->reserved0, ex->reserved0);
2688 H_PUT_32 (abfd, in->reserved1, ex->reserved1);
2689}
2690
2691static void
9719ad41
RS
2692bfd_elf32_swap_crinfo_out (bfd *abfd, const Elf32_crinfo *in,
2693 Elf32_External_crinfo *ex)
b49e97c9
TS
2694{
2695 unsigned long l;
2696
2697 l = (((in->ctype & CRINFO_CTYPE) << CRINFO_CTYPE_SH)
2698 | ((in->rtype & CRINFO_RTYPE) << CRINFO_RTYPE_SH)
2699 | ((in->dist2to & CRINFO_DIST2TO) << CRINFO_DIST2TO_SH)
2700 | ((in->relvaddr & CRINFO_RELVADDR) << CRINFO_RELVADDR_SH));
2701 H_PUT_32 (abfd, l, ex->info);
2702 H_PUT_32 (abfd, in->konst, ex->konst);
2703 H_PUT_32 (abfd, in->vaddr, ex->vaddr);
2704}
b49e97c9
TS
2705\f
2706/* A .reginfo section holds a single Elf32_RegInfo structure. These
2707 routines swap this structure in and out. They are used outside of
2708 BFD, so they are globally visible. */
2709
2710void
9719ad41
RS
2711bfd_mips_elf32_swap_reginfo_in (bfd *abfd, const Elf32_External_RegInfo *ex,
2712 Elf32_RegInfo *in)
b49e97c9
TS
2713{
2714 in->ri_gprmask = H_GET_32 (abfd, ex->ri_gprmask);
2715 in->ri_cprmask[0] = H_GET_32 (abfd, ex->ri_cprmask[0]);
2716 in->ri_cprmask[1] = H_GET_32 (abfd, ex->ri_cprmask[1]);
2717 in->ri_cprmask[2] = H_GET_32 (abfd, ex->ri_cprmask[2]);
2718 in->ri_cprmask[3] = H_GET_32 (abfd, ex->ri_cprmask[3]);
2719 in->ri_gp_value = H_GET_32 (abfd, ex->ri_gp_value);
2720}
2721
2722void
9719ad41
RS
2723bfd_mips_elf32_swap_reginfo_out (bfd *abfd, const Elf32_RegInfo *in,
2724 Elf32_External_RegInfo *ex)
b49e97c9
TS
2725{
2726 H_PUT_32 (abfd, in->ri_gprmask, ex->ri_gprmask);
2727 H_PUT_32 (abfd, in->ri_cprmask[0], ex->ri_cprmask[0]);
2728 H_PUT_32 (abfd, in->ri_cprmask[1], ex->ri_cprmask[1]);
2729 H_PUT_32 (abfd, in->ri_cprmask[2], ex->ri_cprmask[2]);
2730 H_PUT_32 (abfd, in->ri_cprmask[3], ex->ri_cprmask[3]);
2731 H_PUT_32 (abfd, in->ri_gp_value, ex->ri_gp_value);
2732}
2733
2734/* In the 64 bit ABI, the .MIPS.options section holds register
2735 information in an Elf64_Reginfo structure. These routines swap
2736 them in and out. They are globally visible because they are used
2737 outside of BFD. These routines are here so that gas can call them
2738 without worrying about whether the 64 bit ABI has been included. */
2739
2740void
9719ad41
RS
2741bfd_mips_elf64_swap_reginfo_in (bfd *abfd, const Elf64_External_RegInfo *ex,
2742 Elf64_Internal_RegInfo *in)
b49e97c9
TS
2743{
2744 in->ri_gprmask = H_GET_32 (abfd, ex->ri_gprmask);
2745 in->ri_pad = H_GET_32 (abfd, ex->ri_pad);
2746 in->ri_cprmask[0] = H_GET_32 (abfd, ex->ri_cprmask[0]);
2747 in->ri_cprmask[1] = H_GET_32 (abfd, ex->ri_cprmask[1]);
2748 in->ri_cprmask[2] = H_GET_32 (abfd, ex->ri_cprmask[2]);
2749 in->ri_cprmask[3] = H_GET_32 (abfd, ex->ri_cprmask[3]);
2750 in->ri_gp_value = H_GET_64 (abfd, ex->ri_gp_value);
2751}
2752
2753void
9719ad41
RS
2754bfd_mips_elf64_swap_reginfo_out (bfd *abfd, const Elf64_Internal_RegInfo *in,
2755 Elf64_External_RegInfo *ex)
b49e97c9
TS
2756{
2757 H_PUT_32 (abfd, in->ri_gprmask, ex->ri_gprmask);
2758 H_PUT_32 (abfd, in->ri_pad, ex->ri_pad);
2759 H_PUT_32 (abfd, in->ri_cprmask[0], ex->ri_cprmask[0]);
2760 H_PUT_32 (abfd, in->ri_cprmask[1], ex->ri_cprmask[1]);
2761 H_PUT_32 (abfd, in->ri_cprmask[2], ex->ri_cprmask[2]);
2762 H_PUT_32 (abfd, in->ri_cprmask[3], ex->ri_cprmask[3]);
2763 H_PUT_64 (abfd, in->ri_gp_value, ex->ri_gp_value);
2764}
2765
2766/* Swap in an options header. */
2767
2768void
9719ad41
RS
2769bfd_mips_elf_swap_options_in (bfd *abfd, const Elf_External_Options *ex,
2770 Elf_Internal_Options *in)
b49e97c9
TS
2771{
2772 in->kind = H_GET_8 (abfd, ex->kind);
2773 in->size = H_GET_8 (abfd, ex->size);
2774 in->section = H_GET_16 (abfd, ex->section);
2775 in->info = H_GET_32 (abfd, ex->info);
2776}
2777
2778/* Swap out an options header. */
2779
2780void
9719ad41
RS
2781bfd_mips_elf_swap_options_out (bfd *abfd, const Elf_Internal_Options *in,
2782 Elf_External_Options *ex)
b49e97c9
TS
2783{
2784 H_PUT_8 (abfd, in->kind, ex->kind);
2785 H_PUT_8 (abfd, in->size, ex->size);
2786 H_PUT_16 (abfd, in->section, ex->section);
2787 H_PUT_32 (abfd, in->info, ex->info);
2788}
351cdf24
MF
2789
2790/* Swap in an abiflags structure. */
2791
2792void
2793bfd_mips_elf_swap_abiflags_v0_in (bfd *abfd,
2794 const Elf_External_ABIFlags_v0 *ex,
2795 Elf_Internal_ABIFlags_v0 *in)
2796{
2797 in->version = H_GET_16 (abfd, ex->version);
2798 in->isa_level = H_GET_8 (abfd, ex->isa_level);
2799 in->isa_rev = H_GET_8 (abfd, ex->isa_rev);
2800 in->gpr_size = H_GET_8 (abfd, ex->gpr_size);
2801 in->cpr1_size = H_GET_8 (abfd, ex->cpr1_size);
2802 in->cpr2_size = H_GET_8 (abfd, ex->cpr2_size);
2803 in->fp_abi = H_GET_8 (abfd, ex->fp_abi);
2804 in->isa_ext = H_GET_32 (abfd, ex->isa_ext);
2805 in->ases = H_GET_32 (abfd, ex->ases);
2806 in->flags1 = H_GET_32 (abfd, ex->flags1);
2807 in->flags2 = H_GET_32 (abfd, ex->flags2);
2808}
2809
2810/* Swap out an abiflags structure. */
2811
2812void
2813bfd_mips_elf_swap_abiflags_v0_out (bfd *abfd,
2814 const Elf_Internal_ABIFlags_v0 *in,
2815 Elf_External_ABIFlags_v0 *ex)
2816{
2817 H_PUT_16 (abfd, in->version, ex->version);
2818 H_PUT_8 (abfd, in->isa_level, ex->isa_level);
2819 H_PUT_8 (abfd, in->isa_rev, ex->isa_rev);
2820 H_PUT_8 (abfd, in->gpr_size, ex->gpr_size);
2821 H_PUT_8 (abfd, in->cpr1_size, ex->cpr1_size);
2822 H_PUT_8 (abfd, in->cpr2_size, ex->cpr2_size);
2823 H_PUT_8 (abfd, in->fp_abi, ex->fp_abi);
2824 H_PUT_32 (abfd, in->isa_ext, ex->isa_ext);
2825 H_PUT_32 (abfd, in->ases, ex->ases);
2826 H_PUT_32 (abfd, in->flags1, ex->flags1);
2827 H_PUT_32 (abfd, in->flags2, ex->flags2);
2828}
b49e97c9
TS
2829\f
2830/* This function is called via qsort() to sort the dynamic relocation
2831 entries by increasing r_symndx value. */
2832
2833static int
9719ad41 2834sort_dynamic_relocs (const void *arg1, const void *arg2)
b49e97c9 2835{
947216bf
AM
2836 Elf_Internal_Rela int_reloc1;
2837 Elf_Internal_Rela int_reloc2;
6870500c 2838 int diff;
b49e97c9 2839
947216bf
AM
2840 bfd_elf32_swap_reloc_in (reldyn_sorting_bfd, arg1, &int_reloc1);
2841 bfd_elf32_swap_reloc_in (reldyn_sorting_bfd, arg2, &int_reloc2);
b49e97c9 2842
6870500c
RS
2843 diff = ELF32_R_SYM (int_reloc1.r_info) - ELF32_R_SYM (int_reloc2.r_info);
2844 if (diff != 0)
2845 return diff;
2846
2847 if (int_reloc1.r_offset < int_reloc2.r_offset)
2848 return -1;
2849 if (int_reloc1.r_offset > int_reloc2.r_offset)
2850 return 1;
2851 return 0;
b49e97c9
TS
2852}
2853
f4416af6
AO
2854/* Like sort_dynamic_relocs, but used for elf64 relocations. */
2855
2856static int
7e3102a7
AM
2857sort_dynamic_relocs_64 (const void *arg1 ATTRIBUTE_UNUSED,
2858 const void *arg2 ATTRIBUTE_UNUSED)
f4416af6 2859{
7e3102a7 2860#ifdef BFD64
f4416af6
AO
2861 Elf_Internal_Rela int_reloc1[3];
2862 Elf_Internal_Rela int_reloc2[3];
2863
2864 (*get_elf_backend_data (reldyn_sorting_bfd)->s->swap_reloc_in)
2865 (reldyn_sorting_bfd, arg1, int_reloc1);
2866 (*get_elf_backend_data (reldyn_sorting_bfd)->s->swap_reloc_in)
2867 (reldyn_sorting_bfd, arg2, int_reloc2);
2868
6870500c
RS
2869 if (ELF64_R_SYM (int_reloc1[0].r_info) < ELF64_R_SYM (int_reloc2[0].r_info))
2870 return -1;
2871 if (ELF64_R_SYM (int_reloc1[0].r_info) > ELF64_R_SYM (int_reloc2[0].r_info))
2872 return 1;
2873
2874 if (int_reloc1[0].r_offset < int_reloc2[0].r_offset)
2875 return -1;
2876 if (int_reloc1[0].r_offset > int_reloc2[0].r_offset)
2877 return 1;
2878 return 0;
7e3102a7
AM
2879#else
2880 abort ();
2881#endif
f4416af6
AO
2882}
2883
2884
b49e97c9
TS
2885/* This routine is used to write out ECOFF debugging external symbol
2886 information. It is called via mips_elf_link_hash_traverse. The
2887 ECOFF external symbol information must match the ELF external
2888 symbol information. Unfortunately, at this point we don't know
2889 whether a symbol is required by reloc information, so the two
2890 tables may wind up being different. We must sort out the external
2891 symbol information before we can set the final size of the .mdebug
2892 section, and we must set the size of the .mdebug section before we
2893 can relocate any sections, and we can't know which symbols are
2894 required by relocation until we relocate the sections.
2895 Fortunately, it is relatively unlikely that any symbol will be
2896 stripped but required by a reloc. In particular, it can not happen
2897 when generating a final executable. */
2898
b34976b6 2899static bfd_boolean
9719ad41 2900mips_elf_output_extsym (struct mips_elf_link_hash_entry *h, void *data)
b49e97c9 2901{
9719ad41 2902 struct extsym_info *einfo = data;
b34976b6 2903 bfd_boolean strip;
b49e97c9
TS
2904 asection *sec, *output_section;
2905
b49e97c9 2906 if (h->root.indx == -2)
b34976b6 2907 strip = FALSE;
f5385ebf 2908 else if ((h->root.def_dynamic
77cfaee6
AM
2909 || h->root.ref_dynamic
2910 || h->root.type == bfd_link_hash_new)
f5385ebf
AM
2911 && !h->root.def_regular
2912 && !h->root.ref_regular)
b34976b6 2913 strip = TRUE;
b49e97c9
TS
2914 else if (einfo->info->strip == strip_all
2915 || (einfo->info->strip == strip_some
2916 && bfd_hash_lookup (einfo->info->keep_hash,
2917 h->root.root.root.string,
b34976b6
AM
2918 FALSE, FALSE) == NULL))
2919 strip = TRUE;
b49e97c9 2920 else
b34976b6 2921 strip = FALSE;
b49e97c9
TS
2922
2923 if (strip)
b34976b6 2924 return TRUE;
b49e97c9
TS
2925
2926 if (h->esym.ifd == -2)
2927 {
2928 h->esym.jmptbl = 0;
2929 h->esym.cobol_main = 0;
2930 h->esym.weakext = 0;
2931 h->esym.reserved = 0;
2932 h->esym.ifd = ifdNil;
2933 h->esym.asym.value = 0;
2934 h->esym.asym.st = stGlobal;
2935
2936 if (h->root.root.type == bfd_link_hash_undefined
2937 || h->root.root.type == bfd_link_hash_undefweak)
2938 {
2939 const char *name;
2940
2941 /* Use undefined class. Also, set class and type for some
07d6d2b8 2942 special symbols. */
b49e97c9
TS
2943 name = h->root.root.root.string;
2944 if (strcmp (name, mips_elf_dynsym_rtproc_names[0]) == 0
2945 || strcmp (name, mips_elf_dynsym_rtproc_names[1]) == 0)
2946 {
2947 h->esym.asym.sc = scData;
2948 h->esym.asym.st = stLabel;
2949 h->esym.asym.value = 0;
2950 }
2951 else if (strcmp (name, mips_elf_dynsym_rtproc_names[2]) == 0)
2952 {
2953 h->esym.asym.sc = scAbs;
2954 h->esym.asym.st = stLabel;
2955 h->esym.asym.value =
2956 mips_elf_hash_table (einfo->info)->procedure_count;
2957 }
b49e97c9
TS
2958 else
2959 h->esym.asym.sc = scUndefined;
2960 }
2961 else if (h->root.root.type != bfd_link_hash_defined
2962 && h->root.root.type != bfd_link_hash_defweak)
2963 h->esym.asym.sc = scAbs;
2964 else
2965 {
2966 const char *name;
2967
2968 sec = h->root.root.u.def.section;
2969 output_section = sec->output_section;
2970
2971 /* When making a shared library and symbol h is the one from
2972 the another shared library, OUTPUT_SECTION may be null. */
2973 if (output_section == NULL)
2974 h->esym.asym.sc = scUndefined;
2975 else
2976 {
fd361982 2977 name = bfd_section_name (output_section);
b49e97c9
TS
2978
2979 if (strcmp (name, ".text") == 0)
2980 h->esym.asym.sc = scText;
2981 else if (strcmp (name, ".data") == 0)
2982 h->esym.asym.sc = scData;
2983 else if (strcmp (name, ".sdata") == 0)
2984 h->esym.asym.sc = scSData;
2985 else if (strcmp (name, ".rodata") == 0
2986 || strcmp (name, ".rdata") == 0)
2987 h->esym.asym.sc = scRData;
2988 else if (strcmp (name, ".bss") == 0)
2989 h->esym.asym.sc = scBss;
2990 else if (strcmp (name, ".sbss") == 0)
2991 h->esym.asym.sc = scSBss;
2992 else if (strcmp (name, ".init") == 0)
2993 h->esym.asym.sc = scInit;
2994 else if (strcmp (name, ".fini") == 0)
2995 h->esym.asym.sc = scFini;
2996 else
2997 h->esym.asym.sc = scAbs;
2998 }
2999 }
3000
3001 h->esym.asym.reserved = 0;
3002 h->esym.asym.index = indexNil;
3003 }
3004
3005 if (h->root.root.type == bfd_link_hash_common)
3006 h->esym.asym.value = h->root.root.u.c.size;
3007 else if (h->root.root.type == bfd_link_hash_defined
3008 || h->root.root.type == bfd_link_hash_defweak)
3009 {
3010 if (h->esym.asym.sc == scCommon)
3011 h->esym.asym.sc = scBss;
3012 else if (h->esym.asym.sc == scSCommon)
3013 h->esym.asym.sc = scSBss;
3014
3015 sec = h->root.root.u.def.section;
3016 output_section = sec->output_section;
3017 if (output_section != NULL)
3018 h->esym.asym.value = (h->root.root.u.def.value
3019 + sec->output_offset
3020 + output_section->vma);
3021 else
3022 h->esym.asym.value = 0;
3023 }
33bb52fb 3024 else
b49e97c9
TS
3025 {
3026 struct mips_elf_link_hash_entry *hd = h;
b49e97c9
TS
3027
3028 while (hd->root.root.type == bfd_link_hash_indirect)
33bb52fb 3029 hd = (struct mips_elf_link_hash_entry *)h->root.root.u.i.link;
b49e97c9 3030
33bb52fb 3031 if (hd->needs_lazy_stub)
b49e97c9 3032 {
1bbce132
MR
3033 BFD_ASSERT (hd->root.plt.plist != NULL);
3034 BFD_ASSERT (hd->root.plt.plist->stub_offset != MINUS_ONE);
b49e97c9
TS
3035 /* Set type and value for a symbol with a function stub. */
3036 h->esym.asym.st = stProc;
3037 sec = hd->root.root.u.def.section;
3038 if (sec == NULL)
3039 h->esym.asym.value = 0;
3040 else
3041 {
3042 output_section = sec->output_section;
3043 if (output_section != NULL)
1bbce132 3044 h->esym.asym.value = (hd->root.plt.plist->stub_offset
b49e97c9
TS
3045 + sec->output_offset
3046 + output_section->vma);
3047 else
3048 h->esym.asym.value = 0;
3049 }
b49e97c9
TS
3050 }
3051 }
3052
3053 if (! bfd_ecoff_debug_one_external (einfo->abfd, einfo->debug, einfo->swap,
3054 h->root.root.root.string,
3055 &h->esym))
3056 {
b34976b6
AM
3057 einfo->failed = TRUE;
3058 return FALSE;
b49e97c9
TS
3059 }
3060
b34976b6 3061 return TRUE;
b49e97c9
TS
3062}
3063
3064/* A comparison routine used to sort .gptab entries. */
3065
3066static int
9719ad41 3067gptab_compare (const void *p1, const void *p2)
b49e97c9 3068{
9719ad41
RS
3069 const Elf32_gptab *a1 = p1;
3070 const Elf32_gptab *a2 = p2;
b49e97c9
TS
3071
3072 return a1->gt_entry.gt_g_value - a2->gt_entry.gt_g_value;
3073}
3074\f
b15e6682 3075/* Functions to manage the got entry hash table. */
f4416af6
AO
3076
3077/* Use all 64 bits of a bfd_vma for the computation of a 32-bit
3078 hash number. */
3079
3080static INLINE hashval_t
9719ad41 3081mips_elf_hash_bfd_vma (bfd_vma addr)
f4416af6
AO
3082{
3083#ifdef BFD64
3084 return addr + (addr >> 32);
3085#else
3086 return addr;
3087#endif
3088}
3089
f4416af6 3090static hashval_t
d9bf376d 3091mips_elf_got_entry_hash (const void *entry_)
f4416af6
AO
3092{
3093 const struct mips_got_entry *entry = (struct mips_got_entry *)entry_;
3094
e641e783 3095 return (entry->symndx
9ab066b4
RS
3096 + ((entry->tls_type == GOT_TLS_LDM) << 18)
3097 + (entry->tls_type == GOT_TLS_LDM ? 0
e641e783
RS
3098 : !entry->abfd ? mips_elf_hash_bfd_vma (entry->d.address)
3099 : entry->symndx >= 0 ? (entry->abfd->id
3100 + mips_elf_hash_bfd_vma (entry->d.addend))
3101 : entry->d.h->root.root.root.hash));
f4416af6
AO
3102}
3103
3104static int
3dff0dd1 3105mips_elf_got_entry_eq (const void *entry1, const void *entry2)
f4416af6
AO
3106{
3107 const struct mips_got_entry *e1 = (struct mips_got_entry *)entry1;
3108 const struct mips_got_entry *e2 = (struct mips_got_entry *)entry2;
3109
e641e783 3110 return (e1->symndx == e2->symndx
9ab066b4
RS
3111 && e1->tls_type == e2->tls_type
3112 && (e1->tls_type == GOT_TLS_LDM ? TRUE
e641e783
RS
3113 : !e1->abfd ? !e2->abfd && e1->d.address == e2->d.address
3114 : e1->symndx >= 0 ? (e1->abfd == e2->abfd
3115 && e1->d.addend == e2->d.addend)
3116 : e2->abfd && e1->d.h == e2->d.h));
b15e6682 3117}
c224138d 3118
13db6b44
RS
3119static hashval_t
3120mips_got_page_ref_hash (const void *ref_)
3121{
3122 const struct mips_got_page_ref *ref;
3123
3124 ref = (const struct mips_got_page_ref *) ref_;
3125 return ((ref->symndx >= 0
3126 ? (hashval_t) (ref->u.abfd->id + ref->symndx)
3127 : ref->u.h->root.root.root.hash)
3128 + mips_elf_hash_bfd_vma (ref->addend));
3129}
3130
3131static int
3132mips_got_page_ref_eq (const void *ref1_, const void *ref2_)
3133{
3134 const struct mips_got_page_ref *ref1, *ref2;
3135
3136 ref1 = (const struct mips_got_page_ref *) ref1_;
3137 ref2 = (const struct mips_got_page_ref *) ref2_;
3138 return (ref1->symndx == ref2->symndx
3139 && (ref1->symndx < 0
3140 ? ref1->u.h == ref2->u.h
3141 : ref1->u.abfd == ref2->u.abfd)
3142 && ref1->addend == ref2->addend);
3143}
3144
c224138d
RS
3145static hashval_t
3146mips_got_page_entry_hash (const void *entry_)
3147{
3148 const struct mips_got_page_entry *entry;
3149
3150 entry = (const struct mips_got_page_entry *) entry_;
13db6b44 3151 return entry->sec->id;
c224138d
RS
3152}
3153
3154static int
3155mips_got_page_entry_eq (const void *entry1_, const void *entry2_)
3156{
3157 const struct mips_got_page_entry *entry1, *entry2;
3158
3159 entry1 = (const struct mips_got_page_entry *) entry1_;
3160 entry2 = (const struct mips_got_page_entry *) entry2_;
13db6b44 3161 return entry1->sec == entry2->sec;
c224138d 3162}
b15e6682 3163\f
3dff0dd1 3164/* Create and return a new mips_got_info structure. */
5334aa52
RS
3165
3166static struct mips_got_info *
3dff0dd1 3167mips_elf_create_got_info (bfd *abfd)
5334aa52
RS
3168{
3169 struct mips_got_info *g;
3170
3171 g = bfd_zalloc (abfd, sizeof (struct mips_got_info));
3172 if (g == NULL)
3173 return NULL;
3174
3dff0dd1
RS
3175 g->got_entries = htab_try_create (1, mips_elf_got_entry_hash,
3176 mips_elf_got_entry_eq, NULL);
5334aa52
RS
3177 if (g->got_entries == NULL)
3178 return NULL;
3179
13db6b44
RS
3180 g->got_page_refs = htab_try_create (1, mips_got_page_ref_hash,
3181 mips_got_page_ref_eq, NULL);
3182 if (g->got_page_refs == NULL)
5334aa52
RS
3183 return NULL;
3184
3185 return g;
3186}
3187
ee227692
RS
3188/* Return the GOT info for input bfd ABFD, trying to create a new one if
3189 CREATE_P and if ABFD doesn't already have a GOT. */
3190
3191static struct mips_got_info *
3192mips_elf_bfd_got (bfd *abfd, bfd_boolean create_p)
3193{
3194 struct mips_elf_obj_tdata *tdata;
3195
3196 if (!is_mips_elf (abfd))
3197 return NULL;
3198
3199 tdata = mips_elf_tdata (abfd);
3200 if (!tdata->got && create_p)
3dff0dd1 3201 tdata->got = mips_elf_create_got_info (abfd);
ee227692
RS
3202 return tdata->got;
3203}
3204
d7206569
RS
3205/* Record that ABFD should use output GOT G. */
3206
3207static void
3208mips_elf_replace_bfd_got (bfd *abfd, struct mips_got_info *g)
3209{
3210 struct mips_elf_obj_tdata *tdata;
3211
3212 BFD_ASSERT (is_mips_elf (abfd));
3213 tdata = mips_elf_tdata (abfd);
3214 if (tdata->got)
3215 {
3216 /* The GOT structure itself and the hash table entries are
3217 allocated to a bfd, but the hash tables aren't. */
3218 htab_delete (tdata->got->got_entries);
13db6b44
RS
3219 htab_delete (tdata->got->got_page_refs);
3220 if (tdata->got->got_page_entries)
3221 htab_delete (tdata->got->got_page_entries);
d7206569
RS
3222 }
3223 tdata->got = g;
3224}
3225
0a44bf69
RS
3226/* Return the dynamic relocation section. If it doesn't exist, try to
3227 create a new it if CREATE_P, otherwise return NULL. Also return NULL
3228 if creation fails. */
f4416af6
AO
3229
3230static asection *
0a44bf69 3231mips_elf_rel_dyn_section (struct bfd_link_info *info, bfd_boolean create_p)
f4416af6 3232{
0a44bf69 3233 const char *dname;
f4416af6 3234 asection *sreloc;
0a44bf69 3235 bfd *dynobj;
f4416af6 3236
0a44bf69
RS
3237 dname = MIPS_ELF_REL_DYN_NAME (info);
3238 dynobj = elf_hash_table (info)->dynobj;
3d4d4302 3239 sreloc = bfd_get_linker_section (dynobj, dname);
f4416af6
AO
3240 if (sreloc == NULL && create_p)
3241 {
3d4d4302
AM
3242 sreloc = bfd_make_section_anyway_with_flags (dynobj, dname,
3243 (SEC_ALLOC
3244 | SEC_LOAD
3245 | SEC_HAS_CONTENTS
3246 | SEC_IN_MEMORY
3247 | SEC_LINKER_CREATED
3248 | SEC_READONLY));
f4416af6 3249 if (sreloc == NULL
fd361982
AM
3250 || !bfd_set_section_alignment (sreloc,
3251 MIPS_ELF_LOG_FILE_ALIGN (dynobj)))
f4416af6
AO
3252 return NULL;
3253 }
3254 return sreloc;
3255}
3256
e641e783
RS
3257/* Return the GOT_TLS_* type required by relocation type R_TYPE. */
3258
3259static int
3260mips_elf_reloc_tls_type (unsigned int r_type)
3261{
3262 if (tls_gd_reloc_p (r_type))
3263 return GOT_TLS_GD;
3264
3265 if (tls_ldm_reloc_p (r_type))
3266 return GOT_TLS_LDM;
3267
3268 if (tls_gottprel_reloc_p (r_type))
3269 return GOT_TLS_IE;
3270
9ab066b4 3271 return GOT_TLS_NONE;
e641e783
RS
3272}
3273
3274/* Return the number of GOT slots needed for GOT TLS type TYPE. */
3275
3276static int
3277mips_tls_got_entries (unsigned int type)
3278{
3279 switch (type)
3280 {
3281 case GOT_TLS_GD:
3282 case GOT_TLS_LDM:
3283 return 2;
3284
3285 case GOT_TLS_IE:
3286 return 1;
3287
9ab066b4 3288 case GOT_TLS_NONE:
e641e783
RS
3289 return 0;
3290 }
3291 abort ();
3292}
3293
0f20cc35
DJ
3294/* Count the number of relocations needed for a TLS GOT entry, with
3295 access types from TLS_TYPE, and symbol H (or a local symbol if H
3296 is NULL). */
3297
3298static int
3299mips_tls_got_relocs (struct bfd_link_info *info, unsigned char tls_type,
3300 struct elf_link_hash_entry *h)
3301{
3302 int indx = 0;
0f20cc35
DJ
3303 bfd_boolean need_relocs = FALSE;
3304 bfd_boolean dyn = elf_hash_table (info)->dynamic_sections_created;
3305
1cb83cac
MR
3306 if (h != NULL
3307 && h->dynindx != -1
3308 && WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, bfd_link_pic (info), h)
3309 && (bfd_link_dll (info) || !SYMBOL_REFERENCES_LOCAL (info, h)))
0f20cc35
DJ
3310 indx = h->dynindx;
3311
9143e72c 3312 if ((bfd_link_dll (info) || indx != 0)
0f20cc35
DJ
3313 && (h == NULL
3314 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
3315 || h->root.type != bfd_link_hash_undefweak))
3316 need_relocs = TRUE;
3317
3318 if (!need_relocs)
e641e783 3319 return 0;
0f20cc35 3320
9ab066b4 3321 switch (tls_type)
0f20cc35 3322 {
e641e783
RS
3323 case GOT_TLS_GD:
3324 return indx != 0 ? 2 : 1;
0f20cc35 3325
e641e783
RS
3326 case GOT_TLS_IE:
3327 return 1;
0f20cc35 3328
e641e783 3329 case GOT_TLS_LDM:
9143e72c 3330 return bfd_link_dll (info) ? 1 : 0;
0f20cc35 3331
e641e783
RS
3332 default:
3333 return 0;
3334 }
0f20cc35
DJ
3335}
3336
ab361d49
RS
3337/* Add the number of GOT entries and TLS relocations required by ENTRY
3338 to G. */
0f20cc35 3339
ab361d49
RS
3340static void
3341mips_elf_count_got_entry (struct bfd_link_info *info,
3342 struct mips_got_info *g,
3343 struct mips_got_entry *entry)
0f20cc35 3344{
9ab066b4 3345 if (entry->tls_type)
ab361d49 3346 {
9ab066b4
RS
3347 g->tls_gotno += mips_tls_got_entries (entry->tls_type);
3348 g->relocs += mips_tls_got_relocs (info, entry->tls_type,
ab361d49
RS
3349 entry->symndx < 0
3350 ? &entry->d.h->root : NULL);
3351 }
3352 else if (entry->symndx >= 0 || entry->d.h->global_got_area == GGA_NONE)
3353 g->local_gotno += 1;
3354 else
3355 g->global_gotno += 1;
0f20cc35
DJ
3356}
3357
0f20cc35
DJ
3358/* Output a simple dynamic relocation into SRELOC. */
3359
3360static void
3361mips_elf_output_dynamic_relocation (bfd *output_bfd,
3362 asection *sreloc,
861fb55a 3363 unsigned long reloc_index,
0f20cc35
DJ
3364 unsigned long indx,
3365 int r_type,
3366 bfd_vma offset)
3367{
3368 Elf_Internal_Rela rel[3];
3369
3370 memset (rel, 0, sizeof (rel));
3371
3372 rel[0].r_info = ELF_R_INFO (output_bfd, indx, r_type);
3373 rel[0].r_offset = rel[1].r_offset = rel[2].r_offset = offset;
3374
3375 if (ABI_64_P (output_bfd))
3376 {
3377 (*get_elf_backend_data (output_bfd)->s->swap_reloc_out)
3378 (output_bfd, &rel[0],
3379 (sreloc->contents
861fb55a 3380 + reloc_index * sizeof (Elf64_Mips_External_Rel)));
0f20cc35
DJ
3381 }
3382 else
3383 bfd_elf32_swap_reloc_out
3384 (output_bfd, &rel[0],
3385 (sreloc->contents
861fb55a 3386 + reloc_index * sizeof (Elf32_External_Rel)));
0f20cc35
DJ
3387}
3388
3389/* Initialize a set of TLS GOT entries for one symbol. */
3390
3391static void
9ab066b4
RS
3392mips_elf_initialize_tls_slots (bfd *abfd, struct bfd_link_info *info,
3393 struct mips_got_entry *entry,
0f20cc35
DJ
3394 struct mips_elf_link_hash_entry *h,
3395 bfd_vma value)
3396{
1cb83cac 3397 bfd_boolean dyn = elf_hash_table (info)->dynamic_sections_created;
23cc69b6 3398 struct mips_elf_link_hash_table *htab;
0f20cc35
DJ
3399 int indx;
3400 asection *sreloc, *sgot;
9ab066b4 3401 bfd_vma got_offset, got_offset2;
0f20cc35
DJ
3402 bfd_boolean need_relocs = FALSE;
3403
23cc69b6 3404 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
3405 if (htab == NULL)
3406 return;
3407
ce558b89 3408 sgot = htab->root.sgot;
0f20cc35
DJ
3409
3410 indx = 0;
1cb83cac
MR
3411 if (h != NULL
3412 && h->root.dynindx != -1
3413 && WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, bfd_link_pic (info), &h->root)
3414 && (bfd_link_dll (info) || !SYMBOL_REFERENCES_LOCAL (info, &h->root)))
3415 indx = h->root.dynindx;
0f20cc35 3416
9ab066b4 3417 if (entry->tls_initialized)
0f20cc35
DJ
3418 return;
3419
9143e72c 3420 if ((bfd_link_dll (info) || indx != 0)
0f20cc35
DJ
3421 && (h == NULL
3422 || ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT
3423 || h->root.type != bfd_link_hash_undefweak))
3424 need_relocs = TRUE;
3425
3426 /* MINUS_ONE means the symbol is not defined in this object. It may not
3427 be defined at all; assume that the value doesn't matter in that
3428 case. Otherwise complain if we would use the value. */
3429 BFD_ASSERT (value != MINUS_ONE || (indx != 0 && need_relocs)
3430 || h->root.root.type == bfd_link_hash_undefweak);
3431
3432 /* Emit necessary relocations. */
0a44bf69 3433 sreloc = mips_elf_rel_dyn_section (info, FALSE);
9ab066b4 3434 got_offset = entry->gotidx;
0f20cc35 3435
9ab066b4 3436 switch (entry->tls_type)
0f20cc35 3437 {
e641e783
RS
3438 case GOT_TLS_GD:
3439 /* General Dynamic. */
3440 got_offset2 = got_offset + MIPS_ELF_GOT_SIZE (abfd);
0f20cc35
DJ
3441
3442 if (need_relocs)
3443 {
3444 mips_elf_output_dynamic_relocation
861fb55a 3445 (abfd, sreloc, sreloc->reloc_count++, indx,
0f20cc35 3446 ABI_64_P (abfd) ? R_MIPS_TLS_DTPMOD64 : R_MIPS_TLS_DTPMOD32,
e641e783 3447 sgot->output_offset + sgot->output_section->vma + got_offset);
0f20cc35
DJ
3448
3449 if (indx)
3450 mips_elf_output_dynamic_relocation
861fb55a 3451 (abfd, sreloc, sreloc->reloc_count++, indx,
0f20cc35 3452 ABI_64_P (abfd) ? R_MIPS_TLS_DTPREL64 : R_MIPS_TLS_DTPREL32,
e641e783 3453 sgot->output_offset + sgot->output_section->vma + got_offset2);
0f20cc35
DJ
3454 else
3455 MIPS_ELF_PUT_WORD (abfd, value - dtprel_base (info),
e641e783 3456 sgot->contents + got_offset2);
0f20cc35
DJ
3457 }
3458 else
3459 {
3460 MIPS_ELF_PUT_WORD (abfd, 1,
e641e783 3461 sgot->contents + got_offset);
0f20cc35 3462 MIPS_ELF_PUT_WORD (abfd, value - dtprel_base (info),
e641e783 3463 sgot->contents + got_offset2);
0f20cc35 3464 }
e641e783 3465 break;
0f20cc35 3466
e641e783
RS
3467 case GOT_TLS_IE:
3468 /* Initial Exec model. */
0f20cc35
DJ
3469 if (need_relocs)
3470 {
3471 if (indx == 0)
3472 MIPS_ELF_PUT_WORD (abfd, value - elf_hash_table (info)->tls_sec->vma,
e641e783 3473 sgot->contents + got_offset);
0f20cc35
DJ
3474 else
3475 MIPS_ELF_PUT_WORD (abfd, 0,
e641e783 3476 sgot->contents + got_offset);
0f20cc35
DJ
3477
3478 mips_elf_output_dynamic_relocation
861fb55a 3479 (abfd, sreloc, sreloc->reloc_count++, indx,
0f20cc35 3480 ABI_64_P (abfd) ? R_MIPS_TLS_TPREL64 : R_MIPS_TLS_TPREL32,
e641e783 3481 sgot->output_offset + sgot->output_section->vma + got_offset);
0f20cc35
DJ
3482 }
3483 else
3484 MIPS_ELF_PUT_WORD (abfd, value - tprel_base (info),
e641e783
RS
3485 sgot->contents + got_offset);
3486 break;
0f20cc35 3487
e641e783 3488 case GOT_TLS_LDM:
0f20cc35
DJ
3489 /* The initial offset is zero, and the LD offsets will include the
3490 bias by DTP_OFFSET. */
3491 MIPS_ELF_PUT_WORD (abfd, 0,
3492 sgot->contents + got_offset
3493 + MIPS_ELF_GOT_SIZE (abfd));
3494
9143e72c 3495 if (!bfd_link_dll (info))
0f20cc35
DJ
3496 MIPS_ELF_PUT_WORD (abfd, 1,
3497 sgot->contents + got_offset);
3498 else
3499 mips_elf_output_dynamic_relocation
861fb55a 3500 (abfd, sreloc, sreloc->reloc_count++, indx,
0f20cc35
DJ
3501 ABI_64_P (abfd) ? R_MIPS_TLS_DTPMOD64 : R_MIPS_TLS_DTPMOD32,
3502 sgot->output_offset + sgot->output_section->vma + got_offset);
e641e783
RS
3503 break;
3504
3505 default:
3506 abort ();
0f20cc35
DJ
3507 }
3508
9ab066b4 3509 entry->tls_initialized = TRUE;
e641e783 3510}
0f20cc35 3511
0a44bf69
RS
3512/* Return the offset from _GLOBAL_OFFSET_TABLE_ of the .got.plt entry
3513 for global symbol H. .got.plt comes before the GOT, so the offset
3514 will be negative. */
3515
3516static bfd_vma
3517mips_elf_gotplt_index (struct bfd_link_info *info,
3518 struct elf_link_hash_entry *h)
3519{
1bbce132 3520 bfd_vma got_address, got_value;
0a44bf69
RS
3521 struct mips_elf_link_hash_table *htab;
3522
3523 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
3524 BFD_ASSERT (htab != NULL);
3525
1bbce132
MR
3526 BFD_ASSERT (h->plt.plist != NULL);
3527 BFD_ASSERT (h->plt.plist->gotplt_index != MINUS_ONE);
0a44bf69
RS
3528
3529 /* Calculate the address of the associated .got.plt entry. */
ce558b89
AM
3530 got_address = (htab->root.sgotplt->output_section->vma
3531 + htab->root.sgotplt->output_offset
1bbce132
MR
3532 + (h->plt.plist->gotplt_index
3533 * MIPS_ELF_GOT_SIZE (info->output_bfd)));
0a44bf69
RS
3534
3535 /* Calculate the value of _GLOBAL_OFFSET_TABLE_. */
3536 got_value = (htab->root.hgot->root.u.def.section->output_section->vma
3537 + htab->root.hgot->root.u.def.section->output_offset
3538 + htab->root.hgot->root.u.def.value);
3539
3540 return got_address - got_value;
3541}
3542
5c18022e 3543/* Return the GOT offset for address VALUE. If there is not yet a GOT
0a44bf69
RS
3544 entry for this value, create one. If R_SYMNDX refers to a TLS symbol,
3545 create a TLS GOT entry instead. Return -1 if no satisfactory GOT
3546 offset can be found. */
b49e97c9
TS
3547
3548static bfd_vma
9719ad41 3549mips_elf_local_got_index (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
5c18022e 3550 bfd_vma value, unsigned long r_symndx,
0f20cc35 3551 struct mips_elf_link_hash_entry *h, int r_type)
b49e97c9 3552{
a8028dd0 3553 struct mips_elf_link_hash_table *htab;
b15e6682 3554 struct mips_got_entry *entry;
b49e97c9 3555
a8028dd0 3556 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
3557 BFD_ASSERT (htab != NULL);
3558
a8028dd0
RS
3559 entry = mips_elf_create_local_got_entry (abfd, info, ibfd, value,
3560 r_symndx, h, r_type);
0f20cc35 3561 if (!entry)
b15e6682 3562 return MINUS_ONE;
0f20cc35 3563
e641e783 3564 if (entry->tls_type)
9ab066b4
RS
3565 mips_elf_initialize_tls_slots (abfd, info, entry, h, value);
3566 return entry->gotidx;
b49e97c9
TS
3567}
3568
13fbec83 3569/* Return the GOT index of global symbol H in the primary GOT. */
b49e97c9
TS
3570
3571static bfd_vma
13fbec83
RS
3572mips_elf_primary_global_got_index (bfd *obfd, struct bfd_link_info *info,
3573 struct elf_link_hash_entry *h)
3574{
3575 struct mips_elf_link_hash_table *htab;
3576 long global_got_dynindx;
3577 struct mips_got_info *g;
3578 bfd_vma got_index;
3579
3580 htab = mips_elf_hash_table (info);
3581 BFD_ASSERT (htab != NULL);
3582
3583 global_got_dynindx = 0;
3584 if (htab->global_gotsym != NULL)
3585 global_got_dynindx = htab->global_gotsym->dynindx;
3586
3587 /* Once we determine the global GOT entry with the lowest dynamic
3588 symbol table index, we must put all dynamic symbols with greater
3589 indices into the primary GOT. That makes it easy to calculate the
3590 GOT offset. */
3591 BFD_ASSERT (h->dynindx >= global_got_dynindx);
3592 g = mips_elf_bfd_got (obfd, FALSE);
3593 got_index = ((h->dynindx - global_got_dynindx + g->local_gotno)
3594 * MIPS_ELF_GOT_SIZE (obfd));
ce558b89 3595 BFD_ASSERT (got_index < htab->root.sgot->size);
13fbec83
RS
3596
3597 return got_index;
3598}
3599
3600/* Return the GOT index for the global symbol indicated by H, which is
3601 referenced by a relocation of type R_TYPE in IBFD. */
3602
3603static bfd_vma
3604mips_elf_global_got_index (bfd *obfd, struct bfd_link_info *info, bfd *ibfd,
3605 struct elf_link_hash_entry *h, int r_type)
b49e97c9 3606{
a8028dd0 3607 struct mips_elf_link_hash_table *htab;
6c42ddb9
RS
3608 struct mips_got_info *g;
3609 struct mips_got_entry lookup, *entry;
3610 bfd_vma gotidx;
b49e97c9 3611
a8028dd0 3612 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
3613 BFD_ASSERT (htab != NULL);
3614
6c42ddb9
RS
3615 g = mips_elf_bfd_got (ibfd, FALSE);
3616 BFD_ASSERT (g);
f4416af6 3617
6c42ddb9
RS
3618 lookup.tls_type = mips_elf_reloc_tls_type (r_type);
3619 if (!lookup.tls_type && g == mips_elf_bfd_got (obfd, FALSE))
3620 return mips_elf_primary_global_got_index (obfd, info, h);
f4416af6 3621
6c42ddb9
RS
3622 lookup.abfd = ibfd;
3623 lookup.symndx = -1;
3624 lookup.d.h = (struct mips_elf_link_hash_entry *) h;
3625 entry = htab_find (g->got_entries, &lookup);
3626 BFD_ASSERT (entry);
0f20cc35 3627
6c42ddb9 3628 gotidx = entry->gotidx;
ce558b89 3629 BFD_ASSERT (gotidx > 0 && gotidx < htab->root.sgot->size);
f4416af6 3630
6c42ddb9 3631 if (lookup.tls_type)
0f20cc35 3632 {
0f20cc35
DJ
3633 bfd_vma value = MINUS_ONE;
3634
3635 if ((h->root.type == bfd_link_hash_defined
3636 || h->root.type == bfd_link_hash_defweak)
3637 && h->root.u.def.section->output_section)
3638 value = (h->root.u.def.value
3639 + h->root.u.def.section->output_offset
3640 + h->root.u.def.section->output_section->vma);
3641
9ab066b4 3642 mips_elf_initialize_tls_slots (obfd, info, entry, lookup.d.h, value);
0f20cc35 3643 }
6c42ddb9 3644 return gotidx;
b49e97c9
TS
3645}
3646
5c18022e
RS
3647/* Find a GOT page entry that points to within 32KB of VALUE. These
3648 entries are supposed to be placed at small offsets in the GOT, i.e.,
3649 within 32KB of GP. Return the index of the GOT entry, or -1 if no
3650 entry could be created. If OFFSETP is nonnull, use it to return the
0a44bf69 3651 offset of the GOT entry from VALUE. */
b49e97c9
TS
3652
3653static bfd_vma
9719ad41 3654mips_elf_got_page (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
5c18022e 3655 bfd_vma value, bfd_vma *offsetp)
b49e97c9 3656{
91d6fa6a 3657 bfd_vma page, got_index;
b15e6682 3658 struct mips_got_entry *entry;
b49e97c9 3659
0a44bf69 3660 page = (value + 0x8000) & ~(bfd_vma) 0xffff;
a8028dd0
RS
3661 entry = mips_elf_create_local_got_entry (abfd, info, ibfd, page, 0,
3662 NULL, R_MIPS_GOT_PAGE);
b49e97c9 3663
b15e6682
AO
3664 if (!entry)
3665 return MINUS_ONE;
143d77c5 3666
91d6fa6a 3667 got_index = entry->gotidx;
b49e97c9
TS
3668
3669 if (offsetp)
f4416af6 3670 *offsetp = value - entry->d.address;
b49e97c9 3671
91d6fa6a 3672 return got_index;
b49e97c9
TS
3673}
3674
738e5348 3675/* Find a local GOT entry for an R_MIPS*_GOT16 relocation against VALUE.
020d7251
RS
3676 EXTERNAL is true if the relocation was originally against a global
3677 symbol that binds locally. */
b49e97c9
TS
3678
3679static bfd_vma
9719ad41 3680mips_elf_got16_entry (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
5c18022e 3681 bfd_vma value, bfd_boolean external)
b49e97c9 3682{
b15e6682 3683 struct mips_got_entry *entry;
b49e97c9 3684
0a44bf69
RS
3685 /* GOT16 relocations against local symbols are followed by a LO16
3686 relocation; those against global symbols are not. Thus if the
3687 symbol was originally local, the GOT16 relocation should load the
3688 equivalent of %hi(VALUE), otherwise it should load VALUE itself. */
b49e97c9 3689 if (! external)
0a44bf69 3690 value = mips_elf_high (value) << 16;
b49e97c9 3691
738e5348
RS
3692 /* It doesn't matter whether the original relocation was R_MIPS_GOT16,
3693 R_MIPS16_GOT16, R_MIPS_CALL16, etc. The format of the entry is the
3694 same in all cases. */
a8028dd0
RS
3695 entry = mips_elf_create_local_got_entry (abfd, info, ibfd, value, 0,
3696 NULL, R_MIPS_GOT16);
b15e6682
AO
3697 if (entry)
3698 return entry->gotidx;
3699 else
3700 return MINUS_ONE;
b49e97c9
TS
3701}
3702
3703/* Returns the offset for the entry at the INDEXth position
3704 in the GOT. */
3705
3706static bfd_vma
a8028dd0 3707mips_elf_got_offset_from_index (struct bfd_link_info *info, bfd *output_bfd,
91d6fa6a 3708 bfd *input_bfd, bfd_vma got_index)
b49e97c9 3709{
a8028dd0 3710 struct mips_elf_link_hash_table *htab;
b49e97c9
TS
3711 asection *sgot;
3712 bfd_vma gp;
3713
a8028dd0 3714 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
3715 BFD_ASSERT (htab != NULL);
3716
ce558b89 3717 sgot = htab->root.sgot;
f4416af6 3718 gp = _bfd_get_gp_value (output_bfd)
a8028dd0 3719 + mips_elf_adjust_gp (output_bfd, htab->got_info, input_bfd);
143d77c5 3720
91d6fa6a 3721 return sgot->output_section->vma + sgot->output_offset + got_index - gp;
b49e97c9
TS
3722}
3723
0a44bf69
RS
3724/* Create and return a local GOT entry for VALUE, which was calculated
3725 from a symbol belonging to INPUT_SECTON. Return NULL if it could not
3726 be created. If R_SYMNDX refers to a TLS symbol, create a TLS entry
3727 instead. */
b49e97c9 3728
b15e6682 3729static struct mips_got_entry *
0a44bf69 3730mips_elf_create_local_got_entry (bfd *abfd, struct bfd_link_info *info,
a8028dd0 3731 bfd *ibfd, bfd_vma value,
5c18022e 3732 unsigned long r_symndx,
0f20cc35
DJ
3733 struct mips_elf_link_hash_entry *h,
3734 int r_type)
b49e97c9 3735{
ebc53538
RS
3736 struct mips_got_entry lookup, *entry;
3737 void **loc;
f4416af6 3738 struct mips_got_info *g;
0a44bf69 3739 struct mips_elf_link_hash_table *htab;
6c42ddb9 3740 bfd_vma gotidx;
0a44bf69
RS
3741
3742 htab = mips_elf_hash_table (info);
4dfe6ac6 3743 BFD_ASSERT (htab != NULL);
b15e6682 3744
d7206569 3745 g = mips_elf_bfd_got (ibfd, FALSE);
f4416af6
AO
3746 if (g == NULL)
3747 {
d7206569 3748 g = mips_elf_bfd_got (abfd, FALSE);
f4416af6
AO
3749 BFD_ASSERT (g != NULL);
3750 }
b15e6682 3751
020d7251
RS
3752 /* This function shouldn't be called for symbols that live in the global
3753 area of the GOT. */
3754 BFD_ASSERT (h == NULL || h->global_got_area == GGA_NONE);
0f20cc35 3755
ebc53538
RS
3756 lookup.tls_type = mips_elf_reloc_tls_type (r_type);
3757 if (lookup.tls_type)
3758 {
3759 lookup.abfd = ibfd;
df58fc94 3760 if (tls_ldm_reloc_p (r_type))
0f20cc35 3761 {
ebc53538
RS
3762 lookup.symndx = 0;
3763 lookup.d.addend = 0;
0f20cc35
DJ
3764 }
3765 else if (h == NULL)
3766 {
ebc53538
RS
3767 lookup.symndx = r_symndx;
3768 lookup.d.addend = 0;
0f20cc35
DJ
3769 }
3770 else
ebc53538
RS
3771 {
3772 lookup.symndx = -1;
3773 lookup.d.h = h;
3774 }
0f20cc35 3775
ebc53538
RS
3776 entry = (struct mips_got_entry *) htab_find (g->got_entries, &lookup);
3777 BFD_ASSERT (entry);
0f20cc35 3778
6c42ddb9 3779 gotidx = entry->gotidx;
ce558b89 3780 BFD_ASSERT (gotidx > 0 && gotidx < htab->root.sgot->size);
6c42ddb9 3781
ebc53538 3782 return entry;
0f20cc35
DJ
3783 }
3784
ebc53538
RS
3785 lookup.abfd = NULL;
3786 lookup.symndx = -1;
3787 lookup.d.address = value;
3788 loc = htab_find_slot (g->got_entries, &lookup, INSERT);
3789 if (!loc)
b15e6682 3790 return NULL;
143d77c5 3791
ebc53538
RS
3792 entry = (struct mips_got_entry *) *loc;
3793 if (entry)
3794 return entry;
b15e6682 3795
cb22ccf4 3796 if (g->assigned_low_gotno > g->assigned_high_gotno)
b49e97c9
TS
3797 {
3798 /* We didn't allocate enough space in the GOT. */
4eca0228 3799 _bfd_error_handler
b49e97c9
TS
3800 (_("not enough GOT space for local GOT entries"));
3801 bfd_set_error (bfd_error_bad_value);
b15e6682 3802 return NULL;
b49e97c9
TS
3803 }
3804
ebc53538
RS
3805 entry = (struct mips_got_entry *) bfd_alloc (abfd, sizeof (*entry));
3806 if (!entry)
3807 return NULL;
3808
cb22ccf4
KCY
3809 if (got16_reloc_p (r_type)
3810 || call16_reloc_p (r_type)
3811 || got_page_reloc_p (r_type)
3812 || got_disp_reloc_p (r_type))
3813 lookup.gotidx = MIPS_ELF_GOT_SIZE (abfd) * g->assigned_low_gotno++;
3814 else
3815 lookup.gotidx = MIPS_ELF_GOT_SIZE (abfd) * g->assigned_high_gotno--;
3816
ebc53538
RS
3817 *entry = lookup;
3818 *loc = entry;
3819
ce558b89 3820 MIPS_ELF_PUT_WORD (abfd, value, htab->root.sgot->contents + entry->gotidx);
b15e6682 3821
5c18022e 3822 /* These GOT entries need a dynamic relocation on VxWorks. */
90c14f0c 3823 if (htab->root.target_os == is_vxworks)
0a44bf69
RS
3824 {
3825 Elf_Internal_Rela outrel;
5c18022e 3826 asection *s;
91d6fa6a 3827 bfd_byte *rloc;
0a44bf69 3828 bfd_vma got_address;
0a44bf69
RS
3829
3830 s = mips_elf_rel_dyn_section (info, FALSE);
ce558b89
AM
3831 got_address = (htab->root.sgot->output_section->vma
3832 + htab->root.sgot->output_offset
ebc53538 3833 + entry->gotidx);
0a44bf69 3834
91d6fa6a 3835 rloc = s->contents + (s->reloc_count++ * sizeof (Elf32_External_Rela));
0a44bf69 3836 outrel.r_offset = got_address;
5c18022e
RS
3837 outrel.r_info = ELF32_R_INFO (STN_UNDEF, R_MIPS_32);
3838 outrel.r_addend = value;
91d6fa6a 3839 bfd_elf32_swap_reloca_out (abfd, &outrel, rloc);
0a44bf69
RS
3840 }
3841
ebc53538 3842 return entry;
b49e97c9
TS
3843}
3844
d4596a51
RS
3845/* Return the number of dynamic section symbols required by OUTPUT_BFD.
3846 The number might be exact or a worst-case estimate, depending on how
3847 much information is available to elf_backend_omit_section_dynsym at
3848 the current linking stage. */
3849
3850static bfd_size_type
3851count_section_dynsyms (bfd *output_bfd, struct bfd_link_info *info)
3852{
3853 bfd_size_type count;
3854
3855 count = 0;
0e1862bb
L
3856 if (bfd_link_pic (info)
3857 || elf_hash_table (info)->is_relocatable_executable)
d4596a51
RS
3858 {
3859 asection *p;
3860 const struct elf_backend_data *bed;
3861
3862 bed = get_elf_backend_data (output_bfd);
3863 for (p = output_bfd->sections; p ; p = p->next)
3864 if ((p->flags & SEC_EXCLUDE) == 0
3865 && (p->flags & SEC_ALLOC) != 0
7f923b7f 3866 && elf_hash_table (info)->dynamic_relocs
d4596a51
RS
3867 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
3868 ++count;
3869 }
3870 return count;
3871}
3872
b49e97c9 3873/* Sort the dynamic symbol table so that symbols that need GOT entries
d4596a51 3874 appear towards the end. */
b49e97c9 3875
b34976b6 3876static bfd_boolean
d4596a51 3877mips_elf_sort_hash_table (bfd *abfd, struct bfd_link_info *info)
b49e97c9 3878{
a8028dd0 3879 struct mips_elf_link_hash_table *htab;
b49e97c9
TS
3880 struct mips_elf_hash_sort_data hsd;
3881 struct mips_got_info *g;
b49e97c9 3882
a8028dd0 3883 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
3884 BFD_ASSERT (htab != NULL);
3885
0f8c4b60 3886 if (htab->root.dynsymcount == 0)
17a80fa8
MR
3887 return TRUE;
3888
a8028dd0 3889 g = htab->got_info;
d4596a51
RS
3890 if (g == NULL)
3891 return TRUE;
f4416af6 3892
b49e97c9 3893 hsd.low = NULL;
23cc69b6
RS
3894 hsd.max_unref_got_dynindx
3895 = hsd.min_got_dynindx
0f8c4b60 3896 = (htab->root.dynsymcount - g->reloc_only_gotno);
e17b0c35
MR
3897 /* Add 1 to local symbol indices to account for the mandatory NULL entry
3898 at the head of the table; see `_bfd_elf_link_renumber_dynsyms'. */
3899 hsd.max_local_dynindx = count_section_dynsyms (abfd, info) + 1;
3900 hsd.max_non_got_dynindx = htab->root.local_dynsymcount + 1;
f16a9783
MS
3901 hsd.output_bfd = abfd;
3902 if (htab->root.dynobj != NULL
3903 && htab->root.dynamic_sections_created
3904 && info->emit_gnu_hash)
3905 {
3906 asection *s = bfd_get_linker_section (htab->root.dynobj, ".MIPS.xhash");
3907 BFD_ASSERT (s != NULL);
3908 hsd.mipsxhash = s->contents;
3909 BFD_ASSERT (hsd.mipsxhash != NULL);
3910 }
3911 else
3912 hsd.mipsxhash = NULL;
0f8c4b60 3913 mips_elf_link_hash_traverse (htab, mips_elf_sort_hash_table_f, &hsd);
b49e97c9
TS
3914
3915 /* There should have been enough room in the symbol table to
44c410de 3916 accommodate both the GOT and non-GOT symbols. */
e17b0c35 3917 BFD_ASSERT (hsd.max_local_dynindx <= htab->root.local_dynsymcount + 1);
b49e97c9 3918 BFD_ASSERT (hsd.max_non_got_dynindx <= hsd.min_got_dynindx);
55f8b9d2 3919 BFD_ASSERT (hsd.max_unref_got_dynindx == htab->root.dynsymcount);
0f8c4b60 3920 BFD_ASSERT (htab->root.dynsymcount - hsd.min_got_dynindx == g->global_gotno);
b49e97c9
TS
3921
3922 /* Now we know which dynamic symbol has the lowest dynamic symbol
3923 table index in the GOT. */
d222d210 3924 htab->global_gotsym = hsd.low;
b49e97c9 3925
b34976b6 3926 return TRUE;
b49e97c9
TS
3927}
3928
3929/* If H needs a GOT entry, assign it the highest available dynamic
3930 index. Otherwise, assign it the lowest available dynamic
3931 index. */
3932
b34976b6 3933static bfd_boolean
9719ad41 3934mips_elf_sort_hash_table_f (struct mips_elf_link_hash_entry *h, void *data)
b49e97c9 3935{
9719ad41 3936 struct mips_elf_hash_sort_data *hsd = data;
b49e97c9 3937
b49e97c9
TS
3938 /* Symbols without dynamic symbol table entries aren't interesting
3939 at all. */
3940 if (h->root.dynindx == -1)
b34976b6 3941 return TRUE;
b49e97c9 3942
634835ae 3943 switch (h->global_got_area)
f4416af6 3944 {
634835ae 3945 case GGA_NONE:
e17b0c35
MR
3946 if (h->root.forced_local)
3947 h->root.dynindx = hsd->max_local_dynindx++;
3948 else
3949 h->root.dynindx = hsd->max_non_got_dynindx++;
634835ae 3950 break;
0f20cc35 3951
634835ae 3952 case GGA_NORMAL:
b49e97c9
TS
3953 h->root.dynindx = --hsd->min_got_dynindx;
3954 hsd->low = (struct elf_link_hash_entry *) h;
634835ae
RS
3955 break;
3956
3957 case GGA_RELOC_ONLY:
634835ae
RS
3958 if (hsd->max_unref_got_dynindx == hsd->min_got_dynindx)
3959 hsd->low = (struct elf_link_hash_entry *) h;
3960 h->root.dynindx = hsd->max_unref_got_dynindx++;
3961 break;
b49e97c9
TS
3962 }
3963
f16a9783
MS
3964 /* Populate the .MIPS.xhash translation table entry with
3965 the symbol dynindx. */
3966 if (h->mipsxhash_loc != 0 && hsd->mipsxhash != NULL)
3967 bfd_put_32 (hsd->output_bfd, h->root.dynindx,
3968 hsd->mipsxhash + h->mipsxhash_loc);
3969
b34976b6 3970 return TRUE;
b49e97c9
TS
3971}
3972
ee227692
RS
3973/* Record that input bfd ABFD requires a GOT entry like *LOOKUP
3974 (which is owned by the caller and shouldn't be added to the
3975 hash table directly). */
3976
3977static bfd_boolean
3978mips_elf_record_got_entry (struct bfd_link_info *info, bfd *abfd,
3979 struct mips_got_entry *lookup)
3980{
3981 struct mips_elf_link_hash_table *htab;
3982 struct mips_got_entry *entry;
3983 struct mips_got_info *g;
3984 void **loc, **bfd_loc;
3985
3986 /* Make sure there's a slot for this entry in the master GOT. */
3987 htab = mips_elf_hash_table (info);
3988 g = htab->got_info;
3989 loc = htab_find_slot (g->got_entries, lookup, INSERT);
3990 if (!loc)
3991 return FALSE;
3992
3993 /* Populate the entry if it isn't already. */
3994 entry = (struct mips_got_entry *) *loc;
3995 if (!entry)
3996 {
3997 entry = (struct mips_got_entry *) bfd_alloc (abfd, sizeof (*entry));
3998 if (!entry)
3999 return FALSE;
4000
9ab066b4 4001 lookup->tls_initialized = FALSE;
ee227692
RS
4002 lookup->gotidx = -1;
4003 *entry = *lookup;
4004 *loc = entry;
4005 }
4006
4007 /* Reuse the same GOT entry for the BFD's GOT. */
4008 g = mips_elf_bfd_got (abfd, TRUE);
4009 if (!g)
4010 return FALSE;
4011
4012 bfd_loc = htab_find_slot (g->got_entries, lookup, INSERT);
4013 if (!bfd_loc)
4014 return FALSE;
4015
4016 if (!*bfd_loc)
4017 *bfd_loc = entry;
4018 return TRUE;
4019}
4020
e641e783
RS
4021/* ABFD has a GOT relocation of type R_TYPE against H. Reserve a GOT
4022 entry for it. FOR_CALL is true if the caller is only interested in
6ccf4795 4023 using the GOT entry for calls. */
b49e97c9 4024
b34976b6 4025static bfd_boolean
9719ad41
RS
4026mips_elf_record_global_got_symbol (struct elf_link_hash_entry *h,
4027 bfd *abfd, struct bfd_link_info *info,
e641e783 4028 bfd_boolean for_call, int r_type)
b49e97c9 4029{
a8028dd0 4030 struct mips_elf_link_hash_table *htab;
634835ae 4031 struct mips_elf_link_hash_entry *hmips;
ee227692
RS
4032 struct mips_got_entry entry;
4033 unsigned char tls_type;
a8028dd0
RS
4034
4035 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
4036 BFD_ASSERT (htab != NULL);
4037
634835ae 4038 hmips = (struct mips_elf_link_hash_entry *) h;
6ccf4795
RS
4039 if (!for_call)
4040 hmips->got_only_for_calls = FALSE;
f4416af6 4041
b49e97c9
TS
4042 /* A global symbol in the GOT must also be in the dynamic symbol
4043 table. */
7c5fcef7
L
4044 if (h->dynindx == -1)
4045 {
4046 switch (ELF_ST_VISIBILITY (h->other))
4047 {
4048 case STV_INTERNAL:
4049 case STV_HIDDEN:
47275900 4050 _bfd_mips_elf_hide_symbol (info, h, TRUE);
7c5fcef7
L
4051 break;
4052 }
c152c796 4053 if (!bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 4054 return FALSE;
7c5fcef7 4055 }
b49e97c9 4056
ee227692 4057 tls_type = mips_elf_reloc_tls_type (r_type);
9ab066b4 4058 if (tls_type == GOT_TLS_NONE && hmips->global_got_area > GGA_NORMAL)
ee227692 4059 hmips->global_got_area = GGA_NORMAL;
86324f90 4060
f4416af6
AO
4061 entry.abfd = abfd;
4062 entry.symndx = -1;
4063 entry.d.h = (struct mips_elf_link_hash_entry *) h;
ee227692
RS
4064 entry.tls_type = tls_type;
4065 return mips_elf_record_got_entry (info, abfd, &entry);
b49e97c9 4066}
f4416af6 4067
e641e783
RS
4068/* ABFD has a GOT relocation of type R_TYPE against symbol SYMNDX + ADDEND,
4069 where SYMNDX is a local symbol. Reserve a GOT entry for it. */
f4416af6
AO
4070
4071static bfd_boolean
9719ad41 4072mips_elf_record_local_got_symbol (bfd *abfd, long symndx, bfd_vma addend,
e641e783 4073 struct bfd_link_info *info, int r_type)
f4416af6 4074{
a8028dd0
RS
4075 struct mips_elf_link_hash_table *htab;
4076 struct mips_got_info *g;
ee227692 4077 struct mips_got_entry entry;
f4416af6 4078
a8028dd0 4079 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
4080 BFD_ASSERT (htab != NULL);
4081
a8028dd0
RS
4082 g = htab->got_info;
4083 BFD_ASSERT (g != NULL);
4084
f4416af6
AO
4085 entry.abfd = abfd;
4086 entry.symndx = symndx;
4087 entry.d.addend = addend;
e641e783 4088 entry.tls_type = mips_elf_reloc_tls_type (r_type);
ee227692 4089 return mips_elf_record_got_entry (info, abfd, &entry);
f4416af6 4090}
c224138d 4091
13db6b44
RS
4092/* Record that ABFD has a page relocation against SYMNDX + ADDEND.
4093 H is the symbol's hash table entry, or null if SYMNDX is local
4094 to ABFD. */
c224138d
RS
4095
4096static bfd_boolean
13db6b44
RS
4097mips_elf_record_got_page_ref (struct bfd_link_info *info, bfd *abfd,
4098 long symndx, struct elf_link_hash_entry *h,
4099 bfd_signed_vma addend)
c224138d 4100{
a8028dd0 4101 struct mips_elf_link_hash_table *htab;
ee227692 4102 struct mips_got_info *g1, *g2;
13db6b44 4103 struct mips_got_page_ref lookup, *entry;
ee227692 4104 void **loc, **bfd_loc;
c224138d 4105
a8028dd0 4106 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
4107 BFD_ASSERT (htab != NULL);
4108
ee227692
RS
4109 g1 = htab->got_info;
4110 BFD_ASSERT (g1 != NULL);
a8028dd0 4111
13db6b44
RS
4112 if (h)
4113 {
4114 lookup.symndx = -1;
4115 lookup.u.h = (struct mips_elf_link_hash_entry *) h;
4116 }
4117 else
4118 {
4119 lookup.symndx = symndx;
4120 lookup.u.abfd = abfd;
4121 }
4122 lookup.addend = addend;
4123 loc = htab_find_slot (g1->got_page_refs, &lookup, INSERT);
c224138d
RS
4124 if (loc == NULL)
4125 return FALSE;
4126
13db6b44 4127 entry = (struct mips_got_page_ref *) *loc;
c224138d
RS
4128 if (!entry)
4129 {
4130 entry = bfd_alloc (abfd, sizeof (*entry));
4131 if (!entry)
4132 return FALSE;
4133
13db6b44 4134 *entry = lookup;
c224138d
RS
4135 *loc = entry;
4136 }
4137
ee227692
RS
4138 /* Add the same entry to the BFD's GOT. */
4139 g2 = mips_elf_bfd_got (abfd, TRUE);
4140 if (!g2)
4141 return FALSE;
4142
13db6b44 4143 bfd_loc = htab_find_slot (g2->got_page_refs, &lookup, INSERT);
ee227692
RS
4144 if (!bfd_loc)
4145 return FALSE;
4146
4147 if (!*bfd_loc)
4148 *bfd_loc = entry;
4149
c224138d
RS
4150 return TRUE;
4151}
33bb52fb
RS
4152
4153/* Add room for N relocations to the .rel(a).dyn section in ABFD. */
4154
4155static void
4156mips_elf_allocate_dynamic_relocations (bfd *abfd, struct bfd_link_info *info,
4157 unsigned int n)
4158{
4159 asection *s;
4160 struct mips_elf_link_hash_table *htab;
4161
4162 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
4163 BFD_ASSERT (htab != NULL);
4164
33bb52fb
RS
4165 s = mips_elf_rel_dyn_section (info, FALSE);
4166 BFD_ASSERT (s != NULL);
4167
90c14f0c 4168 if (htab->root.target_os == is_vxworks)
33bb52fb
RS
4169 s->size += n * MIPS_ELF_RELA_SIZE (abfd);
4170 else
4171 {
4172 if (s->size == 0)
4173 {
4174 /* Make room for a null element. */
4175 s->size += MIPS_ELF_REL_SIZE (abfd);
4176 ++s->reloc_count;
4177 }
4178 s->size += n * MIPS_ELF_REL_SIZE (abfd);
4179 }
4180}
4181\f
476366af
RS
4182/* A htab_traverse callback for GOT entries, with DATA pointing to a
4183 mips_elf_traverse_got_arg structure. Count the number of GOT
4184 entries and TLS relocs. Set DATA->value to true if we need
4185 to resolve indirect or warning symbols and then recreate the GOT. */
33bb52fb
RS
4186
4187static int
4188mips_elf_check_recreate_got (void **entryp, void *data)
4189{
4190 struct mips_got_entry *entry;
476366af 4191 struct mips_elf_traverse_got_arg *arg;
33bb52fb
RS
4192
4193 entry = (struct mips_got_entry *) *entryp;
476366af 4194 arg = (struct mips_elf_traverse_got_arg *) data;
33bb52fb
RS
4195 if (entry->abfd != NULL && entry->symndx == -1)
4196 {
4197 struct mips_elf_link_hash_entry *h;
4198
4199 h = entry->d.h;
4200 if (h->root.root.type == bfd_link_hash_indirect
4201 || h->root.root.type == bfd_link_hash_warning)
4202 {
476366af 4203 arg->value = TRUE;
33bb52fb
RS
4204 return 0;
4205 }
4206 }
476366af 4207 mips_elf_count_got_entry (arg->info, arg->g, entry);
33bb52fb
RS
4208 return 1;
4209}
4210
476366af
RS
4211/* A htab_traverse callback for GOT entries, with DATA pointing to a
4212 mips_elf_traverse_got_arg structure. Add all entries to DATA->g,
4213 converting entries for indirect and warning symbols into entries
4214 for the target symbol. Set DATA->g to null on error. */
33bb52fb
RS
4215
4216static int
4217mips_elf_recreate_got (void **entryp, void *data)
4218{
72e7511a 4219 struct mips_got_entry new_entry, *entry;
476366af 4220 struct mips_elf_traverse_got_arg *arg;
33bb52fb
RS
4221 void **slot;
4222
33bb52fb 4223 entry = (struct mips_got_entry *) *entryp;
476366af 4224 arg = (struct mips_elf_traverse_got_arg *) data;
72e7511a
RS
4225 if (entry->abfd != NULL
4226 && entry->symndx == -1
4227 && (entry->d.h->root.root.type == bfd_link_hash_indirect
4228 || entry->d.h->root.root.type == bfd_link_hash_warning))
33bb52fb
RS
4229 {
4230 struct mips_elf_link_hash_entry *h;
4231
72e7511a
RS
4232 new_entry = *entry;
4233 entry = &new_entry;
33bb52fb 4234 h = entry->d.h;
72e7511a 4235 do
634835ae
RS
4236 {
4237 BFD_ASSERT (h->global_got_area == GGA_NONE);
4238 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
4239 }
72e7511a
RS
4240 while (h->root.root.type == bfd_link_hash_indirect
4241 || h->root.root.type == bfd_link_hash_warning);
33bb52fb
RS
4242 entry->d.h = h;
4243 }
476366af 4244 slot = htab_find_slot (arg->g->got_entries, entry, INSERT);
33bb52fb
RS
4245 if (slot == NULL)
4246 {
476366af 4247 arg->g = NULL;
33bb52fb
RS
4248 return 0;
4249 }
4250 if (*slot == NULL)
72e7511a
RS
4251 {
4252 if (entry == &new_entry)
4253 {
4254 entry = bfd_alloc (entry->abfd, sizeof (*entry));
4255 if (!entry)
4256 {
476366af 4257 arg->g = NULL;
72e7511a
RS
4258 return 0;
4259 }
4260 *entry = new_entry;
4261 }
4262 *slot = entry;
476366af 4263 mips_elf_count_got_entry (arg->info, arg->g, entry);
72e7511a 4264 }
33bb52fb
RS
4265 return 1;
4266}
4267
13db6b44
RS
4268/* Return the maximum number of GOT page entries required for RANGE. */
4269
4270static bfd_vma
4271mips_elf_pages_for_range (const struct mips_got_page_range *range)
4272{
4273 return (range->max_addend - range->min_addend + 0x1ffff) >> 16;
4274}
4275
4276/* Record that G requires a page entry that can reach SEC + ADDEND. */
4277
4278static bfd_boolean
b75d42bc 4279mips_elf_record_got_page_entry (struct mips_elf_traverse_got_arg *arg,
13db6b44
RS
4280 asection *sec, bfd_signed_vma addend)
4281{
b75d42bc 4282 struct mips_got_info *g = arg->g;
13db6b44
RS
4283 struct mips_got_page_entry lookup, *entry;
4284 struct mips_got_page_range **range_ptr, *range;
4285 bfd_vma old_pages, new_pages;
4286 void **loc;
4287
4288 /* Find the mips_got_page_entry hash table entry for this section. */
4289 lookup.sec = sec;
4290 loc = htab_find_slot (g->got_page_entries, &lookup, INSERT);
4291 if (loc == NULL)
4292 return FALSE;
4293
4294 /* Create a mips_got_page_entry if this is the first time we've
4295 seen the section. */
4296 entry = (struct mips_got_page_entry *) *loc;
4297 if (!entry)
4298 {
b75d42bc 4299 entry = bfd_zalloc (arg->info->output_bfd, sizeof (*entry));
13db6b44
RS
4300 if (!entry)
4301 return FALSE;
4302
4303 entry->sec = sec;
4304 *loc = entry;
4305 }
4306
4307 /* Skip over ranges whose maximum extent cannot share a page entry
4308 with ADDEND. */
4309 range_ptr = &entry->ranges;
4310 while (*range_ptr && addend > (*range_ptr)->max_addend + 0xffff)
4311 range_ptr = &(*range_ptr)->next;
4312
4313 /* If we scanned to the end of the list, or found a range whose
4314 minimum extent cannot share a page entry with ADDEND, create
4315 a new singleton range. */
4316 range = *range_ptr;
4317 if (!range || addend < range->min_addend - 0xffff)
4318 {
b75d42bc 4319 range = bfd_zalloc (arg->info->output_bfd, sizeof (*range));
13db6b44
RS
4320 if (!range)
4321 return FALSE;
4322
4323 range->next = *range_ptr;
4324 range->min_addend = addend;
4325 range->max_addend = addend;
4326
4327 *range_ptr = range;
4328 entry->num_pages++;
4329 g->page_gotno++;
4330 return TRUE;
4331 }
4332
4333 /* Remember how many pages the old range contributed. */
4334 old_pages = mips_elf_pages_for_range (range);
4335
4336 /* Update the ranges. */
4337 if (addend < range->min_addend)
4338 range->min_addend = addend;
4339 else if (addend > range->max_addend)
4340 {
4341 if (range->next && addend >= range->next->min_addend - 0xffff)
4342 {
4343 old_pages += mips_elf_pages_for_range (range->next);
4344 range->max_addend = range->next->max_addend;
4345 range->next = range->next->next;
4346 }
4347 else
4348 range->max_addend = addend;
4349 }
4350
4351 /* Record any change in the total estimate. */
4352 new_pages = mips_elf_pages_for_range (range);
4353 if (old_pages != new_pages)
4354 {
4355 entry->num_pages += new_pages - old_pages;
4356 g->page_gotno += new_pages - old_pages;
4357 }
4358
4359 return TRUE;
4360}
4361
4362/* A htab_traverse callback for which *REFP points to a mips_got_page_ref
4363 and for which DATA points to a mips_elf_traverse_got_arg. Work out
4364 whether the page reference described by *REFP needs a GOT page entry,
4365 and record that entry in DATA->g if so. Set DATA->g to null on failure. */
4366
4367static bfd_boolean
4368mips_elf_resolve_got_page_ref (void **refp, void *data)
4369{
4370 struct mips_got_page_ref *ref;
4371 struct mips_elf_traverse_got_arg *arg;
4372 struct mips_elf_link_hash_table *htab;
4373 asection *sec;
4374 bfd_vma addend;
4375
4376 ref = (struct mips_got_page_ref *) *refp;
4377 arg = (struct mips_elf_traverse_got_arg *) data;
4378 htab = mips_elf_hash_table (arg->info);
4379
4380 if (ref->symndx < 0)
4381 {
4382 struct mips_elf_link_hash_entry *h;
4383
4384 /* Global GOT_PAGEs decay to GOT_DISP and so don't need page entries. */
4385 h = ref->u.h;
4386 if (!SYMBOL_REFERENCES_LOCAL (arg->info, &h->root))
4387 return 1;
4388
4389 /* Ignore undefined symbols; we'll issue an error later if
4390 appropriate. */
4391 if (!((h->root.root.type == bfd_link_hash_defined
4392 || h->root.root.type == bfd_link_hash_defweak)
4393 && h->root.root.u.def.section))
4394 return 1;
4395
4396 sec = h->root.root.u.def.section;
4397 addend = h->root.root.u.def.value + ref->addend;
4398 }
4399 else
4400 {
4401 Elf_Internal_Sym *isym;
4402
4403 /* Read in the symbol. */
4404 isym = bfd_sym_from_r_symndx (&htab->sym_cache, ref->u.abfd,
4405 ref->symndx);
4406 if (isym == NULL)
4407 {
4408 arg->g = NULL;
4409 return 0;
4410 }
4411
4412 /* Get the associated input section. */
4413 sec = bfd_section_from_elf_index (ref->u.abfd, isym->st_shndx);
4414 if (sec == NULL)
4415 {
4416 arg->g = NULL;
4417 return 0;
4418 }
4419
4420 /* If this is a mergable section, work out the section and offset
4421 of the merged data. For section symbols, the addend specifies
4422 of the offset _of_ the first byte in the data, otherwise it
4423 specifies the offset _from_ the first byte. */
4424 if (sec->flags & SEC_MERGE)
4425 {
4426 void *secinfo;
4427
4428 secinfo = elf_section_data (sec)->sec_info;
4429 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
4430 addend = _bfd_merged_section_offset (ref->u.abfd, &sec, secinfo,
4431 isym->st_value + ref->addend);
4432 else
4433 addend = _bfd_merged_section_offset (ref->u.abfd, &sec, secinfo,
4434 isym->st_value) + ref->addend;
4435 }
4436 else
4437 addend = isym->st_value + ref->addend;
4438 }
b75d42bc 4439 if (!mips_elf_record_got_page_entry (arg, sec, addend))
13db6b44
RS
4440 {
4441 arg->g = NULL;
4442 return 0;
4443 }
4444 return 1;
4445}
4446
33bb52fb 4447/* If any entries in G->got_entries are for indirect or warning symbols,
13db6b44
RS
4448 replace them with entries for the target symbol. Convert g->got_page_refs
4449 into got_page_entry structures and estimate the number of page entries
4450 that they require. */
33bb52fb
RS
4451
4452static bfd_boolean
476366af
RS
4453mips_elf_resolve_final_got_entries (struct bfd_link_info *info,
4454 struct mips_got_info *g)
33bb52fb 4455{
476366af
RS
4456 struct mips_elf_traverse_got_arg tga;
4457 struct mips_got_info oldg;
4458
4459 oldg = *g;
33bb52fb 4460
476366af
RS
4461 tga.info = info;
4462 tga.g = g;
4463 tga.value = FALSE;
4464 htab_traverse (g->got_entries, mips_elf_check_recreate_got, &tga);
4465 if (tga.value)
33bb52fb 4466 {
476366af
RS
4467 *g = oldg;
4468 g->got_entries = htab_create (htab_size (oldg.got_entries),
4469 mips_elf_got_entry_hash,
4470 mips_elf_got_entry_eq, NULL);
4471 if (!g->got_entries)
33bb52fb
RS
4472 return FALSE;
4473
476366af
RS
4474 htab_traverse (oldg.got_entries, mips_elf_recreate_got, &tga);
4475 if (!tga.g)
4476 return FALSE;
4477
4478 htab_delete (oldg.got_entries);
33bb52fb 4479 }
13db6b44
RS
4480
4481 g->got_page_entries = htab_try_create (1, mips_got_page_entry_hash,
4482 mips_got_page_entry_eq, NULL);
4483 if (g->got_page_entries == NULL)
4484 return FALSE;
4485
4486 tga.info = info;
4487 tga.g = g;
4488 htab_traverse (g->got_page_refs, mips_elf_resolve_got_page_ref, &tga);
4489
33bb52fb
RS
4490 return TRUE;
4491}
4492
c5d6fa44
RS
4493/* Return true if a GOT entry for H should live in the local rather than
4494 global GOT area. */
4495
4496static bfd_boolean
4497mips_use_local_got_p (struct bfd_link_info *info,
4498 struct mips_elf_link_hash_entry *h)
4499{
4500 /* Symbols that aren't in the dynamic symbol table must live in the
4501 local GOT. This includes symbols that are completely undefined
4502 and which therefore don't bind locally. We'll report undefined
4503 symbols later if appropriate. */
4504 if (h->root.dynindx == -1)
4505 return TRUE;
4506
47275900
MR
4507 /* Absolute symbols, if ever they need a GOT entry, cannot ever go
4508 to the local GOT, as they would be implicitly relocated by the
4509 base address by the dynamic loader. */
4510 if (bfd_is_abs_symbol (&h->root.root))
4511 return FALSE;
4512
c5d6fa44
RS
4513 /* Symbols that bind locally can (and in the case of forced-local
4514 symbols, must) live in the local GOT. */
4515 if (h->got_only_for_calls
4516 ? SYMBOL_CALLS_LOCAL (info, &h->root)
4517 : SYMBOL_REFERENCES_LOCAL (info, &h->root))
4518 return TRUE;
4519
4520 /* If this is an executable that must provide a definition of the symbol,
4521 either though PLTs or copy relocations, then that address should go in
4522 the local rather than global GOT. */
0e1862bb 4523 if (bfd_link_executable (info) && h->has_static_relocs)
c5d6fa44
RS
4524 return TRUE;
4525
4526 return FALSE;
4527}
4528
6c42ddb9
RS
4529/* A mips_elf_link_hash_traverse callback for which DATA points to the
4530 link_info structure. Decide whether the hash entry needs an entry in
4531 the global part of the primary GOT, setting global_got_area accordingly.
4532 Count the number of global symbols that are in the primary GOT only
4533 because they have relocations against them (reloc_only_gotno). */
33bb52fb
RS
4534
4535static int
d4596a51 4536mips_elf_count_got_symbols (struct mips_elf_link_hash_entry *h, void *data)
33bb52fb 4537{
020d7251 4538 struct bfd_link_info *info;
6ccf4795 4539 struct mips_elf_link_hash_table *htab;
33bb52fb
RS
4540 struct mips_got_info *g;
4541
020d7251 4542 info = (struct bfd_link_info *) data;
6ccf4795
RS
4543 htab = mips_elf_hash_table (info);
4544 g = htab->got_info;
d4596a51 4545 if (h->global_got_area != GGA_NONE)
33bb52fb 4546 {
020d7251 4547 /* Make a final decision about whether the symbol belongs in the
c5d6fa44
RS
4548 local or global GOT. */
4549 if (mips_use_local_got_p (info, h))
6c42ddb9
RS
4550 /* The symbol belongs in the local GOT. We no longer need this
4551 entry if it was only used for relocations; those relocations
4552 will be against the null or section symbol instead of H. */
4553 h->global_got_area = GGA_NONE;
90c14f0c 4554 else if (htab->root.target_os == is_vxworks
6ccf4795 4555 && h->got_only_for_calls
1bbce132 4556 && h->root.plt.plist->mips_offset != MINUS_ONE)
6ccf4795
RS
4557 /* On VxWorks, calls can refer directly to the .got.plt entry;
4558 they don't need entries in the regular GOT. .got.plt entries
4559 will be allocated by _bfd_mips_elf_adjust_dynamic_symbol. */
4560 h->global_got_area = GGA_NONE;
6c42ddb9 4561 else if (h->global_got_area == GGA_RELOC_ONLY)
23cc69b6 4562 {
6c42ddb9 4563 g->reloc_only_gotno++;
23cc69b6 4564 g->global_gotno++;
23cc69b6 4565 }
33bb52fb
RS
4566 }
4567 return 1;
4568}
f4416af6 4569\f
d7206569
RS
4570/* A htab_traverse callback for GOT entries. Add each one to the GOT
4571 given in mips_elf_traverse_got_arg DATA. Clear DATA->G on error. */
f4416af6
AO
4572
4573static int
d7206569 4574mips_elf_add_got_entry (void **entryp, void *data)
f4416af6 4575{
d7206569
RS
4576 struct mips_got_entry *entry;
4577 struct mips_elf_traverse_got_arg *arg;
4578 void **slot;
f4416af6 4579
d7206569
RS
4580 entry = (struct mips_got_entry *) *entryp;
4581 arg = (struct mips_elf_traverse_got_arg *) data;
4582 slot = htab_find_slot (arg->g->got_entries, entry, INSERT);
4583 if (!slot)
f4416af6 4584 {
d7206569
RS
4585 arg->g = NULL;
4586 return 0;
f4416af6 4587 }
d7206569 4588 if (!*slot)
c224138d 4589 {
d7206569
RS
4590 *slot = entry;
4591 mips_elf_count_got_entry (arg->info, arg->g, entry);
c224138d 4592 }
f4416af6
AO
4593 return 1;
4594}
4595
d7206569
RS
4596/* A htab_traverse callback for GOT page entries. Add each one to the GOT
4597 given in mips_elf_traverse_got_arg DATA. Clear DATA->G on error. */
c224138d
RS
4598
4599static int
d7206569 4600mips_elf_add_got_page_entry (void **entryp, void *data)
c224138d 4601{
d7206569
RS
4602 struct mips_got_page_entry *entry;
4603 struct mips_elf_traverse_got_arg *arg;
4604 void **slot;
c224138d 4605
d7206569
RS
4606 entry = (struct mips_got_page_entry *) *entryp;
4607 arg = (struct mips_elf_traverse_got_arg *) data;
4608 slot = htab_find_slot (arg->g->got_page_entries, entry, INSERT);
4609 if (!slot)
c224138d 4610 {
d7206569 4611 arg->g = NULL;
c224138d
RS
4612 return 0;
4613 }
d7206569
RS
4614 if (!*slot)
4615 {
4616 *slot = entry;
4617 arg->g->page_gotno += entry->num_pages;
4618 }
c224138d
RS
4619 return 1;
4620}
4621
d7206569
RS
4622/* Consider merging FROM, which is ABFD's GOT, into TO. Return -1 if
4623 this would lead to overflow, 1 if they were merged successfully,
4624 and 0 if a merge failed due to lack of memory. (These values are chosen
4625 so that nonnegative return values can be returned by a htab_traverse
4626 callback.) */
c224138d
RS
4627
4628static int
d7206569 4629mips_elf_merge_got_with (bfd *abfd, struct mips_got_info *from,
c224138d
RS
4630 struct mips_got_info *to,
4631 struct mips_elf_got_per_bfd_arg *arg)
4632{
d7206569 4633 struct mips_elf_traverse_got_arg tga;
c224138d
RS
4634 unsigned int estimate;
4635
4636 /* Work out how many page entries we would need for the combined GOT. */
4637 estimate = arg->max_pages;
4638 if (estimate >= from->page_gotno + to->page_gotno)
4639 estimate = from->page_gotno + to->page_gotno;
4640
e2ece73c 4641 /* And conservatively estimate how many local and TLS entries
c224138d 4642 would be needed. */
e2ece73c
RS
4643 estimate += from->local_gotno + to->local_gotno;
4644 estimate += from->tls_gotno + to->tls_gotno;
4645
17214937
RS
4646 /* If we're merging with the primary got, any TLS relocations will
4647 come after the full set of global entries. Otherwise estimate those
e2ece73c 4648 conservatively as well. */
17214937 4649 if (to == arg->primary && from->tls_gotno + to->tls_gotno)
e2ece73c
RS
4650 estimate += arg->global_count;
4651 else
4652 estimate += from->global_gotno + to->global_gotno;
c224138d
RS
4653
4654 /* Bail out if the combined GOT might be too big. */
4655 if (estimate > arg->max_count)
4656 return -1;
4657
c224138d 4658 /* Transfer the bfd's got information from FROM to TO. */
d7206569
RS
4659 tga.info = arg->info;
4660 tga.g = to;
4661 htab_traverse (from->got_entries, mips_elf_add_got_entry, &tga);
4662 if (!tga.g)
c224138d
RS
4663 return 0;
4664
d7206569
RS
4665 htab_traverse (from->got_page_entries, mips_elf_add_got_page_entry, &tga);
4666 if (!tga.g)
c224138d
RS
4667 return 0;
4668
d7206569 4669 mips_elf_replace_bfd_got (abfd, to);
c224138d
RS
4670 return 1;
4671}
4672
d7206569 4673/* Attempt to merge GOT G, which belongs to ABFD. Try to use as much
f4416af6
AO
4674 as possible of the primary got, since it doesn't require explicit
4675 dynamic relocations, but don't use bfds that would reference global
4676 symbols out of the addressable range. Failing the primary got,
4677 attempt to merge with the current got, or finish the current got
4678 and then make make the new got current. */
4679
d7206569
RS
4680static bfd_boolean
4681mips_elf_merge_got (bfd *abfd, struct mips_got_info *g,
4682 struct mips_elf_got_per_bfd_arg *arg)
f4416af6 4683{
c224138d
RS
4684 unsigned int estimate;
4685 int result;
4686
476366af 4687 if (!mips_elf_resolve_final_got_entries (arg->info, g))
d7206569
RS
4688 return FALSE;
4689
c224138d
RS
4690 /* Work out the number of page, local and TLS entries. */
4691 estimate = arg->max_pages;
4692 if (estimate > g->page_gotno)
4693 estimate = g->page_gotno;
4694 estimate += g->local_gotno + g->tls_gotno;
0f20cc35
DJ
4695
4696 /* We place TLS GOT entries after both locals and globals. The globals
4697 for the primary GOT may overflow the normal GOT size limit, so be
4698 sure not to merge a GOT which requires TLS with the primary GOT in that
4699 case. This doesn't affect non-primary GOTs. */
c224138d 4700 estimate += (g->tls_gotno > 0 ? arg->global_count : g->global_gotno);
143d77c5 4701
c224138d 4702 if (estimate <= arg->max_count)
f4416af6 4703 {
c224138d
RS
4704 /* If we don't have a primary GOT, use it as
4705 a starting point for the primary GOT. */
4706 if (!arg->primary)
4707 {
d7206569
RS
4708 arg->primary = g;
4709 return TRUE;
c224138d 4710 }
f4416af6 4711
c224138d 4712 /* Try merging with the primary GOT. */
d7206569 4713 result = mips_elf_merge_got_with (abfd, g, arg->primary, arg);
c224138d
RS
4714 if (result >= 0)
4715 return result;
f4416af6 4716 }
c224138d 4717
f4416af6 4718 /* If we can merge with the last-created got, do it. */
c224138d 4719 if (arg->current)
f4416af6 4720 {
d7206569 4721 result = mips_elf_merge_got_with (abfd, g, arg->current, arg);
c224138d
RS
4722 if (result >= 0)
4723 return result;
f4416af6 4724 }
c224138d 4725
f4416af6
AO
4726 /* Well, we couldn't merge, so create a new GOT. Don't check if it
4727 fits; if it turns out that it doesn't, we'll get relocation
4728 overflows anyway. */
c224138d
RS
4729 g->next = arg->current;
4730 arg->current = g;
0f20cc35 4731
d7206569 4732 return TRUE;
0f20cc35
DJ
4733}
4734
72e7511a
RS
4735/* ENTRYP is a hash table entry for a mips_got_entry. Set its gotidx
4736 to GOTIDX, duplicating the entry if it has already been assigned
4737 an index in a different GOT. */
4738
4739static bfd_boolean
4740mips_elf_set_gotidx (void **entryp, long gotidx)
4741{
4742 struct mips_got_entry *entry;
4743
4744 entry = (struct mips_got_entry *) *entryp;
4745 if (entry->gotidx > 0)
4746 {
4747 struct mips_got_entry *new_entry;
4748
4749 new_entry = bfd_alloc (entry->abfd, sizeof (*entry));
4750 if (!new_entry)
4751 return FALSE;
4752
4753 *new_entry = *entry;
4754 *entryp = new_entry;
4755 entry = new_entry;
4756 }
4757 entry->gotidx = gotidx;
4758 return TRUE;
4759}
4760
4761/* Set the TLS GOT index for the GOT entry in ENTRYP. DATA points to a
4762 mips_elf_traverse_got_arg in which DATA->value is the size of one
4763 GOT entry. Set DATA->g to null on failure. */
0f20cc35
DJ
4764
4765static int
72e7511a 4766mips_elf_initialize_tls_index (void **entryp, void *data)
0f20cc35 4767{
72e7511a
RS
4768 struct mips_got_entry *entry;
4769 struct mips_elf_traverse_got_arg *arg;
0f20cc35
DJ
4770
4771 /* We're only interested in TLS symbols. */
72e7511a 4772 entry = (struct mips_got_entry *) *entryp;
9ab066b4 4773 if (entry->tls_type == GOT_TLS_NONE)
0f20cc35
DJ
4774 return 1;
4775
72e7511a 4776 arg = (struct mips_elf_traverse_got_arg *) data;
6c42ddb9 4777 if (!mips_elf_set_gotidx (entryp, arg->value * arg->g->tls_assigned_gotno))
ead49a57 4778 {
6c42ddb9
RS
4779 arg->g = NULL;
4780 return 0;
f4416af6
AO
4781 }
4782
ead49a57 4783 /* Account for the entries we've just allocated. */
9ab066b4 4784 arg->g->tls_assigned_gotno += mips_tls_got_entries (entry->tls_type);
f4416af6
AO
4785 return 1;
4786}
4787
ab361d49
RS
4788/* A htab_traverse callback for GOT entries, where DATA points to a
4789 mips_elf_traverse_got_arg. Set the global_got_area of each global
4790 symbol to DATA->value. */
f4416af6 4791
f4416af6 4792static int
ab361d49 4793mips_elf_set_global_got_area (void **entryp, void *data)
f4416af6 4794{
ab361d49
RS
4795 struct mips_got_entry *entry;
4796 struct mips_elf_traverse_got_arg *arg;
f4416af6 4797
ab361d49
RS
4798 entry = (struct mips_got_entry *) *entryp;
4799 arg = (struct mips_elf_traverse_got_arg *) data;
4800 if (entry->abfd != NULL
4801 && entry->symndx == -1
4802 && entry->d.h->global_got_area != GGA_NONE)
4803 entry->d.h->global_got_area = arg->value;
4804 return 1;
4805}
4806
4807/* A htab_traverse callback for secondary GOT entries, where DATA points
4808 to a mips_elf_traverse_got_arg. Assign GOT indices to global entries
4809 and record the number of relocations they require. DATA->value is
72e7511a 4810 the size of one GOT entry. Set DATA->g to null on failure. */
ab361d49
RS
4811
4812static int
4813mips_elf_set_global_gotidx (void **entryp, void *data)
4814{
4815 struct mips_got_entry *entry;
4816 struct mips_elf_traverse_got_arg *arg;
0f20cc35 4817
ab361d49
RS
4818 entry = (struct mips_got_entry *) *entryp;
4819 arg = (struct mips_elf_traverse_got_arg *) data;
634835ae
RS
4820 if (entry->abfd != NULL
4821 && entry->symndx == -1
4822 && entry->d.h->global_got_area != GGA_NONE)
f4416af6 4823 {
cb22ccf4 4824 if (!mips_elf_set_gotidx (entryp, arg->value * arg->g->assigned_low_gotno))
72e7511a
RS
4825 {
4826 arg->g = NULL;
4827 return 0;
4828 }
cb22ccf4 4829 arg->g->assigned_low_gotno += 1;
72e7511a 4830
0e1862bb 4831 if (bfd_link_pic (arg->info)
ab361d49
RS
4832 || (elf_hash_table (arg->info)->dynamic_sections_created
4833 && entry->d.h->root.def_dynamic
4834 && !entry->d.h->root.def_regular))
4835 arg->g->relocs += 1;
f4416af6
AO
4836 }
4837
4838 return 1;
4839}
4840
33bb52fb
RS
4841/* A htab_traverse callback for GOT entries for which DATA is the
4842 bfd_link_info. Forbid any global symbols from having traditional
4843 lazy-binding stubs. */
4844
0626d451 4845static int
33bb52fb 4846mips_elf_forbid_lazy_stubs (void **entryp, void *data)
0626d451 4847{
33bb52fb
RS
4848 struct bfd_link_info *info;
4849 struct mips_elf_link_hash_table *htab;
4850 struct mips_got_entry *entry;
0626d451 4851
33bb52fb
RS
4852 entry = (struct mips_got_entry *) *entryp;
4853 info = (struct bfd_link_info *) data;
4854 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
4855 BFD_ASSERT (htab != NULL);
4856
0626d451
RS
4857 if (entry->abfd != NULL
4858 && entry->symndx == -1
33bb52fb 4859 && entry->d.h->needs_lazy_stub)
f4416af6 4860 {
33bb52fb
RS
4861 entry->d.h->needs_lazy_stub = FALSE;
4862 htab->lazy_stub_count--;
f4416af6 4863 }
143d77c5 4864
f4416af6
AO
4865 return 1;
4866}
4867
f4416af6
AO
4868/* Return the offset of an input bfd IBFD's GOT from the beginning of
4869 the primary GOT. */
4870static bfd_vma
9719ad41 4871mips_elf_adjust_gp (bfd *abfd, struct mips_got_info *g, bfd *ibfd)
f4416af6 4872{
d7206569 4873 if (!g->next)
f4416af6
AO
4874 return 0;
4875
d7206569 4876 g = mips_elf_bfd_got (ibfd, FALSE);
f4416af6
AO
4877 if (! g)
4878 return 0;
4879
4880 BFD_ASSERT (g->next);
4881
4882 g = g->next;
143d77c5 4883
0f20cc35
DJ
4884 return (g->local_gotno + g->global_gotno + g->tls_gotno)
4885 * MIPS_ELF_GOT_SIZE (abfd);
f4416af6
AO
4886}
4887
4888/* Turn a single GOT that is too big for 16-bit addressing into
4889 a sequence of GOTs, each one 16-bit addressable. */
4890
4891static bfd_boolean
9719ad41 4892mips_elf_multi_got (bfd *abfd, struct bfd_link_info *info,
a8028dd0 4893 asection *got, bfd_size_type pages)
f4416af6 4894{
a8028dd0 4895 struct mips_elf_link_hash_table *htab;
f4416af6 4896 struct mips_elf_got_per_bfd_arg got_per_bfd_arg;
ab361d49 4897 struct mips_elf_traverse_got_arg tga;
a8028dd0 4898 struct mips_got_info *g, *gg;
33bb52fb 4899 unsigned int assign, needed_relocs;
d7206569 4900 bfd *dynobj, *ibfd;
f4416af6 4901
33bb52fb 4902 dynobj = elf_hash_table (info)->dynobj;
a8028dd0 4903 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
4904 BFD_ASSERT (htab != NULL);
4905
a8028dd0 4906 g = htab->got_info;
f4416af6 4907
f4416af6
AO
4908 got_per_bfd_arg.obfd = abfd;
4909 got_per_bfd_arg.info = info;
f4416af6
AO
4910 got_per_bfd_arg.current = NULL;
4911 got_per_bfd_arg.primary = NULL;
0a44bf69 4912 got_per_bfd_arg.max_count = ((MIPS_ELF_GOT_MAX_SIZE (info)
f4416af6 4913 / MIPS_ELF_GOT_SIZE (abfd))
861fb55a 4914 - htab->reserved_gotno);
c224138d 4915 got_per_bfd_arg.max_pages = pages;
0f20cc35 4916 /* The number of globals that will be included in the primary GOT.
ab361d49 4917 See the calls to mips_elf_set_global_got_area below for more
0f20cc35
DJ
4918 information. */
4919 got_per_bfd_arg.global_count = g->global_gotno;
f4416af6
AO
4920
4921 /* Try to merge the GOTs of input bfds together, as long as they
4922 don't seem to exceed the maximum GOT size, choosing one of them
4923 to be the primary GOT. */
c72f2fb2 4924 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
d7206569
RS
4925 {
4926 gg = mips_elf_bfd_got (ibfd, FALSE);
4927 if (gg && !mips_elf_merge_got (ibfd, gg, &got_per_bfd_arg))
4928 return FALSE;
4929 }
f4416af6 4930
0f20cc35 4931 /* If we do not find any suitable primary GOT, create an empty one. */
f4416af6 4932 if (got_per_bfd_arg.primary == NULL)
3dff0dd1 4933 g->next = mips_elf_create_got_info (abfd);
f4416af6
AO
4934 else
4935 g->next = got_per_bfd_arg.primary;
4936 g->next->next = got_per_bfd_arg.current;
4937
4938 /* GG is now the master GOT, and G is the primary GOT. */
4939 gg = g;
4940 g = g->next;
4941
4942 /* Map the output bfd to the primary got. That's what we're going
4943 to use for bfds that use GOT16 or GOT_PAGE relocations that we
4944 didn't mark in check_relocs, and we want a quick way to find it.
4945 We can't just use gg->next because we're going to reverse the
4946 list. */
d7206569 4947 mips_elf_replace_bfd_got (abfd, g);
f4416af6 4948
634835ae
RS
4949 /* Every symbol that is referenced in a dynamic relocation must be
4950 present in the primary GOT, so arrange for them to appear after
4951 those that are actually referenced. */
23cc69b6 4952 gg->reloc_only_gotno = gg->global_gotno - g->global_gotno;
634835ae 4953 g->global_gotno = gg->global_gotno;
f4416af6 4954
ab361d49
RS
4955 tga.info = info;
4956 tga.value = GGA_RELOC_ONLY;
4957 htab_traverse (gg->got_entries, mips_elf_set_global_got_area, &tga);
4958 tga.value = GGA_NORMAL;
4959 htab_traverse (g->got_entries, mips_elf_set_global_got_area, &tga);
f4416af6
AO
4960
4961 /* Now go through the GOTs assigning them offset ranges.
cb22ccf4 4962 [assigned_low_gotno, local_gotno[ will be set to the range of local
f4416af6
AO
4963 entries in each GOT. We can then compute the end of a GOT by
4964 adding local_gotno to global_gotno. We reverse the list and make
4965 it circular since then we'll be able to quickly compute the
4966 beginning of a GOT, by computing the end of its predecessor. To
4967 avoid special cases for the primary GOT, while still preserving
4968 assertions that are valid for both single- and multi-got links,
4969 we arrange for the main got struct to have the right number of
4970 global entries, but set its local_gotno such that the initial
4971 offset of the primary GOT is zero. Remember that the primary GOT
4972 will become the last item in the circular linked list, so it
4973 points back to the master GOT. */
4974 gg->local_gotno = -g->global_gotno;
4975 gg->global_gotno = g->global_gotno;
0f20cc35 4976 gg->tls_gotno = 0;
f4416af6
AO
4977 assign = 0;
4978 gg->next = gg;
4979
4980 do
4981 {
4982 struct mips_got_info *gn;
4983
861fb55a 4984 assign += htab->reserved_gotno;
cb22ccf4 4985 g->assigned_low_gotno = assign;
c224138d
RS
4986 g->local_gotno += assign;
4987 g->local_gotno += (pages < g->page_gotno ? pages : g->page_gotno);
cb22ccf4 4988 g->assigned_high_gotno = g->local_gotno - 1;
0f20cc35
DJ
4989 assign = g->local_gotno + g->global_gotno + g->tls_gotno;
4990
ead49a57
RS
4991 /* Take g out of the direct list, and push it onto the reversed
4992 list that gg points to. g->next is guaranteed to be nonnull after
4993 this operation, as required by mips_elf_initialize_tls_index. */
4994 gn = g->next;
4995 g->next = gg->next;
4996 gg->next = g;
4997
0f20cc35
DJ
4998 /* Set up any TLS entries. We always place the TLS entries after
4999 all non-TLS entries. */
5000 g->tls_assigned_gotno = g->local_gotno + g->global_gotno;
72e7511a
RS
5001 tga.g = g;
5002 tga.value = MIPS_ELF_GOT_SIZE (abfd);
5003 htab_traverse (g->got_entries, mips_elf_initialize_tls_index, &tga);
5004 if (!tga.g)
5005 return FALSE;
1fd20d70 5006 BFD_ASSERT (g->tls_assigned_gotno == assign);
f4416af6 5007
ead49a57 5008 /* Move onto the next GOT. It will be a secondary GOT if nonull. */
f4416af6 5009 g = gn;
0626d451 5010
33bb52fb
RS
5011 /* Forbid global symbols in every non-primary GOT from having
5012 lazy-binding stubs. */
0626d451 5013 if (g)
33bb52fb 5014 htab_traverse (g->got_entries, mips_elf_forbid_lazy_stubs, info);
f4416af6
AO
5015 }
5016 while (g);
5017
59b08994 5018 got->size = assign * MIPS_ELF_GOT_SIZE (abfd);
33bb52fb
RS
5019
5020 needed_relocs = 0;
33bb52fb
RS
5021 for (g = gg->next; g && g->next != gg; g = g->next)
5022 {
5023 unsigned int save_assign;
5024
ab361d49
RS
5025 /* Assign offsets to global GOT entries and count how many
5026 relocations they need. */
cb22ccf4
KCY
5027 save_assign = g->assigned_low_gotno;
5028 g->assigned_low_gotno = g->local_gotno;
ab361d49
RS
5029 tga.info = info;
5030 tga.value = MIPS_ELF_GOT_SIZE (abfd);
5031 tga.g = g;
5032 htab_traverse (g->got_entries, mips_elf_set_global_gotidx, &tga);
72e7511a
RS
5033 if (!tga.g)
5034 return FALSE;
cb22ccf4
KCY
5035 BFD_ASSERT (g->assigned_low_gotno == g->local_gotno + g->global_gotno);
5036 g->assigned_low_gotno = save_assign;
72e7511a 5037
0e1862bb 5038 if (bfd_link_pic (info))
33bb52fb 5039 {
cb22ccf4
KCY
5040 g->relocs += g->local_gotno - g->assigned_low_gotno;
5041 BFD_ASSERT (g->assigned_low_gotno == g->next->local_gotno
33bb52fb
RS
5042 + g->next->global_gotno
5043 + g->next->tls_gotno
861fb55a 5044 + htab->reserved_gotno);
33bb52fb 5045 }
ab361d49 5046 needed_relocs += g->relocs;
33bb52fb 5047 }
ab361d49 5048 needed_relocs += g->relocs;
33bb52fb
RS
5049
5050 if (needed_relocs)
5051 mips_elf_allocate_dynamic_relocations (dynobj, info,
5052 needed_relocs);
143d77c5 5053
f4416af6
AO
5054 return TRUE;
5055}
143d77c5 5056
b49e97c9
TS
5057\f
5058/* Returns the first relocation of type r_type found, beginning with
5059 RELOCATION. RELEND is one-past-the-end of the relocation table. */
5060
5061static const Elf_Internal_Rela *
9719ad41
RS
5062mips_elf_next_relocation (bfd *abfd ATTRIBUTE_UNUSED, unsigned int r_type,
5063 const Elf_Internal_Rela *relocation,
5064 const Elf_Internal_Rela *relend)
b49e97c9 5065{
c000e262
TS
5066 unsigned long r_symndx = ELF_R_SYM (abfd, relocation->r_info);
5067
b49e97c9
TS
5068 while (relocation < relend)
5069 {
c000e262
TS
5070 if (ELF_R_TYPE (abfd, relocation->r_info) == r_type
5071 && ELF_R_SYM (abfd, relocation->r_info) == r_symndx)
b49e97c9
TS
5072 return relocation;
5073
5074 ++relocation;
5075 }
5076
5077 /* We didn't find it. */
b49e97c9
TS
5078 return NULL;
5079}
5080
020d7251 5081/* Return whether an input relocation is against a local symbol. */
b49e97c9 5082
b34976b6 5083static bfd_boolean
9719ad41
RS
5084mips_elf_local_relocation_p (bfd *input_bfd,
5085 const Elf_Internal_Rela *relocation,
020d7251 5086 asection **local_sections)
b49e97c9
TS
5087{
5088 unsigned long r_symndx;
5089 Elf_Internal_Shdr *symtab_hdr;
b49e97c9
TS
5090 size_t extsymoff;
5091
5092 r_symndx = ELF_R_SYM (input_bfd, relocation->r_info);
5093 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
5094 extsymoff = (elf_bad_symtab (input_bfd)) ? 0 : symtab_hdr->sh_info;
5095
5096 if (r_symndx < extsymoff)
b34976b6 5097 return TRUE;
b49e97c9 5098 if (elf_bad_symtab (input_bfd) && local_sections[r_symndx] != NULL)
b34976b6 5099 return TRUE;
b49e97c9 5100
b34976b6 5101 return FALSE;
b49e97c9
TS
5102}
5103\f
5104/* Sign-extend VALUE, which has the indicated number of BITS. */
5105
a7ebbfdf 5106bfd_vma
9719ad41 5107_bfd_mips_elf_sign_extend (bfd_vma value, int bits)
b49e97c9
TS
5108{
5109 if (value & ((bfd_vma) 1 << (bits - 1)))
5110 /* VALUE is negative. */
5111 value |= ((bfd_vma) - 1) << bits;
5112
5113 return value;
5114}
5115
5116/* Return non-zero if the indicated VALUE has overflowed the maximum
4cc11e76 5117 range expressible by a signed number with the indicated number of
b49e97c9
TS
5118 BITS. */
5119
b34976b6 5120static bfd_boolean
9719ad41 5121mips_elf_overflow_p (bfd_vma value, int bits)
b49e97c9
TS
5122{
5123 bfd_signed_vma svalue = (bfd_signed_vma) value;
5124
5125 if (svalue > (1 << (bits - 1)) - 1)
5126 /* The value is too big. */
b34976b6 5127 return TRUE;
b49e97c9
TS
5128 else if (svalue < -(1 << (bits - 1)))
5129 /* The value is too small. */
b34976b6 5130 return TRUE;
b49e97c9
TS
5131
5132 /* All is well. */
b34976b6 5133 return FALSE;
b49e97c9
TS
5134}
5135
5136/* Calculate the %high function. */
5137
5138static bfd_vma
9719ad41 5139mips_elf_high (bfd_vma value)
b49e97c9
TS
5140{
5141 return ((value + (bfd_vma) 0x8000) >> 16) & 0xffff;
5142}
5143
5144/* Calculate the %higher function. */
5145
5146static bfd_vma
9719ad41 5147mips_elf_higher (bfd_vma value ATTRIBUTE_UNUSED)
b49e97c9
TS
5148{
5149#ifdef BFD64
5150 return ((value + (bfd_vma) 0x80008000) >> 32) & 0xffff;
5151#else
5152 abort ();
c5ae1840 5153 return MINUS_ONE;
b49e97c9
TS
5154#endif
5155}
5156
5157/* Calculate the %highest function. */
5158
5159static bfd_vma
9719ad41 5160mips_elf_highest (bfd_vma value ATTRIBUTE_UNUSED)
b49e97c9
TS
5161{
5162#ifdef BFD64
b15e6682 5163 return ((value + (((bfd_vma) 0x8000 << 32) | 0x80008000)) >> 48) & 0xffff;
b49e97c9
TS
5164#else
5165 abort ();
c5ae1840 5166 return MINUS_ONE;
b49e97c9
TS
5167#endif
5168}
5169\f
5170/* Create the .compact_rel section. */
5171
b34976b6 5172static bfd_boolean
9719ad41
RS
5173mips_elf_create_compact_rel_section
5174 (bfd *abfd, struct bfd_link_info *info ATTRIBUTE_UNUSED)
b49e97c9
TS
5175{
5176 flagword flags;
5177 register asection *s;
5178
3d4d4302 5179 if (bfd_get_linker_section (abfd, ".compact_rel") == NULL)
b49e97c9
TS
5180 {
5181 flags = (SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED
5182 | SEC_READONLY);
5183
3d4d4302 5184 s = bfd_make_section_anyway_with_flags (abfd, ".compact_rel", flags);
b49e97c9 5185 if (s == NULL
fd361982 5186 || !bfd_set_section_alignment (s, MIPS_ELF_LOG_FILE_ALIGN (abfd)))
b34976b6 5187 return FALSE;
b49e97c9 5188
eea6121a 5189 s->size = sizeof (Elf32_External_compact_rel);
b49e97c9
TS
5190 }
5191
b34976b6 5192 return TRUE;
b49e97c9
TS
5193}
5194
5195/* Create the .got section to hold the global offset table. */
5196
b34976b6 5197static bfd_boolean
23cc69b6 5198mips_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
b49e97c9
TS
5199{
5200 flagword flags;
5201 register asection *s;
5202 struct elf_link_hash_entry *h;
14a793b2 5203 struct bfd_link_hash_entry *bh;
0a44bf69
RS
5204 struct mips_elf_link_hash_table *htab;
5205
5206 htab = mips_elf_hash_table (info);
4dfe6ac6 5207 BFD_ASSERT (htab != NULL);
b49e97c9
TS
5208
5209 /* This function may be called more than once. */
ce558b89 5210 if (htab->root.sgot)
23cc69b6 5211 return TRUE;
b49e97c9
TS
5212
5213 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
5214 | SEC_LINKER_CREATED);
5215
72b4917c
TS
5216 /* We have to use an alignment of 2**4 here because this is hardcoded
5217 in the function stub generation and in the linker script. */
87e0a731 5218 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
b49e97c9 5219 if (s == NULL
fd361982 5220 || !bfd_set_section_alignment (s, 4))
b34976b6 5221 return FALSE;
ce558b89 5222 htab->root.sgot = s;
b49e97c9
TS
5223
5224 /* Define the symbol _GLOBAL_OFFSET_TABLE_. We don't do this in the
5225 linker script because we don't want to define the symbol if we
5226 are not creating a global offset table. */
14a793b2 5227 bh = NULL;
b49e97c9
TS
5228 if (! (_bfd_generic_link_add_one_symbol
5229 (info, abfd, "_GLOBAL_OFFSET_TABLE_", BSF_GLOBAL, s,
9719ad41 5230 0, NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
b34976b6 5231 return FALSE;
14a793b2
AM
5232
5233 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
5234 h->non_elf = 0;
5235 h->def_regular = 1;
b49e97c9 5236 h->type = STT_OBJECT;
2f9efdfc 5237 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
d329bcd1 5238 elf_hash_table (info)->hgot = h;
b49e97c9 5239
0e1862bb 5240 if (bfd_link_pic (info)
c152c796 5241 && ! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 5242 return FALSE;
b49e97c9 5243
3dff0dd1 5244 htab->got_info = mips_elf_create_got_info (abfd);
f0abc2a1 5245 mips_elf_section_data (s)->elf.this_hdr.sh_flags
b49e97c9
TS
5246 |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL;
5247
861fb55a 5248 /* We also need a .got.plt section when generating PLTs. */
87e0a731
AM
5249 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt",
5250 SEC_ALLOC | SEC_LOAD
5251 | SEC_HAS_CONTENTS
5252 | SEC_IN_MEMORY
5253 | SEC_LINKER_CREATED);
861fb55a
DJ
5254 if (s == NULL)
5255 return FALSE;
ce558b89 5256 htab->root.sgotplt = s;
0a44bf69 5257
b34976b6 5258 return TRUE;
b49e97c9 5259}
b49e97c9 5260\f
0a44bf69
RS
5261/* Return true if H refers to the special VxWorks __GOTT_BASE__ or
5262 __GOTT_INDEX__ symbols. These symbols are only special for
5263 shared objects; they are not used in executables. */
5264
5265static bfd_boolean
5266is_gott_symbol (struct bfd_link_info *info, struct elf_link_hash_entry *h)
5267{
90c14f0c 5268 return (mips_elf_hash_table (info)->root.target_os == is_vxworks
0e1862bb 5269 && bfd_link_pic (info)
0a44bf69
RS
5270 && (strcmp (h->root.root.string, "__GOTT_BASE__") == 0
5271 || strcmp (h->root.root.string, "__GOTT_INDEX__") == 0));
5272}
861fb55a
DJ
5273
5274/* Return TRUE if a relocation of type R_TYPE from INPUT_BFD might
5275 require an la25 stub. See also mips_elf_local_pic_function_p,
5276 which determines whether the destination function ever requires a
5277 stub. */
5278
5279static bfd_boolean
8f0c309a
CLT
5280mips_elf_relocation_needs_la25_stub (bfd *input_bfd, int r_type,
5281 bfd_boolean target_is_16_bit_code_p)
861fb55a
DJ
5282{
5283 /* We specifically ignore branches and jumps from EF_PIC objects,
5284 where the onus is on the compiler or programmer to perform any
5285 necessary initialization of $25. Sometimes such initialization
5286 is unnecessary; for example, -mno-shared functions do not use
5287 the incoming value of $25, and may therefore be called directly. */
5288 if (PIC_OBJECT_P (input_bfd))
5289 return FALSE;
5290
5291 switch (r_type)
5292 {
5293 case R_MIPS_26:
5294 case R_MIPS_PC16:
7361da2c
AB
5295 case R_MIPS_PC21_S2:
5296 case R_MIPS_PC26_S2:
df58fc94
RS
5297 case R_MICROMIPS_26_S1:
5298 case R_MICROMIPS_PC7_S1:
5299 case R_MICROMIPS_PC10_S1:
5300 case R_MICROMIPS_PC16_S1:
5301 case R_MICROMIPS_PC23_S2:
861fb55a
DJ
5302 return TRUE;
5303
8f0c309a
CLT
5304 case R_MIPS16_26:
5305 return !target_is_16_bit_code_p;
5306
861fb55a
DJ
5307 default:
5308 return FALSE;
5309 }
5310}
0a44bf69 5311\f
47275900
MR
5312/* Obtain the field relocated by RELOCATION. */
5313
5314static bfd_vma
5315mips_elf_obtain_contents (reloc_howto_type *howto,
5316 const Elf_Internal_Rela *relocation,
5317 bfd *input_bfd, bfd_byte *contents)
5318{
5319 bfd_vma x = 0;
5320 bfd_byte *location = contents + relocation->r_offset;
5321 unsigned int size = bfd_get_reloc_size (howto);
5322
5323 /* Obtain the bytes. */
5324 if (size != 0)
5325 x = bfd_get (8 * size, input_bfd, location);
5326
5327 return x;
5328}
5329
98e10ffa
MR
5330/* Store the field relocated by RELOCATION. */
5331
5332static void
5333mips_elf_store_contents (reloc_howto_type *howto,
5334 const Elf_Internal_Rela *relocation,
5335 bfd *input_bfd, bfd_byte *contents, bfd_vma x)
5336{
5337 bfd_byte *location = contents + relocation->r_offset;
5338 unsigned int size = bfd_get_reloc_size (howto);
5339
5340 /* Put the value into the output. */
5341 if (size != 0)
5342 bfd_put (8 * size, input_bfd, x, location);
5343}
5344
47275900
MR
5345/* Try to patch a load from GOT instruction in CONTENTS pointed to by
5346 RELOCATION described by HOWTO, with a move of 0 to the load target
5347 register, returning TRUE if that is successful and FALSE otherwise.
5348 If DOIT is FALSE, then only determine it patching is possible and
5349 return status without actually changing CONTENTS.
5350*/
5351
5352static bfd_boolean
5353mips_elf_nullify_got_load (bfd *input_bfd, bfd_byte *contents,
5354 const Elf_Internal_Rela *relocation,
5355 reloc_howto_type *howto, bfd_boolean doit)
5356{
5357 int r_type = ELF_R_TYPE (input_bfd, relocation->r_info);
5358 bfd_byte *location = contents + relocation->r_offset;
5359 bfd_boolean nullified = TRUE;
5360 bfd_vma x;
5361
5362 _bfd_mips_elf_reloc_unshuffle (input_bfd, r_type, FALSE, location);
5363
5364 /* Obtain the current value. */
5365 x = mips_elf_obtain_contents (howto, relocation, input_bfd, contents);
5366
5367 /* Note that in the unshuffled MIPS16 encoding RX is at bits [21:19]
5368 while RY is at bits [18:16] of the combined 32-bit instruction word. */
5369 if (mips16_reloc_p (r_type)
5370 && (((x >> 22) & 0x3ff) == 0x3d3 /* LW */
5371 || ((x >> 22) & 0x3ff) == 0x3c7)) /* LD */
5372 x = (0x3cd << 22) | (x & (7 << 16)) << 3; /* LI */
5373 else if (micromips_reloc_p (r_type)
5374 && ((x >> 26) & 0x37) == 0x37) /* LW/LD */
5375 x = (0xc << 26) | (x & (0x1f << 21)); /* ADDIU */
5376 else if (((x >> 26) & 0x3f) == 0x23 /* LW */
5377 || ((x >> 26) & 0x3f) == 0x37) /* LD */
5378 x = (0x9 << 26) | (x & (0x1f << 16)); /* ADDIU */
5379 else
5380 nullified = FALSE;
5381
5382 /* Put the value into the output. */
5383 if (doit && nullified)
5384 mips_elf_store_contents (howto, relocation, input_bfd, contents, x);
5385
5386 _bfd_mips_elf_reloc_shuffle (input_bfd, r_type, FALSE, location);
5387
5388 return nullified;
5389}
5390
b49e97c9
TS
5391/* Calculate the value produced by the RELOCATION (which comes from
5392 the INPUT_BFD). The ADDEND is the addend to use for this
5393 RELOCATION; RELOCATION->R_ADDEND is ignored.
5394
5395 The result of the relocation calculation is stored in VALUEP.
38a7df63 5396 On exit, set *CROSS_MODE_JUMP_P to true if the relocation field
df58fc94 5397 is a MIPS16 or microMIPS jump to standard MIPS code, or vice versa.
b49e97c9
TS
5398
5399 This function returns bfd_reloc_continue if the caller need take no
5400 further action regarding this relocation, bfd_reloc_notsupported if
5401 something goes dramatically wrong, bfd_reloc_overflow if an
5402 overflow occurs, and bfd_reloc_ok to indicate success. */
5403
5404static bfd_reloc_status_type
9719ad41 5405mips_elf_calculate_relocation (bfd *abfd, bfd *input_bfd,
47275900 5406 asection *input_section, bfd_byte *contents,
9719ad41
RS
5407 struct bfd_link_info *info,
5408 const Elf_Internal_Rela *relocation,
5409 bfd_vma addend, reloc_howto_type *howto,
5410 Elf_Internal_Sym *local_syms,
5411 asection **local_sections, bfd_vma *valuep,
38a7df63
CF
5412 const char **namep,
5413 bfd_boolean *cross_mode_jump_p,
9719ad41 5414 bfd_boolean save_addend)
b49e97c9
TS
5415{
5416 /* The eventual value we will return. */
5417 bfd_vma value;
5418 /* The address of the symbol against which the relocation is
5419 occurring. */
5420 bfd_vma symbol = 0;
5421 /* The final GP value to be used for the relocatable, executable, or
5422 shared object file being produced. */
0a61c8c2 5423 bfd_vma gp;
b49e97c9
TS
5424 /* The place (section offset or address) of the storage unit being
5425 relocated. */
5426 bfd_vma p;
5427 /* The value of GP used to create the relocatable object. */
0a61c8c2 5428 bfd_vma gp0;
b49e97c9
TS
5429 /* The offset into the global offset table at which the address of
5430 the relocation entry symbol, adjusted by the addend, resides
5431 during execution. */
5432 bfd_vma g = MINUS_ONE;
5433 /* The section in which the symbol referenced by the relocation is
5434 located. */
5435 asection *sec = NULL;
5436 struct mips_elf_link_hash_entry *h = NULL;
b34976b6 5437 /* TRUE if the symbol referred to by this relocation is a local
b49e97c9 5438 symbol. */
b34976b6 5439 bfd_boolean local_p, was_local_p;
77434823
MR
5440 /* TRUE if the symbol referred to by this relocation is a section
5441 symbol. */
5442 bfd_boolean section_p = FALSE;
b34976b6
AM
5443 /* TRUE if the symbol referred to by this relocation is "_gp_disp". */
5444 bfd_boolean gp_disp_p = FALSE;
bbe506e8
TS
5445 /* TRUE if the symbol referred to by this relocation is
5446 "__gnu_local_gp". */
5447 bfd_boolean gnu_local_gp_p = FALSE;
b49e97c9
TS
5448 Elf_Internal_Shdr *symtab_hdr;
5449 size_t extsymoff;
5450 unsigned long r_symndx;
5451 int r_type;
b34976b6 5452 /* TRUE if overflow occurred during the calculation of the
b49e97c9 5453 relocation value. */
b34976b6
AM
5454 bfd_boolean overflowed_p;
5455 /* TRUE if this relocation refers to a MIPS16 function. */
5456 bfd_boolean target_is_16_bit_code_p = FALSE;
df58fc94 5457 bfd_boolean target_is_micromips_code_p = FALSE;
0a44bf69
RS
5458 struct mips_elf_link_hash_table *htab;
5459 bfd *dynobj;
ad951203 5460 bfd_boolean resolved_to_zero;
0a44bf69
RS
5461
5462 dynobj = elf_hash_table (info)->dynobj;
5463 htab = mips_elf_hash_table (info);
4dfe6ac6 5464 BFD_ASSERT (htab != NULL);
b49e97c9
TS
5465
5466 /* Parse the relocation. */
5467 r_symndx = ELF_R_SYM (input_bfd, relocation->r_info);
5468 r_type = ELF_R_TYPE (input_bfd, relocation->r_info);
5469 p = (input_section->output_section->vma
5470 + input_section->output_offset
5471 + relocation->r_offset);
5472
5473 /* Assume that there will be no overflow. */
b34976b6 5474 overflowed_p = FALSE;
b49e97c9
TS
5475
5476 /* Figure out whether or not the symbol is local, and get the offset
5477 used in the array of hash table entries. */
5478 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
5479 local_p = mips_elf_local_relocation_p (input_bfd, relocation,
020d7251 5480 local_sections);
bce03d3d 5481 was_local_p = local_p;
b49e97c9
TS
5482 if (! elf_bad_symtab (input_bfd))
5483 extsymoff = symtab_hdr->sh_info;
5484 else
5485 {
5486 /* The symbol table does not follow the rule that local symbols
5487 must come before globals. */
5488 extsymoff = 0;
5489 }
5490
5491 /* Figure out the value of the symbol. */
5492 if (local_p)
5493 {
9d862524 5494 bfd_boolean micromips_p = MICROMIPS_P (abfd);
b49e97c9
TS
5495 Elf_Internal_Sym *sym;
5496
5497 sym = local_syms + r_symndx;
5498 sec = local_sections[r_symndx];
5499
77434823
MR
5500 section_p = ELF_ST_TYPE (sym->st_info) == STT_SECTION;
5501
b49e97c9 5502 symbol = sec->output_section->vma + sec->output_offset;
77434823 5503 if (!section_p || (sec->flags & SEC_MERGE))
b49e97c9 5504 symbol += sym->st_value;
77434823 5505 if ((sec->flags & SEC_MERGE) && section_p)
d4df96e6
L
5506 {
5507 addend = _bfd_elf_rel_local_sym (abfd, sym, &sec, addend);
5508 addend -= symbol;
5509 addend += sec->output_section->vma + sec->output_offset;
5510 }
b49e97c9 5511
df58fc94
RS
5512 /* MIPS16/microMIPS text labels should be treated as odd. */
5513 if (ELF_ST_IS_COMPRESSED (sym->st_other))
b49e97c9
TS
5514 ++symbol;
5515
5516 /* Record the name of this symbol, for our caller. */
5517 *namep = bfd_elf_string_from_elf_section (input_bfd,
5518 symtab_hdr->sh_link,
5519 sym->st_name);
ceab86af 5520 if (*namep == NULL || **namep == '\0')
fd361982 5521 *namep = bfd_section_name (sec);
b49e97c9 5522
9d862524 5523 /* For relocations against a section symbol and ones against no
07d6d2b8 5524 symbol (absolute relocations) infer the ISA mode from the addend. */
9d862524
MR
5525 if (section_p || r_symndx == STN_UNDEF)
5526 {
5527 target_is_16_bit_code_p = (addend & 1) && !micromips_p;
5528 target_is_micromips_code_p = (addend & 1) && micromips_p;
5529 }
5530 /* For relocations against an absolute symbol infer the ISA mode
07d6d2b8 5531 from the value of the symbol plus addend. */
9d862524
MR
5532 else if (bfd_is_abs_section (sec))
5533 {
5534 target_is_16_bit_code_p = ((symbol + addend) & 1) && !micromips_p;
5535 target_is_micromips_code_p = ((symbol + addend) & 1) && micromips_p;
5536 }
5537 /* Otherwise just use the regular symbol annotation available. */
5538 else
5539 {
5540 target_is_16_bit_code_p = ELF_ST_IS_MIPS16 (sym->st_other);
5541 target_is_micromips_code_p = ELF_ST_IS_MICROMIPS (sym->st_other);
5542 }
b49e97c9
TS
5543 }
5544 else
5545 {
560e09e9
NC
5546 /* ??? Could we use RELOC_FOR_GLOBAL_SYMBOL here ? */
5547
b49e97c9
TS
5548 /* For global symbols we look up the symbol in the hash-table. */
5549 h = ((struct mips_elf_link_hash_entry *)
5550 elf_sym_hashes (input_bfd) [r_symndx - extsymoff]);
5551 /* Find the real hash-table entry for this symbol. */
5552 while (h->root.root.type == bfd_link_hash_indirect
5553 || h->root.root.type == bfd_link_hash_warning)
5554 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
5555
5556 /* Record the name of this symbol, for our caller. */
5557 *namep = h->root.root.root.string;
5558
5559 /* See if this is the special _gp_disp symbol. Note that such a
5560 symbol must always be a global symbol. */
560e09e9 5561 if (strcmp (*namep, "_gp_disp") == 0
b49e97c9
TS
5562 && ! NEWABI_P (input_bfd))
5563 {
5564 /* Relocations against _gp_disp are permitted only with
5565 R_MIPS_HI16 and R_MIPS_LO16 relocations. */
738e5348 5566 if (!hi16_reloc_p (r_type) && !lo16_reloc_p (r_type))
b49e97c9
TS
5567 return bfd_reloc_notsupported;
5568
b34976b6 5569 gp_disp_p = TRUE;
b49e97c9 5570 }
bbe506e8
TS
5571 /* See if this is the special _gp symbol. Note that such a
5572 symbol must always be a global symbol. */
5573 else if (strcmp (*namep, "__gnu_local_gp") == 0)
5574 gnu_local_gp_p = TRUE;
5575
5576
b49e97c9
TS
5577 /* If this symbol is defined, calculate its address. Note that
5578 _gp_disp is a magic symbol, always implicitly defined by the
5579 linker, so it's inappropriate to check to see whether or not
5580 its defined. */
5581 else if ((h->root.root.type == bfd_link_hash_defined
5582 || h->root.root.type == bfd_link_hash_defweak)
5583 && h->root.root.u.def.section)
5584 {
5585 sec = h->root.root.u.def.section;
5586 if (sec->output_section)
5587 symbol = (h->root.root.u.def.value
5588 + sec->output_section->vma
5589 + sec->output_offset);
5590 else
5591 symbol = h->root.root.u.def.value;
5592 }
5593 else if (h->root.root.type == bfd_link_hash_undefweak)
5594 /* We allow relocations against undefined weak symbols, giving
5595 it the value zero, so that you can undefined weak functions
5596 and check to see if they exist by looking at their
5597 addresses. */
5598 symbol = 0;
59c2e50f 5599 else if (info->unresolved_syms_in_objects == RM_IGNORE
b49e97c9
TS
5600 && ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT)
5601 symbol = 0;
a4d0f181
TS
5602 else if (strcmp (*namep, SGI_COMPAT (input_bfd)
5603 ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING") == 0)
b49e97c9
TS
5604 {
5605 /* If this is a dynamic link, we should have created a
5606 _DYNAMIC_LINK symbol or _DYNAMIC_LINKING(for normal mips) symbol
de194d85 5607 in _bfd_mips_elf_create_dynamic_sections.
b49e97c9
TS
5608 Otherwise, we should define the symbol with a value of 0.
5609 FIXME: It should probably get into the symbol table
5610 somehow as well. */
0e1862bb 5611 BFD_ASSERT (! bfd_link_pic (info));
b49e97c9
TS
5612 BFD_ASSERT (bfd_get_section_by_name (abfd, ".dynamic") == NULL);
5613 symbol = 0;
5614 }
5e2b0d47
NC
5615 else if (ELF_MIPS_IS_OPTIONAL (h->root.other))
5616 {
5617 /* This is an optional symbol - an Irix specific extension to the
5618 ELF spec. Ignore it for now.
5619 XXX - FIXME - there is more to the spec for OPTIONAL symbols
5620 than simply ignoring them, but we do not handle this for now.
5621 For information see the "64-bit ELF Object File Specification"
5622 which is available from here:
5623 http://techpubs.sgi.com/library/manuals/4000/007-4658-001/pdf/007-4658-001.pdf */
5624 symbol = 0;
5625 }
b49e97c9
TS
5626 else
5627 {
95a51568
FS
5628 bfd_boolean reject_undefined
5629 = (info->unresolved_syms_in_objects == RM_DIAGNOSE
5630 && !info->warn_unresolved_syms)
5631 || ELF_ST_VISIBILITY (h->root.other) != STV_DEFAULT;
dfb93f11 5632
95a51568 5633 info->callbacks->undefined_symbol
1a72702b 5634 (info, h->root.root.root.string, input_bfd,
dfb93f11
JC
5635 input_section, relocation->r_offset, reject_undefined);
5636
5637 if (reject_undefined)
5638 return bfd_reloc_undefined;
5639
5640 symbol = 0;
b49e97c9
TS
5641 }
5642
30c09090 5643 target_is_16_bit_code_p = ELF_ST_IS_MIPS16 (h->root.other);
1bbce132 5644 target_is_micromips_code_p = ELF_ST_IS_MICROMIPS (h->root.other);
b49e97c9
TS
5645 }
5646
738e5348
RS
5647 /* If this is a reference to a 16-bit function with a stub, we need
5648 to redirect the relocation to the stub unless:
5649
5650 (a) the relocation is for a MIPS16 JAL;
5651
5652 (b) the relocation is for a MIPS16 PIC call, and there are no
5653 non-MIPS16 uses of the GOT slot; or
5654
5655 (c) the section allows direct references to MIPS16 functions. */
5656 if (r_type != R_MIPS16_26
0e1862bb 5657 && !bfd_link_relocatable (info)
738e5348
RS
5658 && ((h != NULL
5659 && h->fn_stub != NULL
5660 && (r_type != R_MIPS16_CALL16 || h->need_fn_stub))
b9d58d71 5661 || (local_p
698600e4
AM
5662 && mips_elf_tdata (input_bfd)->local_stubs != NULL
5663 && mips_elf_tdata (input_bfd)->local_stubs[r_symndx] != NULL))
738e5348 5664 && !section_allows_mips16_refs_p (input_section))
b49e97c9
TS
5665 {
5666 /* This is a 32- or 64-bit call to a 16-bit function. We should
5667 have already noticed that we were going to need the
5668 stub. */
5669 if (local_p)
8f0c309a 5670 {
698600e4 5671 sec = mips_elf_tdata (input_bfd)->local_stubs[r_symndx];
8f0c309a
CLT
5672 value = 0;
5673 }
b49e97c9
TS
5674 else
5675 {
5676 BFD_ASSERT (h->need_fn_stub);
8f0c309a
CLT
5677 if (h->la25_stub)
5678 {
5679 /* If a LA25 header for the stub itself exists, point to the
5680 prepended LUI/ADDIU sequence. */
5681 sec = h->la25_stub->stub_section;
5682 value = h->la25_stub->offset;
5683 }
5684 else
5685 {
5686 sec = h->fn_stub;
5687 value = 0;
5688 }
b49e97c9
TS
5689 }
5690
8f0c309a 5691 symbol = sec->output_section->vma + sec->output_offset + value;
f38c2df5
TS
5692 /* The target is 16-bit, but the stub isn't. */
5693 target_is_16_bit_code_p = FALSE;
b49e97c9 5694 }
1bbce132
MR
5695 /* If this is a MIPS16 call with a stub, that is made through the PLT or
5696 to a standard MIPS function, we need to redirect the call to the stub.
5697 Note that we specifically exclude R_MIPS16_CALL16 from this behavior;
5698 indirect calls should use an indirect stub instead. */
0e1862bb 5699 else if (r_type == R_MIPS16_26 && !bfd_link_relocatable (info)
b314ec0e 5700 && ((h != NULL && (h->call_stub != NULL || h->call_fp_stub != NULL))
b9d58d71 5701 || (local_p
698600e4
AM
5702 && mips_elf_tdata (input_bfd)->local_call_stubs != NULL
5703 && mips_elf_tdata (input_bfd)->local_call_stubs[r_symndx] != NULL))
1bbce132 5704 && ((h != NULL && h->use_plt_entry) || !target_is_16_bit_code_p))
b49e97c9 5705 {
b9d58d71 5706 if (local_p)
698600e4 5707 sec = mips_elf_tdata (input_bfd)->local_call_stubs[r_symndx];
b9d58d71 5708 else
b49e97c9 5709 {
b9d58d71
TS
5710 /* If both call_stub and call_fp_stub are defined, we can figure
5711 out which one to use by checking which one appears in the input
5712 file. */
5713 if (h->call_stub != NULL && h->call_fp_stub != NULL)
b49e97c9 5714 {
b9d58d71 5715 asection *o;
68ffbac6 5716
b9d58d71
TS
5717 sec = NULL;
5718 for (o = input_bfd->sections; o != NULL; o = o->next)
b49e97c9 5719 {
fd361982 5720 if (CALL_FP_STUB_P (bfd_section_name (o)))
b9d58d71
TS
5721 {
5722 sec = h->call_fp_stub;
5723 break;
5724 }
b49e97c9 5725 }
b9d58d71
TS
5726 if (sec == NULL)
5727 sec = h->call_stub;
b49e97c9 5728 }
b9d58d71 5729 else if (h->call_stub != NULL)
b49e97c9 5730 sec = h->call_stub;
b9d58d71
TS
5731 else
5732 sec = h->call_fp_stub;
07d6d2b8 5733 }
b49e97c9 5734
eea6121a 5735 BFD_ASSERT (sec->size > 0);
b49e97c9
TS
5736 symbol = sec->output_section->vma + sec->output_offset;
5737 }
861fb55a
DJ
5738 /* If this is a direct call to a PIC function, redirect to the
5739 non-PIC stub. */
5740 else if (h != NULL && h->la25_stub
8f0c309a
CLT
5741 && mips_elf_relocation_needs_la25_stub (input_bfd, r_type,
5742 target_is_16_bit_code_p))
c7318def
MR
5743 {
5744 symbol = (h->la25_stub->stub_section->output_section->vma
5745 + h->la25_stub->stub_section->output_offset
5746 + h->la25_stub->offset);
5747 if (ELF_ST_IS_MICROMIPS (h->root.other))
5748 symbol |= 1;
5749 }
1bbce132
MR
5750 /* For direct MIPS16 and microMIPS calls make sure the compressed PLT
5751 entry is used if a standard PLT entry has also been made. In this
5752 case the symbol will have been set by mips_elf_set_plt_sym_value
5753 to point to the standard PLT entry, so redirect to the compressed
5754 one. */
54806ffa
MR
5755 else if ((mips16_branch_reloc_p (r_type)
5756 || micromips_branch_reloc_p (r_type))
0e1862bb 5757 && !bfd_link_relocatable (info)
1bbce132
MR
5758 && h != NULL
5759 && h->use_plt_entry
5760 && h->root.plt.plist->comp_offset != MINUS_ONE
5761 && h->root.plt.plist->mips_offset != MINUS_ONE)
5762 {
5763 bfd_boolean micromips_p = MICROMIPS_P (abfd);
5764
ce558b89 5765 sec = htab->root.splt;
1bbce132
MR
5766 symbol = (sec->output_section->vma
5767 + sec->output_offset
5768 + htab->plt_header_size
5769 + htab->plt_mips_offset
5770 + h->root.plt.plist->comp_offset
5771 + 1);
5772
5773 target_is_16_bit_code_p = !micromips_p;
5774 target_is_micromips_code_p = micromips_p;
5775 }
b49e97c9 5776
df58fc94 5777 /* Make sure MIPS16 and microMIPS are not used together. */
c9775dde 5778 if ((mips16_branch_reloc_p (r_type) && target_is_micromips_code_p)
df58fc94
RS
5779 || (micromips_branch_reloc_p (r_type) && target_is_16_bit_code_p))
5780 {
4eca0228 5781 _bfd_error_handler
df58fc94
RS
5782 (_("MIPS16 and microMIPS functions cannot call each other"));
5783 return bfd_reloc_notsupported;
5784 }
5785
b49e97c9 5786 /* Calls from 16-bit code to 32-bit code and vice versa require the
df58fc94
RS
5787 mode change. However, we can ignore calls to undefined weak symbols,
5788 which should never be executed at runtime. This exception is important
5789 because the assembly writer may have "known" that any definition of the
5790 symbol would be 16-bit code, and that direct jumps were therefore
5791 acceptable. */
0e1862bb 5792 *cross_mode_jump_p = (!bfd_link_relocatable (info)
df58fc94 5793 && !(h && h->root.root.type == bfd_link_hash_undefweak)
9d862524
MR
5794 && ((mips16_branch_reloc_p (r_type)
5795 && !target_is_16_bit_code_p)
5796 || (micromips_branch_reloc_p (r_type)
df58fc94 5797 && !target_is_micromips_code_p)
9d862524
MR
5798 || ((branch_reloc_p (r_type)
5799 || r_type == R_MIPS_JALR)
df58fc94
RS
5800 && (target_is_16_bit_code_p
5801 || target_is_micromips_code_p))));
b49e97c9 5802
47275900
MR
5803 resolved_to_zero = (h != NULL
5804 && UNDEFWEAK_NO_DYNAMIC_RELOC (info, &h->root));
5805
5806 switch (r_type)
5807 {
5808 case R_MIPS16_CALL16:
5809 case R_MIPS16_GOT16:
5810 case R_MIPS_CALL16:
5811 case R_MIPS_GOT16:
5812 case R_MIPS_GOT_PAGE:
5813 case R_MIPS_GOT_DISP:
5814 case R_MIPS_GOT_LO16:
5815 case R_MIPS_CALL_LO16:
5816 case R_MICROMIPS_CALL16:
5817 case R_MICROMIPS_GOT16:
5818 case R_MICROMIPS_GOT_PAGE:
5819 case R_MICROMIPS_GOT_DISP:
5820 case R_MICROMIPS_GOT_LO16:
5821 case R_MICROMIPS_CALL_LO16:
5822 if (resolved_to_zero
5823 && !bfd_link_relocatable (info)
5824 && mips_elf_nullify_got_load (input_bfd, contents,
5825 relocation, howto, TRUE))
5826 return bfd_reloc_continue;
5827
5828 /* Fall through. */
5829 case R_MIPS_GOT_HI16:
5830 case R_MIPS_CALL_HI16:
5831 case R_MICROMIPS_GOT_HI16:
5832 case R_MICROMIPS_CALL_HI16:
5833 if (resolved_to_zero
5834 && htab->use_absolute_zero
5835 && bfd_link_pic (info))
5836 {
5837 /* Redirect to the special `__gnu_absolute_zero' symbol. */
5838 h = mips_elf_link_hash_lookup (htab, "__gnu_absolute_zero",
5839 FALSE, FALSE, FALSE);
5840 BFD_ASSERT (h != NULL);
5841 }
5842 break;
5843 }
5844
c5d6fa44 5845 local_p = (h == NULL || mips_use_local_got_p (info, h));
b49e97c9 5846
0a61c8c2
RS
5847 gp0 = _bfd_get_gp_value (input_bfd);
5848 gp = _bfd_get_gp_value (abfd);
23cc69b6 5849 if (htab->got_info)
a8028dd0 5850 gp += mips_elf_adjust_gp (abfd, htab->got_info, input_bfd);
0a61c8c2
RS
5851
5852 if (gnu_local_gp_p)
5853 symbol = gp;
5854
df58fc94
RS
5855 /* Global R_MIPS_GOT_PAGE/R_MICROMIPS_GOT_PAGE relocations are equivalent
5856 to R_MIPS_GOT_DISP/R_MICROMIPS_GOT_DISP. The addend is applied by the
5857 corresponding R_MIPS_GOT_OFST/R_MICROMIPS_GOT_OFST. */
5858 if (got_page_reloc_p (r_type) && !local_p)
020d7251 5859 {
df58fc94
RS
5860 r_type = (micromips_reloc_p (r_type)
5861 ? R_MICROMIPS_GOT_DISP : R_MIPS_GOT_DISP);
020d7251
RS
5862 addend = 0;
5863 }
5864
e77760d2 5865 /* If we haven't already determined the GOT offset, and we're going
0a61c8c2 5866 to need it, get it now. */
b49e97c9
TS
5867 switch (r_type)
5868 {
738e5348
RS
5869 case R_MIPS16_CALL16:
5870 case R_MIPS16_GOT16:
b49e97c9
TS
5871 case R_MIPS_CALL16:
5872 case R_MIPS_GOT16:
5873 case R_MIPS_GOT_DISP:
5874 case R_MIPS_GOT_HI16:
5875 case R_MIPS_CALL_HI16:
5876 case R_MIPS_GOT_LO16:
5877 case R_MIPS_CALL_LO16:
df58fc94
RS
5878 case R_MICROMIPS_CALL16:
5879 case R_MICROMIPS_GOT16:
5880 case R_MICROMIPS_GOT_DISP:
5881 case R_MICROMIPS_GOT_HI16:
5882 case R_MICROMIPS_CALL_HI16:
5883 case R_MICROMIPS_GOT_LO16:
5884 case R_MICROMIPS_CALL_LO16:
0f20cc35
DJ
5885 case R_MIPS_TLS_GD:
5886 case R_MIPS_TLS_GOTTPREL:
5887 case R_MIPS_TLS_LDM:
d0f13682
CLT
5888 case R_MIPS16_TLS_GD:
5889 case R_MIPS16_TLS_GOTTPREL:
5890 case R_MIPS16_TLS_LDM:
df58fc94
RS
5891 case R_MICROMIPS_TLS_GD:
5892 case R_MICROMIPS_TLS_GOTTPREL:
5893 case R_MICROMIPS_TLS_LDM:
b49e97c9 5894 /* Find the index into the GOT where this value is located. */
df58fc94 5895 if (tls_ldm_reloc_p (r_type))
0f20cc35 5896 {
0a44bf69 5897 g = mips_elf_local_got_index (abfd, input_bfd, info,
5c18022e 5898 0, 0, NULL, r_type);
0f20cc35
DJ
5899 if (g == MINUS_ONE)
5900 return bfd_reloc_outofrange;
5901 }
5902 else if (!local_p)
b49e97c9 5903 {
0a44bf69
RS
5904 /* On VxWorks, CALL relocations should refer to the .got.plt
5905 entry, which is initialized to point at the PLT stub. */
90c14f0c 5906 if (htab->root.target_os == is_vxworks
df58fc94
RS
5907 && (call_hi16_reloc_p (r_type)
5908 || call_lo16_reloc_p (r_type)
738e5348 5909 || call16_reloc_p (r_type)))
0a44bf69
RS
5910 {
5911 BFD_ASSERT (addend == 0);
5912 BFD_ASSERT (h->root.needs_plt);
5913 g = mips_elf_gotplt_index (info, &h->root);
5914 }
5915 else
b49e97c9 5916 {
020d7251 5917 BFD_ASSERT (addend == 0);
13fbec83
RS
5918 g = mips_elf_global_got_index (abfd, info, input_bfd,
5919 &h->root, r_type);
e641e783 5920 if (!TLS_RELOC_P (r_type)
020d7251
RS
5921 && !elf_hash_table (info)->dynamic_sections_created)
5922 /* This is a static link. We must initialize the GOT entry. */
ce558b89 5923 MIPS_ELF_PUT_WORD (dynobj, symbol, htab->root.sgot->contents + g);
b49e97c9
TS
5924 }
5925 }
90c14f0c 5926 else if (htab->root.target_os != is_vxworks
738e5348 5927 && (call16_reloc_p (r_type) || got16_reloc_p (r_type)))
0a44bf69 5928 /* The calculation below does not involve "g". */
b49e97c9
TS
5929 break;
5930 else
5931 {
5c18022e 5932 g = mips_elf_local_got_index (abfd, input_bfd, info,
0a44bf69 5933 symbol + addend, r_symndx, h, r_type);
b49e97c9
TS
5934 if (g == MINUS_ONE)
5935 return bfd_reloc_outofrange;
5936 }
5937
5938 /* Convert GOT indices to actual offsets. */
a8028dd0 5939 g = mips_elf_got_offset_from_index (info, abfd, input_bfd, g);
b49e97c9 5940 break;
b49e97c9
TS
5941 }
5942
0a44bf69
RS
5943 /* Relocations against the VxWorks __GOTT_BASE__ and __GOTT_INDEX__
5944 symbols are resolved by the loader. Add them to .rela.dyn. */
5945 if (h != NULL && is_gott_symbol (info, &h->root))
5946 {
5947 Elf_Internal_Rela outrel;
5948 bfd_byte *loc;
5949 asection *s;
5950
5951 s = mips_elf_rel_dyn_section (info, FALSE);
5952 loc = s->contents + s->reloc_count++ * sizeof (Elf32_External_Rela);
5953
5954 outrel.r_offset = (input_section->output_section->vma
5955 + input_section->output_offset
5956 + relocation->r_offset);
5957 outrel.r_info = ELF32_R_INFO (h->root.dynindx, r_type);
5958 outrel.r_addend = addend;
5959 bfd_elf32_swap_reloca_out (abfd, &outrel, loc);
9e3313ae
RS
5960
5961 /* If we've written this relocation for a readonly section,
5962 we need to set DF_TEXTREL again, so that we do not delete the
5963 DT_TEXTREL tag. */
5964 if (MIPS_ELF_READONLY_SECTION (input_section))
5965 info->flags |= DF_TEXTREL;
5966
0a44bf69
RS
5967 *valuep = 0;
5968 return bfd_reloc_ok;
5969 }
5970
b49e97c9
TS
5971 /* Figure out what kind of relocation is being performed. */
5972 switch (r_type)
5973 {
5974 case R_MIPS_NONE:
5975 return bfd_reloc_continue;
5976
5977 case R_MIPS_16:
c3eb94b4
MF
5978 if (howto->partial_inplace)
5979 addend = _bfd_mips_elf_sign_extend (addend, 16);
5980 value = symbol + addend;
b49e97c9
TS
5981 overflowed_p = mips_elf_overflow_p (value, 16);
5982 break;
5983
5984 case R_MIPS_32:
5985 case R_MIPS_REL32:
5986 case R_MIPS_64:
0e1862bb 5987 if ((bfd_link_pic (info)
861fb55a 5988 || (htab->root.dynamic_sections_created
b49e97c9 5989 && h != NULL
f5385ebf 5990 && h->root.def_dynamic
861fb55a
DJ
5991 && !h->root.def_regular
5992 && !h->has_static_relocs))
cf35638d 5993 && r_symndx != STN_UNDEF
9a59ad6b
DJ
5994 && (h == NULL
5995 || h->root.root.type != bfd_link_hash_undefweak
ad951203
L
5996 || (ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT
5997 && !resolved_to_zero))
b49e97c9
TS
5998 && (input_section->flags & SEC_ALLOC) != 0)
5999 {
861fb55a 6000 /* If we're creating a shared library, then we can't know
b49e97c9
TS
6001 where the symbol will end up. So, we create a relocation
6002 record in the output, and leave the job up to the dynamic
861fb55a
DJ
6003 linker. We must do the same for executable references to
6004 shared library symbols, unless we've decided to use copy
6005 relocs or PLTs instead. */
b49e97c9
TS
6006 value = addend;
6007 if (!mips_elf_create_dynamic_relocation (abfd,
6008 info,
6009 relocation,
6010 h,
6011 sec,
6012 symbol,
6013 &value,
6014 input_section))
6015 return bfd_reloc_undefined;
6016 }
6017 else
6018 {
6019 if (r_type != R_MIPS_REL32)
6020 value = symbol + addend;
6021 else
6022 value = addend;
6023 }
6024 value &= howto->dst_mask;
092dcd75
CD
6025 break;
6026
6027 case R_MIPS_PC32:
6028 value = symbol + addend - p;
6029 value &= howto->dst_mask;
b49e97c9
TS
6030 break;
6031
b49e97c9
TS
6032 case R_MIPS16_26:
6033 /* The calculation for R_MIPS16_26 is just the same as for an
6034 R_MIPS_26. It's only the storage of the relocated field into
6035 the output file that's different. That's handled in
6036 mips_elf_perform_relocation. So, we just fall through to the
6037 R_MIPS_26 case here. */
6038 case R_MIPS_26:
df58fc94
RS
6039 case R_MICROMIPS_26_S1:
6040 {
6041 unsigned int shift;
6042
df58fc94
RS
6043 /* Shift is 2, unusually, for microMIPS JALX. */
6044 shift = (!*cross_mode_jump_p && r_type == R_MICROMIPS_26_S1) ? 1 : 2;
6045
77434823 6046 if (howto->partial_inplace && !section_p)
df58fc94 6047 value = _bfd_mips_elf_sign_extend (addend, 26 + shift);
c3eb94b4
MF
6048 else
6049 value = addend;
bc27bb05
MR
6050 value += symbol;
6051
9d862524
MR
6052 /* Make sure the target of a jump is suitably aligned. Bit 0 must
6053 be the correct ISA mode selector except for weak undefined
6054 symbols. */
6055 if ((was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6056 && (*cross_mode_jump_p
6057 ? (value & 3) != (r_type == R_MIPS_26)
07d6d2b8 6058 : (value & ((1 << shift) - 1)) != (r_type != R_MIPS_26)))
bc27bb05
MR
6059 return bfd_reloc_outofrange;
6060
6061 value >>= shift;
77434823 6062 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
df58fc94
RS
6063 overflowed_p = (value >> 26) != ((p + 4) >> (26 + shift));
6064 value &= howto->dst_mask;
6065 }
b49e97c9
TS
6066 break;
6067
0f20cc35 6068 case R_MIPS_TLS_DTPREL_HI16:
d0f13682 6069 case R_MIPS16_TLS_DTPREL_HI16:
df58fc94 6070 case R_MICROMIPS_TLS_DTPREL_HI16:
0f20cc35
DJ
6071 value = (mips_elf_high (addend + symbol - dtprel_base (info))
6072 & howto->dst_mask);
6073 break;
6074
6075 case R_MIPS_TLS_DTPREL_LO16:
741d6ea8
JM
6076 case R_MIPS_TLS_DTPREL32:
6077 case R_MIPS_TLS_DTPREL64:
d0f13682 6078 case R_MIPS16_TLS_DTPREL_LO16:
df58fc94 6079 case R_MICROMIPS_TLS_DTPREL_LO16:
0f20cc35
DJ
6080 value = (symbol + addend - dtprel_base (info)) & howto->dst_mask;
6081 break;
6082
6083 case R_MIPS_TLS_TPREL_HI16:
d0f13682 6084 case R_MIPS16_TLS_TPREL_HI16:
df58fc94 6085 case R_MICROMIPS_TLS_TPREL_HI16:
0f20cc35
DJ
6086 value = (mips_elf_high (addend + symbol - tprel_base (info))
6087 & howto->dst_mask);
6088 break;
6089
6090 case R_MIPS_TLS_TPREL_LO16:
d0f13682
CLT
6091 case R_MIPS_TLS_TPREL32:
6092 case R_MIPS_TLS_TPREL64:
6093 case R_MIPS16_TLS_TPREL_LO16:
df58fc94 6094 case R_MICROMIPS_TLS_TPREL_LO16:
0f20cc35
DJ
6095 value = (symbol + addend - tprel_base (info)) & howto->dst_mask;
6096 break;
6097
b49e97c9 6098 case R_MIPS_HI16:
d6f16593 6099 case R_MIPS16_HI16:
df58fc94 6100 case R_MICROMIPS_HI16:
b49e97c9
TS
6101 if (!gp_disp_p)
6102 {
6103 value = mips_elf_high (addend + symbol);
6104 value &= howto->dst_mask;
6105 }
6106 else
6107 {
d6f16593 6108 /* For MIPS16 ABI code we generate this sequence
07d6d2b8
AM
6109 0: li $v0,%hi(_gp_disp)
6110 4: addiupc $v1,%lo(_gp_disp)
6111 8: sll $v0,16
d6f16593
MR
6112 12: addu $v0,$v1
6113 14: move $gp,$v0
6114 So the offsets of hi and lo relocs are the same, but the
888b9c01
CLT
6115 base $pc is that used by the ADDIUPC instruction at $t9 + 4.
6116 ADDIUPC clears the low two bits of the instruction address,
6117 so the base is ($t9 + 4) & ~3. */
d6f16593 6118 if (r_type == R_MIPS16_HI16)
888b9c01 6119 value = mips_elf_high (addend + gp - ((p + 4) & ~(bfd_vma) 0x3));
df58fc94
RS
6120 /* The microMIPS .cpload sequence uses the same assembly
6121 instructions as the traditional psABI version, but the
6122 incoming $t9 has the low bit set. */
6123 else if (r_type == R_MICROMIPS_HI16)
6124 value = mips_elf_high (addend + gp - p - 1);
d6f16593
MR
6125 else
6126 value = mips_elf_high (addend + gp - p);
b49e97c9
TS
6127 }
6128 break;
6129
6130 case R_MIPS_LO16:
d6f16593 6131 case R_MIPS16_LO16:
df58fc94
RS
6132 case R_MICROMIPS_LO16:
6133 case R_MICROMIPS_HI0_LO16:
b49e97c9
TS
6134 if (!gp_disp_p)
6135 value = (symbol + addend) & howto->dst_mask;
6136 else
6137 {
d6f16593
MR
6138 /* See the comment for R_MIPS16_HI16 above for the reason
6139 for this conditional. */
6140 if (r_type == R_MIPS16_LO16)
888b9c01 6141 value = addend + gp - (p & ~(bfd_vma) 0x3);
df58fc94
RS
6142 else if (r_type == R_MICROMIPS_LO16
6143 || r_type == R_MICROMIPS_HI0_LO16)
6144 value = addend + gp - p + 3;
d6f16593
MR
6145 else
6146 value = addend + gp - p + 4;
b49e97c9 6147 /* The MIPS ABI requires checking the R_MIPS_LO16 relocation
8dc1a139 6148 for overflow. But, on, say, IRIX5, relocations against
b49e97c9
TS
6149 _gp_disp are normally generated from the .cpload
6150 pseudo-op. It generates code that normally looks like
6151 this:
6152
6153 lui $gp,%hi(_gp_disp)
6154 addiu $gp,$gp,%lo(_gp_disp)
6155 addu $gp,$gp,$t9
6156
6157 Here $t9 holds the address of the function being called,
6158 as required by the MIPS ELF ABI. The R_MIPS_LO16
6159 relocation can easily overflow in this situation, but the
6160 R_MIPS_HI16 relocation will handle the overflow.
6161 Therefore, we consider this a bug in the MIPS ABI, and do
6162 not check for overflow here. */
6163 }
6164 break;
6165
6166 case R_MIPS_LITERAL:
df58fc94 6167 case R_MICROMIPS_LITERAL:
b49e97c9
TS
6168 /* Because we don't merge literal sections, we can handle this
6169 just like R_MIPS_GPREL16. In the long run, we should merge
6170 shared literals, and then we will need to additional work
6171 here. */
6172
6173 /* Fall through. */
6174
6175 case R_MIPS16_GPREL:
6176 /* The R_MIPS16_GPREL performs the same calculation as
6177 R_MIPS_GPREL16, but stores the relocated bits in a different
6178 order. We don't need to do anything special here; the
6179 differences are handled in mips_elf_perform_relocation. */
6180 case R_MIPS_GPREL16:
df58fc94
RS
6181 case R_MICROMIPS_GPREL7_S2:
6182 case R_MICROMIPS_GPREL16:
bce03d3d
AO
6183 /* Only sign-extend the addend if it was extracted from the
6184 instruction. If the addend was separate, leave it alone,
6185 otherwise we may lose significant bits. */
6186 if (howto->partial_inplace)
a7ebbfdf 6187 addend = _bfd_mips_elf_sign_extend (addend, 16);
bce03d3d
AO
6188 value = symbol + addend - gp;
6189 /* If the symbol was local, any earlier relocatable links will
6190 have adjusted its addend with the gp offset, so compensate
6191 for that now. Don't do it for symbols forced local in this
6192 link, though, since they won't have had the gp offset applied
6193 to them before. */
6194 if (was_local_p)
6195 value += gp0;
538baf8b
AB
6196 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6197 overflowed_p = mips_elf_overflow_p (value, 16);
b49e97c9
TS
6198 break;
6199
738e5348
RS
6200 case R_MIPS16_GOT16:
6201 case R_MIPS16_CALL16:
b49e97c9
TS
6202 case R_MIPS_GOT16:
6203 case R_MIPS_CALL16:
df58fc94
RS
6204 case R_MICROMIPS_GOT16:
6205 case R_MICROMIPS_CALL16:
0a44bf69 6206 /* VxWorks does not have separate local and global semantics for
738e5348 6207 R_MIPS*_GOT16; every relocation evaluates to "G". */
90c14f0c 6208 if (htab->root.target_os != is_vxworks && local_p)
b49e97c9 6209 {
5c18022e 6210 value = mips_elf_got16_entry (abfd, input_bfd, info,
020d7251 6211 symbol + addend, !was_local_p);
b49e97c9
TS
6212 if (value == MINUS_ONE)
6213 return bfd_reloc_outofrange;
6214 value
a8028dd0 6215 = mips_elf_got_offset_from_index (info, abfd, input_bfd, value);
b49e97c9
TS
6216 overflowed_p = mips_elf_overflow_p (value, 16);
6217 break;
6218 }
6219
6220 /* Fall through. */
6221
0f20cc35
DJ
6222 case R_MIPS_TLS_GD:
6223 case R_MIPS_TLS_GOTTPREL:
6224 case R_MIPS_TLS_LDM:
b49e97c9 6225 case R_MIPS_GOT_DISP:
d0f13682
CLT
6226 case R_MIPS16_TLS_GD:
6227 case R_MIPS16_TLS_GOTTPREL:
6228 case R_MIPS16_TLS_LDM:
df58fc94
RS
6229 case R_MICROMIPS_TLS_GD:
6230 case R_MICROMIPS_TLS_GOTTPREL:
6231 case R_MICROMIPS_TLS_LDM:
6232 case R_MICROMIPS_GOT_DISP:
b49e97c9
TS
6233 value = g;
6234 overflowed_p = mips_elf_overflow_p (value, 16);
6235 break;
6236
6237 case R_MIPS_GPREL32:
bce03d3d
AO
6238 value = (addend + symbol + gp0 - gp);
6239 if (!save_addend)
6240 value &= howto->dst_mask;
b49e97c9
TS
6241 break;
6242
6243 case R_MIPS_PC16:
bad36eac 6244 case R_MIPS_GNU_REL16_S2:
c3eb94b4
MF
6245 if (howto->partial_inplace)
6246 addend = _bfd_mips_elf_sign_extend (addend, 18);
6247
9d862524 6248 /* No need to exclude weak undefined symbols here as they resolve
07d6d2b8
AM
6249 to 0 and never set `*cross_mode_jump_p', so this alignment check
6250 will never trigger for them. */
9d862524
MR
6251 if (*cross_mode_jump_p
6252 ? ((symbol + addend) & 3) != 1
6253 : ((symbol + addend) & 3) != 0)
c3eb94b4
MF
6254 return bfd_reloc_outofrange;
6255
6256 value = symbol + addend - p;
538baf8b
AB
6257 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6258 overflowed_p = mips_elf_overflow_p (value, 18);
37caec6b
TS
6259 value >>= howto->rightshift;
6260 value &= howto->dst_mask;
b49e97c9
TS
6261 break;
6262
c9775dde
MR
6263 case R_MIPS16_PC16_S1:
6264 if (howto->partial_inplace)
6265 addend = _bfd_mips_elf_sign_extend (addend, 17);
6266
6267 if ((was_local_p || h->root.root.type != bfd_link_hash_undefweak)
9d862524
MR
6268 && (*cross_mode_jump_p
6269 ? ((symbol + addend) & 3) != 0
6270 : ((symbol + addend) & 1) == 0))
c9775dde
MR
6271 return bfd_reloc_outofrange;
6272
6273 value = symbol + addend - p;
6274 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6275 overflowed_p = mips_elf_overflow_p (value, 17);
6276 value >>= howto->rightshift;
6277 value &= howto->dst_mask;
6278 break;
6279
7361da2c
AB
6280 case R_MIPS_PC21_S2:
6281 if (howto->partial_inplace)
6282 addend = _bfd_mips_elf_sign_extend (addend, 23);
6283
6284 if ((symbol + addend) & 3)
6285 return bfd_reloc_outofrange;
6286
6287 value = symbol + addend - p;
538baf8b
AB
6288 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6289 overflowed_p = mips_elf_overflow_p (value, 23);
7361da2c
AB
6290 value >>= howto->rightshift;
6291 value &= howto->dst_mask;
6292 break;
6293
6294 case R_MIPS_PC26_S2:
6295 if (howto->partial_inplace)
6296 addend = _bfd_mips_elf_sign_extend (addend, 28);
6297
6298 if ((symbol + addend) & 3)
6299 return bfd_reloc_outofrange;
6300
6301 value = symbol + addend - p;
538baf8b
AB
6302 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6303 overflowed_p = mips_elf_overflow_p (value, 28);
7361da2c
AB
6304 value >>= howto->rightshift;
6305 value &= howto->dst_mask;
6306 break;
6307
6308 case R_MIPS_PC18_S3:
6309 if (howto->partial_inplace)
6310 addend = _bfd_mips_elf_sign_extend (addend, 21);
6311
6312 if ((symbol + addend) & 7)
6313 return bfd_reloc_outofrange;
6314
6315 value = symbol + addend - ((p | 7) ^ 7);
538baf8b
AB
6316 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6317 overflowed_p = mips_elf_overflow_p (value, 21);
7361da2c
AB
6318 value >>= howto->rightshift;
6319 value &= howto->dst_mask;
6320 break;
6321
6322 case R_MIPS_PC19_S2:
6323 if (howto->partial_inplace)
6324 addend = _bfd_mips_elf_sign_extend (addend, 21);
6325
6326 if ((symbol + addend) & 3)
6327 return bfd_reloc_outofrange;
6328
6329 value = symbol + addend - p;
538baf8b
AB
6330 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6331 overflowed_p = mips_elf_overflow_p (value, 21);
7361da2c
AB
6332 value >>= howto->rightshift;
6333 value &= howto->dst_mask;
6334 break;
6335
6336 case R_MIPS_PCHI16:
6337 value = mips_elf_high (symbol + addend - p);
7361da2c
AB
6338 value &= howto->dst_mask;
6339 break;
6340
6341 case R_MIPS_PCLO16:
6342 if (howto->partial_inplace)
6343 addend = _bfd_mips_elf_sign_extend (addend, 16);
6344 value = symbol + addend - p;
6345 value &= howto->dst_mask;
6346 break;
6347
df58fc94 6348 case R_MICROMIPS_PC7_S1:
c3eb94b4
MF
6349 if (howto->partial_inplace)
6350 addend = _bfd_mips_elf_sign_extend (addend, 8);
9d862524
MR
6351
6352 if ((was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6353 && (*cross_mode_jump_p
6354 ? ((symbol + addend + 2) & 3) != 0
6355 : ((symbol + addend + 2) & 1) == 0))
6356 return bfd_reloc_outofrange;
6357
c3eb94b4 6358 value = symbol + addend - p;
538baf8b
AB
6359 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6360 overflowed_p = mips_elf_overflow_p (value, 8);
df58fc94
RS
6361 value >>= howto->rightshift;
6362 value &= howto->dst_mask;
6363 break;
6364
6365 case R_MICROMIPS_PC10_S1:
c3eb94b4
MF
6366 if (howto->partial_inplace)
6367 addend = _bfd_mips_elf_sign_extend (addend, 11);
9d862524
MR
6368
6369 if ((was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6370 && (*cross_mode_jump_p
6371 ? ((symbol + addend + 2) & 3) != 0
6372 : ((symbol + addend + 2) & 1) == 0))
6373 return bfd_reloc_outofrange;
6374
c3eb94b4 6375 value = symbol + addend - p;
538baf8b
AB
6376 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6377 overflowed_p = mips_elf_overflow_p (value, 11);
df58fc94
RS
6378 value >>= howto->rightshift;
6379 value &= howto->dst_mask;
6380 break;
6381
6382 case R_MICROMIPS_PC16_S1:
c3eb94b4
MF
6383 if (howto->partial_inplace)
6384 addend = _bfd_mips_elf_sign_extend (addend, 17);
9d862524
MR
6385
6386 if ((was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6387 && (*cross_mode_jump_p
6388 ? ((symbol + addend) & 3) != 0
6389 : ((symbol + addend) & 1) == 0))
6390 return bfd_reloc_outofrange;
6391
c3eb94b4 6392 value = symbol + addend - p;
538baf8b
AB
6393 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6394 overflowed_p = mips_elf_overflow_p (value, 17);
df58fc94
RS
6395 value >>= howto->rightshift;
6396 value &= howto->dst_mask;
6397 break;
6398
6399 case R_MICROMIPS_PC23_S2:
c3eb94b4
MF
6400 if (howto->partial_inplace)
6401 addend = _bfd_mips_elf_sign_extend (addend, 25);
6402 value = symbol + addend - ((p | 3) ^ 3);
538baf8b
AB
6403 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6404 overflowed_p = mips_elf_overflow_p (value, 25);
df58fc94
RS
6405 value >>= howto->rightshift;
6406 value &= howto->dst_mask;
6407 break;
6408
b49e97c9
TS
6409 case R_MIPS_GOT_HI16:
6410 case R_MIPS_CALL_HI16:
df58fc94
RS
6411 case R_MICROMIPS_GOT_HI16:
6412 case R_MICROMIPS_CALL_HI16:
b49e97c9
TS
6413 /* We're allowed to handle these two relocations identically.
6414 The dynamic linker is allowed to handle the CALL relocations
6415 differently by creating a lazy evaluation stub. */
6416 value = g;
6417 value = mips_elf_high (value);
6418 value &= howto->dst_mask;
6419 break;
6420
6421 case R_MIPS_GOT_LO16:
6422 case R_MIPS_CALL_LO16:
df58fc94
RS
6423 case R_MICROMIPS_GOT_LO16:
6424 case R_MICROMIPS_CALL_LO16:
b49e97c9
TS
6425 value = g & howto->dst_mask;
6426 break;
6427
6428 case R_MIPS_GOT_PAGE:
df58fc94 6429 case R_MICROMIPS_GOT_PAGE:
5c18022e 6430 value = mips_elf_got_page (abfd, input_bfd, info, symbol + addend, NULL);
b49e97c9
TS
6431 if (value == MINUS_ONE)
6432 return bfd_reloc_outofrange;
a8028dd0 6433 value = mips_elf_got_offset_from_index (info, abfd, input_bfd, value);
b49e97c9
TS
6434 overflowed_p = mips_elf_overflow_p (value, 16);
6435 break;
6436
6437 case R_MIPS_GOT_OFST:
df58fc94 6438 case R_MICROMIPS_GOT_OFST:
93a2b7ae 6439 if (local_p)
5c18022e 6440 mips_elf_got_page (abfd, input_bfd, info, symbol + addend, &value);
0fdc1bf1
AO
6441 else
6442 value = addend;
b49e97c9
TS
6443 overflowed_p = mips_elf_overflow_p (value, 16);
6444 break;
6445
6446 case R_MIPS_SUB:
df58fc94 6447 case R_MICROMIPS_SUB:
b49e97c9
TS
6448 value = symbol - addend;
6449 value &= howto->dst_mask;
6450 break;
6451
6452 case R_MIPS_HIGHER:
df58fc94 6453 case R_MICROMIPS_HIGHER:
b49e97c9
TS
6454 value = mips_elf_higher (addend + symbol);
6455 value &= howto->dst_mask;
6456 break;
6457
6458 case R_MIPS_HIGHEST:
df58fc94 6459 case R_MICROMIPS_HIGHEST:
b49e97c9
TS
6460 value = mips_elf_highest (addend + symbol);
6461 value &= howto->dst_mask;
6462 break;
6463
6464 case R_MIPS_SCN_DISP:
df58fc94 6465 case R_MICROMIPS_SCN_DISP:
b49e97c9
TS
6466 value = symbol + addend - sec->output_offset;
6467 value &= howto->dst_mask;
6468 break;
6469
b49e97c9 6470 case R_MIPS_JALR:
df58fc94 6471 case R_MICROMIPS_JALR:
1367d393
ILT
6472 /* This relocation is only a hint. In some cases, we optimize
6473 it into a bal instruction. But we don't try to optimize
5bbc5ae7
AN
6474 when the symbol does not resolve locally. */
6475 if (h != NULL && !SYMBOL_CALLS_LOCAL (info, &h->root))
1367d393 6476 return bfd_reloc_continue;
c1556ecd
MR
6477 /* We can't optimize cross-mode jumps either. */
6478 if (*cross_mode_jump_p)
6479 return bfd_reloc_continue;
1367d393 6480 value = symbol + addend;
c1556ecd
MR
6481 /* Neither we can non-instruction-aligned targets. */
6482 if (r_type == R_MIPS_JALR ? (value & 3) != 0 : (value & 1) == 0)
6483 return bfd_reloc_continue;
1367d393 6484 break;
b49e97c9 6485
1367d393 6486 case R_MIPS_PJUMP:
b49e97c9
TS
6487 case R_MIPS_GNU_VTINHERIT:
6488 case R_MIPS_GNU_VTENTRY:
6489 /* We don't do anything with these at present. */
6490 return bfd_reloc_continue;
6491
6492 default:
6493 /* An unrecognized relocation type. */
6494 return bfd_reloc_notsupported;
6495 }
6496
6497 /* Store the VALUE for our caller. */
6498 *valuep = value;
6499 return overflowed_p ? bfd_reloc_overflow : bfd_reloc_ok;
6500}
6501
b49e97c9
TS
6502/* It has been determined that the result of the RELOCATION is the
6503 VALUE. Use HOWTO to place VALUE into the output file at the
6504 appropriate position. The SECTION is the section to which the
68ffbac6 6505 relocation applies.
38a7df63 6506 CROSS_MODE_JUMP_P is true if the relocation field
df58fc94 6507 is a MIPS16 or microMIPS jump to standard MIPS code, or vice versa.
b49e97c9 6508
b34976b6 6509 Returns FALSE if anything goes wrong. */
b49e97c9 6510
b34976b6 6511static bfd_boolean
9719ad41
RS
6512mips_elf_perform_relocation (struct bfd_link_info *info,
6513 reloc_howto_type *howto,
6514 const Elf_Internal_Rela *relocation,
6515 bfd_vma value, bfd *input_bfd,
6516 asection *input_section, bfd_byte *contents,
38a7df63 6517 bfd_boolean cross_mode_jump_p)
b49e97c9
TS
6518{
6519 bfd_vma x;
6520 bfd_byte *location;
6521 int r_type = ELF_R_TYPE (input_bfd, relocation->r_info);
6522
6523 /* Figure out where the relocation is occurring. */
6524 location = contents + relocation->r_offset;
6525
df58fc94 6526 _bfd_mips_elf_reloc_unshuffle (input_bfd, r_type, FALSE, location);
d6f16593 6527
b49e97c9
TS
6528 /* Obtain the current value. */
6529 x = mips_elf_obtain_contents (howto, relocation, input_bfd, contents);
6530
6531 /* Clear the field we are setting. */
6532 x &= ~howto->dst_mask;
6533
b49e97c9
TS
6534 /* Set the field. */
6535 x |= (value & howto->dst_mask);
6536
a6ebf616 6537 /* Detect incorrect JALX usage. If required, turn JAL or BAL into JALX. */
9d862524
MR
6538 if (!cross_mode_jump_p && jal_reloc_p (r_type))
6539 {
6540 bfd_vma opcode = x >> 26;
6541
6542 if (r_type == R_MIPS16_26 ? opcode == 0x7
6543 : r_type == R_MICROMIPS_26_S1 ? opcode == 0x3c
6544 : opcode == 0x1d)
6545 {
6546 info->callbacks->einfo
2c1c9679 6547 (_("%X%H: unsupported JALX to the same ISA mode\n"),
9d862524
MR
6548 input_bfd, input_section, relocation->r_offset);
6549 return TRUE;
6550 }
6551 }
38a7df63 6552 if (cross_mode_jump_p && jal_reloc_p (r_type))
b49e97c9 6553 {
b34976b6 6554 bfd_boolean ok;
b49e97c9
TS
6555 bfd_vma opcode = x >> 26;
6556 bfd_vma jalx_opcode;
6557
6558 /* Check to see if the opcode is already JAL or JALX. */
6559 if (r_type == R_MIPS16_26)
6560 {
6561 ok = ((opcode == 0x6) || (opcode == 0x7));
6562 jalx_opcode = 0x7;
6563 }
df58fc94
RS
6564 else if (r_type == R_MICROMIPS_26_S1)
6565 {
6566 ok = ((opcode == 0x3d) || (opcode == 0x3c));
6567 jalx_opcode = 0x3c;
6568 }
b49e97c9
TS
6569 else
6570 {
6571 ok = ((opcode == 0x3) || (opcode == 0x1d));
6572 jalx_opcode = 0x1d;
6573 }
6574
3bdf9505 6575 /* If the opcode is not JAL or JALX, there's a problem. We cannot
07d6d2b8 6576 convert J or JALS to JALX. */
b49e97c9
TS
6577 if (!ok)
6578 {
5f68df25 6579 info->callbacks->einfo
2c1c9679 6580 (_("%X%H: unsupported jump between ISA modes; "
5f68df25
MR
6581 "consider recompiling with interlinking enabled\n"),
6582 input_bfd, input_section, relocation->r_offset);
6583 return TRUE;
b49e97c9
TS
6584 }
6585
6586 /* Make this the JALX opcode. */
2365f8d7 6587 x = (x & ~(0x3fu << 26)) | (jalx_opcode << 26);
b49e97c9 6588 }
9d862524
MR
6589 else if (cross_mode_jump_p && b_reloc_p (r_type))
6590 {
a6ebf616
MR
6591 bfd_boolean ok = FALSE;
6592 bfd_vma opcode = x >> 16;
6593 bfd_vma jalx_opcode = 0;
70e65ca8 6594 bfd_vma sign_bit = 0;
a6ebf616
MR
6595 bfd_vma addr;
6596 bfd_vma dest;
6597
6598 if (r_type == R_MICROMIPS_PC16_S1)
6599 {
6600 ok = opcode == 0x4060;
6601 jalx_opcode = 0x3c;
70e65ca8 6602 sign_bit = 0x10000;
a6ebf616
MR
6603 value <<= 1;
6604 }
6605 else if (r_type == R_MIPS_PC16 || r_type == R_MIPS_GNU_REL16_S2)
6606 {
6607 ok = opcode == 0x411;
6608 jalx_opcode = 0x1d;
70e65ca8 6609 sign_bit = 0x20000;
a6ebf616
MR
6610 value <<= 2;
6611 }
6612
8b10b0b3 6613 if (ok && !bfd_link_pic (info))
a6ebf616 6614 {
8b10b0b3
MR
6615 addr = (input_section->output_section->vma
6616 + input_section->output_offset
6617 + relocation->r_offset
6618 + 4);
70e65ca8
MR
6619 dest = (addr
6620 + (((value & ((sign_bit << 1) - 1)) ^ sign_bit) - sign_bit));
a6ebf616 6621
8b10b0b3
MR
6622 if ((addr >> 28) << 28 != (dest >> 28) << 28)
6623 {
6624 info->callbacks->einfo
2c1c9679 6625 (_("%X%H: cannot convert branch between ISA modes "
8b10b0b3
MR
6626 "to JALX: relocation out of range\n"),
6627 input_bfd, input_section, relocation->r_offset);
6628 return TRUE;
6629 }
a6ebf616 6630
8b10b0b3
MR
6631 /* Make this the JALX opcode. */
6632 x = ((dest >> 2) & 0x3ffffff) | jalx_opcode << 26;
6633 }
6634 else if (!mips_elf_hash_table (info)->ignore_branch_isa)
a6ebf616
MR
6635 {
6636 info->callbacks->einfo
2c1c9679 6637 (_("%X%H: unsupported branch between ISA modes\n"),
a6ebf616
MR
6638 input_bfd, input_section, relocation->r_offset);
6639 return TRUE;
6640 }
9d862524 6641 }
b49e97c9 6642
38a7df63
CF
6643 /* Try converting JAL to BAL and J(AL)R to B(AL), if the target is in
6644 range. */
0e1862bb 6645 if (!bfd_link_relocatable (info)
38a7df63 6646 && !cross_mode_jump_p
cd8d5a82
CF
6647 && ((JAL_TO_BAL_P (input_bfd)
6648 && r_type == R_MIPS_26
0e392101 6649 && (x >> 26) == 0x3) /* jal addr */
cd8d5a82
CF
6650 || (JALR_TO_BAL_P (input_bfd)
6651 && r_type == R_MIPS_JALR
0e392101 6652 && x == 0x0320f809) /* jalr t9 */
38a7df63
CF
6653 || (JR_TO_B_P (input_bfd)
6654 && r_type == R_MIPS_JALR
0e392101 6655 && (x & ~1) == 0x03200008))) /* jr t9 / jalr zero, t9 */
1367d393
ILT
6656 {
6657 bfd_vma addr;
6658 bfd_vma dest;
6659 bfd_signed_vma off;
6660
6661 addr = (input_section->output_section->vma
6662 + input_section->output_offset
6663 + relocation->r_offset
6664 + 4);
6665 if (r_type == R_MIPS_26)
6666 dest = (value << 2) | ((addr >> 28) << 28);
6667 else
6668 dest = value;
6669 off = dest - addr;
6670 if (off <= 0x1ffff && off >= -0x20000)
38a7df63 6671 {
0e392101 6672 if ((x & ~1) == 0x03200008) /* jr t9 / jalr zero, t9 */
38a7df63
CF
6673 x = 0x10000000 | (((bfd_vma) off >> 2) & 0xffff); /* b addr */
6674 else
6675 x = 0x04110000 | (((bfd_vma) off >> 2) & 0xffff); /* bal addr */
6676 }
1367d393
ILT
6677 }
6678
b49e97c9 6679 /* Put the value into the output. */
98e10ffa 6680 mips_elf_store_contents (howto, relocation, input_bfd, contents, x);
d6f16593 6681
0e1862bb 6682 _bfd_mips_elf_reloc_shuffle (input_bfd, r_type, !bfd_link_relocatable (info),
df58fc94 6683 location);
d6f16593 6684
b34976b6 6685 return TRUE;
b49e97c9 6686}
b49e97c9 6687\f
b49e97c9
TS
6688/* Create a rel.dyn relocation for the dynamic linker to resolve. REL
6689 is the original relocation, which is now being transformed into a
6690 dynamic relocation. The ADDENDP is adjusted if necessary; the
6691 caller should store the result in place of the original addend. */
6692
b34976b6 6693static bfd_boolean
9719ad41
RS
6694mips_elf_create_dynamic_relocation (bfd *output_bfd,
6695 struct bfd_link_info *info,
6696 const Elf_Internal_Rela *rel,
6697 struct mips_elf_link_hash_entry *h,
6698 asection *sec, bfd_vma symbol,
6699 bfd_vma *addendp, asection *input_section)
b49e97c9 6700{
947216bf 6701 Elf_Internal_Rela outrel[3];
b49e97c9
TS
6702 asection *sreloc;
6703 bfd *dynobj;
6704 int r_type;
5d41f0b6
RS
6705 long indx;
6706 bfd_boolean defined_p;
0a44bf69 6707 struct mips_elf_link_hash_table *htab;
b49e97c9 6708
0a44bf69 6709 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
6710 BFD_ASSERT (htab != NULL);
6711
b49e97c9
TS
6712 r_type = ELF_R_TYPE (output_bfd, rel->r_info);
6713 dynobj = elf_hash_table (info)->dynobj;
0a44bf69 6714 sreloc = mips_elf_rel_dyn_section (info, FALSE);
b49e97c9
TS
6715 BFD_ASSERT (sreloc != NULL);
6716 BFD_ASSERT (sreloc->contents != NULL);
6717 BFD_ASSERT (sreloc->reloc_count * MIPS_ELF_REL_SIZE (output_bfd)
eea6121a 6718 < sreloc->size);
b49e97c9 6719
b49e97c9
TS
6720 outrel[0].r_offset =
6721 _bfd_elf_section_offset (output_bfd, info, input_section, rel[0].r_offset);
9ddf8309
TS
6722 if (ABI_64_P (output_bfd))
6723 {
6724 outrel[1].r_offset =
6725 _bfd_elf_section_offset (output_bfd, info, input_section, rel[1].r_offset);
6726 outrel[2].r_offset =
6727 _bfd_elf_section_offset (output_bfd, info, input_section, rel[2].r_offset);
6728 }
b49e97c9 6729
c5ae1840 6730 if (outrel[0].r_offset == MINUS_ONE)
0d591ff7 6731 /* The relocation field has been deleted. */
5d41f0b6
RS
6732 return TRUE;
6733
6734 if (outrel[0].r_offset == MINUS_TWO)
0d591ff7
RS
6735 {
6736 /* The relocation field has been converted into a relative value of
6737 some sort. Functions like _bfd_elf_write_section_eh_frame expect
6738 the field to be fully relocated, so add in the symbol's value. */
0d591ff7 6739 *addendp += symbol;
5d41f0b6 6740 return TRUE;
0d591ff7 6741 }
b49e97c9 6742
5d41f0b6
RS
6743 /* We must now calculate the dynamic symbol table index to use
6744 in the relocation. */
d4a77f3f 6745 if (h != NULL && ! SYMBOL_REFERENCES_LOCAL (info, &h->root))
5d41f0b6 6746 {
90c14f0c
L
6747 BFD_ASSERT (htab->root.target_os == is_vxworks
6748 || h->global_got_area != GGA_NONE);
5d41f0b6
RS
6749 indx = h->root.dynindx;
6750 if (SGI_COMPAT (output_bfd))
6751 defined_p = h->root.def_regular;
6752 else
6753 /* ??? glibc's ld.so just adds the final GOT entry to the
6754 relocation field. It therefore treats relocs against
6755 defined symbols in the same way as relocs against
6756 undefined symbols. */
6757 defined_p = FALSE;
6758 }
b49e97c9
TS
6759 else
6760 {
5d41f0b6
RS
6761 if (sec != NULL && bfd_is_abs_section (sec))
6762 indx = 0;
6763 else if (sec == NULL || sec->owner == NULL)
fdd07405 6764 {
5d41f0b6
RS
6765 bfd_set_error (bfd_error_bad_value);
6766 return FALSE;
b49e97c9
TS
6767 }
6768 else
6769 {
5d41f0b6 6770 indx = elf_section_data (sec->output_section)->dynindx;
74541ad4
AM
6771 if (indx == 0)
6772 {
6773 asection *osec = htab->root.text_index_section;
6774 indx = elf_section_data (osec)->dynindx;
6775 }
5d41f0b6
RS
6776 if (indx == 0)
6777 abort ();
b49e97c9
TS
6778 }
6779
5d41f0b6
RS
6780 /* Instead of generating a relocation using the section
6781 symbol, we may as well make it a fully relative
6782 relocation. We want to avoid generating relocations to
6783 local symbols because we used to generate them
6784 incorrectly, without adding the original symbol value,
6785 which is mandated by the ABI for section symbols. In
6786 order to give dynamic loaders and applications time to
6787 phase out the incorrect use, we refrain from emitting
6788 section-relative relocations. It's not like they're
6789 useful, after all. This should be a bit more efficient
6790 as well. */
6791 /* ??? Although this behavior is compatible with glibc's ld.so,
6792 the ABI says that relocations against STN_UNDEF should have
6793 a symbol value of 0. Irix rld honors this, so relocations
6794 against STN_UNDEF have no effect. */
6795 if (!SGI_COMPAT (output_bfd))
6796 indx = 0;
6797 defined_p = TRUE;
b49e97c9
TS
6798 }
6799
5d41f0b6
RS
6800 /* If the relocation was previously an absolute relocation and
6801 this symbol will not be referred to by the relocation, we must
6802 adjust it by the value we give it in the dynamic symbol table.
6803 Otherwise leave the job up to the dynamic linker. */
6804 if (defined_p && r_type != R_MIPS_REL32)
6805 *addendp += symbol;
6806
90c14f0c 6807 if (htab->root.target_os == is_vxworks)
0a44bf69
RS
6808 /* VxWorks uses non-relative relocations for this. */
6809 outrel[0].r_info = ELF32_R_INFO (indx, R_MIPS_32);
6810 else
6811 /* The relocation is always an REL32 relocation because we don't
6812 know where the shared library will wind up at load-time. */
6813 outrel[0].r_info = ELF_R_INFO (output_bfd, (unsigned long) indx,
6814 R_MIPS_REL32);
6815
5d41f0b6
RS
6816 /* For strict adherence to the ABI specification, we should
6817 generate a R_MIPS_64 relocation record by itself before the
6818 _REL32/_64 record as well, such that the addend is read in as
6819 a 64-bit value (REL32 is a 32-bit relocation, after all).
6820 However, since none of the existing ELF64 MIPS dynamic
6821 loaders seems to care, we don't waste space with these
6822 artificial relocations. If this turns out to not be true,
6823 mips_elf_allocate_dynamic_relocation() should be tweaked so
6824 as to make room for a pair of dynamic relocations per
6825 invocation if ABI_64_P, and here we should generate an
6826 additional relocation record with R_MIPS_64 by itself for a
6827 NULL symbol before this relocation record. */
6828 outrel[1].r_info = ELF_R_INFO (output_bfd, 0,
6829 ABI_64_P (output_bfd)
6830 ? R_MIPS_64
6831 : R_MIPS_NONE);
6832 outrel[2].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_NONE);
6833
6834 /* Adjust the output offset of the relocation to reference the
6835 correct location in the output file. */
6836 outrel[0].r_offset += (input_section->output_section->vma
6837 + input_section->output_offset);
6838 outrel[1].r_offset += (input_section->output_section->vma
6839 + input_section->output_offset);
6840 outrel[2].r_offset += (input_section->output_section->vma
6841 + input_section->output_offset);
6842
b49e97c9
TS
6843 /* Put the relocation back out. We have to use the special
6844 relocation outputter in the 64-bit case since the 64-bit
6845 relocation format is non-standard. */
6846 if (ABI_64_P (output_bfd))
6847 {
6848 (*get_elf_backend_data (output_bfd)->s->swap_reloc_out)
6849 (output_bfd, &outrel[0],
6850 (sreloc->contents
6851 + sreloc->reloc_count * sizeof (Elf64_Mips_External_Rel)));
6852 }
90c14f0c 6853 else if (htab->root.target_os == is_vxworks)
0a44bf69
RS
6854 {
6855 /* VxWorks uses RELA rather than REL dynamic relocations. */
6856 outrel[0].r_addend = *addendp;
6857 bfd_elf32_swap_reloca_out
6858 (output_bfd, &outrel[0],
6859 (sreloc->contents
6860 + sreloc->reloc_count * sizeof (Elf32_External_Rela)));
6861 }
b49e97c9 6862 else
947216bf
AM
6863 bfd_elf32_swap_reloc_out
6864 (output_bfd, &outrel[0],
6865 (sreloc->contents + sreloc->reloc_count * sizeof (Elf32_External_Rel)));
b49e97c9 6866
b49e97c9
TS
6867 /* We've now added another relocation. */
6868 ++sreloc->reloc_count;
6869
6870 /* Make sure the output section is writable. The dynamic linker
6871 will be writing to it. */
6872 elf_section_data (input_section->output_section)->this_hdr.sh_flags
6873 |= SHF_WRITE;
6874
6875 /* On IRIX5, make an entry of compact relocation info. */
5d41f0b6 6876 if (IRIX_COMPAT (output_bfd) == ict_irix5)
b49e97c9 6877 {
3d4d4302 6878 asection *scpt = bfd_get_linker_section (dynobj, ".compact_rel");
b49e97c9
TS
6879 bfd_byte *cr;
6880
6881 if (scpt)
6882 {
6883 Elf32_crinfo cptrel;
6884
6885 mips_elf_set_cr_format (cptrel, CRF_MIPS_LONG);
6886 cptrel.vaddr = (rel->r_offset
6887 + input_section->output_section->vma
6888 + input_section->output_offset);
6889 if (r_type == R_MIPS_REL32)
6890 mips_elf_set_cr_type (cptrel, CRT_MIPS_REL32);
6891 else
6892 mips_elf_set_cr_type (cptrel, CRT_MIPS_WORD);
6893 mips_elf_set_cr_dist2to (cptrel, 0);
6894 cptrel.konst = *addendp;
6895
6896 cr = (scpt->contents
6897 + sizeof (Elf32_External_compact_rel));
abc0f8d0 6898 mips_elf_set_cr_relvaddr (cptrel, 0);
b49e97c9
TS
6899 bfd_elf32_swap_crinfo_out (output_bfd, &cptrel,
6900 ((Elf32_External_crinfo *) cr
6901 + scpt->reloc_count));
6902 ++scpt->reloc_count;
6903 }
6904 }
6905
943284cc
DJ
6906 /* If we've written this relocation for a readonly section,
6907 we need to set DF_TEXTREL again, so that we do not delete the
6908 DT_TEXTREL tag. */
6909 if (MIPS_ELF_READONLY_SECTION (input_section))
6910 info->flags |= DF_TEXTREL;
6911
b34976b6 6912 return TRUE;
b49e97c9
TS
6913}
6914\f
b49e97c9
TS
6915/* Return the MACH for a MIPS e_flags value. */
6916
6917unsigned long
9719ad41 6918_bfd_elf_mips_mach (flagword flags)
b49e97c9
TS
6919{
6920 switch (flags & EF_MIPS_MACH)
6921 {
6922 case E_MIPS_MACH_3900:
6923 return bfd_mach_mips3900;
6924
6925 case E_MIPS_MACH_4010:
6926 return bfd_mach_mips4010;
6927
6928 case E_MIPS_MACH_4100:
6929 return bfd_mach_mips4100;
6930
6931 case E_MIPS_MACH_4111:
6932 return bfd_mach_mips4111;
6933
00707a0e
RS
6934 case E_MIPS_MACH_4120:
6935 return bfd_mach_mips4120;
6936
b49e97c9
TS
6937 case E_MIPS_MACH_4650:
6938 return bfd_mach_mips4650;
6939
00707a0e
RS
6940 case E_MIPS_MACH_5400:
6941 return bfd_mach_mips5400;
6942
6943 case E_MIPS_MACH_5500:
6944 return bfd_mach_mips5500;
6945
e407c74b
NC
6946 case E_MIPS_MACH_5900:
6947 return bfd_mach_mips5900;
6948
0d2e43ed
ILT
6949 case E_MIPS_MACH_9000:
6950 return bfd_mach_mips9000;
6951
b49e97c9
TS
6952 case E_MIPS_MACH_SB1:
6953 return bfd_mach_mips_sb1;
6954
350cc38d
MS
6955 case E_MIPS_MACH_LS2E:
6956 return bfd_mach_mips_loongson_2e;
6957
6958 case E_MIPS_MACH_LS2F:
6959 return bfd_mach_mips_loongson_2f;
6960
ac8cb70f
CX
6961 case E_MIPS_MACH_GS464:
6962 return bfd_mach_mips_gs464;
fd503541 6963
bd782c07
CX
6964 case E_MIPS_MACH_GS464E:
6965 return bfd_mach_mips_gs464e;
6966
9108bc33
CX
6967 case E_MIPS_MACH_GS264E:
6968 return bfd_mach_mips_gs264e;
6969
2c629856
N
6970 case E_MIPS_MACH_OCTEON3:
6971 return bfd_mach_mips_octeon3;
6972
432233b3
AP
6973 case E_MIPS_MACH_OCTEON2:
6974 return bfd_mach_mips_octeon2;
6975
6f179bd0
AN
6976 case E_MIPS_MACH_OCTEON:
6977 return bfd_mach_mips_octeon;
6978
52b6b6b9
JM
6979 case E_MIPS_MACH_XLR:
6980 return bfd_mach_mips_xlr;
6981
38bf472a
MR
6982 case E_MIPS_MACH_IAMR2:
6983 return bfd_mach_mips_interaptiv_mr2;
6984
b49e97c9
TS
6985 default:
6986 switch (flags & EF_MIPS_ARCH)
6987 {
6988 default:
6989 case E_MIPS_ARCH_1:
6990 return bfd_mach_mips3000;
b49e97c9
TS
6991
6992 case E_MIPS_ARCH_2:
6993 return bfd_mach_mips6000;
b49e97c9
TS
6994
6995 case E_MIPS_ARCH_3:
6996 return bfd_mach_mips4000;
b49e97c9
TS
6997
6998 case E_MIPS_ARCH_4:
6999 return bfd_mach_mips8000;
b49e97c9
TS
7000
7001 case E_MIPS_ARCH_5:
7002 return bfd_mach_mips5;
b49e97c9
TS
7003
7004 case E_MIPS_ARCH_32:
7005 return bfd_mach_mipsisa32;
b49e97c9
TS
7006
7007 case E_MIPS_ARCH_64:
7008 return bfd_mach_mipsisa64;
af7ee8bf
CD
7009
7010 case E_MIPS_ARCH_32R2:
7011 return bfd_mach_mipsisa32r2;
5f74bc13
CD
7012
7013 case E_MIPS_ARCH_64R2:
7014 return bfd_mach_mipsisa64r2;
7361da2c
AB
7015
7016 case E_MIPS_ARCH_32R6:
7017 return bfd_mach_mipsisa32r6;
7018
7019 case E_MIPS_ARCH_64R6:
7020 return bfd_mach_mipsisa64r6;
b49e97c9
TS
7021 }
7022 }
7023
7024 return 0;
7025}
7026
7027/* Return printable name for ABI. */
7028
7029static INLINE char *
9719ad41 7030elf_mips_abi_name (bfd *abfd)
b49e97c9
TS
7031{
7032 flagword flags;
7033
7034 flags = elf_elfheader (abfd)->e_flags;
7035 switch (flags & EF_MIPS_ABI)
7036 {
7037 case 0:
7038 if (ABI_N32_P (abfd))
7039 return "N32";
7040 else if (ABI_64_P (abfd))
7041 return "64";
7042 else
7043 return "none";
7044 case E_MIPS_ABI_O32:
7045 return "O32";
7046 case E_MIPS_ABI_O64:
7047 return "O64";
7048 case E_MIPS_ABI_EABI32:
7049 return "EABI32";
7050 case E_MIPS_ABI_EABI64:
7051 return "EABI64";
7052 default:
7053 return "unknown abi";
7054 }
7055}
7056\f
7057/* MIPS ELF uses two common sections. One is the usual one, and the
7058 other is for small objects. All the small objects are kept
7059 together, and then referenced via the gp pointer, which yields
7060 faster assembler code. This is what we use for the small common
7061 section. This approach is copied from ecoff.c. */
7062static asection mips_elf_scom_section;
7063static asymbol mips_elf_scom_symbol;
7064static asymbol *mips_elf_scom_symbol_ptr;
7065
7066/* MIPS ELF also uses an acommon section, which represents an
7067 allocated common symbol which may be overridden by a
7068 definition in a shared library. */
7069static asection mips_elf_acom_section;
7070static asymbol mips_elf_acom_symbol;
7071static asymbol *mips_elf_acom_symbol_ptr;
7072
738e5348 7073/* This is used for both the 32-bit and the 64-bit ABI. */
b49e97c9
TS
7074
7075void
9719ad41 7076_bfd_mips_elf_symbol_processing (bfd *abfd, asymbol *asym)
b49e97c9
TS
7077{
7078 elf_symbol_type *elfsym;
7079
738e5348 7080 /* Handle the special MIPS section numbers that a symbol may use. */
b49e97c9
TS
7081 elfsym = (elf_symbol_type *) asym;
7082 switch (elfsym->internal_elf_sym.st_shndx)
7083 {
7084 case SHN_MIPS_ACOMMON:
7085 /* This section is used in a dynamically linked executable file.
7086 It is an allocated common section. The dynamic linker can
7087 either resolve these symbols to something in a shared
7088 library, or it can just leave them here. For our purposes,
7089 we can consider these symbols to be in a new section. */
7090 if (mips_elf_acom_section.name == NULL)
7091 {
7092 /* Initialize the acommon section. */
7093 mips_elf_acom_section.name = ".acommon";
7094 mips_elf_acom_section.flags = SEC_ALLOC;
7095 mips_elf_acom_section.output_section = &mips_elf_acom_section;
7096 mips_elf_acom_section.symbol = &mips_elf_acom_symbol;
7097 mips_elf_acom_section.symbol_ptr_ptr = &mips_elf_acom_symbol_ptr;
7098 mips_elf_acom_symbol.name = ".acommon";
7099 mips_elf_acom_symbol.flags = BSF_SECTION_SYM;
7100 mips_elf_acom_symbol.section = &mips_elf_acom_section;
7101 mips_elf_acom_symbol_ptr = &mips_elf_acom_symbol;
7102 }
7103 asym->section = &mips_elf_acom_section;
7104 break;
7105
7106 case SHN_COMMON:
7107 /* Common symbols less than the GP size are automatically
7108 treated as SHN_MIPS_SCOMMON symbols on IRIX5. */
7109 if (asym->value > elf_gp_size (abfd)
b59eed79 7110 || ELF_ST_TYPE (elfsym->internal_elf_sym.st_info) == STT_TLS
b49e97c9
TS
7111 || IRIX_COMPAT (abfd) == ict_irix6)
7112 break;
7113 /* Fall through. */
7114 case SHN_MIPS_SCOMMON:
7115 if (mips_elf_scom_section.name == NULL)
7116 {
7117 /* Initialize the small common section. */
7118 mips_elf_scom_section.name = ".scommon";
7119 mips_elf_scom_section.flags = SEC_IS_COMMON;
7120 mips_elf_scom_section.output_section = &mips_elf_scom_section;
7121 mips_elf_scom_section.symbol = &mips_elf_scom_symbol;
7122 mips_elf_scom_section.symbol_ptr_ptr = &mips_elf_scom_symbol_ptr;
7123 mips_elf_scom_symbol.name = ".scommon";
7124 mips_elf_scom_symbol.flags = BSF_SECTION_SYM;
7125 mips_elf_scom_symbol.section = &mips_elf_scom_section;
7126 mips_elf_scom_symbol_ptr = &mips_elf_scom_symbol;
7127 }
7128 asym->section = &mips_elf_scom_section;
7129 asym->value = elfsym->internal_elf_sym.st_size;
7130 break;
7131
7132 case SHN_MIPS_SUNDEFINED:
7133 asym->section = bfd_und_section_ptr;
7134 break;
7135
b49e97c9 7136 case SHN_MIPS_TEXT:
00b4930b
TS
7137 {
7138 asection *section = bfd_get_section_by_name (abfd, ".text");
7139
00b4930b
TS
7140 if (section != NULL)
7141 {
7142 asym->section = section;
7143 /* MIPS_TEXT is a bit special, the address is not an offset
de194d85 7144 to the base of the .text section. So subtract the section
00b4930b
TS
7145 base address to make it an offset. */
7146 asym->value -= section->vma;
7147 }
7148 }
b49e97c9
TS
7149 break;
7150
7151 case SHN_MIPS_DATA:
00b4930b
TS
7152 {
7153 asection *section = bfd_get_section_by_name (abfd, ".data");
7154
00b4930b
TS
7155 if (section != NULL)
7156 {
7157 asym->section = section;
7158 /* MIPS_DATA is a bit special, the address is not an offset
de194d85 7159 to the base of the .data section. So subtract the section
00b4930b
TS
7160 base address to make it an offset. */
7161 asym->value -= section->vma;
7162 }
7163 }
b49e97c9 7164 break;
b49e97c9 7165 }
738e5348 7166
df58fc94
RS
7167 /* If this is an odd-valued function symbol, assume it's a MIPS16
7168 or microMIPS one. */
738e5348
RS
7169 if (ELF_ST_TYPE (elfsym->internal_elf_sym.st_info) == STT_FUNC
7170 && (asym->value & 1) != 0)
7171 {
7172 asym->value--;
e8faf7d1 7173 if (MICROMIPS_P (abfd))
df58fc94
RS
7174 elfsym->internal_elf_sym.st_other
7175 = ELF_ST_SET_MICROMIPS (elfsym->internal_elf_sym.st_other);
7176 else
7177 elfsym->internal_elf_sym.st_other
7178 = ELF_ST_SET_MIPS16 (elfsym->internal_elf_sym.st_other);
738e5348 7179 }
b49e97c9
TS
7180}
7181\f
8c946ed5
RS
7182/* Implement elf_backend_eh_frame_address_size. This differs from
7183 the default in the way it handles EABI64.
7184
7185 EABI64 was originally specified as an LP64 ABI, and that is what
7186 -mabi=eabi normally gives on a 64-bit target. However, gcc has
7187 historically accepted the combination of -mabi=eabi and -mlong32,
7188 and this ILP32 variation has become semi-official over time.
7189 Both forms use elf32 and have pointer-sized FDE addresses.
7190
7191 If an EABI object was generated by GCC 4.0 or above, it will have
7192 an empty .gcc_compiled_longXX section, where XX is the size of longs
7193 in bits. Unfortunately, ILP32 objects generated by earlier compilers
7194 have no special marking to distinguish them from LP64 objects.
7195
7196 We don't want users of the official LP64 ABI to be punished for the
7197 existence of the ILP32 variant, but at the same time, we don't want
7198 to mistakenly interpret pre-4.0 ILP32 objects as being LP64 objects.
7199 We therefore take the following approach:
7200
7201 - If ABFD contains a .gcc_compiled_longXX section, use it to
07d6d2b8 7202 determine the pointer size.
8c946ed5
RS
7203
7204 - Otherwise check the type of the first relocation. Assume that
07d6d2b8 7205 the LP64 ABI is being used if the relocation is of type R_MIPS_64.
8c946ed5
RS
7206
7207 - Otherwise punt.
7208
7209 The second check is enough to detect LP64 objects generated by pre-4.0
7210 compilers because, in the kind of output generated by those compilers,
7211 the first relocation will be associated with either a CIE personality
7212 routine or an FDE start address. Furthermore, the compilers never
7213 used a special (non-pointer) encoding for this ABI.
7214
7215 Checking the relocation type should also be safe because there is no
7216 reason to use R_MIPS_64 in an ILP32 object. Pre-4.0 compilers never
7217 did so. */
7218
7219unsigned int
76c20d54 7220_bfd_mips_elf_eh_frame_address_size (bfd *abfd, const asection *sec)
8c946ed5
RS
7221{
7222 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
7223 return 8;
7224 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64)
7225 {
7226 bfd_boolean long32_p, long64_p;
7227
7228 long32_p = bfd_get_section_by_name (abfd, ".gcc_compiled_long32") != 0;
7229 long64_p = bfd_get_section_by_name (abfd, ".gcc_compiled_long64") != 0;
7230 if (long32_p && long64_p)
7231 return 0;
7232 if (long32_p)
7233 return 4;
7234 if (long64_p)
7235 return 8;
7236
7237 if (sec->reloc_count > 0
7238 && elf_section_data (sec)->relocs != NULL
7239 && (ELF32_R_TYPE (elf_section_data (sec)->relocs[0].r_info)
7240 == R_MIPS_64))
7241 return 8;
7242
7243 return 0;
7244 }
7245 return 4;
7246}
7247\f
174fd7f9
RS
7248/* There appears to be a bug in the MIPSpro linker that causes GOT_DISP
7249 relocations against two unnamed section symbols to resolve to the
7250 same address. For example, if we have code like:
7251
7252 lw $4,%got_disp(.data)($gp)
7253 lw $25,%got_disp(.text)($gp)
7254 jalr $25
7255
7256 then the linker will resolve both relocations to .data and the program
7257 will jump there rather than to .text.
7258
7259 We can work around this problem by giving names to local section symbols.
7260 This is also what the MIPSpro tools do. */
7261
7262bfd_boolean
7263_bfd_mips_elf_name_local_section_symbols (bfd *abfd)
7264{
7265 return SGI_COMPAT (abfd);
7266}
7267\f
b49e97c9
TS
7268/* Work over a section just before writing it out. This routine is
7269 used by both the 32-bit and the 64-bit ABI. FIXME: We recognize
7270 sections that need the SHF_MIPS_GPREL flag by name; there has to be
7271 a better way. */
7272
b34976b6 7273bfd_boolean
9719ad41 7274_bfd_mips_elf_section_processing (bfd *abfd, Elf_Internal_Shdr *hdr)
b49e97c9
TS
7275{
7276 if (hdr->sh_type == SHT_MIPS_REGINFO
7277 && hdr->sh_size > 0)
7278 {
7279 bfd_byte buf[4];
7280
b49e97c9
TS
7281 BFD_ASSERT (hdr->contents == NULL);
7282
2d6dda71
MR
7283 if (hdr->sh_size != sizeof (Elf32_External_RegInfo))
7284 {
7285 _bfd_error_handler
2c1c9679 7286 (_("%pB: incorrect `.reginfo' section size; "
2dcf00ce
AM
7287 "expected %" PRIu64 ", got %" PRIu64),
7288 abfd, (uint64_t) sizeof (Elf32_External_RegInfo),
7289 (uint64_t) hdr->sh_size);
2d6dda71
MR
7290 bfd_set_error (bfd_error_bad_value);
7291 return FALSE;
7292 }
7293
b49e97c9
TS
7294 if (bfd_seek (abfd,
7295 hdr->sh_offset + sizeof (Elf32_External_RegInfo) - 4,
7296 SEEK_SET) != 0)
b34976b6 7297 return FALSE;
b49e97c9 7298 H_PUT_32 (abfd, elf_gp (abfd), buf);
9719ad41 7299 if (bfd_bwrite (buf, 4, abfd) != 4)
b34976b6 7300 return FALSE;
b49e97c9
TS
7301 }
7302
7303 if (hdr->sh_type == SHT_MIPS_OPTIONS
7304 && hdr->bfd_section != NULL
f0abc2a1
AM
7305 && mips_elf_section_data (hdr->bfd_section) != NULL
7306 && mips_elf_section_data (hdr->bfd_section)->u.tdata != NULL)
b49e97c9
TS
7307 {
7308 bfd_byte *contents, *l, *lend;
7309
f0abc2a1
AM
7310 /* We stored the section contents in the tdata field in the
7311 set_section_contents routine. We save the section contents
7312 so that we don't have to read them again.
b49e97c9
TS
7313 At this point we know that elf_gp is set, so we can look
7314 through the section contents to see if there is an
7315 ODK_REGINFO structure. */
7316
f0abc2a1 7317 contents = mips_elf_section_data (hdr->bfd_section)->u.tdata;
b49e97c9
TS
7318 l = contents;
7319 lend = contents + hdr->sh_size;
7320 while (l + sizeof (Elf_External_Options) <= lend)
7321 {
7322 Elf_Internal_Options intopt;
7323
7324 bfd_mips_elf_swap_options_in (abfd, (Elf_External_Options *) l,
7325 &intopt);
1bc8074d
MR
7326 if (intopt.size < sizeof (Elf_External_Options))
7327 {
4eca0228 7328 _bfd_error_handler
695344c0 7329 /* xgettext:c-format */
2c1c9679 7330 (_("%pB: warning: bad `%s' option size %u smaller than"
63a5468a 7331 " its header"),
1bc8074d
MR
7332 abfd, MIPS_ELF_OPTIONS_SECTION_NAME (abfd), intopt.size);
7333 break;
7334 }
b49e97c9
TS
7335 if (ABI_64_P (abfd) && intopt.kind == ODK_REGINFO)
7336 {
7337 bfd_byte buf[8];
7338
7339 if (bfd_seek (abfd,
7340 (hdr->sh_offset
7341 + (l - contents)
7342 + sizeof (Elf_External_Options)
7343 + (sizeof (Elf64_External_RegInfo) - 8)),
7344 SEEK_SET) != 0)
b34976b6 7345 return FALSE;
b49e97c9 7346 H_PUT_64 (abfd, elf_gp (abfd), buf);
9719ad41 7347 if (bfd_bwrite (buf, 8, abfd) != 8)
b34976b6 7348 return FALSE;
b49e97c9
TS
7349 }
7350 else if (intopt.kind == ODK_REGINFO)
7351 {
7352 bfd_byte buf[4];
7353
7354 if (bfd_seek (abfd,
7355 (hdr->sh_offset
7356 + (l - contents)
7357 + sizeof (Elf_External_Options)
7358 + (sizeof (Elf32_External_RegInfo) - 4)),
7359 SEEK_SET) != 0)
b34976b6 7360 return FALSE;
b49e97c9 7361 H_PUT_32 (abfd, elf_gp (abfd), buf);
9719ad41 7362 if (bfd_bwrite (buf, 4, abfd) != 4)
b34976b6 7363 return FALSE;
b49e97c9
TS
7364 }
7365 l += intopt.size;
7366 }
7367 }
7368
7369 if (hdr->bfd_section != NULL)
7370 {
fd361982 7371 const char *name = bfd_section_name (hdr->bfd_section);
b49e97c9 7372
2d0f9ad9
JM
7373 /* .sbss is not handled specially here because the GNU/Linux
7374 prelinker can convert .sbss from NOBITS to PROGBITS and
7375 changing it back to NOBITS breaks the binary. The entry in
7376 _bfd_mips_elf_special_sections will ensure the correct flags
7377 are set on .sbss if BFD creates it without reading it from an
7378 input file, and without special handling here the flags set
7379 on it in an input file will be followed. */
b49e97c9
TS
7380 if (strcmp (name, ".sdata") == 0
7381 || strcmp (name, ".lit8") == 0
7382 || strcmp (name, ".lit4") == 0)
fd6f9d17 7383 hdr->sh_flags |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL;
b49e97c9 7384 else if (strcmp (name, ".srdata") == 0)
fd6f9d17 7385 hdr->sh_flags |= SHF_ALLOC | SHF_MIPS_GPREL;
b49e97c9 7386 else if (strcmp (name, ".compact_rel") == 0)
fd6f9d17 7387 hdr->sh_flags = 0;
b49e97c9
TS
7388 else if (strcmp (name, ".rtproc") == 0)
7389 {
7390 if (hdr->sh_addralign != 0 && hdr->sh_entsize == 0)
7391 {
7392 unsigned int adjust;
7393
7394 adjust = hdr->sh_size % hdr->sh_addralign;
7395 if (adjust != 0)
7396 hdr->sh_size += hdr->sh_addralign - adjust;
7397 }
7398 }
7399 }
7400
b34976b6 7401 return TRUE;
b49e97c9
TS
7402}
7403
7404/* Handle a MIPS specific section when reading an object file. This
7405 is called when elfcode.h finds a section with an unknown type.
bf577467 7406 This routine supports both the 32-bit and 64-bit ELF ABI. */
b49e97c9 7407
b34976b6 7408bfd_boolean
6dc132d9
L
7409_bfd_mips_elf_section_from_shdr (bfd *abfd,
7410 Elf_Internal_Shdr *hdr,
7411 const char *name,
7412 int shindex)
b49e97c9
TS
7413{
7414 flagword flags = 0;
7415
7416 /* There ought to be a place to keep ELF backend specific flags, but
7417 at the moment there isn't one. We just keep track of the
7418 sections by their name, instead. Fortunately, the ABI gives
7419 suggested names for all the MIPS specific sections, so we will
7420 probably get away with this. */
7421 switch (hdr->sh_type)
7422 {
7423 case SHT_MIPS_LIBLIST:
7424 if (strcmp (name, ".liblist") != 0)
b34976b6 7425 return FALSE;
b49e97c9
TS
7426 break;
7427 case SHT_MIPS_MSYM:
7428 if (strcmp (name, ".msym") != 0)
b34976b6 7429 return FALSE;
b49e97c9
TS
7430 break;
7431 case SHT_MIPS_CONFLICT:
7432 if (strcmp (name, ".conflict") != 0)
b34976b6 7433 return FALSE;
b49e97c9
TS
7434 break;
7435 case SHT_MIPS_GPTAB:
0112cd26 7436 if (! CONST_STRNEQ (name, ".gptab."))
b34976b6 7437 return FALSE;
b49e97c9
TS
7438 break;
7439 case SHT_MIPS_UCODE:
7440 if (strcmp (name, ".ucode") != 0)
b34976b6 7441 return FALSE;
b49e97c9
TS
7442 break;
7443 case SHT_MIPS_DEBUG:
7444 if (strcmp (name, ".mdebug") != 0)
b34976b6 7445 return FALSE;
b49e97c9
TS
7446 flags = SEC_DEBUGGING;
7447 break;
7448 case SHT_MIPS_REGINFO:
7449 if (strcmp (name, ".reginfo") != 0
7450 || hdr->sh_size != sizeof (Elf32_External_RegInfo))
b34976b6 7451 return FALSE;
b49e97c9
TS
7452 flags = (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_SAME_SIZE);
7453 break;
7454 case SHT_MIPS_IFACE:
7455 if (strcmp (name, ".MIPS.interfaces") != 0)
b34976b6 7456 return FALSE;
b49e97c9
TS
7457 break;
7458 case SHT_MIPS_CONTENT:
0112cd26 7459 if (! CONST_STRNEQ (name, ".MIPS.content"))
b34976b6 7460 return FALSE;
b49e97c9
TS
7461 break;
7462 case SHT_MIPS_OPTIONS:
cc2e31b9 7463 if (!MIPS_ELF_OPTIONS_SECTION_NAME_P (name))
b34976b6 7464 return FALSE;
b49e97c9 7465 break;
351cdf24
MF
7466 case SHT_MIPS_ABIFLAGS:
7467 if (!MIPS_ELF_ABIFLAGS_SECTION_NAME_P (name))
7468 return FALSE;
7469 flags = (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_SAME_SIZE);
7470 break;
b49e97c9 7471 case SHT_MIPS_DWARF:
1b315056 7472 if (! CONST_STRNEQ (name, ".debug_")
07d6d2b8 7473 && ! CONST_STRNEQ (name, ".zdebug_"))
b34976b6 7474 return FALSE;
b49e97c9
TS
7475 break;
7476 case SHT_MIPS_SYMBOL_LIB:
7477 if (strcmp (name, ".MIPS.symlib") != 0)
b34976b6 7478 return FALSE;
b49e97c9
TS
7479 break;
7480 case SHT_MIPS_EVENTS:
0112cd26
NC
7481 if (! CONST_STRNEQ (name, ".MIPS.events")
7482 && ! CONST_STRNEQ (name, ".MIPS.post_rel"))
b34976b6 7483 return FALSE;
b49e97c9 7484 break;
f16a9783
MS
7485 case SHT_MIPS_XHASH:
7486 if (strcmp (name, ".MIPS.xhash") != 0)
7487 return FALSE;
b49e97c9 7488 default:
cc2e31b9 7489 break;
b49e97c9
TS
7490 }
7491
6dc132d9 7492 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
b34976b6 7493 return FALSE;
b49e97c9 7494
bf577467
AM
7495 if (hdr->sh_flags & SHF_MIPS_GPREL)
7496 flags |= SEC_SMALL_DATA;
7497
b49e97c9
TS
7498 if (flags)
7499 {
fd361982
AM
7500 if (!bfd_set_section_flags (hdr->bfd_section,
7501 (bfd_section_flags (hdr->bfd_section)
7502 | flags)))
b34976b6 7503 return FALSE;
b49e97c9
TS
7504 }
7505
351cdf24
MF
7506 if (hdr->sh_type == SHT_MIPS_ABIFLAGS)
7507 {
7508 Elf_External_ABIFlags_v0 ext;
7509
7510 if (! bfd_get_section_contents (abfd, hdr->bfd_section,
7511 &ext, 0, sizeof ext))
7512 return FALSE;
7513 bfd_mips_elf_swap_abiflags_v0_in (abfd, &ext,
7514 &mips_elf_tdata (abfd)->abiflags);
7515 if (mips_elf_tdata (abfd)->abiflags.version != 0)
7516 return FALSE;
7517 mips_elf_tdata (abfd)->abiflags_valid = TRUE;
7518 }
7519
b49e97c9
TS
7520 /* FIXME: We should record sh_info for a .gptab section. */
7521
7522 /* For a .reginfo section, set the gp value in the tdata information
7523 from the contents of this section. We need the gp value while
7524 processing relocs, so we just get it now. The .reginfo section
7525 is not used in the 64-bit MIPS ELF ABI. */
7526 if (hdr->sh_type == SHT_MIPS_REGINFO)
7527 {
7528 Elf32_External_RegInfo ext;
7529 Elf32_RegInfo s;
7530
9719ad41
RS
7531 if (! bfd_get_section_contents (abfd, hdr->bfd_section,
7532 &ext, 0, sizeof ext))
b34976b6 7533 return FALSE;
b49e97c9
TS
7534 bfd_mips_elf32_swap_reginfo_in (abfd, &ext, &s);
7535 elf_gp (abfd) = s.ri_gp_value;
7536 }
7537
7538 /* For a SHT_MIPS_OPTIONS section, look for a ODK_REGINFO entry, and
7539 set the gp value based on what we find. We may see both
7540 SHT_MIPS_REGINFO and SHT_MIPS_OPTIONS/ODK_REGINFO; in that case,
7541 they should agree. */
7542 if (hdr->sh_type == SHT_MIPS_OPTIONS)
7543 {
7544 bfd_byte *contents, *l, *lend;
7545
9719ad41 7546 contents = bfd_malloc (hdr->sh_size);
b49e97c9 7547 if (contents == NULL)
b34976b6 7548 return FALSE;
b49e97c9 7549 if (! bfd_get_section_contents (abfd, hdr->bfd_section, contents,
9719ad41 7550 0, hdr->sh_size))
b49e97c9
TS
7551 {
7552 free (contents);
b34976b6 7553 return FALSE;
b49e97c9
TS
7554 }
7555 l = contents;
7556 lend = contents + hdr->sh_size;
7557 while (l + sizeof (Elf_External_Options) <= lend)
7558 {
7559 Elf_Internal_Options intopt;
7560
7561 bfd_mips_elf_swap_options_in (abfd, (Elf_External_Options *) l,
7562 &intopt);
1bc8074d
MR
7563 if (intopt.size < sizeof (Elf_External_Options))
7564 {
4eca0228 7565 _bfd_error_handler
695344c0 7566 /* xgettext:c-format */
2c1c9679 7567 (_("%pB: warning: bad `%s' option size %u smaller than"
63a5468a 7568 " its header"),
1bc8074d
MR
7569 abfd, MIPS_ELF_OPTIONS_SECTION_NAME (abfd), intopt.size);
7570 break;
7571 }
b49e97c9
TS
7572 if (ABI_64_P (abfd) && intopt.kind == ODK_REGINFO)
7573 {
7574 Elf64_Internal_RegInfo intreg;
7575
7576 bfd_mips_elf64_swap_reginfo_in
7577 (abfd,
7578 ((Elf64_External_RegInfo *)
7579 (l + sizeof (Elf_External_Options))),
7580 &intreg);
7581 elf_gp (abfd) = intreg.ri_gp_value;
7582 }
7583 else if (intopt.kind == ODK_REGINFO)
7584 {
7585 Elf32_RegInfo intreg;
7586
7587 bfd_mips_elf32_swap_reginfo_in
7588 (abfd,
7589 ((Elf32_External_RegInfo *)
7590 (l + sizeof (Elf_External_Options))),
7591 &intreg);
7592 elf_gp (abfd) = intreg.ri_gp_value;
7593 }
7594 l += intopt.size;
7595 }
7596 free (contents);
7597 }
7598
b34976b6 7599 return TRUE;
b49e97c9
TS
7600}
7601
7602/* Set the correct type for a MIPS ELF section. We do this by the
7603 section name, which is a hack, but ought to work. This routine is
7604 used by both the 32-bit and the 64-bit ABI. */
7605
b34976b6 7606bfd_boolean
9719ad41 7607_bfd_mips_elf_fake_sections (bfd *abfd, Elf_Internal_Shdr *hdr, asection *sec)
b49e97c9 7608{
fd361982 7609 const char *name = bfd_section_name (sec);
b49e97c9
TS
7610
7611 if (strcmp (name, ".liblist") == 0)
7612 {
7613 hdr->sh_type = SHT_MIPS_LIBLIST;
eea6121a 7614 hdr->sh_info = sec->size / sizeof (Elf32_Lib);
b49e97c9
TS
7615 /* The sh_link field is set in final_write_processing. */
7616 }
7617 else if (strcmp (name, ".conflict") == 0)
7618 hdr->sh_type = SHT_MIPS_CONFLICT;
0112cd26 7619 else if (CONST_STRNEQ (name, ".gptab."))
b49e97c9
TS
7620 {
7621 hdr->sh_type = SHT_MIPS_GPTAB;
7622 hdr->sh_entsize = sizeof (Elf32_External_gptab);
7623 /* The sh_info field is set in final_write_processing. */
7624 }
7625 else if (strcmp (name, ".ucode") == 0)
7626 hdr->sh_type = SHT_MIPS_UCODE;
7627 else if (strcmp (name, ".mdebug") == 0)
7628 {
7629 hdr->sh_type = SHT_MIPS_DEBUG;
8dc1a139 7630 /* In a shared object on IRIX 5.3, the .mdebug section has an
07d6d2b8 7631 entsize of 0. FIXME: Does this matter? */
b49e97c9
TS
7632 if (SGI_COMPAT (abfd) && (abfd->flags & DYNAMIC) != 0)
7633 hdr->sh_entsize = 0;
7634 else
7635 hdr->sh_entsize = 1;
7636 }
7637 else if (strcmp (name, ".reginfo") == 0)
7638 {
7639 hdr->sh_type = SHT_MIPS_REGINFO;
8dc1a139 7640 /* In a shared object on IRIX 5.3, the .reginfo section has an
07d6d2b8 7641 entsize of 0x18. FIXME: Does this matter? */
b49e97c9
TS
7642 if (SGI_COMPAT (abfd))
7643 {
7644 if ((abfd->flags & DYNAMIC) != 0)
7645 hdr->sh_entsize = sizeof (Elf32_External_RegInfo);
7646 else
7647 hdr->sh_entsize = 1;
7648 }
7649 else
7650 hdr->sh_entsize = sizeof (Elf32_External_RegInfo);
7651 }
7652 else if (SGI_COMPAT (abfd)
7653 && (strcmp (name, ".hash") == 0
7654 || strcmp (name, ".dynamic") == 0
7655 || strcmp (name, ".dynstr") == 0))
7656 {
7657 if (SGI_COMPAT (abfd))
7658 hdr->sh_entsize = 0;
7659#if 0
8dc1a139 7660 /* This isn't how the IRIX6 linker behaves. */
b49e97c9
TS
7661 hdr->sh_info = SIZEOF_MIPS_DYNSYM_SECNAMES;
7662#endif
7663 }
7664 else if (strcmp (name, ".got") == 0
7665 || strcmp (name, ".srdata") == 0
7666 || strcmp (name, ".sdata") == 0
7667 || strcmp (name, ".sbss") == 0
7668 || strcmp (name, ".lit4") == 0
7669 || strcmp (name, ".lit8") == 0)
7670 hdr->sh_flags |= SHF_MIPS_GPREL;
7671 else if (strcmp (name, ".MIPS.interfaces") == 0)
7672 {
7673 hdr->sh_type = SHT_MIPS_IFACE;
7674 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7675 }
0112cd26 7676 else if (CONST_STRNEQ (name, ".MIPS.content"))
b49e97c9
TS
7677 {
7678 hdr->sh_type = SHT_MIPS_CONTENT;
7679 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7680 /* The sh_info field is set in final_write_processing. */
7681 }
cc2e31b9 7682 else if (MIPS_ELF_OPTIONS_SECTION_NAME_P (name))
b49e97c9
TS
7683 {
7684 hdr->sh_type = SHT_MIPS_OPTIONS;
7685 hdr->sh_entsize = 1;
7686 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7687 }
351cdf24
MF
7688 else if (CONST_STRNEQ (name, ".MIPS.abiflags"))
7689 {
7690 hdr->sh_type = SHT_MIPS_ABIFLAGS;
7691 hdr->sh_entsize = sizeof (Elf_External_ABIFlags_v0);
7692 }
1b315056 7693 else if (CONST_STRNEQ (name, ".debug_")
07d6d2b8 7694 || CONST_STRNEQ (name, ".zdebug_"))
b5482f21
NC
7695 {
7696 hdr->sh_type = SHT_MIPS_DWARF;
7697
7698 /* Irix facilities such as libexc expect a single .debug_frame
7699 per executable, the system ones have NOSTRIP set and the linker
7700 doesn't merge sections with different flags so ... */
7701 if (SGI_COMPAT (abfd) && CONST_STRNEQ (name, ".debug_frame"))
7702 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7703 }
b49e97c9
TS
7704 else if (strcmp (name, ".MIPS.symlib") == 0)
7705 {
7706 hdr->sh_type = SHT_MIPS_SYMBOL_LIB;
7707 /* The sh_link and sh_info fields are set in
07d6d2b8 7708 final_write_processing. */
b49e97c9 7709 }
0112cd26
NC
7710 else if (CONST_STRNEQ (name, ".MIPS.events")
7711 || CONST_STRNEQ (name, ".MIPS.post_rel"))
b49e97c9
TS
7712 {
7713 hdr->sh_type = SHT_MIPS_EVENTS;
7714 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7715 /* The sh_link field is set in final_write_processing. */
7716 }
7717 else if (strcmp (name, ".msym") == 0)
7718 {
7719 hdr->sh_type = SHT_MIPS_MSYM;
7720 hdr->sh_flags |= SHF_ALLOC;
7721 hdr->sh_entsize = 8;
7722 }
f16a9783
MS
7723 else if (strcmp (name, ".MIPS.xhash") == 0)
7724 {
7725 hdr->sh_type = SHT_MIPS_XHASH;
7726 hdr->sh_flags |= SHF_ALLOC;
7727 hdr->sh_entsize = get_elf_backend_data(abfd)->s->arch_size == 64 ? 0 : 4;
7728 }
b49e97c9 7729
7a79a000
TS
7730 /* The generic elf_fake_sections will set up REL_HDR using the default
7731 kind of relocations. We used to set up a second header for the
7732 non-default kind of relocations here, but only NewABI would use
7733 these, and the IRIX ld doesn't like resulting empty RELA sections.
7734 Thus we create those header only on demand now. */
b49e97c9 7735
b34976b6 7736 return TRUE;
b49e97c9
TS
7737}
7738
7739/* Given a BFD section, try to locate the corresponding ELF section
7740 index. This is used by both the 32-bit and the 64-bit ABI.
7741 Actually, it's not clear to me that the 64-bit ABI supports these,
7742 but for non-PIC objects we will certainly want support for at least
7743 the .scommon section. */
7744
b34976b6 7745bfd_boolean
9719ad41
RS
7746_bfd_mips_elf_section_from_bfd_section (bfd *abfd ATTRIBUTE_UNUSED,
7747 asection *sec, int *retval)
b49e97c9 7748{
fd361982 7749 if (strcmp (bfd_section_name (sec), ".scommon") == 0)
b49e97c9
TS
7750 {
7751 *retval = SHN_MIPS_SCOMMON;
b34976b6 7752 return TRUE;
b49e97c9 7753 }
fd361982 7754 if (strcmp (bfd_section_name (sec), ".acommon") == 0)
b49e97c9
TS
7755 {
7756 *retval = SHN_MIPS_ACOMMON;
b34976b6 7757 return TRUE;
b49e97c9 7758 }
b34976b6 7759 return FALSE;
b49e97c9
TS
7760}
7761\f
7762/* Hook called by the linker routine which adds symbols from an object
7763 file. We must handle the special MIPS section numbers here. */
7764
b34976b6 7765bfd_boolean
9719ad41 7766_bfd_mips_elf_add_symbol_hook (bfd *abfd, struct bfd_link_info *info,
555cd476 7767 Elf_Internal_Sym *sym, const char **namep,
9719ad41
RS
7768 flagword *flagsp ATTRIBUTE_UNUSED,
7769 asection **secp, bfd_vma *valp)
b49e97c9
TS
7770{
7771 if (SGI_COMPAT (abfd)
7772 && (abfd->flags & DYNAMIC) != 0
7773 && strcmp (*namep, "_rld_new_interface") == 0)
7774 {
8dc1a139 7775 /* Skip IRIX5 rld entry name. */
b49e97c9 7776 *namep = NULL;
b34976b6 7777 return TRUE;
b49e97c9
TS
7778 }
7779
eedecc07
DD
7780 /* Shared objects may have a dynamic symbol '_gp_disp' defined as
7781 a SECTION *ABS*. This causes ld to think it can resolve _gp_disp
7782 by setting a DT_NEEDED for the shared object. Since _gp_disp is
7783 a magic symbol resolved by the linker, we ignore this bogus definition
7784 of _gp_disp. New ABI objects do not suffer from this problem so this
7785 is not done for them. */
7786 if (!NEWABI_P(abfd)
7787 && (sym->st_shndx == SHN_ABS)
7788 && (strcmp (*namep, "_gp_disp") == 0))
7789 {
7790 *namep = NULL;
7791 return TRUE;
7792 }
7793
b49e97c9
TS
7794 switch (sym->st_shndx)
7795 {
7796 case SHN_COMMON:
7797 /* Common symbols less than the GP size are automatically
7798 treated as SHN_MIPS_SCOMMON symbols. */
7799 if (sym->st_size > elf_gp_size (abfd)
b59eed79 7800 || ELF_ST_TYPE (sym->st_info) == STT_TLS
b49e97c9
TS
7801 || IRIX_COMPAT (abfd) == ict_irix6)
7802 break;
7803 /* Fall through. */
7804 case SHN_MIPS_SCOMMON:
7805 *secp = bfd_make_section_old_way (abfd, ".scommon");
7806 (*secp)->flags |= SEC_IS_COMMON;
7807 *valp = sym->st_size;
7808 break;
7809
7810 case SHN_MIPS_TEXT:
7811 /* This section is used in a shared object. */
698600e4 7812 if (mips_elf_tdata (abfd)->elf_text_section == NULL)
b49e97c9
TS
7813 {
7814 asymbol *elf_text_symbol;
7815 asection *elf_text_section;
986f0783 7816 size_t amt = sizeof (asection);
b49e97c9
TS
7817
7818 elf_text_section = bfd_zalloc (abfd, amt);
7819 if (elf_text_section == NULL)
b34976b6 7820 return FALSE;
b49e97c9
TS
7821
7822 amt = sizeof (asymbol);
7823 elf_text_symbol = bfd_zalloc (abfd, amt);
7824 if (elf_text_symbol == NULL)
b34976b6 7825 return FALSE;
b49e97c9
TS
7826
7827 /* Initialize the section. */
7828
698600e4
AM
7829 mips_elf_tdata (abfd)->elf_text_section = elf_text_section;
7830 mips_elf_tdata (abfd)->elf_text_symbol = elf_text_symbol;
b49e97c9
TS
7831
7832 elf_text_section->symbol = elf_text_symbol;
698600e4 7833 elf_text_section->symbol_ptr_ptr = &mips_elf_tdata (abfd)->elf_text_symbol;
b49e97c9
TS
7834
7835 elf_text_section->name = ".text";
7836 elf_text_section->flags = SEC_NO_FLAGS;
7837 elf_text_section->output_section = NULL;
7838 elf_text_section->owner = abfd;
7839 elf_text_symbol->name = ".text";
7840 elf_text_symbol->flags = BSF_SECTION_SYM | BSF_DYNAMIC;
7841 elf_text_symbol->section = elf_text_section;
7842 }
7843 /* This code used to do *secp = bfd_und_section_ptr if
07d6d2b8
AM
7844 bfd_link_pic (info). I don't know why, and that doesn't make sense,
7845 so I took it out. */
698600e4 7846 *secp = mips_elf_tdata (abfd)->elf_text_section;
b49e97c9
TS
7847 break;
7848
7849 case SHN_MIPS_ACOMMON:
7850 /* Fall through. XXX Can we treat this as allocated data? */
7851 case SHN_MIPS_DATA:
7852 /* This section is used in a shared object. */
698600e4 7853 if (mips_elf_tdata (abfd)->elf_data_section == NULL)
b49e97c9
TS
7854 {
7855 asymbol *elf_data_symbol;
7856 asection *elf_data_section;
986f0783 7857 size_t amt = sizeof (asection);
b49e97c9
TS
7858
7859 elf_data_section = bfd_zalloc (abfd, amt);
7860 if (elf_data_section == NULL)
b34976b6 7861 return FALSE;
b49e97c9
TS
7862
7863 amt = sizeof (asymbol);
7864 elf_data_symbol = bfd_zalloc (abfd, amt);
7865 if (elf_data_symbol == NULL)
b34976b6 7866 return FALSE;
b49e97c9
TS
7867
7868 /* Initialize the section. */
7869
698600e4
AM
7870 mips_elf_tdata (abfd)->elf_data_section = elf_data_section;
7871 mips_elf_tdata (abfd)->elf_data_symbol = elf_data_symbol;
b49e97c9
TS
7872
7873 elf_data_section->symbol = elf_data_symbol;
698600e4 7874 elf_data_section->symbol_ptr_ptr = &mips_elf_tdata (abfd)->elf_data_symbol;
b49e97c9
TS
7875
7876 elf_data_section->name = ".data";
7877 elf_data_section->flags = SEC_NO_FLAGS;
7878 elf_data_section->output_section = NULL;
7879 elf_data_section->owner = abfd;
7880 elf_data_symbol->name = ".data";
7881 elf_data_symbol->flags = BSF_SECTION_SYM | BSF_DYNAMIC;
7882 elf_data_symbol->section = elf_data_section;
7883 }
7884 /* This code used to do *secp = bfd_und_section_ptr if
07d6d2b8
AM
7885 bfd_link_pic (info). I don't know why, and that doesn't make sense,
7886 so I took it out. */
698600e4 7887 *secp = mips_elf_tdata (abfd)->elf_data_section;
b49e97c9
TS
7888 break;
7889
7890 case SHN_MIPS_SUNDEFINED:
7891 *secp = bfd_und_section_ptr;
7892 break;
7893 }
7894
7895 if (SGI_COMPAT (abfd)
0e1862bb 7896 && ! bfd_link_pic (info)
f13a99db 7897 && info->output_bfd->xvec == abfd->xvec
b49e97c9
TS
7898 && strcmp (*namep, "__rld_obj_head") == 0)
7899 {
7900 struct elf_link_hash_entry *h;
14a793b2 7901 struct bfd_link_hash_entry *bh;
b49e97c9
TS
7902
7903 /* Mark __rld_obj_head as dynamic. */
14a793b2 7904 bh = NULL;
b49e97c9 7905 if (! (_bfd_generic_link_add_one_symbol
9719ad41 7906 (info, abfd, *namep, BSF_GLOBAL, *secp, *valp, NULL, FALSE,
14a793b2 7907 get_elf_backend_data (abfd)->collect, &bh)))
b34976b6 7908 return FALSE;
14a793b2
AM
7909
7910 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
7911 h->non_elf = 0;
7912 h->def_regular = 1;
b49e97c9
TS
7913 h->type = STT_OBJECT;
7914
c152c796 7915 if (! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 7916 return FALSE;
b49e97c9 7917
b34976b6 7918 mips_elf_hash_table (info)->use_rld_obj_head = TRUE;
b4082c70 7919 mips_elf_hash_table (info)->rld_symbol = h;
b49e97c9
TS
7920 }
7921
7922 /* If this is a mips16 text symbol, add 1 to the value to make it
7923 odd. This will cause something like .word SYM to come up with
7924 the right value when it is loaded into the PC. */
df58fc94 7925 if (ELF_ST_IS_COMPRESSED (sym->st_other))
b49e97c9
TS
7926 ++*valp;
7927
b34976b6 7928 return TRUE;
b49e97c9
TS
7929}
7930
7931/* This hook function is called before the linker writes out a global
7932 symbol. We mark symbols as small common if appropriate. This is
7933 also where we undo the increment of the value for a mips16 symbol. */
7934
6e0b88f1 7935int
9719ad41
RS
7936_bfd_mips_elf_link_output_symbol_hook
7937 (struct bfd_link_info *info ATTRIBUTE_UNUSED,
7938 const char *name ATTRIBUTE_UNUSED, Elf_Internal_Sym *sym,
7939 asection *input_sec, struct elf_link_hash_entry *h ATTRIBUTE_UNUSED)
b49e97c9
TS
7940{
7941 /* If we see a common symbol, which implies a relocatable link, then
7942 if a symbol was small common in an input file, mark it as small
7943 common in the output file. */
7944 if (sym->st_shndx == SHN_COMMON
7945 && strcmp (input_sec->name, ".scommon") == 0)
7946 sym->st_shndx = SHN_MIPS_SCOMMON;
7947
df58fc94 7948 if (ELF_ST_IS_COMPRESSED (sym->st_other))
79cda7cf 7949 sym->st_value &= ~1;
b49e97c9 7950
6e0b88f1 7951 return 1;
b49e97c9
TS
7952}
7953\f
7954/* Functions for the dynamic linker. */
7955
7956/* Create dynamic sections when linking against a dynamic object. */
7957
b34976b6 7958bfd_boolean
9719ad41 7959_bfd_mips_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
b49e97c9
TS
7960{
7961 struct elf_link_hash_entry *h;
14a793b2 7962 struct bfd_link_hash_entry *bh;
b49e97c9
TS
7963 flagword flags;
7964 register asection *s;
7965 const char * const *namep;
0a44bf69 7966 struct mips_elf_link_hash_table *htab;
b49e97c9 7967
0a44bf69 7968 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
7969 BFD_ASSERT (htab != NULL);
7970
b49e97c9
TS
7971 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
7972 | SEC_LINKER_CREATED | SEC_READONLY);
7973
0a44bf69
RS
7974 /* The psABI requires a read-only .dynamic section, but the VxWorks
7975 EABI doesn't. */
90c14f0c 7976 if (htab->root.target_os != is_vxworks)
b49e97c9 7977 {
3d4d4302 7978 s = bfd_get_linker_section (abfd, ".dynamic");
0a44bf69
RS
7979 if (s != NULL)
7980 {
fd361982 7981 if (!bfd_set_section_flags (s, flags))
0a44bf69
RS
7982 return FALSE;
7983 }
b49e97c9
TS
7984 }
7985
7986 /* We need to create .got section. */
23cc69b6 7987 if (!mips_elf_create_got_section (abfd, info))
f4416af6
AO
7988 return FALSE;
7989
0a44bf69 7990 if (! mips_elf_rel_dyn_section (info, TRUE))
b34976b6 7991 return FALSE;
b49e97c9 7992
b49e97c9 7993 /* Create .stub section. */
3d4d4302
AM
7994 s = bfd_make_section_anyway_with_flags (abfd,
7995 MIPS_ELF_STUB_SECTION_NAME (abfd),
7996 flags | SEC_CODE);
4e41d0d7 7997 if (s == NULL
fd361982 7998 || !bfd_set_section_alignment (s, MIPS_ELF_LOG_FILE_ALIGN (abfd)))
4e41d0d7
RS
7999 return FALSE;
8000 htab->sstubs = s;
b49e97c9 8001
e6aea42d 8002 if (!mips_elf_hash_table (info)->use_rld_obj_head
0e1862bb 8003 && bfd_link_executable (info)
3d4d4302 8004 && bfd_get_linker_section (abfd, ".rld_map") == NULL)
b49e97c9 8005 {
3d4d4302
AM
8006 s = bfd_make_section_anyway_with_flags (abfd, ".rld_map",
8007 flags &~ (flagword) SEC_READONLY);
b49e97c9 8008 if (s == NULL
fd361982 8009 || !bfd_set_section_alignment (s, MIPS_ELF_LOG_FILE_ALIGN (abfd)))
b34976b6 8010 return FALSE;
b49e97c9
TS
8011 }
8012
f16a9783
MS
8013 /* Create .MIPS.xhash section. */
8014 if (info->emit_gnu_hash)
8015 s = bfd_make_section_anyway_with_flags (abfd, ".MIPS.xhash",
8016 flags | SEC_READONLY);
8017
b49e97c9
TS
8018 /* On IRIX5, we adjust add some additional symbols and change the
8019 alignments of several sections. There is no ABI documentation
8020 indicating that this is necessary on IRIX6, nor any evidence that
8021 the linker takes such action. */
8022 if (IRIX_COMPAT (abfd) == ict_irix5)
8023 {
8024 for (namep = mips_elf_dynsym_rtproc_names; *namep != NULL; namep++)
8025 {
14a793b2 8026 bh = NULL;
b49e97c9 8027 if (! (_bfd_generic_link_add_one_symbol
9719ad41
RS
8028 (info, abfd, *namep, BSF_GLOBAL, bfd_und_section_ptr, 0,
8029 NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
b34976b6 8030 return FALSE;
14a793b2
AM
8031
8032 h = (struct elf_link_hash_entry *) bh;
12f09816 8033 h->mark = 1;
f5385ebf
AM
8034 h->non_elf = 0;
8035 h->def_regular = 1;
b49e97c9
TS
8036 h->type = STT_SECTION;
8037
c152c796 8038 if (! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 8039 return FALSE;
b49e97c9
TS
8040 }
8041
8042 /* We need to create a .compact_rel section. */
8043 if (SGI_COMPAT (abfd))
8044 {
8045 if (!mips_elf_create_compact_rel_section (abfd, info))
b34976b6 8046 return FALSE;
b49e97c9
TS
8047 }
8048
44c410de 8049 /* Change alignments of some sections. */
3d4d4302 8050 s = bfd_get_linker_section (abfd, ".hash");
b49e97c9 8051 if (s != NULL)
fd361982 8052 bfd_set_section_alignment (s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
a253d456 8053
3d4d4302 8054 s = bfd_get_linker_section (abfd, ".dynsym");
b49e97c9 8055 if (s != NULL)
fd361982 8056 bfd_set_section_alignment (s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
a253d456 8057
3d4d4302 8058 s = bfd_get_linker_section (abfd, ".dynstr");
b49e97c9 8059 if (s != NULL)
fd361982 8060 bfd_set_section_alignment (s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
a253d456 8061
3d4d4302 8062 /* ??? */
b49e97c9
TS
8063 s = bfd_get_section_by_name (abfd, ".reginfo");
8064 if (s != NULL)
fd361982 8065 bfd_set_section_alignment (s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
a253d456 8066
3d4d4302 8067 s = bfd_get_linker_section (abfd, ".dynamic");
b49e97c9 8068 if (s != NULL)
fd361982 8069 bfd_set_section_alignment (s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
b49e97c9
TS
8070 }
8071
0e1862bb 8072 if (bfd_link_executable (info))
b49e97c9 8073 {
14a793b2
AM
8074 const char *name;
8075
8076 name = SGI_COMPAT (abfd) ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING";
8077 bh = NULL;
8078 if (!(_bfd_generic_link_add_one_symbol
9719ad41
RS
8079 (info, abfd, name, BSF_GLOBAL, bfd_abs_section_ptr, 0,
8080 NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
b34976b6 8081 return FALSE;
14a793b2
AM
8082
8083 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
8084 h->non_elf = 0;
8085 h->def_regular = 1;
b49e97c9
TS
8086 h->type = STT_SECTION;
8087
c152c796 8088 if (! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 8089 return FALSE;
b49e97c9
TS
8090
8091 if (! mips_elf_hash_table (info)->use_rld_obj_head)
8092 {
8093 /* __rld_map is a four byte word located in the .data section
8094 and is filled in by the rtld to contain a pointer to
8095 the _r_debug structure. Its symbol value will be set in
8096 _bfd_mips_elf_finish_dynamic_symbol. */
3d4d4302 8097 s = bfd_get_linker_section (abfd, ".rld_map");
0abfb97a 8098 BFD_ASSERT (s != NULL);
14a793b2 8099
0abfb97a
L
8100 name = SGI_COMPAT (abfd) ? "__rld_map" : "__RLD_MAP";
8101 bh = NULL;
8102 if (!(_bfd_generic_link_add_one_symbol
8103 (info, abfd, name, BSF_GLOBAL, s, 0, NULL, FALSE,
8104 get_elf_backend_data (abfd)->collect, &bh)))
8105 return FALSE;
b49e97c9 8106
0abfb97a
L
8107 h = (struct elf_link_hash_entry *) bh;
8108 h->non_elf = 0;
8109 h->def_regular = 1;
8110 h->type = STT_OBJECT;
8111
8112 if (! bfd_elf_link_record_dynamic_symbol (info, h))
8113 return FALSE;
b4082c70 8114 mips_elf_hash_table (info)->rld_symbol = h;
b49e97c9
TS
8115 }
8116 }
8117
861fb55a 8118 /* Create the .plt, .rel(a).plt, .dynbss and .rel(a).bss sections.
c164a95d 8119 Also, on VxWorks, create the _PROCEDURE_LINKAGE_TABLE_ symbol. */
861fb55a
DJ
8120 if (!_bfd_elf_create_dynamic_sections (abfd, info))
8121 return FALSE;
8122
1bbce132 8123 /* Do the usual VxWorks handling. */
90c14f0c 8124 if (htab->root.target_os == is_vxworks
1bbce132
MR
8125 && !elf_vxworks_create_dynamic_sections (abfd, info, &htab->srelplt2))
8126 return FALSE;
0a44bf69 8127
b34976b6 8128 return TRUE;
b49e97c9
TS
8129}
8130\f
c224138d
RS
8131/* Return true if relocation REL against section SEC is a REL rather than
8132 RELA relocation. RELOCS is the first relocation in the section and
8133 ABFD is the bfd that contains SEC. */
8134
8135static bfd_boolean
8136mips_elf_rel_relocation_p (bfd *abfd, asection *sec,
8137 const Elf_Internal_Rela *relocs,
8138 const Elf_Internal_Rela *rel)
8139{
8140 Elf_Internal_Shdr *rel_hdr;
8141 const struct elf_backend_data *bed;
8142
d4730f92
BS
8143 /* To determine which flavor of relocation this is, we depend on the
8144 fact that the INPUT_SECTION's REL_HDR is read before RELA_HDR. */
8145 rel_hdr = elf_section_data (sec)->rel.hdr;
8146 if (rel_hdr == NULL)
8147 return FALSE;
c224138d 8148 bed = get_elf_backend_data (abfd);
d4730f92
BS
8149 return ((size_t) (rel - relocs)
8150 < NUM_SHDR_ENTRIES (rel_hdr) * bed->s->int_rels_per_ext_rel);
c224138d
RS
8151}
8152
8153/* Read the addend for REL relocation REL, which belongs to bfd ABFD.
8154 HOWTO is the relocation's howto and CONTENTS points to the contents
8155 of the section that REL is against. */
8156
8157static bfd_vma
8158mips_elf_read_rel_addend (bfd *abfd, const Elf_Internal_Rela *rel,
8159 reloc_howto_type *howto, bfd_byte *contents)
8160{
8161 bfd_byte *location;
8162 unsigned int r_type;
8163 bfd_vma addend;
17c6c9d9 8164 bfd_vma bytes;
c224138d
RS
8165
8166 r_type = ELF_R_TYPE (abfd, rel->r_info);
8167 location = contents + rel->r_offset;
8168
8169 /* Get the addend, which is stored in the input file. */
df58fc94 8170 _bfd_mips_elf_reloc_unshuffle (abfd, r_type, FALSE, location);
17c6c9d9 8171 bytes = mips_elf_obtain_contents (howto, rel, abfd, contents);
df58fc94 8172 _bfd_mips_elf_reloc_shuffle (abfd, r_type, FALSE, location);
c224138d 8173
17c6c9d9
MR
8174 addend = bytes & howto->src_mask;
8175
8176 /* Shift is 2, unusually, for microMIPS JALX. Adjust the addend
8177 accordingly. */
8178 if (r_type == R_MICROMIPS_26_S1 && (bytes >> 26) == 0x3c)
8179 addend <<= 1;
8180
8181 return addend;
c224138d
RS
8182}
8183
8184/* REL is a relocation in ABFD that needs a partnering LO16 relocation
8185 and *ADDEND is the addend for REL itself. Look for the LO16 relocation
8186 and update *ADDEND with the final addend. Return true on success
8187 or false if the LO16 could not be found. RELEND is the exclusive
8188 upper bound on the relocations for REL's section. */
8189
8190static bfd_boolean
8191mips_elf_add_lo16_rel_addend (bfd *abfd,
8192 const Elf_Internal_Rela *rel,
8193 const Elf_Internal_Rela *relend,
8194 bfd_byte *contents, bfd_vma *addend)
8195{
8196 unsigned int r_type, lo16_type;
8197 const Elf_Internal_Rela *lo16_relocation;
8198 reloc_howto_type *lo16_howto;
8199 bfd_vma l;
8200
8201 r_type = ELF_R_TYPE (abfd, rel->r_info);
738e5348 8202 if (mips16_reloc_p (r_type))
c224138d 8203 lo16_type = R_MIPS16_LO16;
df58fc94
RS
8204 else if (micromips_reloc_p (r_type))
8205 lo16_type = R_MICROMIPS_LO16;
7361da2c
AB
8206 else if (r_type == R_MIPS_PCHI16)
8207 lo16_type = R_MIPS_PCLO16;
c224138d
RS
8208 else
8209 lo16_type = R_MIPS_LO16;
8210
8211 /* The combined value is the sum of the HI16 addend, left-shifted by
8212 sixteen bits, and the LO16 addend, sign extended. (Usually, the
8213 code does a `lui' of the HI16 value, and then an `addiu' of the
8214 LO16 value.)
8215
8216 Scan ahead to find a matching LO16 relocation.
8217
8218 According to the MIPS ELF ABI, the R_MIPS_LO16 relocation must
8219 be immediately following. However, for the IRIX6 ABI, the next
8220 relocation may be a composed relocation consisting of several
8221 relocations for the same address. In that case, the R_MIPS_LO16
8222 relocation may occur as one of these. We permit a similar
8223 extension in general, as that is useful for GCC.
8224
8225 In some cases GCC dead code elimination removes the LO16 but keeps
8226 the corresponding HI16. This is strictly speaking a violation of
8227 the ABI but not immediately harmful. */
8228 lo16_relocation = mips_elf_next_relocation (abfd, lo16_type, rel, relend);
8229 if (lo16_relocation == NULL)
8230 return FALSE;
8231
8232 /* Obtain the addend kept there. */
8233 lo16_howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, lo16_type, FALSE);
8234 l = mips_elf_read_rel_addend (abfd, lo16_relocation, lo16_howto, contents);
8235
8236 l <<= lo16_howto->rightshift;
8237 l = _bfd_mips_elf_sign_extend (l, 16);
8238
8239 *addend <<= 16;
8240 *addend += l;
8241 return TRUE;
8242}
8243
8244/* Try to read the contents of section SEC in bfd ABFD. Return true and
8245 store the contents in *CONTENTS on success. Assume that *CONTENTS
8246 already holds the contents if it is nonull on entry. */
8247
8248static bfd_boolean
8249mips_elf_get_section_contents (bfd *abfd, asection *sec, bfd_byte **contents)
8250{
8251 if (*contents)
8252 return TRUE;
8253
8254 /* Get cached copy if it exists. */
8255 if (elf_section_data (sec)->this_hdr.contents != NULL)
8256 {
8257 *contents = elf_section_data (sec)->this_hdr.contents;
8258 return TRUE;
8259 }
8260
8261 return bfd_malloc_and_get_section (abfd, sec, contents);
8262}
8263
1bbce132
MR
8264/* Make a new PLT record to keep internal data. */
8265
8266static struct plt_entry *
8267mips_elf_make_plt_record (bfd *abfd)
8268{
8269 struct plt_entry *entry;
8270
8271 entry = bfd_zalloc (abfd, sizeof (*entry));
8272 if (entry == NULL)
8273 return NULL;
8274
8275 entry->stub_offset = MINUS_ONE;
8276 entry->mips_offset = MINUS_ONE;
8277 entry->comp_offset = MINUS_ONE;
8278 entry->gotplt_index = MINUS_ONE;
8279 return entry;
8280}
8281
47275900
MR
8282/* Define the special `__gnu_absolute_zero' symbol. We only need this
8283 for PIC code, as otherwise there is no load-time relocation involved
8284 and local GOT entries whose value is zero at static link time will
8285 retain their value at load time. */
8286
8287static bfd_boolean
8288mips_elf_define_absolute_zero (bfd *abfd, struct bfd_link_info *info,
8289 struct mips_elf_link_hash_table *htab,
8290 unsigned int r_type)
8291{
8292 union
8293 {
8294 struct elf_link_hash_entry *eh;
8295 struct bfd_link_hash_entry *bh;
8296 }
8297 hzero;
8298
8299 BFD_ASSERT (!htab->use_absolute_zero);
8300 BFD_ASSERT (bfd_link_pic (info));
8301
8302 hzero.bh = NULL;
8303 if (!_bfd_generic_link_add_one_symbol (info, abfd, "__gnu_absolute_zero",
8304 BSF_GLOBAL, bfd_abs_section_ptr, 0,
8305 NULL, FALSE, FALSE, &hzero.bh))
8306 return FALSE;
8307
8308 BFD_ASSERT (hzero.bh != NULL);
8309 hzero.eh->size = 0;
8310 hzero.eh->type = STT_NOTYPE;
8311 hzero.eh->other = STV_PROTECTED;
8312 hzero.eh->def_regular = 1;
8313 hzero.eh->non_elf = 0;
8314
8315 if (!mips_elf_record_global_got_symbol (hzero.eh, abfd, info, TRUE, r_type))
8316 return FALSE;
8317
8318 htab->use_absolute_zero = TRUE;
8319
8320 return TRUE;
8321}
8322
b49e97c9 8323/* Look through the relocs for a section during the first phase, and
1bbce132
MR
8324 allocate space in the global offset table and record the need for
8325 standard MIPS and compressed procedure linkage table entries. */
b49e97c9 8326
b34976b6 8327bfd_boolean
9719ad41
RS
8328_bfd_mips_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
8329 asection *sec, const Elf_Internal_Rela *relocs)
b49e97c9
TS
8330{
8331 const char *name;
8332 bfd *dynobj;
8333 Elf_Internal_Shdr *symtab_hdr;
8334 struct elf_link_hash_entry **sym_hashes;
b49e97c9
TS
8335 size_t extsymoff;
8336 const Elf_Internal_Rela *rel;
8337 const Elf_Internal_Rela *rel_end;
b49e97c9 8338 asection *sreloc;
9c5bfbb7 8339 const struct elf_backend_data *bed;
0a44bf69 8340 struct mips_elf_link_hash_table *htab;
c224138d
RS
8341 bfd_byte *contents;
8342 bfd_vma addend;
8343 reloc_howto_type *howto;
b49e97c9 8344
0e1862bb 8345 if (bfd_link_relocatable (info))
b34976b6 8346 return TRUE;
b49e97c9 8347
0a44bf69 8348 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
8349 BFD_ASSERT (htab != NULL);
8350
b49e97c9
TS
8351 dynobj = elf_hash_table (info)->dynobj;
8352 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
8353 sym_hashes = elf_sym_hashes (abfd);
8354 extsymoff = (elf_bad_symtab (abfd)) ? 0 : symtab_hdr->sh_info;
8355
738e5348 8356 bed = get_elf_backend_data (abfd);
056bafd4 8357 rel_end = relocs + sec->reloc_count;
738e5348 8358
b49e97c9
TS
8359 /* Check for the mips16 stub sections. */
8360
fd361982 8361 name = bfd_section_name (sec);
b9d58d71 8362 if (FN_STUB_P (name))
b49e97c9
TS
8363 {
8364 unsigned long r_symndx;
8365
8366 /* Look at the relocation information to figure out which symbol
07d6d2b8 8367 this is for. */
b49e97c9 8368
cb4437b8 8369 r_symndx = mips16_stub_symndx (bed, sec, relocs, rel_end);
738e5348
RS
8370 if (r_symndx == 0)
8371 {
4eca0228 8372 _bfd_error_handler
695344c0 8373 /* xgettext:c-format */
2c1c9679 8374 (_("%pB: warning: cannot determine the target function for"
738e5348
RS
8375 " stub section `%s'"),
8376 abfd, name);
8377 bfd_set_error (bfd_error_bad_value);
8378 return FALSE;
8379 }
b49e97c9
TS
8380
8381 if (r_symndx < extsymoff
8382 || sym_hashes[r_symndx - extsymoff] == NULL)
8383 {
8384 asection *o;
8385
8386 /* This stub is for a local symbol. This stub will only be
07d6d2b8
AM
8387 needed if there is some relocation in this BFD, other
8388 than a 16 bit function call, which refers to this symbol. */
b49e97c9
TS
8389 for (o = abfd->sections; o != NULL; o = o->next)
8390 {
8391 Elf_Internal_Rela *sec_relocs;
8392 const Elf_Internal_Rela *r, *rend;
8393
8394 /* We can ignore stub sections when looking for relocs. */
8395 if ((o->flags & SEC_RELOC) == 0
8396 || o->reloc_count == 0
738e5348 8397 || section_allows_mips16_refs_p (o))
b49e97c9
TS
8398 continue;
8399
45d6a902 8400 sec_relocs
9719ad41 8401 = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
45d6a902 8402 info->keep_memory);
b49e97c9 8403 if (sec_relocs == NULL)
b34976b6 8404 return FALSE;
b49e97c9
TS
8405
8406 rend = sec_relocs + o->reloc_count;
8407 for (r = sec_relocs; r < rend; r++)
8408 if (ELF_R_SYM (abfd, r->r_info) == r_symndx
738e5348 8409 && !mips16_call_reloc_p (ELF_R_TYPE (abfd, r->r_info)))
b49e97c9
TS
8410 break;
8411
6cdc0ccc 8412 if (elf_section_data (o)->relocs != sec_relocs)
b49e97c9
TS
8413 free (sec_relocs);
8414
8415 if (r < rend)
8416 break;
8417 }
8418
8419 if (o == NULL)
8420 {
8421 /* There is no non-call reloc for this stub, so we do
07d6d2b8
AM
8422 not need it. Since this function is called before
8423 the linker maps input sections to output sections, we
8424 can easily discard it by setting the SEC_EXCLUDE
8425 flag. */
b49e97c9 8426 sec->flags |= SEC_EXCLUDE;
b34976b6 8427 return TRUE;
b49e97c9
TS
8428 }
8429
8430 /* Record this stub in an array of local symbol stubs for
07d6d2b8 8431 this BFD. */
698600e4 8432 if (mips_elf_tdata (abfd)->local_stubs == NULL)
b49e97c9
TS
8433 {
8434 unsigned long symcount;
8435 asection **n;
8436 bfd_size_type amt;
8437
8438 if (elf_bad_symtab (abfd))
8439 symcount = NUM_SHDR_ENTRIES (symtab_hdr);
8440 else
8441 symcount = symtab_hdr->sh_info;
8442 amt = symcount * sizeof (asection *);
9719ad41 8443 n = bfd_zalloc (abfd, amt);
b49e97c9 8444 if (n == NULL)
b34976b6 8445 return FALSE;
698600e4 8446 mips_elf_tdata (abfd)->local_stubs = n;
b49e97c9
TS
8447 }
8448
b9d58d71 8449 sec->flags |= SEC_KEEP;
698600e4 8450 mips_elf_tdata (abfd)->local_stubs[r_symndx] = sec;
b49e97c9
TS
8451
8452 /* We don't need to set mips16_stubs_seen in this case.
07d6d2b8
AM
8453 That flag is used to see whether we need to look through
8454 the global symbol table for stubs. We don't need to set
8455 it here, because we just have a local stub. */
b49e97c9
TS
8456 }
8457 else
8458 {
8459 struct mips_elf_link_hash_entry *h;
8460
8461 h = ((struct mips_elf_link_hash_entry *)
8462 sym_hashes[r_symndx - extsymoff]);
8463
973a3492
L
8464 while (h->root.root.type == bfd_link_hash_indirect
8465 || h->root.root.type == bfd_link_hash_warning)
8466 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
8467
b49e97c9
TS
8468 /* H is the symbol this stub is for. */
8469
b9d58d71
TS
8470 /* If we already have an appropriate stub for this function, we
8471 don't need another one, so we can discard this one. Since
8472 this function is called before the linker maps input sections
8473 to output sections, we can easily discard it by setting the
8474 SEC_EXCLUDE flag. */
8475 if (h->fn_stub != NULL)
8476 {
8477 sec->flags |= SEC_EXCLUDE;
8478 return TRUE;
8479 }
8480
8481 sec->flags |= SEC_KEEP;
b49e97c9 8482 h->fn_stub = sec;
b34976b6 8483 mips_elf_hash_table (info)->mips16_stubs_seen = TRUE;
b49e97c9
TS
8484 }
8485 }
b9d58d71 8486 else if (CALL_STUB_P (name) || CALL_FP_STUB_P (name))
b49e97c9
TS
8487 {
8488 unsigned long r_symndx;
8489 struct mips_elf_link_hash_entry *h;
8490 asection **loc;
8491
8492 /* Look at the relocation information to figure out which symbol
07d6d2b8 8493 this is for. */
b49e97c9 8494
cb4437b8 8495 r_symndx = mips16_stub_symndx (bed, sec, relocs, rel_end);
738e5348
RS
8496 if (r_symndx == 0)
8497 {
4eca0228 8498 _bfd_error_handler
695344c0 8499 /* xgettext:c-format */
2c1c9679 8500 (_("%pB: warning: cannot determine the target function for"
738e5348
RS
8501 " stub section `%s'"),
8502 abfd, name);
8503 bfd_set_error (bfd_error_bad_value);
8504 return FALSE;
8505 }
b49e97c9
TS
8506
8507 if (r_symndx < extsymoff
8508 || sym_hashes[r_symndx - extsymoff] == NULL)
8509 {
b9d58d71 8510 asection *o;
b49e97c9 8511
b9d58d71 8512 /* This stub is for a local symbol. This stub will only be
07d6d2b8
AM
8513 needed if there is some relocation (R_MIPS16_26) in this BFD
8514 that refers to this symbol. */
b9d58d71
TS
8515 for (o = abfd->sections; o != NULL; o = o->next)
8516 {
8517 Elf_Internal_Rela *sec_relocs;
8518 const Elf_Internal_Rela *r, *rend;
8519
8520 /* We can ignore stub sections when looking for relocs. */
8521 if ((o->flags & SEC_RELOC) == 0
8522 || o->reloc_count == 0
738e5348 8523 || section_allows_mips16_refs_p (o))
b9d58d71
TS
8524 continue;
8525
8526 sec_relocs
8527 = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
8528 info->keep_memory);
8529 if (sec_relocs == NULL)
8530 return FALSE;
8531
8532 rend = sec_relocs + o->reloc_count;
8533 for (r = sec_relocs; r < rend; r++)
8534 if (ELF_R_SYM (abfd, r->r_info) == r_symndx
8535 && ELF_R_TYPE (abfd, r->r_info) == R_MIPS16_26)
8536 break;
8537
8538 if (elf_section_data (o)->relocs != sec_relocs)
8539 free (sec_relocs);
8540
8541 if (r < rend)
8542 break;
8543 }
8544
8545 if (o == NULL)
8546 {
8547 /* There is no non-call reloc for this stub, so we do
07d6d2b8
AM
8548 not need it. Since this function is called before
8549 the linker maps input sections to output sections, we
8550 can easily discard it by setting the SEC_EXCLUDE
8551 flag. */
b9d58d71
TS
8552 sec->flags |= SEC_EXCLUDE;
8553 return TRUE;
8554 }
8555
8556 /* Record this stub in an array of local symbol call_stubs for
07d6d2b8 8557 this BFD. */
698600e4 8558 if (mips_elf_tdata (abfd)->local_call_stubs == NULL)
b9d58d71
TS
8559 {
8560 unsigned long symcount;
8561 asection **n;
8562 bfd_size_type amt;
8563
8564 if (elf_bad_symtab (abfd))
8565 symcount = NUM_SHDR_ENTRIES (symtab_hdr);
8566 else
8567 symcount = symtab_hdr->sh_info;
8568 amt = symcount * sizeof (asection *);
8569 n = bfd_zalloc (abfd, amt);
8570 if (n == NULL)
8571 return FALSE;
698600e4 8572 mips_elf_tdata (abfd)->local_call_stubs = n;
b9d58d71 8573 }
b49e97c9 8574
b9d58d71 8575 sec->flags |= SEC_KEEP;
698600e4 8576 mips_elf_tdata (abfd)->local_call_stubs[r_symndx] = sec;
b49e97c9 8577
b9d58d71 8578 /* We don't need to set mips16_stubs_seen in this case.
07d6d2b8
AM
8579 That flag is used to see whether we need to look through
8580 the global symbol table for stubs. We don't need to set
8581 it here, because we just have a local stub. */
b9d58d71 8582 }
b49e97c9 8583 else
b49e97c9 8584 {
b9d58d71
TS
8585 h = ((struct mips_elf_link_hash_entry *)
8586 sym_hashes[r_symndx - extsymoff]);
68ffbac6 8587
b9d58d71 8588 /* H is the symbol this stub is for. */
68ffbac6 8589
b9d58d71
TS
8590 if (CALL_FP_STUB_P (name))
8591 loc = &h->call_fp_stub;
8592 else
8593 loc = &h->call_stub;
68ffbac6 8594
b9d58d71
TS
8595 /* If we already have an appropriate stub for this function, we
8596 don't need another one, so we can discard this one. Since
8597 this function is called before the linker maps input sections
8598 to output sections, we can easily discard it by setting the
8599 SEC_EXCLUDE flag. */
8600 if (*loc != NULL)
8601 {
8602 sec->flags |= SEC_EXCLUDE;
8603 return TRUE;
8604 }
b49e97c9 8605
b9d58d71
TS
8606 sec->flags |= SEC_KEEP;
8607 *loc = sec;
8608 mips_elf_hash_table (info)->mips16_stubs_seen = TRUE;
8609 }
b49e97c9
TS
8610 }
8611
b49e97c9 8612 sreloc = NULL;
c224138d 8613 contents = NULL;
b49e97c9
TS
8614 for (rel = relocs; rel < rel_end; ++rel)
8615 {
8616 unsigned long r_symndx;
8617 unsigned int r_type;
8618 struct elf_link_hash_entry *h;
861fb55a 8619 bfd_boolean can_make_dynamic_p;
c5d6fa44
RS
8620 bfd_boolean call_reloc_p;
8621 bfd_boolean constrain_symbol_p;
b49e97c9
TS
8622
8623 r_symndx = ELF_R_SYM (abfd, rel->r_info);
8624 r_type = ELF_R_TYPE (abfd, rel->r_info);
8625
8626 if (r_symndx < extsymoff)
8627 h = NULL;
8628 else if (r_symndx >= extsymoff + NUM_SHDR_ENTRIES (symtab_hdr))
8629 {
4eca0228 8630 _bfd_error_handler
695344c0 8631 /* xgettext:c-format */
2c1c9679 8632 (_("%pB: malformed reloc detected for section %s"),
d003868e 8633 abfd, name);
b49e97c9 8634 bfd_set_error (bfd_error_bad_value);
b34976b6 8635 return FALSE;
b49e97c9
TS
8636 }
8637 else
8638 {
8639 h = sym_hashes[r_symndx - extsymoff];
81fbe831
AM
8640 if (h != NULL)
8641 {
8642 while (h->root.type == bfd_link_hash_indirect
8643 || h->root.type == bfd_link_hash_warning)
8644 h = (struct elf_link_hash_entry *) h->root.u.i.link;
81fbe831 8645 }
861fb55a 8646 }
b49e97c9 8647
861fb55a
DJ
8648 /* Set CAN_MAKE_DYNAMIC_P to true if we can convert this
8649 relocation into a dynamic one. */
8650 can_make_dynamic_p = FALSE;
c5d6fa44
RS
8651
8652 /* Set CALL_RELOC_P to true if the relocation is for a call,
8653 and if pointer equality therefore doesn't matter. */
8654 call_reloc_p = FALSE;
8655
8656 /* Set CONSTRAIN_SYMBOL_P if we need to take the relocation
c4b126b8
L
8657 into account when deciding how to define the symbol. */
8658 constrain_symbol_p = TRUE;
c5d6fa44 8659
861fb55a
DJ
8660 switch (r_type)
8661 {
861fb55a
DJ
8662 case R_MIPS_CALL16:
8663 case R_MIPS_CALL_HI16:
8664 case R_MIPS_CALL_LO16:
c5d6fa44
RS
8665 case R_MIPS16_CALL16:
8666 case R_MICROMIPS_CALL16:
8667 case R_MICROMIPS_CALL_HI16:
8668 case R_MICROMIPS_CALL_LO16:
8669 call_reloc_p = TRUE;
8670 /* Fall through. */
8671
8672 case R_MIPS_GOT16:
861fb55a
DJ
8673 case R_MIPS_GOT_LO16:
8674 case R_MIPS_GOT_PAGE:
861fb55a 8675 case R_MIPS_GOT_DISP:
47275900
MR
8676 case R_MIPS16_GOT16:
8677 case R_MICROMIPS_GOT16:
8678 case R_MICROMIPS_GOT_LO16:
8679 case R_MICROMIPS_GOT_PAGE:
8680 case R_MICROMIPS_GOT_DISP:
8681 /* If we have a symbol that will resolve to zero at static link
8682 time and it is used by a GOT relocation applied to code we
8683 cannot relax to an immediate zero load, then we will be using
8684 the special `__gnu_absolute_zero' symbol whose value is zero
8685 at dynamic load time. We ignore HI16-type GOT relocations at
8686 this stage, because their handling will depend entirely on
8687 the corresponding LO16-type GOT relocation. */
8688 if (!call_hi16_reloc_p (r_type)
8689 && h != NULL
8690 && bfd_link_pic (info)
8691 && !htab->use_absolute_zero
8692 && UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
8693 {
8694 bfd_boolean rel_reloc;
8695
8696 if (!mips_elf_get_section_contents (abfd, sec, &contents))
8697 return FALSE;
8698
8699 rel_reloc = mips_elf_rel_relocation_p (abfd, sec, relocs, rel);
8700 howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, r_type, !rel_reloc);
8701
8702 if (!mips_elf_nullify_got_load (abfd, contents, rel, howto,
8703 FALSE))
8704 if (!mips_elf_define_absolute_zero (abfd, info, htab, r_type))
8705 return FALSE;
8706 }
8707
8708 /* Fall through. */
8709 case R_MIPS_GOT_HI16:
8710 case R_MIPS_GOT_OFST:
861fb55a
DJ
8711 case R_MIPS_TLS_GOTTPREL:
8712 case R_MIPS_TLS_GD:
8713 case R_MIPS_TLS_LDM:
d0f13682
CLT
8714 case R_MIPS16_TLS_GOTTPREL:
8715 case R_MIPS16_TLS_GD:
8716 case R_MIPS16_TLS_LDM:
df58fc94 8717 case R_MICROMIPS_GOT_HI16:
df58fc94 8718 case R_MICROMIPS_GOT_OFST:
df58fc94
RS
8719 case R_MICROMIPS_TLS_GOTTPREL:
8720 case R_MICROMIPS_TLS_GD:
8721 case R_MICROMIPS_TLS_LDM:
861fb55a
DJ
8722 if (dynobj == NULL)
8723 elf_hash_table (info)->dynobj = dynobj = abfd;
8724 if (!mips_elf_create_got_section (dynobj, info))
8725 return FALSE;
90c14f0c
L
8726 if (htab->root.target_os == is_vxworks
8727 && !bfd_link_pic (info))
b49e97c9 8728 {
4eca0228 8729 _bfd_error_handler
695344c0 8730 /* xgettext:c-format */
2dcf00ce
AM
8731 (_("%pB: GOT reloc at %#" PRIx64 " not expected in executables"),
8732 abfd, (uint64_t) rel->r_offset);
861fb55a
DJ
8733 bfd_set_error (bfd_error_bad_value);
8734 return FALSE;
b49e97c9 8735 }
c5d6fa44 8736 can_make_dynamic_p = TRUE;
861fb55a 8737 break;
b49e97c9 8738
c5d6fa44 8739 case R_MIPS_NONE:
99da6b5f 8740 case R_MIPS_JALR:
df58fc94 8741 case R_MICROMIPS_JALR:
c5d6fa44
RS
8742 /* These relocations have empty fields and are purely there to
8743 provide link information. The symbol value doesn't matter. */
8744 constrain_symbol_p = FALSE;
8745 break;
8746
8747 case R_MIPS_GPREL16:
8748 case R_MIPS_GPREL32:
8749 case R_MIPS16_GPREL:
8750 case R_MICROMIPS_GPREL16:
8751 /* GP-relative relocations always resolve to a definition in a
8752 regular input file, ignoring the one-definition rule. This is
8753 important for the GP setup sequence in NewABI code, which
8754 always resolves to a local function even if other relocations
8755 against the symbol wouldn't. */
8756 constrain_symbol_p = FALSE;
99da6b5f
AN
8757 break;
8758
861fb55a
DJ
8759 case R_MIPS_32:
8760 case R_MIPS_REL32:
8761 case R_MIPS_64:
8762 /* In VxWorks executables, references to external symbols
8763 must be handled using copy relocs or PLT entries; it is not
8764 possible to convert this relocation into a dynamic one.
8765
8766 For executables that use PLTs and copy-relocs, we have a
8767 choice between converting the relocation into a dynamic
8768 one or using copy relocations or PLT entries. It is
8769 usually better to do the former, unless the relocation is
8770 against a read-only section. */
0e1862bb 8771 if ((bfd_link_pic (info)
861fb55a 8772 || (h != NULL
90c14f0c 8773 && htab->root.target_os != is_vxworks
861fb55a
DJ
8774 && strcmp (h->root.root.string, "__gnu_local_gp") != 0
8775 && !(!info->nocopyreloc
8776 && !PIC_OBJECT_P (abfd)
8777 && MIPS_ELF_READONLY_SECTION (sec))))
8778 && (sec->flags & SEC_ALLOC) != 0)
b49e97c9 8779 {
861fb55a 8780 can_make_dynamic_p = TRUE;
b49e97c9
TS
8781 if (dynobj == NULL)
8782 elf_hash_table (info)->dynobj = dynobj = abfd;
861fb55a 8783 }
c5d6fa44 8784 break;
b49e97c9 8785
861fb55a
DJ
8786 case R_MIPS_26:
8787 case R_MIPS_PC16:
7361da2c
AB
8788 case R_MIPS_PC21_S2:
8789 case R_MIPS_PC26_S2:
861fb55a 8790 case R_MIPS16_26:
c9775dde 8791 case R_MIPS16_PC16_S1:
df58fc94
RS
8792 case R_MICROMIPS_26_S1:
8793 case R_MICROMIPS_PC7_S1:
8794 case R_MICROMIPS_PC10_S1:
8795 case R_MICROMIPS_PC16_S1:
8796 case R_MICROMIPS_PC23_S2:
c5d6fa44 8797 call_reloc_p = TRUE;
861fb55a 8798 break;
b49e97c9
TS
8799 }
8800
0a44bf69
RS
8801 if (h)
8802 {
c5d6fa44
RS
8803 if (constrain_symbol_p)
8804 {
8805 if (!can_make_dynamic_p)
8806 ((struct mips_elf_link_hash_entry *) h)->has_static_relocs = 1;
8807
8808 if (!call_reloc_p)
8809 h->pointer_equality_needed = 1;
8810
8811 /* We must not create a stub for a symbol that has
8812 relocations related to taking the function's address.
8813 This doesn't apply to VxWorks, where CALL relocs refer
8814 to a .got.plt entry instead of a normal .got entry. */
90c14f0c
L
8815 if (htab->root.target_os != is_vxworks
8816 && (!can_make_dynamic_p || !call_reloc_p))
c5d6fa44
RS
8817 ((struct mips_elf_link_hash_entry *) h)->no_fn_stub = TRUE;
8818 }
8819
0a44bf69
RS
8820 /* Relocations against the special VxWorks __GOTT_BASE__ and
8821 __GOTT_INDEX__ symbols must be left to the loader. Allocate
8822 room for them in .rela.dyn. */
8823 if (is_gott_symbol (info, h))
8824 {
8825 if (sreloc == NULL)
8826 {
8827 sreloc = mips_elf_rel_dyn_section (info, TRUE);
8828 if (sreloc == NULL)
8829 return FALSE;
8830 }
8831 mips_elf_allocate_dynamic_relocations (dynobj, info, 1);
9e3313ae
RS
8832 if (MIPS_ELF_READONLY_SECTION (sec))
8833 /* We tell the dynamic linker that there are
8834 relocations against the text segment. */
8835 info->flags |= DF_TEXTREL;
0a44bf69
RS
8836 }
8837 }
df58fc94
RS
8838 else if (call_lo16_reloc_p (r_type)
8839 || got_lo16_reloc_p (r_type)
8840 || got_disp_reloc_p (r_type)
90c14f0c
L
8841 || (got16_reloc_p (r_type)
8842 && htab->root.target_os == is_vxworks))
b49e97c9
TS
8843 {
8844 /* We may need a local GOT entry for this relocation. We
8845 don't count R_MIPS_GOT_PAGE because we can estimate the
8846 maximum number of pages needed by looking at the size of
738e5348
RS
8847 the segment. Similar comments apply to R_MIPS*_GOT16 and
8848 R_MIPS*_CALL16, except on VxWorks, where GOT relocations
0a44bf69 8849 always evaluate to "G". We don't count R_MIPS_GOT_HI16, or
b49e97c9 8850 R_MIPS_CALL_HI16 because these are always followed by an
b15e6682 8851 R_MIPS_GOT_LO16 or R_MIPS_CALL_LO16. */
a8028dd0 8852 if (!mips_elf_record_local_got_symbol (abfd, r_symndx,
e641e783 8853 rel->r_addend, info, r_type))
f4416af6 8854 return FALSE;
b49e97c9
TS
8855 }
8856
8f0c309a
CLT
8857 if (h != NULL
8858 && mips_elf_relocation_needs_la25_stub (abfd, r_type,
8859 ELF_ST_IS_MIPS16 (h->other)))
861fb55a
DJ
8860 ((struct mips_elf_link_hash_entry *) h)->has_nonpic_branches = TRUE;
8861
b49e97c9
TS
8862 switch (r_type)
8863 {
8864 case R_MIPS_CALL16:
738e5348 8865 case R_MIPS16_CALL16:
df58fc94 8866 case R_MICROMIPS_CALL16:
b49e97c9
TS
8867 if (h == NULL)
8868 {
4eca0228 8869 _bfd_error_handler
695344c0 8870 /* xgettext:c-format */
2dcf00ce
AM
8871 (_("%pB: CALL16 reloc at %#" PRIx64 " not against global symbol"),
8872 abfd, (uint64_t) rel->r_offset);
b49e97c9 8873 bfd_set_error (bfd_error_bad_value);
b34976b6 8874 return FALSE;
b49e97c9
TS
8875 }
8876 /* Fall through. */
8877
8878 case R_MIPS_CALL_HI16:
8879 case R_MIPS_CALL_LO16:
df58fc94
RS
8880 case R_MICROMIPS_CALL_HI16:
8881 case R_MICROMIPS_CALL_LO16:
b49e97c9
TS
8882 if (h != NULL)
8883 {
6ccf4795
RS
8884 /* Make sure there is room in the regular GOT to hold the
8885 function's address. We may eliminate it in favour of
8886 a .got.plt entry later; see mips_elf_count_got_symbols. */
e641e783
RS
8887 if (!mips_elf_record_global_got_symbol (h, abfd, info, TRUE,
8888 r_type))
b34976b6 8889 return FALSE;
b49e97c9
TS
8890
8891 /* We need a stub, not a plt entry for the undefined
8892 function. But we record it as if it needs plt. See
c152c796 8893 _bfd_elf_adjust_dynamic_symbol. */
f5385ebf 8894 h->needs_plt = 1;
b49e97c9
TS
8895 h->type = STT_FUNC;
8896 }
8897 break;
8898
0fdc1bf1 8899 case R_MIPS_GOT_PAGE:
df58fc94 8900 case R_MICROMIPS_GOT_PAGE:
738e5348 8901 case R_MIPS16_GOT16:
b49e97c9
TS
8902 case R_MIPS_GOT16:
8903 case R_MIPS_GOT_HI16:
8904 case R_MIPS_GOT_LO16:
df58fc94
RS
8905 case R_MICROMIPS_GOT16:
8906 case R_MICROMIPS_GOT_HI16:
8907 case R_MICROMIPS_GOT_LO16:
8908 if (!h || got_page_reloc_p (r_type))
c224138d 8909 {
3a3b6725
DJ
8910 /* This relocation needs (or may need, if h != NULL) a
8911 page entry in the GOT. For R_MIPS_GOT_PAGE we do not
8912 know for sure until we know whether the symbol is
8913 preemptible. */
c224138d
RS
8914 if (mips_elf_rel_relocation_p (abfd, sec, relocs, rel))
8915 {
8916 if (!mips_elf_get_section_contents (abfd, sec, &contents))
8917 return FALSE;
8918 howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, r_type, FALSE);
8919 addend = mips_elf_read_rel_addend (abfd, rel,
8920 howto, contents);
9684f078 8921 if (got16_reloc_p (r_type))
c224138d
RS
8922 mips_elf_add_lo16_rel_addend (abfd, rel, rel_end,
8923 contents, &addend);
8924 else
8925 addend <<= howto->rightshift;
8926 }
8927 else
8928 addend = rel->r_addend;
13db6b44
RS
8929 if (!mips_elf_record_got_page_ref (info, abfd, r_symndx,
8930 h, addend))
c224138d 8931 return FALSE;
13db6b44
RS
8932
8933 if (h)
8934 {
8935 struct mips_elf_link_hash_entry *hmips =
8936 (struct mips_elf_link_hash_entry *) h;
8937
8938 /* This symbol is definitely not overridable. */
8939 if (hmips->root.def_regular
0e1862bb 8940 && ! (bfd_link_pic (info) && ! info->symbolic
13db6b44
RS
8941 && ! hmips->root.forced_local))
8942 h = NULL;
8943 }
c224138d 8944 }
13db6b44
RS
8945 /* If this is a global, overridable symbol, GOT_PAGE will
8946 decay to GOT_DISP, so we'll need a GOT entry for it. */
c224138d
RS
8947 /* Fall through. */
8948
b49e97c9 8949 case R_MIPS_GOT_DISP:
df58fc94 8950 case R_MICROMIPS_GOT_DISP:
6ccf4795 8951 if (h && !mips_elf_record_global_got_symbol (h, abfd, info,
e641e783 8952 FALSE, r_type))
b34976b6 8953 return FALSE;
b49e97c9
TS
8954 break;
8955
0f20cc35 8956 case R_MIPS_TLS_GOTTPREL:
d0f13682 8957 case R_MIPS16_TLS_GOTTPREL:
df58fc94 8958 case R_MICROMIPS_TLS_GOTTPREL:
0e1862bb 8959 if (bfd_link_pic (info))
0f20cc35
DJ
8960 info->flags |= DF_STATIC_TLS;
8961 /* Fall through */
8962
8963 case R_MIPS_TLS_LDM:
d0f13682 8964 case R_MIPS16_TLS_LDM:
df58fc94
RS
8965 case R_MICROMIPS_TLS_LDM:
8966 if (tls_ldm_reloc_p (r_type))
0f20cc35 8967 {
cf35638d 8968 r_symndx = STN_UNDEF;
0f20cc35
DJ
8969 h = NULL;
8970 }
8971 /* Fall through */
8972
8973 case R_MIPS_TLS_GD:
d0f13682 8974 case R_MIPS16_TLS_GD:
df58fc94 8975 case R_MICROMIPS_TLS_GD:
0f20cc35
DJ
8976 /* This symbol requires a global offset table entry, or two
8977 for TLS GD relocations. */
e641e783
RS
8978 if (h != NULL)
8979 {
8980 if (!mips_elf_record_global_got_symbol (h, abfd, info,
8981 FALSE, r_type))
8982 return FALSE;
8983 }
8984 else
8985 {
8986 if (!mips_elf_record_local_got_symbol (abfd, r_symndx,
8987 rel->r_addend,
8988 info, r_type))
8989 return FALSE;
8990 }
0f20cc35
DJ
8991 break;
8992
b49e97c9
TS
8993 case R_MIPS_32:
8994 case R_MIPS_REL32:
8995 case R_MIPS_64:
0a44bf69
RS
8996 /* In VxWorks executables, references to external symbols
8997 are handled using copy relocs or PLT stubs, so there's
8998 no need to add a .rela.dyn entry for this relocation. */
861fb55a 8999 if (can_make_dynamic_p)
b49e97c9
TS
9000 {
9001 if (sreloc == NULL)
9002 {
0a44bf69 9003 sreloc = mips_elf_rel_dyn_section (info, TRUE);
b49e97c9 9004 if (sreloc == NULL)
f4416af6 9005 return FALSE;
b49e97c9 9006 }
0e1862bb 9007 if (bfd_link_pic (info) && h == NULL)
82f0cfbd
EC
9008 {
9009 /* When creating a shared object, we must copy these
9010 reloc types into the output file as R_MIPS_REL32
0a44bf69
RS
9011 relocs. Make room for this reloc in .rel(a).dyn. */
9012 mips_elf_allocate_dynamic_relocations (dynobj, info, 1);
943284cc 9013 if (MIPS_ELF_READONLY_SECTION (sec))
82f0cfbd
EC
9014 /* We tell the dynamic linker that there are
9015 relocations against the text segment. */
9016 info->flags |= DF_TEXTREL;
9017 }
b49e97c9
TS
9018 else
9019 {
9020 struct mips_elf_link_hash_entry *hmips;
82f0cfbd 9021
9a59ad6b
DJ
9022 /* For a shared object, we must copy this relocation
9023 unless the symbol turns out to be undefined and
9024 weak with non-default visibility, in which case
9025 it will be left as zero.
9026
9027 We could elide R_MIPS_REL32 for locally binding symbols
9028 in shared libraries, but do not yet do so.
9029
9030 For an executable, we only need to copy this
9031 reloc if the symbol is defined in a dynamic
9032 object. */
b49e97c9
TS
9033 hmips = (struct mips_elf_link_hash_entry *) h;
9034 ++hmips->possibly_dynamic_relocs;
943284cc 9035 if (MIPS_ELF_READONLY_SECTION (sec))
82f0cfbd
EC
9036 /* We need it to tell the dynamic linker if there
9037 are relocations against the text segment. */
9038 hmips->readonly_reloc = TRUE;
b49e97c9 9039 }
b49e97c9
TS
9040 }
9041
9042 if (SGI_COMPAT (abfd))
9043 mips_elf_hash_table (info)->compact_rel_size +=
9044 sizeof (Elf32_External_crinfo);
9045 break;
9046
9047 case R_MIPS_26:
9048 case R_MIPS_GPREL16:
9049 case R_MIPS_LITERAL:
9050 case R_MIPS_GPREL32:
df58fc94
RS
9051 case R_MICROMIPS_26_S1:
9052 case R_MICROMIPS_GPREL16:
9053 case R_MICROMIPS_LITERAL:
9054 case R_MICROMIPS_GPREL7_S2:
b49e97c9
TS
9055 if (SGI_COMPAT (abfd))
9056 mips_elf_hash_table (info)->compact_rel_size +=
9057 sizeof (Elf32_External_crinfo);
9058 break;
9059
9060 /* This relocation describes the C++ object vtable hierarchy.
9061 Reconstruct it for later use during GC. */
9062 case R_MIPS_GNU_VTINHERIT:
c152c796 9063 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
b34976b6 9064 return FALSE;
b49e97c9
TS
9065 break;
9066
9067 /* This relocation describes which C++ vtable entries are actually
9068 used. Record for later use during GC. */
9069 case R_MIPS_GNU_VTENTRY:
a0ea3a14 9070 if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset))
b34976b6 9071 return FALSE;
b49e97c9
TS
9072 break;
9073
9074 default:
9075 break;
9076 }
9077
1bbce132 9078 /* Record the need for a PLT entry. At this point we don't know
07d6d2b8
AM
9079 yet if we are going to create a PLT in the first place, but
9080 we only record whether the relocation requires a standard MIPS
9081 or a compressed code entry anyway. If we don't make a PLT after
9082 all, then we'll just ignore these arrangements. Likewise if
9083 a PLT entry is not created because the symbol is satisfied
9084 locally. */
1bbce132 9085 if (h != NULL
54806ffa
MR
9086 && (branch_reloc_p (r_type)
9087 || mips16_branch_reloc_p (r_type)
9088 || micromips_branch_reloc_p (r_type))
1bbce132
MR
9089 && !SYMBOL_CALLS_LOCAL (info, h))
9090 {
9091 if (h->plt.plist == NULL)
9092 h->plt.plist = mips_elf_make_plt_record (abfd);
9093 if (h->plt.plist == NULL)
9094 return FALSE;
9095
54806ffa 9096 if (branch_reloc_p (r_type))
1bbce132
MR
9097 h->plt.plist->need_mips = TRUE;
9098 else
9099 h->plt.plist->need_comp = TRUE;
9100 }
9101
738e5348
RS
9102 /* See if this reloc would need to refer to a MIPS16 hard-float stub,
9103 if there is one. We only need to handle global symbols here;
9104 we decide whether to keep or delete stubs for local symbols
9105 when processing the stub's relocations. */
b49e97c9 9106 if (h != NULL
738e5348
RS
9107 && !mips16_call_reloc_p (r_type)
9108 && !section_allows_mips16_refs_p (sec))
b49e97c9
TS
9109 {
9110 struct mips_elf_link_hash_entry *mh;
9111
9112 mh = (struct mips_elf_link_hash_entry *) h;
b34976b6 9113 mh->need_fn_stub = TRUE;
b49e97c9 9114 }
861fb55a
DJ
9115
9116 /* Refuse some position-dependent relocations when creating a
9117 shared library. Do not refuse R_MIPS_32 / R_MIPS_64; they're
9118 not PIC, but we can create dynamic relocations and the result
9119 will be fine. Also do not refuse R_MIPS_LO16, which can be
9120 combined with R_MIPS_GOT16. */
0e1862bb 9121 if (bfd_link_pic (info))
861fb55a
DJ
9122 {
9123 switch (r_type)
9124 {
b474a202
FS
9125 case R_MIPS_TLS_TPREL_HI16:
9126 case R_MIPS16_TLS_TPREL_HI16:
9127 case R_MICROMIPS_TLS_TPREL_HI16:
9128 case R_MIPS_TLS_TPREL_LO16:
9129 case R_MIPS16_TLS_TPREL_LO16:
9130 case R_MICROMIPS_TLS_TPREL_LO16:
9131 /* These are okay in PIE, but not in a shared library. */
9132 if (bfd_link_executable (info))
9133 break;
9134
9135 /* FALLTHROUGH */
9136
861fb55a
DJ
9137 case R_MIPS16_HI16:
9138 case R_MIPS_HI16:
9139 case R_MIPS_HIGHER:
9140 case R_MIPS_HIGHEST:
df58fc94
RS
9141 case R_MICROMIPS_HI16:
9142 case R_MICROMIPS_HIGHER:
9143 case R_MICROMIPS_HIGHEST:
861fb55a
DJ
9144 /* Don't refuse a high part relocation if it's against
9145 no symbol (e.g. part of a compound relocation). */
cf35638d 9146 if (r_symndx == STN_UNDEF)
861fb55a
DJ
9147 break;
9148
3c7687b9 9149 /* Likewise an absolute symbol. */
304f09d0 9150 if (h != NULL && bfd_is_abs_symbol (&h->root))
3c7687b9
MR
9151 break;
9152
861fb55a
DJ
9153 /* R_MIPS_HI16 against _gp_disp is used for $gp setup,
9154 and has a special meaning. */
9155 if (!NEWABI_P (abfd) && h != NULL
9156 && strcmp (h->root.root.string, "_gp_disp") == 0)
9157 break;
9158
0fc1eb3c
RS
9159 /* Likewise __GOTT_BASE__ and __GOTT_INDEX__ on VxWorks. */
9160 if (is_gott_symbol (info, h))
9161 break;
9162
861fb55a
DJ
9163 /* FALLTHROUGH */
9164
9165 case R_MIPS16_26:
9166 case R_MIPS_26:
df58fc94 9167 case R_MICROMIPS_26_S1:
304f09d0
FS
9168 howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, r_type, NEWABI_P (abfd));
9169 /* An error for unsupported relocations is raised as part
9170 of the above search, so we can skip the following. */
9171 if (howto != NULL)
9172 info->callbacks->einfo
9173 /* xgettext:c-format */
9174 (_("%X%H: relocation %s against `%s' cannot be used"
9175 " when making a shared object; recompile with -fPIC\n"),
9176 abfd, sec, rel->r_offset, howto->name,
9177 (h) ? h->root.root.string : "a local symbol");
aff68bd0 9178 break;
861fb55a
DJ
9179 default:
9180 break;
9181 }
9182 }
b49e97c9
TS
9183 }
9184
b34976b6 9185 return TRUE;
b49e97c9
TS
9186}
9187\f
9a59ad6b
DJ
9188/* Allocate space for global sym dynamic relocs. */
9189
9190static bfd_boolean
9191allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
9192{
9193 struct bfd_link_info *info = inf;
9194 bfd *dynobj;
9195 struct mips_elf_link_hash_entry *hmips;
9196 struct mips_elf_link_hash_table *htab;
9197
9198 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
9199 BFD_ASSERT (htab != NULL);
9200
9a59ad6b
DJ
9201 dynobj = elf_hash_table (info)->dynobj;
9202 hmips = (struct mips_elf_link_hash_entry *) h;
9203
9204 /* VxWorks executables are handled elsewhere; we only need to
9205 allocate relocations in shared objects. */
90c14f0c 9206 if (htab->root.target_os == is_vxworks && !bfd_link_pic (info))
9a59ad6b
DJ
9207 return TRUE;
9208
7686d77d
AM
9209 /* Ignore indirect symbols. All relocations against such symbols
9210 will be redirected to the target symbol. */
9211 if (h->root.type == bfd_link_hash_indirect)
63897e2c
RS
9212 return TRUE;
9213
9a59ad6b
DJ
9214 /* If this symbol is defined in a dynamic object, or we are creating
9215 a shared library, we will need to copy any R_MIPS_32 or
9216 R_MIPS_REL32 relocs against it into the output file. */
0e1862bb 9217 if (! bfd_link_relocatable (info)
9a59ad6b
DJ
9218 && hmips->possibly_dynamic_relocs != 0
9219 && (h->root.type == bfd_link_hash_defweak
625ef6dc 9220 || (!h->def_regular && !ELF_COMMON_DEF_P (h))
0e1862bb 9221 || bfd_link_pic (info)))
9a59ad6b
DJ
9222 {
9223 bfd_boolean do_copy = TRUE;
9224
9225 if (h->root.type == bfd_link_hash_undefweak)
9226 {
262e07d0
MR
9227 /* Do not copy relocations for undefined weak symbols that
9228 we are not going to export. */
9229 if (UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
9a59ad6b
DJ
9230 do_copy = FALSE;
9231
9232 /* Make sure undefined weak symbols are output as a dynamic
9233 symbol in PIEs. */
9234 else if (h->dynindx == -1 && !h->forced_local)
9235 {
9236 if (! bfd_elf_link_record_dynamic_symbol (info, h))
9237 return FALSE;
9238 }
9239 }
9240
9241 if (do_copy)
9242 {
aff469fa 9243 /* Even though we don't directly need a GOT entry for this symbol,
f7ff1106
RS
9244 the SVR4 psABI requires it to have a dynamic symbol table
9245 index greater that DT_MIPS_GOTSYM if there are dynamic
9246 relocations against it.
9247
9248 VxWorks does not enforce the same mapping between the GOT
9249 and the symbol table, so the same requirement does not
9250 apply there. */
90c14f0c 9251 if (htab->root.target_os != is_vxworks)
6ccf4795
RS
9252 {
9253 if (hmips->global_got_area > GGA_RELOC_ONLY)
9254 hmips->global_got_area = GGA_RELOC_ONLY;
9255 hmips->got_only_for_calls = FALSE;
9256 }
aff469fa 9257
9a59ad6b
DJ
9258 mips_elf_allocate_dynamic_relocations
9259 (dynobj, info, hmips->possibly_dynamic_relocs);
9260 if (hmips->readonly_reloc)
9261 /* We tell the dynamic linker that there are relocations
9262 against the text segment. */
9263 info->flags |= DF_TEXTREL;
9264 }
9265 }
9266
9267 return TRUE;
9268}
9269
b49e97c9
TS
9270/* Adjust a symbol defined by a dynamic object and referenced by a
9271 regular object. The current definition is in some section of the
9272 dynamic object, but we're not including those sections. We have to
9273 change the definition to something the rest of the link can
9274 understand. */
9275
b34976b6 9276bfd_boolean
9719ad41
RS
9277_bfd_mips_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
9278 struct elf_link_hash_entry *h)
b49e97c9
TS
9279{
9280 bfd *dynobj;
9281 struct mips_elf_link_hash_entry *hmips;
5108fc1b 9282 struct mips_elf_link_hash_table *htab;
5474d94f 9283 asection *s, *srel;
b49e97c9 9284
5108fc1b 9285 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
9286 BFD_ASSERT (htab != NULL);
9287
b49e97c9 9288 dynobj = elf_hash_table (info)->dynobj;
861fb55a 9289 hmips = (struct mips_elf_link_hash_entry *) h;
b49e97c9
TS
9290
9291 /* Make sure we know what is going on here. */
8e4979ac
NC
9292 if (dynobj == NULL
9293 || (! h->needs_plt
9294 && ! h->is_weakalias
9295 && (! h->def_dynamic
9296 || ! h->ref_regular
9297 || h->def_regular)))
9298 {
9299 if (h->type == STT_GNU_IFUNC)
9300 _bfd_error_handler (_("IFUNC symbol %s in dynamic symbol table - IFUNCS are not supported"),
9301 h->root.root.string);
9302 else
9303 _bfd_error_handler (_("non-dynamic symbol %s in dynamic symbol table"),
9304 h->root.root.string);
9305 return TRUE;
9306 }
b49e97c9 9307
b49e97c9 9308 hmips = (struct mips_elf_link_hash_entry *) h;
b49e97c9 9309
861fb55a
DJ
9310 /* If there are call relocations against an externally-defined symbol,
9311 see whether we can create a MIPS lazy-binding stub for it. We can
9312 only do this if all references to the function are through call
9313 relocations, and in that case, the traditional lazy-binding stubs
9314 are much more efficient than PLT entries.
9315
9316 Traditional stubs are only available on SVR4 psABI-based systems;
9317 VxWorks always uses PLTs instead. */
90c14f0c
L
9318 if (htab->root.target_os != is_vxworks
9319 && h->needs_plt
9320 && !hmips->no_fn_stub)
b49e97c9
TS
9321 {
9322 if (! elf_hash_table (info)->dynamic_sections_created)
b34976b6 9323 return TRUE;
b49e97c9
TS
9324
9325 /* If this symbol is not defined in a regular file, then set
9326 the symbol to the stub location. This is required to make
9327 function pointers compare as equal between the normal
9328 executable and the shared library. */
4b8377e7
MR
9329 if (!h->def_regular
9330 && !bfd_is_abs_section (htab->sstubs->output_section))
b49e97c9 9331 {
33bb52fb
RS
9332 hmips->needs_lazy_stub = TRUE;
9333 htab->lazy_stub_count++;
b34976b6 9334 return TRUE;
b49e97c9
TS
9335 }
9336 }
861fb55a
DJ
9337 /* As above, VxWorks requires PLT entries for externally-defined
9338 functions that are only accessed through call relocations.
b49e97c9 9339
861fb55a
DJ
9340 Both VxWorks and non-VxWorks targets also need PLT entries if there
9341 are static-only relocations against an externally-defined function.
9342 This can technically occur for shared libraries if there are
9343 branches to the symbol, although it is unlikely that this will be
9344 used in practice due to the short ranges involved. It can occur
9345 for any relative or absolute relocation in executables; in that
9346 case, the PLT entry becomes the function's canonical address. */
9347 else if (((h->needs_plt && !hmips->no_fn_stub)
9348 || (h->type == STT_FUNC && hmips->has_static_relocs))
9349 && htab->use_plts_and_copy_relocs
9350 && !SYMBOL_CALLS_LOCAL (info, h)
9351 && !(ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
9352 && h->root.type == bfd_link_hash_undefweak))
b49e97c9 9353 {
1bbce132
MR
9354 bfd_boolean micromips_p = MICROMIPS_P (info->output_bfd);
9355 bfd_boolean newabi_p = NEWABI_P (info->output_bfd);
9356
9357 /* If this is the first symbol to need a PLT entry, then make some
07d6d2b8
AM
9358 basic setup. Also work out PLT entry sizes. We'll need them
9359 for PLT offset calculations. */
1bbce132 9360 if (htab->plt_mips_offset + htab->plt_comp_offset == 0)
861fb55a 9361 {
ce558b89 9362 BFD_ASSERT (htab->root.sgotplt->size == 0);
1bbce132 9363 BFD_ASSERT (htab->plt_got_index == 0);
0a44bf69 9364
861fb55a
DJ
9365 /* If we're using the PLT additions to the psABI, each PLT
9366 entry is 16 bytes and the PLT0 entry is 32 bytes.
9367 Encourage better cache usage by aligning. We do this
9368 lazily to avoid pessimizing traditional objects. */
90c14f0c 9369 if (htab->root.target_os != is_vxworks
fd361982 9370 && !bfd_set_section_alignment (htab->root.splt, 5))
861fb55a 9371 return FALSE;
0a44bf69 9372
861fb55a
DJ
9373 /* Make sure that .got.plt is word-aligned. We do this lazily
9374 for the same reason as above. */
fd361982 9375 if (!bfd_set_section_alignment (htab->root.sgotplt,
861fb55a
DJ
9376 MIPS_ELF_LOG_FILE_ALIGN (dynobj)))
9377 return FALSE;
0a44bf69 9378
861fb55a
DJ
9379 /* On non-VxWorks targets, the first two entries in .got.plt
9380 are reserved. */
90c14f0c 9381 if (htab->root.target_os != is_vxworks)
1bbce132
MR
9382 htab->plt_got_index
9383 += (get_elf_backend_data (dynobj)->got_header_size
9384 / MIPS_ELF_GOT_SIZE (dynobj));
0a44bf69 9385
861fb55a
DJ
9386 /* On VxWorks, also allocate room for the header's
9387 .rela.plt.unloaded entries. */
90c14f0c
L
9388 if (htab->root.target_os == is_vxworks
9389 && !bfd_link_pic (info))
0a44bf69 9390 htab->srelplt2->size += 2 * sizeof (Elf32_External_Rela);
1bbce132
MR
9391
9392 /* Now work out the sizes of individual PLT entries. */
90c14f0c
L
9393 if (htab->root.target_os == is_vxworks
9394 && bfd_link_pic (info))
1bbce132
MR
9395 htab->plt_mips_entry_size
9396 = 4 * ARRAY_SIZE (mips_vxworks_shared_plt_entry);
90c14f0c 9397 else if (htab->root.target_os == is_vxworks)
1bbce132
MR
9398 htab->plt_mips_entry_size
9399 = 4 * ARRAY_SIZE (mips_vxworks_exec_plt_entry);
9400 else if (newabi_p)
9401 htab->plt_mips_entry_size
9402 = 4 * ARRAY_SIZE (mips_exec_plt_entry);
833794fc 9403 else if (!micromips_p)
1bbce132
MR
9404 {
9405 htab->plt_mips_entry_size
9406 = 4 * ARRAY_SIZE (mips_exec_plt_entry);
9407 htab->plt_comp_entry_size
833794fc
MR
9408 = 2 * ARRAY_SIZE (mips16_o32_exec_plt_entry);
9409 }
9410 else if (htab->insn32)
9411 {
9412 htab->plt_mips_entry_size
9413 = 4 * ARRAY_SIZE (mips_exec_plt_entry);
9414 htab->plt_comp_entry_size
9415 = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt_entry);
1bbce132
MR
9416 }
9417 else
9418 {
9419 htab->plt_mips_entry_size
9420 = 4 * ARRAY_SIZE (mips_exec_plt_entry);
9421 htab->plt_comp_entry_size
833794fc 9422 = 2 * ARRAY_SIZE (micromips_o32_exec_plt_entry);
1bbce132 9423 }
0a44bf69
RS
9424 }
9425
1bbce132
MR
9426 if (h->plt.plist == NULL)
9427 h->plt.plist = mips_elf_make_plt_record (dynobj);
9428 if (h->plt.plist == NULL)
9429 return FALSE;
9430
9431 /* There are no defined MIPS16 or microMIPS PLT entries for VxWorks,
07d6d2b8 9432 n32 or n64, so always use a standard entry there.
1bbce132 9433
07d6d2b8
AM
9434 If the symbol has a MIPS16 call stub and gets a PLT entry, then
9435 all MIPS16 calls will go via that stub, and there is no benefit
9436 to having a MIPS16 entry. And in the case of call_stub a
9437 standard entry actually has to be used as the stub ends with a J
9438 instruction. */
1bbce132 9439 if (newabi_p
90c14f0c 9440 || htab->root.target_os == is_vxworks
1bbce132
MR
9441 || hmips->call_stub
9442 || hmips->call_fp_stub)
9443 {
9444 h->plt.plist->need_mips = TRUE;
9445 h->plt.plist->need_comp = FALSE;
9446 }
9447
9448 /* Otherwise, if there are no direct calls to the function, we
07d6d2b8
AM
9449 have a free choice of whether to use standard or compressed
9450 entries. Prefer microMIPS entries if the object is known to
9451 contain microMIPS code, so that it becomes possible to create
9452 pure microMIPS binaries. Prefer standard entries otherwise,
9453 because MIPS16 ones are no smaller and are usually slower. */
1bbce132
MR
9454 if (!h->plt.plist->need_mips && !h->plt.plist->need_comp)
9455 {
9456 if (micromips_p)
9457 h->plt.plist->need_comp = TRUE;
9458 else
9459 h->plt.plist->need_mips = TRUE;
9460 }
9461
9462 if (h->plt.plist->need_mips)
9463 {
9464 h->plt.plist->mips_offset = htab->plt_mips_offset;
9465 htab->plt_mips_offset += htab->plt_mips_entry_size;
9466 }
9467 if (h->plt.plist->need_comp)
9468 {
9469 h->plt.plist->comp_offset = htab->plt_comp_offset;
9470 htab->plt_comp_offset += htab->plt_comp_entry_size;
9471 }
9472
9473 /* Reserve the corresponding .got.plt entry now too. */
9474 h->plt.plist->gotplt_index = htab->plt_got_index++;
0a44bf69
RS
9475
9476 /* If the output file has no definition of the symbol, set the
861fb55a 9477 symbol's value to the address of the stub. */
0e1862bb 9478 if (!bfd_link_pic (info) && !h->def_regular)
1bbce132 9479 hmips->use_plt_entry = TRUE;
0a44bf69 9480
1bbce132 9481 /* Make room for the R_MIPS_JUMP_SLOT relocation. */
90c14f0c 9482 htab->root.srelplt->size += (htab->root.target_os == is_vxworks
ce558b89
AM
9483 ? MIPS_ELF_RELA_SIZE (dynobj)
9484 : MIPS_ELF_REL_SIZE (dynobj));
0a44bf69
RS
9485
9486 /* Make room for the .rela.plt.unloaded relocations. */
90c14f0c 9487 if (htab->root.target_os == is_vxworks && !bfd_link_pic (info))
0a44bf69
RS
9488 htab->srelplt2->size += 3 * sizeof (Elf32_External_Rela);
9489
861fb55a
DJ
9490 /* All relocations against this symbol that could have been made
9491 dynamic will now refer to the PLT entry instead. */
9492 hmips->possibly_dynamic_relocs = 0;
0a44bf69 9493
0a44bf69
RS
9494 return TRUE;
9495 }
9496
9497 /* If this is a weak symbol, and there is a real definition, the
9498 processor independent code will have arranged for us to see the
9499 real definition first, and we can just use the same value. */
60d67dc8 9500 if (h->is_weakalias)
0a44bf69 9501 {
60d67dc8
AM
9502 struct elf_link_hash_entry *def = weakdef (h);
9503 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
9504 h->root.u.def.section = def->root.u.def.section;
9505 h->root.u.def.value = def->root.u.def.value;
0a44bf69
RS
9506 return TRUE;
9507 }
9508
861fb55a
DJ
9509 /* Otherwise, there is nothing further to do for symbols defined
9510 in regular objects. */
9511 if (h->def_regular)
0a44bf69
RS
9512 return TRUE;
9513
861fb55a
DJ
9514 /* There's also nothing more to do if we'll convert all relocations
9515 against this symbol into dynamic relocations. */
9516 if (!hmips->has_static_relocs)
9517 return TRUE;
9518
9519 /* We're now relying on copy relocations. Complain if we have
9520 some that we can't convert. */
0e1862bb 9521 if (!htab->use_plts_and_copy_relocs || bfd_link_pic (info))
861fb55a 9522 {
4eca0228
AM
9523 _bfd_error_handler (_("non-dynamic relocations refer to "
9524 "dynamic symbol %s"),
9525 h->root.root.string);
861fb55a
DJ
9526 bfd_set_error (bfd_error_bad_value);
9527 return FALSE;
9528 }
9529
0a44bf69
RS
9530 /* We must allocate the symbol in our .dynbss section, which will
9531 become part of the .bss section of the executable. There will be
9532 an entry for this symbol in the .dynsym section. The dynamic
9533 object will contain position independent code, so all references
9534 from the dynamic object to this symbol will go through the global
9535 offset table. The dynamic linker will use the .dynsym entry to
9536 determine the address it must put in the global offset table, so
9537 both the dynamic object and the regular object will refer to the
9538 same memory location for the variable. */
9539
5474d94f
AM
9540 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
9541 {
9542 s = htab->root.sdynrelro;
9543 srel = htab->root.sreldynrelro;
9544 }
9545 else
9546 {
9547 s = htab->root.sdynbss;
9548 srel = htab->root.srelbss;
9549 }
0a44bf69
RS
9550 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
9551 {
90c14f0c 9552 if (htab->root.target_os == is_vxworks)
5474d94f 9553 srel->size += sizeof (Elf32_External_Rela);
861fb55a
DJ
9554 else
9555 mips_elf_allocate_dynamic_relocations (dynobj, info, 1);
0a44bf69
RS
9556 h->needs_copy = 1;
9557 }
9558
861fb55a
DJ
9559 /* All relocations against this symbol that could have been made
9560 dynamic will now refer to the local copy instead. */
9561 hmips->possibly_dynamic_relocs = 0;
9562
5474d94f 9563 return _bfd_elf_adjust_dynamic_copy (info, h, s);
0a44bf69 9564}
b49e97c9
TS
9565\f
9566/* This function is called after all the input files have been read,
9567 and the input sections have been assigned to output sections. We
9568 check for any mips16 stub sections that we can discard. */
9569
b34976b6 9570bfd_boolean
9719ad41
RS
9571_bfd_mips_elf_always_size_sections (bfd *output_bfd,
9572 struct bfd_link_info *info)
b49e97c9 9573{
351cdf24 9574 asection *sect;
0a44bf69 9575 struct mips_elf_link_hash_table *htab;
861fb55a 9576 struct mips_htab_traverse_info hti;
0a44bf69
RS
9577
9578 htab = mips_elf_hash_table (info);
4dfe6ac6 9579 BFD_ASSERT (htab != NULL);
f4416af6 9580
b49e97c9 9581 /* The .reginfo section has a fixed size. */
351cdf24
MF
9582 sect = bfd_get_section_by_name (output_bfd, ".reginfo");
9583 if (sect != NULL)
6798f8bf 9584 {
fd361982 9585 bfd_set_section_size (sect, sizeof (Elf32_External_RegInfo));
6798f8bf
MR
9586 sect->flags |= SEC_FIXED_SIZE | SEC_HAS_CONTENTS;
9587 }
351cdf24
MF
9588
9589 /* The .MIPS.abiflags section has a fixed size. */
9590 sect = bfd_get_section_by_name (output_bfd, ".MIPS.abiflags");
9591 if (sect != NULL)
6798f8bf 9592 {
fd361982 9593 bfd_set_section_size (sect, sizeof (Elf_External_ABIFlags_v0));
6798f8bf
MR
9594 sect->flags |= SEC_FIXED_SIZE | SEC_HAS_CONTENTS;
9595 }
b49e97c9 9596
861fb55a
DJ
9597 hti.info = info;
9598 hti.output_bfd = output_bfd;
9599 hti.error = FALSE;
9600 mips_elf_link_hash_traverse (mips_elf_hash_table (info),
9601 mips_elf_check_symbols, &hti);
9602 if (hti.error)
9603 return FALSE;
f4416af6 9604
33bb52fb
RS
9605 return TRUE;
9606}
9607
9608/* If the link uses a GOT, lay it out and work out its size. */
9609
9610static bfd_boolean
9611mips_elf_lay_out_got (bfd *output_bfd, struct bfd_link_info *info)
9612{
9613 bfd *dynobj;
9614 asection *s;
9615 struct mips_got_info *g;
33bb52fb
RS
9616 bfd_size_type loadable_size = 0;
9617 bfd_size_type page_gotno;
d7206569 9618 bfd *ibfd;
ab361d49 9619 struct mips_elf_traverse_got_arg tga;
33bb52fb
RS
9620 struct mips_elf_link_hash_table *htab;
9621
9622 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
9623 BFD_ASSERT (htab != NULL);
9624
ce558b89 9625 s = htab->root.sgot;
f4416af6 9626 if (s == NULL)
b34976b6 9627 return TRUE;
b49e97c9 9628
33bb52fb 9629 dynobj = elf_hash_table (info)->dynobj;
a8028dd0
RS
9630 g = htab->got_info;
9631
861fb55a
DJ
9632 /* Allocate room for the reserved entries. VxWorks always reserves
9633 3 entries; other objects only reserve 2 entries. */
cb22ccf4 9634 BFD_ASSERT (g->assigned_low_gotno == 0);
90c14f0c 9635 if (htab->root.target_os == is_vxworks)
861fb55a
DJ
9636 htab->reserved_gotno = 3;
9637 else
9638 htab->reserved_gotno = 2;
9639 g->local_gotno += htab->reserved_gotno;
cb22ccf4 9640 g->assigned_low_gotno = htab->reserved_gotno;
861fb55a 9641
6c42ddb9
RS
9642 /* Decide which symbols need to go in the global part of the GOT and
9643 count the number of reloc-only GOT symbols. */
020d7251 9644 mips_elf_link_hash_traverse (htab, mips_elf_count_got_symbols, info);
f4416af6 9645
13db6b44
RS
9646 if (!mips_elf_resolve_final_got_entries (info, g))
9647 return FALSE;
9648
33bb52fb
RS
9649 /* Calculate the total loadable size of the output. That
9650 will give us the maximum number of GOT_PAGE entries
9651 required. */
c72f2fb2 9652 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
33bb52fb
RS
9653 {
9654 asection *subsection;
5108fc1b 9655
d7206569 9656 for (subsection = ibfd->sections;
33bb52fb
RS
9657 subsection;
9658 subsection = subsection->next)
9659 {
9660 if ((subsection->flags & SEC_ALLOC) == 0)
9661 continue;
9662 loadable_size += ((subsection->size + 0xf)
9663 &~ (bfd_size_type) 0xf);
9664 }
9665 }
f4416af6 9666
90c14f0c 9667 if (htab->root.target_os == is_vxworks)
738e5348 9668 /* There's no need to allocate page entries for VxWorks; R_MIPS*_GOT16
0a44bf69
RS
9669 relocations against local symbols evaluate to "G", and the EABI does
9670 not include R_MIPS_GOT_PAGE. */
c224138d 9671 page_gotno = 0;
0a44bf69
RS
9672 else
9673 /* Assume there are two loadable segments consisting of contiguous
9674 sections. Is 5 enough? */
c224138d
RS
9675 page_gotno = (loadable_size >> 16) + 5;
9676
13db6b44 9677 /* Choose the smaller of the two page estimates; both are intended to be
c224138d
RS
9678 conservative. */
9679 if (page_gotno > g->page_gotno)
9680 page_gotno = g->page_gotno;
f4416af6 9681
c224138d 9682 g->local_gotno += page_gotno;
cb22ccf4 9683 g->assigned_high_gotno = g->local_gotno - 1;
ab361d49 9684
ab361d49
RS
9685 s->size += g->local_gotno * MIPS_ELF_GOT_SIZE (output_bfd);
9686 s->size += g->global_gotno * MIPS_ELF_GOT_SIZE (output_bfd);
0f20cc35
DJ
9687 s->size += g->tls_gotno * MIPS_ELF_GOT_SIZE (output_bfd);
9688
0a44bf69
RS
9689 /* VxWorks does not support multiple GOTs. It initializes $gp to
9690 __GOTT_BASE__[__GOTT_INDEX__], the value of which is set by the
9691 dynamic loader. */
90c14f0c
L
9692 if (htab->root.target_os != is_vxworks
9693 && s->size > MIPS_ELF_GOT_MAX_SIZE (info))
0f20cc35 9694 {
a8028dd0 9695 if (!mips_elf_multi_got (output_bfd, info, s, page_gotno))
0f20cc35
DJ
9696 return FALSE;
9697 }
9698 else
9699 {
d7206569
RS
9700 /* Record that all bfds use G. This also has the effect of freeing
9701 the per-bfd GOTs, which we no longer need. */
c72f2fb2 9702 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
d7206569
RS
9703 if (mips_elf_bfd_got (ibfd, FALSE))
9704 mips_elf_replace_bfd_got (ibfd, g);
9705 mips_elf_replace_bfd_got (output_bfd, g);
9706
33bb52fb 9707 /* Set up TLS entries. */
0f20cc35 9708 g->tls_assigned_gotno = g->global_gotno + g->local_gotno;
72e7511a
RS
9709 tga.info = info;
9710 tga.g = g;
9711 tga.value = MIPS_ELF_GOT_SIZE (output_bfd);
9712 htab_traverse (g->got_entries, mips_elf_initialize_tls_index, &tga);
9713 if (!tga.g)
9714 return FALSE;
1fd20d70
RS
9715 BFD_ASSERT (g->tls_assigned_gotno
9716 == g->global_gotno + g->local_gotno + g->tls_gotno);
33bb52fb 9717
57093f5e 9718 /* Each VxWorks GOT entry needs an explicit relocation. */
90c14f0c 9719 if (htab->root.target_os == is_vxworks && bfd_link_pic (info))
57093f5e
RS
9720 g->relocs += g->global_gotno + g->local_gotno - htab->reserved_gotno;
9721
33bb52fb 9722 /* Allocate room for the TLS relocations. */
ab361d49
RS
9723 if (g->relocs)
9724 mips_elf_allocate_dynamic_relocations (dynobj, info, g->relocs);
0f20cc35 9725 }
b49e97c9 9726
b34976b6 9727 return TRUE;
b49e97c9
TS
9728}
9729
33bb52fb
RS
9730/* Estimate the size of the .MIPS.stubs section. */
9731
9732static void
9733mips_elf_estimate_stub_size (bfd *output_bfd, struct bfd_link_info *info)
9734{
9735 struct mips_elf_link_hash_table *htab;
9736 bfd_size_type dynsymcount;
9737
9738 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
9739 BFD_ASSERT (htab != NULL);
9740
33bb52fb
RS
9741 if (htab->lazy_stub_count == 0)
9742 return;
9743
9744 /* IRIX rld assumes that a function stub isn't at the end of the .text
9745 section, so add a dummy entry to the end. */
9746 htab->lazy_stub_count++;
9747
9748 /* Get a worst-case estimate of the number of dynamic symbols needed.
9749 At this point, dynsymcount does not account for section symbols
9750 and count_section_dynsyms may overestimate the number that will
9751 be needed. */
9752 dynsymcount = (elf_hash_table (info)->dynsymcount
9753 + count_section_dynsyms (output_bfd, info));
9754
1bbce132
MR
9755 /* Determine the size of one stub entry. There's no disadvantage
9756 from using microMIPS code here, so for the sake of pure-microMIPS
9757 binaries we prefer it whenever there's any microMIPS code in
9758 output produced at all. This has a benefit of stubs being
833794fc
MR
9759 shorter by 4 bytes each too, unless in the insn32 mode. */
9760 if (!MICROMIPS_P (output_bfd))
1bbce132
MR
9761 htab->function_stub_size = (dynsymcount > 0x10000
9762 ? MIPS_FUNCTION_STUB_BIG_SIZE
9763 : MIPS_FUNCTION_STUB_NORMAL_SIZE);
833794fc
MR
9764 else if (htab->insn32)
9765 htab->function_stub_size = (dynsymcount > 0x10000
9766 ? MICROMIPS_INSN32_FUNCTION_STUB_BIG_SIZE
9767 : MICROMIPS_INSN32_FUNCTION_STUB_NORMAL_SIZE);
9768 else
9769 htab->function_stub_size = (dynsymcount > 0x10000
9770 ? MICROMIPS_FUNCTION_STUB_BIG_SIZE
9771 : MICROMIPS_FUNCTION_STUB_NORMAL_SIZE);
33bb52fb
RS
9772
9773 htab->sstubs->size = htab->lazy_stub_count * htab->function_stub_size;
9774}
9775
1bbce132
MR
9776/* A mips_elf_link_hash_traverse callback for which DATA points to a
9777 mips_htab_traverse_info. If H needs a traditional MIPS lazy-binding
9778 stub, allocate an entry in the stubs section. */
33bb52fb
RS
9779
9780static bfd_boolean
af924177 9781mips_elf_allocate_lazy_stub (struct mips_elf_link_hash_entry *h, void *data)
33bb52fb 9782{
1bbce132 9783 struct mips_htab_traverse_info *hti = data;
33bb52fb 9784 struct mips_elf_link_hash_table *htab;
1bbce132
MR
9785 struct bfd_link_info *info;
9786 bfd *output_bfd;
9787
9788 info = hti->info;
9789 output_bfd = hti->output_bfd;
9790 htab = mips_elf_hash_table (info);
9791 BFD_ASSERT (htab != NULL);
33bb52fb 9792
33bb52fb
RS
9793 if (h->needs_lazy_stub)
9794 {
1bbce132
MR
9795 bfd_boolean micromips_p = MICROMIPS_P (output_bfd);
9796 unsigned int other = micromips_p ? STO_MICROMIPS : 0;
9797 bfd_vma isa_bit = micromips_p;
9798
9799 BFD_ASSERT (htab->root.dynobj != NULL);
9800 if (h->root.plt.plist == NULL)
9801 h->root.plt.plist = mips_elf_make_plt_record (htab->sstubs->owner);
9802 if (h->root.plt.plist == NULL)
9803 {
9804 hti->error = TRUE;
9805 return FALSE;
9806 }
33bb52fb 9807 h->root.root.u.def.section = htab->sstubs;
1bbce132
MR
9808 h->root.root.u.def.value = htab->sstubs->size + isa_bit;
9809 h->root.plt.plist->stub_offset = htab->sstubs->size;
9810 h->root.other = other;
33bb52fb
RS
9811 htab->sstubs->size += htab->function_stub_size;
9812 }
9813 return TRUE;
9814}
9815
9816/* Allocate offsets in the stubs section to each symbol that needs one.
9817 Set the final size of the .MIPS.stub section. */
9818
1bbce132 9819static bfd_boolean
33bb52fb
RS
9820mips_elf_lay_out_lazy_stubs (struct bfd_link_info *info)
9821{
1bbce132
MR
9822 bfd *output_bfd = info->output_bfd;
9823 bfd_boolean micromips_p = MICROMIPS_P (output_bfd);
9824 unsigned int other = micromips_p ? STO_MICROMIPS : 0;
9825 bfd_vma isa_bit = micromips_p;
33bb52fb 9826 struct mips_elf_link_hash_table *htab;
1bbce132
MR
9827 struct mips_htab_traverse_info hti;
9828 struct elf_link_hash_entry *h;
9829 bfd *dynobj;
33bb52fb
RS
9830
9831 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
9832 BFD_ASSERT (htab != NULL);
9833
33bb52fb 9834 if (htab->lazy_stub_count == 0)
1bbce132 9835 return TRUE;
33bb52fb
RS
9836
9837 htab->sstubs->size = 0;
1bbce132
MR
9838 hti.info = info;
9839 hti.output_bfd = output_bfd;
9840 hti.error = FALSE;
9841 mips_elf_link_hash_traverse (htab, mips_elf_allocate_lazy_stub, &hti);
9842 if (hti.error)
9843 return FALSE;
33bb52fb
RS
9844 htab->sstubs->size += htab->function_stub_size;
9845 BFD_ASSERT (htab->sstubs->size
9846 == htab->lazy_stub_count * htab->function_stub_size);
1bbce132
MR
9847
9848 dynobj = elf_hash_table (info)->dynobj;
9849 BFD_ASSERT (dynobj != NULL);
9850 h = _bfd_elf_define_linkage_sym (dynobj, info, htab->sstubs, "_MIPS_STUBS_");
9851 if (h == NULL)
9852 return FALSE;
9853 h->root.u.def.value = isa_bit;
9854 h->other = other;
9855 h->type = STT_FUNC;
9856
9857 return TRUE;
9858}
9859
9860/* A mips_elf_link_hash_traverse callback for which DATA points to a
9861 bfd_link_info. If H uses the address of a PLT entry as the value
9862 of the symbol, then set the entry in the symbol table now. Prefer
9863 a standard MIPS PLT entry. */
9864
9865static bfd_boolean
9866mips_elf_set_plt_sym_value (struct mips_elf_link_hash_entry *h, void *data)
9867{
9868 struct bfd_link_info *info = data;
9869 bfd_boolean micromips_p = MICROMIPS_P (info->output_bfd);
9870 struct mips_elf_link_hash_table *htab;
9871 unsigned int other;
9872 bfd_vma isa_bit;
9873 bfd_vma val;
9874
9875 htab = mips_elf_hash_table (info);
9876 BFD_ASSERT (htab != NULL);
9877
9878 if (h->use_plt_entry)
9879 {
9880 BFD_ASSERT (h->root.plt.plist != NULL);
9881 BFD_ASSERT (h->root.plt.plist->mips_offset != MINUS_ONE
9882 || h->root.plt.plist->comp_offset != MINUS_ONE);
9883
9884 val = htab->plt_header_size;
9885 if (h->root.plt.plist->mips_offset != MINUS_ONE)
9886 {
9887 isa_bit = 0;
9888 val += h->root.plt.plist->mips_offset;
9889 other = 0;
9890 }
9891 else
9892 {
9893 isa_bit = 1;
9894 val += htab->plt_mips_offset + h->root.plt.plist->comp_offset;
9895 other = micromips_p ? STO_MICROMIPS : STO_MIPS16;
9896 }
9897 val += isa_bit;
9898 /* For VxWorks, point at the PLT load stub rather than the lazy
07d6d2b8
AM
9899 resolution stub; this stub will become the canonical function
9900 address. */
90c14f0c 9901 if (htab->root.target_os == is_vxworks)
1bbce132
MR
9902 val += 8;
9903
ce558b89 9904 h->root.root.u.def.section = htab->root.splt;
1bbce132
MR
9905 h->root.root.u.def.value = val;
9906 h->root.other = other;
9907 }
9908
9909 return TRUE;
33bb52fb
RS
9910}
9911
b49e97c9
TS
9912/* Set the sizes of the dynamic sections. */
9913
b34976b6 9914bfd_boolean
9719ad41
RS
9915_bfd_mips_elf_size_dynamic_sections (bfd *output_bfd,
9916 struct bfd_link_info *info)
b49e97c9
TS
9917{
9918 bfd *dynobj;
861fb55a 9919 asection *s, *sreldyn;
b34976b6 9920 bfd_boolean reltext;
0a44bf69 9921 struct mips_elf_link_hash_table *htab;
b49e97c9 9922
0a44bf69 9923 htab = mips_elf_hash_table (info);
4dfe6ac6 9924 BFD_ASSERT (htab != NULL);
b49e97c9
TS
9925 dynobj = elf_hash_table (info)->dynobj;
9926 BFD_ASSERT (dynobj != NULL);
9927
9928 if (elf_hash_table (info)->dynamic_sections_created)
9929 {
9930 /* Set the contents of the .interp section to the interpreter. */
9b8b325a 9931 if (bfd_link_executable (info) && !info->nointerp)
b49e97c9 9932 {
3d4d4302 9933 s = bfd_get_linker_section (dynobj, ".interp");
b49e97c9 9934 BFD_ASSERT (s != NULL);
eea6121a 9935 s->size
b49e97c9
TS
9936 = strlen (ELF_DYNAMIC_INTERPRETER (output_bfd)) + 1;
9937 s->contents
9938 = (bfd_byte *) ELF_DYNAMIC_INTERPRETER (output_bfd);
9939 }
861fb55a 9940
1bbce132 9941 /* Figure out the size of the PLT header if we know that we
07d6d2b8
AM
9942 are using it. For the sake of cache alignment always use
9943 a standard header whenever any standard entries are present
9944 even if microMIPS entries are present as well. This also
9945 lets the microMIPS header rely on the value of $v0 only set
9946 by microMIPS entries, for a small size reduction.
1bbce132 9947
07d6d2b8
AM
9948 Set symbol table entry values for symbols that use the
9949 address of their PLT entry now that we can calculate it.
1bbce132 9950
07d6d2b8
AM
9951 Also create the _PROCEDURE_LINKAGE_TABLE_ symbol if we
9952 haven't already in _bfd_elf_create_dynamic_sections. */
ce558b89 9953 if (htab->root.splt && htab->plt_mips_offset + htab->plt_comp_offset != 0)
861fb55a 9954 {
1bbce132
MR
9955 bfd_boolean micromips_p = (MICROMIPS_P (output_bfd)
9956 && !htab->plt_mips_offset);
9957 unsigned int other = micromips_p ? STO_MICROMIPS : 0;
9958 bfd_vma isa_bit = micromips_p;
861fb55a 9959 struct elf_link_hash_entry *h;
1bbce132 9960 bfd_vma size;
861fb55a
DJ
9961
9962 BFD_ASSERT (htab->use_plts_and_copy_relocs);
ce558b89
AM
9963 BFD_ASSERT (htab->root.sgotplt->size == 0);
9964 BFD_ASSERT (htab->root.splt->size == 0);
1bbce132 9965
90c14f0c 9966 if (htab->root.target_os == is_vxworks && bfd_link_pic (info))
1bbce132 9967 size = 4 * ARRAY_SIZE (mips_vxworks_shared_plt0_entry);
90c14f0c 9968 else if (htab->root.target_os == is_vxworks)
1bbce132
MR
9969 size = 4 * ARRAY_SIZE (mips_vxworks_exec_plt0_entry);
9970 else if (ABI_64_P (output_bfd))
9971 size = 4 * ARRAY_SIZE (mips_n64_exec_plt0_entry);
9972 else if (ABI_N32_P (output_bfd))
9973 size = 4 * ARRAY_SIZE (mips_n32_exec_plt0_entry);
9974 else if (!micromips_p)
9975 size = 4 * ARRAY_SIZE (mips_o32_exec_plt0_entry);
833794fc
MR
9976 else if (htab->insn32)
9977 size = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt0_entry);
1bbce132
MR
9978 else
9979 size = 2 * ARRAY_SIZE (micromips_o32_exec_plt0_entry);
861fb55a 9980
1bbce132
MR
9981 htab->plt_header_is_comp = micromips_p;
9982 htab->plt_header_size = size;
ce558b89
AM
9983 htab->root.splt->size = (size
9984 + htab->plt_mips_offset
9985 + htab->plt_comp_offset);
9986 htab->root.sgotplt->size = (htab->plt_got_index
9987 * MIPS_ELF_GOT_SIZE (dynobj));
1bbce132
MR
9988
9989 mips_elf_link_hash_traverse (htab, mips_elf_set_plt_sym_value, info);
9990
9991 if (htab->root.hplt == NULL)
9992 {
ce558b89 9993 h = _bfd_elf_define_linkage_sym (dynobj, info, htab->root.splt,
1bbce132
MR
9994 "_PROCEDURE_LINKAGE_TABLE_");
9995 htab->root.hplt = h;
9996 if (h == NULL)
9997 return FALSE;
9998 }
9999
10000 h = htab->root.hplt;
10001 h->root.u.def.value = isa_bit;
10002 h->other = other;
861fb55a
DJ
10003 h->type = STT_FUNC;
10004 }
10005 }
4e41d0d7 10006
9a59ad6b 10007 /* Allocate space for global sym dynamic relocs. */
2c3fc389 10008 elf_link_hash_traverse (&htab->root, allocate_dynrelocs, info);
9a59ad6b 10009
33bb52fb
RS
10010 mips_elf_estimate_stub_size (output_bfd, info);
10011
10012 if (!mips_elf_lay_out_got (output_bfd, info))
10013 return FALSE;
10014
10015 mips_elf_lay_out_lazy_stubs (info);
10016
b49e97c9
TS
10017 /* The check_relocs and adjust_dynamic_symbol entry points have
10018 determined the sizes of the various dynamic sections. Allocate
10019 memory for them. */
b34976b6 10020 reltext = FALSE;
b49e97c9
TS
10021 for (s = dynobj->sections; s != NULL; s = s->next)
10022 {
10023 const char *name;
b49e97c9
TS
10024
10025 /* It's OK to base decisions on the section name, because none
10026 of the dynobj section names depend upon the input files. */
fd361982 10027 name = bfd_section_name (s);
b49e97c9
TS
10028
10029 if ((s->flags & SEC_LINKER_CREATED) == 0)
10030 continue;
10031
0112cd26 10032 if (CONST_STRNEQ (name, ".rel"))
b49e97c9 10033 {
c456f082 10034 if (s->size != 0)
b49e97c9
TS
10035 {
10036 const char *outname;
10037 asection *target;
10038
10039 /* If this relocation section applies to a read only
07d6d2b8
AM
10040 section, then we probably need a DT_TEXTREL entry.
10041 If the relocation section is .rel(a).dyn, we always
10042 assert a DT_TEXTREL entry rather than testing whether
10043 there exists a relocation to a read only section or
10044 not. */
fd361982 10045 outname = bfd_section_name (s->output_section);
b49e97c9
TS
10046 target = bfd_get_section_by_name (output_bfd, outname + 4);
10047 if ((target != NULL
10048 && (target->flags & SEC_READONLY) != 0
10049 && (target->flags & SEC_ALLOC) != 0)
0a44bf69 10050 || strcmp (outname, MIPS_ELF_REL_DYN_NAME (info)) == 0)
b34976b6 10051 reltext = TRUE;
b49e97c9
TS
10052
10053 /* We use the reloc_count field as a counter if we need
10054 to copy relocs into the output file. */
0a44bf69 10055 if (strcmp (name, MIPS_ELF_REL_DYN_NAME (info)) != 0)
b49e97c9 10056 s->reloc_count = 0;
f4416af6
AO
10057
10058 /* If combreloc is enabled, elf_link_sort_relocs() will
10059 sort relocations, but in a different way than we do,
10060 and before we're done creating relocations. Also, it
10061 will move them around between input sections'
10062 relocation's contents, so our sorting would be
10063 broken, so don't let it run. */
10064 info->combreloc = 0;
b49e97c9
TS
10065 }
10066 }
0e1862bb 10067 else if (bfd_link_executable (info)
b49e97c9 10068 && ! mips_elf_hash_table (info)->use_rld_obj_head
0112cd26 10069 && CONST_STRNEQ (name, ".rld_map"))
b49e97c9 10070 {
5108fc1b 10071 /* We add a room for __rld_map. It will be filled in by the
b49e97c9 10072 rtld to contain a pointer to the _r_debug structure. */
b4082c70 10073 s->size += MIPS_ELF_RLD_MAP_SIZE (output_bfd);
b49e97c9
TS
10074 }
10075 else if (SGI_COMPAT (output_bfd)
0112cd26 10076 && CONST_STRNEQ (name, ".compact_rel"))
eea6121a 10077 s->size += mips_elf_hash_table (info)->compact_rel_size;
ce558b89 10078 else if (s == htab->root.splt)
861fb55a
DJ
10079 {
10080 /* If the last PLT entry has a branch delay slot, allocate
6d30f5b2
NC
10081 room for an extra nop to fill the delay slot. This is
10082 for CPUs without load interlocking. */
10083 if (! LOAD_INTERLOCKS_P (output_bfd)
90c14f0c
L
10084 && htab->root.target_os != is_vxworks
10085 && s->size > 0)
861fb55a
DJ
10086 s->size += 4;
10087 }
0112cd26 10088 else if (! CONST_STRNEQ (name, ".init")
ce558b89
AM
10089 && s != htab->root.sgot
10090 && s != htab->root.sgotplt
861fb55a 10091 && s != htab->sstubs
5474d94f
AM
10092 && s != htab->root.sdynbss
10093 && s != htab->root.sdynrelro)
b49e97c9
TS
10094 {
10095 /* It's not one of our sections, so don't allocate space. */
10096 continue;
10097 }
10098
c456f082 10099 if (s->size == 0)
b49e97c9 10100 {
8423293d 10101 s->flags |= SEC_EXCLUDE;
b49e97c9
TS
10102 continue;
10103 }
10104
c456f082
AM
10105 if ((s->flags & SEC_HAS_CONTENTS) == 0)
10106 continue;
10107
b49e97c9 10108 /* Allocate memory for the section contents. */
eea6121a 10109 s->contents = bfd_zalloc (dynobj, s->size);
c456f082 10110 if (s->contents == NULL)
b49e97c9
TS
10111 {
10112 bfd_set_error (bfd_error_no_memory);
b34976b6 10113 return FALSE;
b49e97c9
TS
10114 }
10115 }
10116
10117 if (elf_hash_table (info)->dynamic_sections_created)
10118 {
10119 /* Add some entries to the .dynamic section. We fill in the
10120 values later, in _bfd_mips_elf_finish_dynamic_sections, but we
10121 must add the entries now so that we get the correct size for
5750dcec 10122 the .dynamic section. */
af5978fb
RS
10123
10124 /* SGI object has the equivalence of DT_DEBUG in the
5750dcec 10125 DT_MIPS_RLD_MAP entry. This must come first because glibc
6e6be592
MR
10126 only fills in DT_MIPS_RLD_MAP (not DT_DEBUG) and some tools
10127 may only look at the first one they see. */
0e1862bb 10128 if (!bfd_link_pic (info)
af5978fb
RS
10129 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_RLD_MAP, 0))
10130 return FALSE;
b49e97c9 10131
0e1862bb 10132 if (bfd_link_executable (info)
a5499fa4
MF
10133 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_RLD_MAP_REL, 0))
10134 return FALSE;
10135
5750dcec
DJ
10136 /* The DT_DEBUG entry may be filled in by the dynamic linker and
10137 used by the debugger. */
0e1862bb 10138 if (bfd_link_executable (info)
5750dcec
DJ
10139 && !SGI_COMPAT (output_bfd)
10140 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_DEBUG, 0))
10141 return FALSE;
10142
90c14f0c
L
10143 if (reltext
10144 && (SGI_COMPAT (output_bfd)
10145 || htab->root.target_os == is_vxworks))
b49e97c9
TS
10146 info->flags |= DF_TEXTREL;
10147
10148 if ((info->flags & DF_TEXTREL) != 0)
10149 {
10150 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_TEXTREL, 0))
b34976b6 10151 return FALSE;
943284cc
DJ
10152
10153 /* Clear the DF_TEXTREL flag. It will be set again if we
10154 write out an actual text relocation; we may not, because
10155 at this point we do not know whether e.g. any .eh_frame
10156 absolute relocations have been converted to PC-relative. */
10157 info->flags &= ~DF_TEXTREL;
b49e97c9
TS
10158 }
10159
10160 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTGOT, 0))
b34976b6 10161 return FALSE;
b49e97c9 10162
861fb55a 10163 sreldyn = mips_elf_rel_dyn_section (info, FALSE);
90c14f0c 10164 if (htab->root.target_os == is_vxworks)
b49e97c9 10165 {
0a44bf69
RS
10166 /* VxWorks uses .rela.dyn instead of .rel.dyn. It does not
10167 use any of the DT_MIPS_* tags. */
861fb55a 10168 if (sreldyn && sreldyn->size > 0)
0a44bf69
RS
10169 {
10170 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELA, 0))
10171 return FALSE;
b49e97c9 10172
0a44bf69
RS
10173 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELASZ, 0))
10174 return FALSE;
b49e97c9 10175
0a44bf69
RS
10176 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELAENT, 0))
10177 return FALSE;
10178 }
b49e97c9 10179 }
0a44bf69
RS
10180 else
10181 {
db841b6f
MR
10182 if (sreldyn && sreldyn->size > 0
10183 && !bfd_is_abs_section (sreldyn->output_section))
0a44bf69
RS
10184 {
10185 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_REL, 0))
10186 return FALSE;
b49e97c9 10187
0a44bf69
RS
10188 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELSZ, 0))
10189 return FALSE;
b49e97c9 10190
0a44bf69
RS
10191 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELENT, 0))
10192 return FALSE;
10193 }
b49e97c9 10194
0a44bf69
RS
10195 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_RLD_VERSION, 0))
10196 return FALSE;
b49e97c9 10197
0a44bf69
RS
10198 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_FLAGS, 0))
10199 return FALSE;
b49e97c9 10200
0a44bf69
RS
10201 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_BASE_ADDRESS, 0))
10202 return FALSE;
b49e97c9 10203
0a44bf69
RS
10204 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_LOCAL_GOTNO, 0))
10205 return FALSE;
b49e97c9 10206
0a44bf69
RS
10207 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_SYMTABNO, 0))
10208 return FALSE;
b49e97c9 10209
0a44bf69
RS
10210 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_UNREFEXTNO, 0))
10211 return FALSE;
b49e97c9 10212
0a44bf69
RS
10213 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_GOTSYM, 0))
10214 return FALSE;
10215
f16a9783
MS
10216 if (info->emit_gnu_hash
10217 && ! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_XHASH, 0))
10218 return FALSE;
10219
0a44bf69
RS
10220 if (IRIX_COMPAT (dynobj) == ict_irix5
10221 && ! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_HIPAGENO, 0))
10222 return FALSE;
10223
10224 if (IRIX_COMPAT (dynobj) == ict_irix6
10225 && (bfd_get_section_by_name
af0edeb8 10226 (output_bfd, MIPS_ELF_OPTIONS_SECTION_NAME (dynobj)))
0a44bf69
RS
10227 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_OPTIONS, 0))
10228 return FALSE;
10229 }
ce558b89 10230 if (htab->root.splt->size > 0)
861fb55a
DJ
10231 {
10232 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTREL, 0))
10233 return FALSE;
10234
10235 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_JMPREL, 0))
10236 return FALSE;
10237
10238 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTRELSZ, 0))
10239 return FALSE;
10240
10241 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_PLTGOT, 0))
10242 return FALSE;
10243 }
90c14f0c 10244 if (htab->root.target_os == is_vxworks
7a2b07ff
NS
10245 && !elf_vxworks_add_dynamic_entries (output_bfd, info))
10246 return FALSE;
b49e97c9
TS
10247 }
10248
b34976b6 10249 return TRUE;
b49e97c9
TS
10250}
10251\f
81d43bff
RS
10252/* REL is a relocation in INPUT_BFD that is being copied to OUTPUT_BFD.
10253 Adjust its R_ADDEND field so that it is correct for the output file.
10254 LOCAL_SYMS and LOCAL_SECTIONS are arrays of INPUT_BFD's local symbols
10255 and sections respectively; both use symbol indexes. */
10256
10257static void
10258mips_elf_adjust_addend (bfd *output_bfd, struct bfd_link_info *info,
10259 bfd *input_bfd, Elf_Internal_Sym *local_syms,
10260 asection **local_sections, Elf_Internal_Rela *rel)
10261{
10262 unsigned int r_type, r_symndx;
10263 Elf_Internal_Sym *sym;
10264 asection *sec;
10265
020d7251 10266 if (mips_elf_local_relocation_p (input_bfd, rel, local_sections))
81d43bff
RS
10267 {
10268 r_type = ELF_R_TYPE (output_bfd, rel->r_info);
df58fc94 10269 if (gprel16_reloc_p (r_type)
81d43bff 10270 || r_type == R_MIPS_GPREL32
df58fc94 10271 || literal_reloc_p (r_type))
81d43bff
RS
10272 {
10273 rel->r_addend += _bfd_get_gp_value (input_bfd);
10274 rel->r_addend -= _bfd_get_gp_value (output_bfd);
10275 }
10276
10277 r_symndx = ELF_R_SYM (output_bfd, rel->r_info);
10278 sym = local_syms + r_symndx;
10279
10280 /* Adjust REL's addend to account for section merging. */
0e1862bb 10281 if (!bfd_link_relocatable (info))
81d43bff
RS
10282 {
10283 sec = local_sections[r_symndx];
10284 _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
10285 }
10286
10287 /* This would normally be done by the rela_normal code in elflink.c. */
10288 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
10289 rel->r_addend += local_sections[r_symndx]->output_offset;
10290 }
10291}
10292
545fd46b
MR
10293/* Handle relocations against symbols from removed linkonce sections,
10294 or sections discarded by a linker script. We use this wrapper around
10295 RELOC_AGAINST_DISCARDED_SECTION to handle triplets of compound relocs
10296 on 64-bit ELF targets. In this case for any relocation handled, which
10297 always be the first in a triplet, the remaining two have to be processed
10298 together with the first, even if they are R_MIPS_NONE. It is the symbol
10299 index referred by the first reloc that applies to all the three and the
10300 remaining two never refer to an object symbol. And it is the final
10301 relocation (the last non-null one) that determines the output field of
10302 the whole relocation so retrieve the corresponding howto structure for
10303 the relocatable field to be cleared by RELOC_AGAINST_DISCARDED_SECTION.
10304
10305 Note that RELOC_AGAINST_DISCARDED_SECTION is a macro that uses "continue"
10306 and therefore requires to be pasted in a loop. It also defines a block
10307 and does not protect any of its arguments, hence the extra brackets. */
10308
10309static void
10310mips_reloc_against_discarded_section (bfd *output_bfd,
10311 struct bfd_link_info *info,
10312 bfd *input_bfd, asection *input_section,
10313 Elf_Internal_Rela **rel,
10314 const Elf_Internal_Rela **relend,
10315 bfd_boolean rel_reloc,
10316 reloc_howto_type *howto,
10317 bfd_byte *contents)
10318{
10319 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
10320 int count = bed->s->int_rels_per_ext_rel;
10321 unsigned int r_type;
10322 int i;
10323
10324 for (i = count - 1; i > 0; i--)
10325 {
10326 r_type = ELF_R_TYPE (output_bfd, (*rel)[i].r_info);
10327 if (r_type != R_MIPS_NONE)
10328 {
10329 howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, r_type, !rel_reloc);
10330 break;
10331 }
10332 }
10333 do
10334 {
10335 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
10336 (*rel), count, (*relend),
10337 howto, i, contents);
10338 }
10339 while (0);
10340}
10341
b49e97c9
TS
10342/* Relocate a MIPS ELF section. */
10343
b34976b6 10344bfd_boolean
9719ad41
RS
10345_bfd_mips_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
10346 bfd *input_bfd, asection *input_section,
10347 bfd_byte *contents, Elf_Internal_Rela *relocs,
10348 Elf_Internal_Sym *local_syms,
10349 asection **local_sections)
b49e97c9
TS
10350{
10351 Elf_Internal_Rela *rel;
10352 const Elf_Internal_Rela *relend;
10353 bfd_vma addend = 0;
b34976b6 10354 bfd_boolean use_saved_addend_p = FALSE;
b49e97c9 10355
056bafd4 10356 relend = relocs + input_section->reloc_count;
b49e97c9
TS
10357 for (rel = relocs; rel < relend; ++rel)
10358 {
10359 const char *name;
c9adbffe 10360 bfd_vma value = 0;
b49e97c9 10361 reloc_howto_type *howto;
ad3d9127 10362 bfd_boolean cross_mode_jump_p = FALSE;
b34976b6 10363 /* TRUE if the relocation is a RELA relocation, rather than a
07d6d2b8 10364 REL relocation. */
b34976b6 10365 bfd_boolean rela_relocation_p = TRUE;
b49e97c9 10366 unsigned int r_type = ELF_R_TYPE (output_bfd, rel->r_info);
9719ad41 10367 const char *msg;
ab96bf03
AM
10368 unsigned long r_symndx;
10369 asection *sec;
749b8d9d
L
10370 Elf_Internal_Shdr *symtab_hdr;
10371 struct elf_link_hash_entry *h;
d4730f92 10372 bfd_boolean rel_reloc;
b49e97c9 10373
d4730f92
BS
10374 rel_reloc = (NEWABI_P (input_bfd)
10375 && mips_elf_rel_relocation_p (input_bfd, input_section,
10376 relocs, rel));
b49e97c9 10377 /* Find the relocation howto for this relocation. */
d4730f92 10378 howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, r_type, !rel_reloc);
ab96bf03
AM
10379
10380 r_symndx = ELF_R_SYM (input_bfd, rel->r_info);
749b8d9d 10381 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
020d7251 10382 if (mips_elf_local_relocation_p (input_bfd, rel, local_sections))
749b8d9d
L
10383 {
10384 sec = local_sections[r_symndx];
10385 h = NULL;
10386 }
ab96bf03
AM
10387 else
10388 {
ab96bf03 10389 unsigned long extsymoff;
ab96bf03 10390
ab96bf03
AM
10391 extsymoff = 0;
10392 if (!elf_bad_symtab (input_bfd))
10393 extsymoff = symtab_hdr->sh_info;
10394 h = elf_sym_hashes (input_bfd) [r_symndx - extsymoff];
10395 while (h->root.type == bfd_link_hash_indirect
10396 || h->root.type == bfd_link_hash_warning)
10397 h = (struct elf_link_hash_entry *) h->root.u.i.link;
10398
10399 sec = NULL;
10400 if (h->root.type == bfd_link_hash_defined
10401 || h->root.type == bfd_link_hash_defweak)
10402 sec = h->root.u.def.section;
10403 }
10404
dbaa2011 10405 if (sec != NULL && discarded_section (sec))
545fd46b
MR
10406 {
10407 mips_reloc_against_discarded_section (output_bfd, info, input_bfd,
10408 input_section, &rel, &relend,
10409 rel_reloc, howto, contents);
10410 continue;
10411 }
ab96bf03 10412
4a14403c 10413 if (r_type == R_MIPS_64 && ! NEWABI_P (input_bfd))
b49e97c9
TS
10414 {
10415 /* Some 32-bit code uses R_MIPS_64. In particular, people use
10416 64-bit code, but make sure all their addresses are in the
10417 lowermost or uppermost 32-bit section of the 64-bit address
10418 space. Thus, when they use an R_MIPS_64 they mean what is
10419 usually meant by R_MIPS_32, with the exception that the
10420 stored value is sign-extended to 64 bits. */
b34976b6 10421 howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, R_MIPS_32, FALSE);
b49e97c9
TS
10422
10423 /* On big-endian systems, we need to lie about the position
10424 of the reloc. */
10425 if (bfd_big_endian (input_bfd))
10426 rel->r_offset += 4;
10427 }
b49e97c9
TS
10428
10429 if (!use_saved_addend_p)
10430 {
b49e97c9
TS
10431 /* If these relocations were originally of the REL variety,
10432 we must pull the addend out of the field that will be
10433 relocated. Otherwise, we simply use the contents of the
c224138d
RS
10434 RELA relocation. */
10435 if (mips_elf_rel_relocation_p (input_bfd, input_section,
10436 relocs, rel))
b49e97c9 10437 {
b34976b6 10438 rela_relocation_p = FALSE;
c224138d
RS
10439 addend = mips_elf_read_rel_addend (input_bfd, rel,
10440 howto, contents);
738e5348
RS
10441 if (hi16_reloc_p (r_type)
10442 || (got16_reloc_p (r_type)
b49e97c9 10443 && mips_elf_local_relocation_p (input_bfd, rel,
020d7251 10444 local_sections)))
b49e97c9 10445 {
c224138d
RS
10446 if (!mips_elf_add_lo16_rel_addend (input_bfd, rel, relend,
10447 contents, &addend))
749b8d9d 10448 {
749b8d9d
L
10449 if (h)
10450 name = h->root.root.string;
10451 else
10452 name = bfd_elf_sym_name (input_bfd, symtab_hdr,
10453 local_syms + r_symndx,
10454 sec);
4eca0228 10455 _bfd_error_handler
695344c0 10456 /* xgettext:c-format */
2c1c9679 10457 (_("%pB: can't find matching LO16 reloc against `%s'"
2dcf00ce 10458 " for %s at %#" PRIx64 " in section `%pA'"),
c08bb8dd 10459 input_bfd, name,
2dcf00ce 10460 howto->name, (uint64_t) rel->r_offset, input_section);
749b8d9d 10461 }
b49e97c9 10462 }
30ac9238
RS
10463 else
10464 addend <<= howto->rightshift;
b49e97c9
TS
10465 }
10466 else
10467 addend = rel->r_addend;
81d43bff
RS
10468 mips_elf_adjust_addend (output_bfd, info, input_bfd,
10469 local_syms, local_sections, rel);
b49e97c9
TS
10470 }
10471
0e1862bb 10472 if (bfd_link_relocatable (info))
b49e97c9 10473 {
4a14403c 10474 if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd)
b49e97c9
TS
10475 && bfd_big_endian (input_bfd))
10476 rel->r_offset -= 4;
10477
81d43bff 10478 if (!rela_relocation_p && rel->r_addend)
5a659663 10479 {
81d43bff 10480 addend += rel->r_addend;
738e5348 10481 if (hi16_reloc_p (r_type) || got16_reloc_p (r_type))
5a659663
TS
10482 addend = mips_elf_high (addend);
10483 else if (r_type == R_MIPS_HIGHER)
10484 addend = mips_elf_higher (addend);
10485 else if (r_type == R_MIPS_HIGHEST)
10486 addend = mips_elf_highest (addend);
30ac9238
RS
10487 else
10488 addend >>= howto->rightshift;
b49e97c9 10489
30ac9238
RS
10490 /* We use the source mask, rather than the destination
10491 mask because the place to which we are writing will be
10492 source of the addend in the final link. */
b49e97c9
TS
10493 addend &= howto->src_mask;
10494
5a659663 10495 if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd))
b49e97c9
TS
10496 /* See the comment above about using R_MIPS_64 in the 32-bit
10497 ABI. Here, we need to update the addend. It would be
10498 possible to get away with just using the R_MIPS_32 reloc
10499 but for endianness. */
10500 {
10501 bfd_vma sign_bits;
10502 bfd_vma low_bits;
10503 bfd_vma high_bits;
10504
10505 if (addend & ((bfd_vma) 1 << 31))
10506#ifdef BFD64
10507 sign_bits = ((bfd_vma) 1 << 32) - 1;
10508#else
10509 sign_bits = -1;
10510#endif
10511 else
10512 sign_bits = 0;
10513
10514 /* If we don't know that we have a 64-bit type,
10515 do two separate stores. */
10516 if (bfd_big_endian (input_bfd))
10517 {
10518 /* Store the sign-bits (which are most significant)
10519 first. */
10520 low_bits = sign_bits;
10521 high_bits = addend;
10522 }
10523 else
10524 {
10525 low_bits = addend;
10526 high_bits = sign_bits;
10527 }
10528 bfd_put_32 (input_bfd, low_bits,
10529 contents + rel->r_offset);
10530 bfd_put_32 (input_bfd, high_bits,
10531 contents + rel->r_offset + 4);
10532 continue;
10533 }
10534
10535 if (! mips_elf_perform_relocation (info, howto, rel, addend,
10536 input_bfd, input_section,
b34976b6
AM
10537 contents, FALSE))
10538 return FALSE;
b49e97c9
TS
10539 }
10540
10541 /* Go on to the next relocation. */
10542 continue;
10543 }
10544
10545 /* In the N32 and 64-bit ABIs there may be multiple consecutive
10546 relocations for the same offset. In that case we are
10547 supposed to treat the output of each relocation as the addend
10548 for the next. */
10549 if (rel + 1 < relend
10550 && rel->r_offset == rel[1].r_offset
10551 && ELF_R_TYPE (input_bfd, rel[1].r_info) != R_MIPS_NONE)
b34976b6 10552 use_saved_addend_p = TRUE;
b49e97c9 10553 else
b34976b6 10554 use_saved_addend_p = FALSE;
b49e97c9
TS
10555
10556 /* Figure out what value we are supposed to relocate. */
10557 switch (mips_elf_calculate_relocation (output_bfd, input_bfd,
47275900
MR
10558 input_section, contents,
10559 info, rel, addend, howto,
10560 local_syms, local_sections,
10561 &value, &name, &cross_mode_jump_p,
bce03d3d 10562 use_saved_addend_p))
b49e97c9
TS
10563 {
10564 case bfd_reloc_continue:
10565 /* There's nothing to do. */
10566 continue;
10567
10568 case bfd_reloc_undefined:
10569 /* mips_elf_calculate_relocation already called the
10570 undefined_symbol callback. There's no real point in
10571 trying to perform the relocation at this point, so we
10572 just skip ahead to the next relocation. */
10573 continue;
10574
10575 case bfd_reloc_notsupported:
10576 msg = _("internal error: unsupported relocation error");
10577 info->callbacks->warning
10578 (info, msg, name, input_bfd, input_section, rel->r_offset);
b34976b6 10579 return FALSE;
b49e97c9
TS
10580
10581 case bfd_reloc_overflow:
10582 if (use_saved_addend_p)
10583 /* Ignore overflow until we reach the last relocation for
10584 a given location. */
10585 ;
10586 else
10587 {
0e53d9da
AN
10588 struct mips_elf_link_hash_table *htab;
10589
10590 htab = mips_elf_hash_table (info);
4dfe6ac6 10591 BFD_ASSERT (htab != NULL);
b49e97c9 10592 BFD_ASSERT (name != NULL);
0e53d9da 10593 if (!htab->small_data_overflow_reported
9684f078 10594 && (gprel16_reloc_p (howto->type)
df58fc94 10595 || literal_reloc_p (howto->type)))
0e53d9da 10596 {
91d6fa6a
NC
10597 msg = _("small-data section exceeds 64KB;"
10598 " lower small-data size limit (see option -G)");
0e53d9da
AN
10599
10600 htab->small_data_overflow_reported = TRUE;
10601 (*info->callbacks->einfo) ("%P: %s\n", msg);
10602 }
1a72702b
AM
10603 (*info->callbacks->reloc_overflow)
10604 (info, NULL, name, howto->name, (bfd_vma) 0,
10605 input_bfd, input_section, rel->r_offset);
b49e97c9
TS
10606 }
10607 break;
10608
10609 case bfd_reloc_ok:
10610 break;
10611
df58fc94 10612 case bfd_reloc_outofrange:
7db9a74e 10613 msg = NULL;
df58fc94 10614 if (jal_reloc_p (howto->type))
9d862524 10615 msg = (cross_mode_jump_p
2c1c9679 10616 ? _("cannot convert a jump to JALX "
9d862524
MR
10617 "for a non-word-aligned address")
10618 : (howto->type == R_MIPS16_26
2c1c9679
AM
10619 ? _("jump to a non-word-aligned address")
10620 : _("jump to a non-instruction-aligned address")));
99aefae6 10621 else if (b_reloc_p (howto->type))
a6ebf616 10622 msg = (cross_mode_jump_p
2c1c9679 10623 ? _("cannot convert a branch to JALX "
a6ebf616 10624 "for a non-word-aligned address")
2c1c9679 10625 : _("branch to a non-instruction-aligned address"));
7db9a74e
MR
10626 else if (aligned_pcrel_reloc_p (howto->type))
10627 msg = _("PC-relative load from unaligned address");
10628 if (msg)
df58fc94 10629 {
de341542 10630 info->callbacks->einfo
ed53407e
MR
10631 ("%X%H: %s\n", input_bfd, input_section, rel->r_offset, msg);
10632 break;
7361da2c 10633 }
df58fc94
RS
10634 /* Fall through. */
10635
b49e97c9
TS
10636 default:
10637 abort ();
10638 break;
10639 }
10640
10641 /* If we've got another relocation for the address, keep going
10642 until we reach the last one. */
10643 if (use_saved_addend_p)
10644 {
10645 addend = value;
10646 continue;
10647 }
10648
4a14403c 10649 if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd))
b49e97c9
TS
10650 /* See the comment above about using R_MIPS_64 in the 32-bit
10651 ABI. Until now, we've been using the HOWTO for R_MIPS_32;
10652 that calculated the right value. Now, however, we
10653 sign-extend the 32-bit result to 64-bits, and store it as a
10654 64-bit value. We are especially generous here in that we
10655 go to extreme lengths to support this usage on systems with
10656 only a 32-bit VMA. */
10657 {
10658 bfd_vma sign_bits;
10659 bfd_vma low_bits;
10660 bfd_vma high_bits;
10661
10662 if (value & ((bfd_vma) 1 << 31))
10663#ifdef BFD64
10664 sign_bits = ((bfd_vma) 1 << 32) - 1;
10665#else
10666 sign_bits = -1;
10667#endif
10668 else
10669 sign_bits = 0;
10670
10671 /* If we don't know that we have a 64-bit type,
10672 do two separate stores. */
10673 if (bfd_big_endian (input_bfd))
10674 {
10675 /* Undo what we did above. */
10676 rel->r_offset -= 4;
10677 /* Store the sign-bits (which are most significant)
10678 first. */
10679 low_bits = sign_bits;
10680 high_bits = value;
10681 }
10682 else
10683 {
10684 low_bits = value;
10685 high_bits = sign_bits;
10686 }
10687 bfd_put_32 (input_bfd, low_bits,
10688 contents + rel->r_offset);
10689 bfd_put_32 (input_bfd, high_bits,
10690 contents + rel->r_offset + 4);
10691 continue;
10692 }
10693
10694 /* Actually perform the relocation. */
10695 if (! mips_elf_perform_relocation (info, howto, rel, value,
10696 input_bfd, input_section,
38a7df63 10697 contents, cross_mode_jump_p))
b34976b6 10698 return FALSE;
b49e97c9
TS
10699 }
10700
b34976b6 10701 return TRUE;
b49e97c9
TS
10702}
10703\f
861fb55a
DJ
10704/* A function that iterates over each entry in la25_stubs and fills
10705 in the code for each one. DATA points to a mips_htab_traverse_info. */
10706
10707static int
10708mips_elf_create_la25_stub (void **slot, void *data)
10709{
10710 struct mips_htab_traverse_info *hti;
10711 struct mips_elf_link_hash_table *htab;
10712 struct mips_elf_la25_stub *stub;
10713 asection *s;
10714 bfd_byte *loc;
10715 bfd_vma offset, target, target_high, target_low;
3734320d
MF
10716 bfd_vma branch_pc;
10717 bfd_signed_vma pcrel_offset = 0;
861fb55a
DJ
10718
10719 stub = (struct mips_elf_la25_stub *) *slot;
10720 hti = (struct mips_htab_traverse_info *) data;
10721 htab = mips_elf_hash_table (hti->info);
4dfe6ac6 10722 BFD_ASSERT (htab != NULL);
861fb55a
DJ
10723
10724 /* Create the section contents, if we haven't already. */
10725 s = stub->stub_section;
10726 loc = s->contents;
10727 if (loc == NULL)
10728 {
10729 loc = bfd_malloc (s->size);
10730 if (loc == NULL)
10731 {
10732 hti->error = TRUE;
10733 return FALSE;
10734 }
10735 s->contents = loc;
10736 }
10737
10738 /* Work out where in the section this stub should go. */
10739 offset = stub->offset;
10740
3734320d
MF
10741 /* We add 8 here to account for the LUI/ADDIU instructions
10742 before the branch instruction. This cannot be moved down to
10743 where pcrel_offset is calculated as 's' is updated in
10744 mips_elf_get_la25_target. */
10745 branch_pc = s->output_section->vma + s->output_offset + offset + 8;
10746
861fb55a 10747 /* Work out the target address. */
8f0c309a
CLT
10748 target = mips_elf_get_la25_target (stub, &s);
10749 target += s->output_section->vma + s->output_offset;
10750
861fb55a
DJ
10751 target_high = ((target + 0x8000) >> 16) & 0xffff;
10752 target_low = (target & 0xffff);
10753
3734320d
MF
10754 /* Calculate the PC of the compact branch instruction (for the case where
10755 compact branches are used for either microMIPSR6 or MIPSR6 with
10756 compact branches. Add 4-bytes to account for BC using the PC of the
10757 next instruction as the base. */
10758 pcrel_offset = target - (branch_pc + 4);
10759
861fb55a
DJ
10760 if (stub->stub_section != htab->strampoline)
10761 {
df58fc94 10762 /* This is a simple LUI/ADDIU stub. Zero out the beginning
861fb55a
DJ
10763 of the section and write the two instructions at the end. */
10764 memset (loc, 0, offset);
10765 loc += offset;
df58fc94
RS
10766 if (ELF_ST_IS_MICROMIPS (stub->h->root.other))
10767 {
d21911ea
MR
10768 bfd_put_micromips_32 (hti->output_bfd,
10769 LA25_LUI_MICROMIPS (target_high),
10770 loc);
10771 bfd_put_micromips_32 (hti->output_bfd,
10772 LA25_ADDIU_MICROMIPS (target_low),
10773 loc + 4);
df58fc94
RS
10774 }
10775 else
10776 {
10777 bfd_put_32 (hti->output_bfd, LA25_LUI (target_high), loc);
10778 bfd_put_32 (hti->output_bfd, LA25_ADDIU (target_low), loc + 4);
10779 }
861fb55a
DJ
10780 }
10781 else
10782 {
10783 /* This is trampoline. */
10784 loc += offset;
df58fc94
RS
10785 if (ELF_ST_IS_MICROMIPS (stub->h->root.other))
10786 {
d21911ea
MR
10787 bfd_put_micromips_32 (hti->output_bfd,
10788 LA25_LUI_MICROMIPS (target_high), loc);
10789 bfd_put_micromips_32 (hti->output_bfd,
10790 LA25_J_MICROMIPS (target), loc + 4);
10791 bfd_put_micromips_32 (hti->output_bfd,
10792 LA25_ADDIU_MICROMIPS (target_low), loc + 8);
df58fc94
RS
10793 bfd_put_32 (hti->output_bfd, 0, loc + 12);
10794 }
10795 else
10796 {
10797 bfd_put_32 (hti->output_bfd, LA25_LUI (target_high), loc);
3734320d
MF
10798 if (MIPSR6_P (hti->output_bfd) && htab->compact_branches)
10799 {
10800 bfd_put_32 (hti->output_bfd, LA25_ADDIU (target_low), loc + 4);
10801 bfd_put_32 (hti->output_bfd, LA25_BC (pcrel_offset), loc + 8);
10802 }
10803 else
10804 {
10805 bfd_put_32 (hti->output_bfd, LA25_J (target), loc + 4);
10806 bfd_put_32 (hti->output_bfd, LA25_ADDIU (target_low), loc + 8);
10807 }
df58fc94
RS
10808 bfd_put_32 (hti->output_bfd, 0, loc + 12);
10809 }
861fb55a
DJ
10810 }
10811 return TRUE;
10812}
10813
b49e97c9
TS
10814/* If NAME is one of the special IRIX6 symbols defined by the linker,
10815 adjust it appropriately now. */
10816
10817static void
9719ad41
RS
10818mips_elf_irix6_finish_dynamic_symbol (bfd *abfd ATTRIBUTE_UNUSED,
10819 const char *name, Elf_Internal_Sym *sym)
b49e97c9
TS
10820{
10821 /* The linker script takes care of providing names and values for
10822 these, but we must place them into the right sections. */
10823 static const char* const text_section_symbols[] = {
10824 "_ftext",
10825 "_etext",
10826 "__dso_displacement",
10827 "__elf_header",
10828 "__program_header_table",
10829 NULL
10830 };
10831
10832 static const char* const data_section_symbols[] = {
10833 "_fdata",
10834 "_edata",
10835 "_end",
10836 "_fbss",
10837 NULL
10838 };
10839
10840 const char* const *p;
10841 int i;
10842
10843 for (i = 0; i < 2; ++i)
10844 for (p = (i == 0) ? text_section_symbols : data_section_symbols;
10845 *p;
10846 ++p)
10847 if (strcmp (*p, name) == 0)
10848 {
10849 /* All of these symbols are given type STT_SECTION by the
10850 IRIX6 linker. */
10851 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
e10609d3 10852 sym->st_other = STO_PROTECTED;
b49e97c9
TS
10853
10854 /* The IRIX linker puts these symbols in special sections. */
10855 if (i == 0)
10856 sym->st_shndx = SHN_MIPS_TEXT;
10857 else
10858 sym->st_shndx = SHN_MIPS_DATA;
10859
10860 break;
10861 }
10862}
10863
10864/* Finish up dynamic symbol handling. We set the contents of various
10865 dynamic sections here. */
10866
b34976b6 10867bfd_boolean
9719ad41
RS
10868_bfd_mips_elf_finish_dynamic_symbol (bfd *output_bfd,
10869 struct bfd_link_info *info,
10870 struct elf_link_hash_entry *h,
10871 Elf_Internal_Sym *sym)
b49e97c9
TS
10872{
10873 bfd *dynobj;
b49e97c9 10874 asection *sgot;
f4416af6 10875 struct mips_got_info *g, *gg;
b49e97c9 10876 const char *name;
3d6746ca 10877 int idx;
5108fc1b 10878 struct mips_elf_link_hash_table *htab;
738e5348 10879 struct mips_elf_link_hash_entry *hmips;
b49e97c9 10880
5108fc1b 10881 htab = mips_elf_hash_table (info);
4dfe6ac6 10882 BFD_ASSERT (htab != NULL);
b49e97c9 10883 dynobj = elf_hash_table (info)->dynobj;
738e5348 10884 hmips = (struct mips_elf_link_hash_entry *) h;
b49e97c9 10885
90c14f0c 10886 BFD_ASSERT (htab->root.target_os != is_vxworks);
861fb55a 10887
1bbce132
MR
10888 if (h->plt.plist != NULL
10889 && (h->plt.plist->mips_offset != MINUS_ONE
10890 || h->plt.plist->comp_offset != MINUS_ONE))
861fb55a
DJ
10891 {
10892 /* We've decided to create a PLT entry for this symbol. */
10893 bfd_byte *loc;
1bbce132 10894 bfd_vma header_address, got_address;
861fb55a 10895 bfd_vma got_address_high, got_address_low, load;
1bbce132
MR
10896 bfd_vma got_index;
10897 bfd_vma isa_bit;
10898
10899 got_index = h->plt.plist->gotplt_index;
861fb55a
DJ
10900
10901 BFD_ASSERT (htab->use_plts_and_copy_relocs);
10902 BFD_ASSERT (h->dynindx != -1);
ce558b89 10903 BFD_ASSERT (htab->root.splt != NULL);
1bbce132 10904 BFD_ASSERT (got_index != MINUS_ONE);
861fb55a
DJ
10905 BFD_ASSERT (!h->def_regular);
10906
10907 /* Calculate the address of the PLT header. */
1bbce132 10908 isa_bit = htab->plt_header_is_comp;
ce558b89
AM
10909 header_address = (htab->root.splt->output_section->vma
10910 + htab->root.splt->output_offset + isa_bit);
861fb55a
DJ
10911
10912 /* Calculate the address of the .got.plt entry. */
ce558b89
AM
10913 got_address = (htab->root.sgotplt->output_section->vma
10914 + htab->root.sgotplt->output_offset
1bbce132
MR
10915 + got_index * MIPS_ELF_GOT_SIZE (dynobj));
10916
861fb55a
DJ
10917 got_address_high = ((got_address + 0x8000) >> 16) & 0xffff;
10918 got_address_low = got_address & 0xffff;
10919
789ff5b6
MR
10920 /* The PLT sequence is not safe for N64 if .got.plt entry's address
10921 cannot be loaded in two instructions. */
10922 if (ABI_64_P (output_bfd)
10923 && ((got_address + 0x80008000) & ~(bfd_vma) 0xffffffff) != 0)
10924 {
10925 _bfd_error_handler
10926 /* xgettext:c-format */
10927 (_("%pB: `%pA' entry VMA of %#" PRIx64 " outside the 32-bit range "
10928 "supported; consider using `-Ttext-segment=...'"),
10929 output_bfd,
10930 htab->root.sgotplt->output_section,
10931 (int64_t) got_address);
10932 bfd_set_error (bfd_error_no_error);
10933 return FALSE;
10934 }
10935
861fb55a 10936 /* Initially point the .got.plt entry at the PLT header. */
6a382bce
MR
10937 loc = (htab->root.sgotplt->contents
10938 + got_index * MIPS_ELF_GOT_SIZE (dynobj));
861fb55a
DJ
10939 if (ABI_64_P (output_bfd))
10940 bfd_put_64 (output_bfd, header_address, loc);
10941 else
10942 bfd_put_32 (output_bfd, header_address, loc);
10943
1bbce132 10944 /* Now handle the PLT itself. First the standard entry (the order
07d6d2b8 10945 does not matter, we just have to pick one). */
1bbce132
MR
10946 if (h->plt.plist->mips_offset != MINUS_ONE)
10947 {
10948 const bfd_vma *plt_entry;
10949 bfd_vma plt_offset;
861fb55a 10950
1bbce132 10951 plt_offset = htab->plt_header_size + h->plt.plist->mips_offset;
861fb55a 10952
ce558b89 10953 BFD_ASSERT (plt_offset <= htab->root.splt->size);
6d30f5b2 10954
1bbce132 10955 /* Find out where the .plt entry should go. */
ce558b89 10956 loc = htab->root.splt->contents + plt_offset;
1bbce132
MR
10957
10958 /* Pick the load opcode. */
10959 load = MIPS_ELF_LOAD_WORD (output_bfd);
10960
10961 /* Fill in the PLT entry itself. */
7361da2c
AB
10962
10963 if (MIPSR6_P (output_bfd))
3734320d
MF
10964 plt_entry = htab->compact_branches ? mipsr6_exec_plt_entry_compact
10965 : mipsr6_exec_plt_entry;
7361da2c
AB
10966 else
10967 plt_entry = mips_exec_plt_entry;
1bbce132
MR
10968 bfd_put_32 (output_bfd, plt_entry[0] | got_address_high, loc);
10969 bfd_put_32 (output_bfd, plt_entry[1] | got_address_low | load,
10970 loc + 4);
10971
3734320d
MF
10972 if (! LOAD_INTERLOCKS_P (output_bfd)
10973 || (MIPSR6_P (output_bfd) && htab->compact_branches))
1bbce132
MR
10974 {
10975 bfd_put_32 (output_bfd, plt_entry[2] | got_address_low, loc + 8);
10976 bfd_put_32 (output_bfd, plt_entry[3], loc + 12);
10977 }
10978 else
10979 {
10980 bfd_put_32 (output_bfd, plt_entry[3], loc + 8);
10981 bfd_put_32 (output_bfd, plt_entry[2] | got_address_low,
10982 loc + 12);
10983 }
6d30f5b2 10984 }
1bbce132
MR
10985
10986 /* Now the compressed entry. They come after any standard ones. */
10987 if (h->plt.plist->comp_offset != MINUS_ONE)
6d30f5b2 10988 {
1bbce132
MR
10989 bfd_vma plt_offset;
10990
10991 plt_offset = (htab->plt_header_size + htab->plt_mips_offset
10992 + h->plt.plist->comp_offset);
10993
ce558b89 10994 BFD_ASSERT (plt_offset <= htab->root.splt->size);
1bbce132
MR
10995
10996 /* Find out where the .plt entry should go. */
ce558b89 10997 loc = htab->root.splt->contents + plt_offset;
1bbce132
MR
10998
10999 /* Fill in the PLT entry itself. */
833794fc
MR
11000 if (!MICROMIPS_P (output_bfd))
11001 {
11002 const bfd_vma *plt_entry = mips16_o32_exec_plt_entry;
11003
11004 bfd_put_16 (output_bfd, plt_entry[0], loc);
11005 bfd_put_16 (output_bfd, plt_entry[1], loc + 2);
11006 bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
11007 bfd_put_16 (output_bfd, plt_entry[3], loc + 6);
11008 bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
11009 bfd_put_16 (output_bfd, plt_entry[5], loc + 10);
11010 bfd_put_32 (output_bfd, got_address, loc + 12);
11011 }
11012 else if (htab->insn32)
11013 {
11014 const bfd_vma *plt_entry = micromips_insn32_o32_exec_plt_entry;
11015
11016 bfd_put_16 (output_bfd, plt_entry[0], loc);
11017 bfd_put_16 (output_bfd, got_address_high, loc + 2);
11018 bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
11019 bfd_put_16 (output_bfd, got_address_low, loc + 6);
11020 bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
11021 bfd_put_16 (output_bfd, plt_entry[5], loc + 10);
11022 bfd_put_16 (output_bfd, plt_entry[6], loc + 12);
11023 bfd_put_16 (output_bfd, got_address_low, loc + 14);
11024 }
11025 else
1bbce132
MR
11026 {
11027 const bfd_vma *plt_entry = micromips_o32_exec_plt_entry;
11028 bfd_signed_vma gotpc_offset;
11029 bfd_vma loc_address;
11030
11031 BFD_ASSERT (got_address % 4 == 0);
11032
ce558b89
AM
11033 loc_address = (htab->root.splt->output_section->vma
11034 + htab->root.splt->output_offset + plt_offset);
1bbce132
MR
11035 gotpc_offset = got_address - ((loc_address | 3) ^ 3);
11036
11037 /* ADDIUPC has a span of +/-16MB, check we're in range. */
11038 if (gotpc_offset + 0x1000000 >= 0x2000000)
11039 {
4eca0228 11040 _bfd_error_handler
695344c0 11041 /* xgettext:c-format */
2dcf00ce 11042 (_("%pB: `%pA' offset of %" PRId64 " from `%pA' "
1bbce132
MR
11043 "beyond the range of ADDIUPC"),
11044 output_bfd,
ce558b89 11045 htab->root.sgotplt->output_section,
2dcf00ce 11046 (int64_t) gotpc_offset,
c08bb8dd 11047 htab->root.splt->output_section);
1bbce132
MR
11048 bfd_set_error (bfd_error_no_error);
11049 return FALSE;
11050 }
11051 bfd_put_16 (output_bfd,
11052 plt_entry[0] | ((gotpc_offset >> 18) & 0x7f), loc);
11053 bfd_put_16 (output_bfd, (gotpc_offset >> 2) & 0xffff, loc + 2);
11054 bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
11055 bfd_put_16 (output_bfd, plt_entry[3], loc + 6);
11056 bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
11057 bfd_put_16 (output_bfd, plt_entry[5], loc + 10);
11058 }
6d30f5b2 11059 }
861fb55a
DJ
11060
11061 /* Emit an R_MIPS_JUMP_SLOT relocation against the .got.plt entry. */
ce558b89 11062 mips_elf_output_dynamic_relocation (output_bfd, htab->root.srelplt,
1bbce132 11063 got_index - 2, h->dynindx,
861fb55a
DJ
11064 R_MIPS_JUMP_SLOT, got_address);
11065
11066 /* We distinguish between PLT entries and lazy-binding stubs by
11067 giving the former an st_other value of STO_MIPS_PLT. Set the
11068 flag and leave the value if there are any relocations in the
11069 binary where pointer equality matters. */
11070 sym->st_shndx = SHN_UNDEF;
11071 if (h->pointer_equality_needed)
1bbce132 11072 sym->st_other = ELF_ST_SET_MIPS_PLT (sym->st_other);
861fb55a 11073 else
1bbce132
MR
11074 {
11075 sym->st_value = 0;
11076 sym->st_other = 0;
11077 }
861fb55a 11078 }
1bbce132
MR
11079
11080 if (h->plt.plist != NULL && h->plt.plist->stub_offset != MINUS_ONE)
b49e97c9 11081 {
861fb55a 11082 /* We've decided to create a lazy-binding stub. */
1bbce132
MR
11083 bfd_boolean micromips_p = MICROMIPS_P (output_bfd);
11084 unsigned int other = micromips_p ? STO_MICROMIPS : 0;
11085 bfd_vma stub_size = htab->function_stub_size;
5108fc1b 11086 bfd_byte stub[MIPS_FUNCTION_STUB_BIG_SIZE];
1bbce132
MR
11087 bfd_vma isa_bit = micromips_p;
11088 bfd_vma stub_big_size;
11089
833794fc 11090 if (!micromips_p)
1bbce132 11091 stub_big_size = MIPS_FUNCTION_STUB_BIG_SIZE;
833794fc
MR
11092 else if (htab->insn32)
11093 stub_big_size = MICROMIPS_INSN32_FUNCTION_STUB_BIG_SIZE;
11094 else
11095 stub_big_size = MICROMIPS_FUNCTION_STUB_BIG_SIZE;
b49e97c9
TS
11096
11097 /* This symbol has a stub. Set it up. */
11098
11099 BFD_ASSERT (h->dynindx != -1);
11100
1bbce132 11101 BFD_ASSERT (stub_size == stub_big_size || h->dynindx <= 0xffff);
3d6746ca
DD
11102
11103 /* Values up to 2^31 - 1 are allowed. Larger values would cause
5108fc1b
RS
11104 sign extension at runtime in the stub, resulting in a negative
11105 index value. */
11106 if (h->dynindx & ~0x7fffffff)
b34976b6 11107 return FALSE;
b49e97c9
TS
11108
11109 /* Fill the stub. */
1bbce132
MR
11110 if (micromips_p)
11111 {
11112 idx = 0;
11113 bfd_put_micromips_32 (output_bfd, STUB_LW_MICROMIPS (output_bfd),
11114 stub + idx);
11115 idx += 4;
833794fc
MR
11116 if (htab->insn32)
11117 {
11118 bfd_put_micromips_32 (output_bfd,
40fc1451 11119 STUB_MOVE32_MICROMIPS, stub + idx);
833794fc
MR
11120 idx += 4;
11121 }
11122 else
11123 {
11124 bfd_put_16 (output_bfd, STUB_MOVE_MICROMIPS, stub + idx);
11125 idx += 2;
11126 }
1bbce132
MR
11127 if (stub_size == stub_big_size)
11128 {
11129 long dynindx_hi = (h->dynindx >> 16) & 0x7fff;
11130
11131 bfd_put_micromips_32 (output_bfd,
11132 STUB_LUI_MICROMIPS (dynindx_hi),
11133 stub + idx);
11134 idx += 4;
11135 }
833794fc
MR
11136 if (htab->insn32)
11137 {
11138 bfd_put_micromips_32 (output_bfd, STUB_JALR32_MICROMIPS,
11139 stub + idx);
11140 idx += 4;
11141 }
11142 else
11143 {
11144 bfd_put_16 (output_bfd, STUB_JALR_MICROMIPS, stub + idx);
11145 idx += 2;
11146 }
1bbce132
MR
11147
11148 /* If a large stub is not required and sign extension is not a
11149 problem, then use legacy code in the stub. */
11150 if (stub_size == stub_big_size)
11151 bfd_put_micromips_32 (output_bfd,
11152 STUB_ORI_MICROMIPS (h->dynindx & 0xffff),
11153 stub + idx);
11154 else if (h->dynindx & ~0x7fff)
11155 bfd_put_micromips_32 (output_bfd,
11156 STUB_LI16U_MICROMIPS (h->dynindx & 0xffff),
11157 stub + idx);
11158 else
11159 bfd_put_micromips_32 (output_bfd,
11160 STUB_LI16S_MICROMIPS (output_bfd,
11161 h->dynindx),
11162 stub + idx);
11163 }
3d6746ca 11164 else
1bbce132
MR
11165 {
11166 idx = 0;
11167 bfd_put_32 (output_bfd, STUB_LW (output_bfd), stub + idx);
11168 idx += 4;
40fc1451 11169 bfd_put_32 (output_bfd, STUB_MOVE, stub + idx);
1bbce132
MR
11170 idx += 4;
11171 if (stub_size == stub_big_size)
11172 {
11173 bfd_put_32 (output_bfd, STUB_LUI ((h->dynindx >> 16) & 0x7fff),
11174 stub + idx);
11175 idx += 4;
11176 }
3734320d
MF
11177
11178 if (!(MIPSR6_P (output_bfd) && htab->compact_branches))
11179 {
11180 bfd_put_32 (output_bfd, STUB_JALR, stub + idx);
11181 idx += 4;
11182 }
1bbce132
MR
11183
11184 /* If a large stub is not required and sign extension is not a
11185 problem, then use legacy code in the stub. */
11186 if (stub_size == stub_big_size)
11187 bfd_put_32 (output_bfd, STUB_ORI (h->dynindx & 0xffff),
11188 stub + idx);
11189 else if (h->dynindx & ~0x7fff)
11190 bfd_put_32 (output_bfd, STUB_LI16U (h->dynindx & 0xffff),
11191 stub + idx);
11192 else
11193 bfd_put_32 (output_bfd, STUB_LI16S (output_bfd, h->dynindx),
11194 stub + idx);
3734320d
MF
11195 idx += 4;
11196
11197 if (MIPSR6_P (output_bfd) && htab->compact_branches)
11198 bfd_put_32 (output_bfd, STUB_JALRC, stub + idx);
1bbce132 11199 }
5108fc1b 11200
1bbce132
MR
11201 BFD_ASSERT (h->plt.plist->stub_offset <= htab->sstubs->size);
11202 memcpy (htab->sstubs->contents + h->plt.plist->stub_offset,
11203 stub, stub_size);
b49e97c9 11204
1bbce132 11205 /* Mark the symbol as undefined. stub_offset != -1 occurs
b49e97c9
TS
11206 only for the referenced symbol. */
11207 sym->st_shndx = SHN_UNDEF;
11208
11209 /* The run-time linker uses the st_value field of the symbol
11210 to reset the global offset table entry for this external
11211 to its stub address when unlinking a shared object. */
4e41d0d7
RS
11212 sym->st_value = (htab->sstubs->output_section->vma
11213 + htab->sstubs->output_offset
1bbce132
MR
11214 + h->plt.plist->stub_offset
11215 + isa_bit);
11216 sym->st_other = other;
b49e97c9
TS
11217 }
11218
738e5348
RS
11219 /* If we have a MIPS16 function with a stub, the dynamic symbol must
11220 refer to the stub, since only the stub uses the standard calling
11221 conventions. */
11222 if (h->dynindx != -1 && hmips->fn_stub != NULL)
11223 {
11224 BFD_ASSERT (hmips->need_fn_stub);
11225 sym->st_value = (hmips->fn_stub->output_section->vma
11226 + hmips->fn_stub->output_offset);
11227 sym->st_size = hmips->fn_stub->size;
11228 sym->st_other = ELF_ST_VISIBILITY (sym->st_other);
11229 }
11230
b49e97c9 11231 BFD_ASSERT (h->dynindx != -1
f5385ebf 11232 || h->forced_local);
b49e97c9 11233
ce558b89 11234 sgot = htab->root.sgot;
a8028dd0 11235 g = htab->got_info;
b49e97c9
TS
11236 BFD_ASSERT (g != NULL);
11237
11238 /* Run through the global symbol table, creating GOT entries for all
11239 the symbols that need them. */
020d7251 11240 if (hmips->global_got_area != GGA_NONE)
b49e97c9
TS
11241 {
11242 bfd_vma offset;
11243 bfd_vma value;
11244
6eaa6adc 11245 value = sym->st_value;
13fbec83 11246 offset = mips_elf_primary_global_got_index (output_bfd, info, h);
b49e97c9
TS
11247 MIPS_ELF_PUT_WORD (output_bfd, value, sgot->contents + offset);
11248 }
11249
e641e783 11250 if (hmips->global_got_area != GGA_NONE && g->next)
f4416af6
AO
11251 {
11252 struct mips_got_entry e, *p;
0626d451 11253 bfd_vma entry;
f4416af6 11254 bfd_vma offset;
f4416af6
AO
11255
11256 gg = g;
11257
11258 e.abfd = output_bfd;
11259 e.symndx = -1;
738e5348 11260 e.d.h = hmips;
9ab066b4 11261 e.tls_type = GOT_TLS_NONE;
143d77c5 11262
f4416af6
AO
11263 for (g = g->next; g->next != gg; g = g->next)
11264 {
11265 if (g->got_entries
11266 && (p = (struct mips_got_entry *) htab_find (g->got_entries,
11267 &e)))
11268 {
11269 offset = p->gotidx;
ce558b89 11270 BFD_ASSERT (offset > 0 && offset < htab->root.sgot->size);
0e1862bb 11271 if (bfd_link_pic (info)
0626d451
RS
11272 || (elf_hash_table (info)->dynamic_sections_created
11273 && p->d.h != NULL
f5385ebf
AM
11274 && p->d.h->root.def_dynamic
11275 && !p->d.h->root.def_regular))
0626d451
RS
11276 {
11277 /* Create an R_MIPS_REL32 relocation for this entry. Due to
11278 the various compatibility problems, it's easier to mock
11279 up an R_MIPS_32 or R_MIPS_64 relocation and leave
11280 mips_elf_create_dynamic_relocation to calculate the
11281 appropriate addend. */
11282 Elf_Internal_Rela rel[3];
11283
11284 memset (rel, 0, sizeof (rel));
11285 if (ABI_64_P (output_bfd))
11286 rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_64);
11287 else
11288 rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_32);
11289 rel[0].r_offset = rel[1].r_offset = rel[2].r_offset = offset;
11290
11291 entry = 0;
11292 if (! (mips_elf_create_dynamic_relocation
11293 (output_bfd, info, rel,
11294 e.d.h, NULL, sym->st_value, &entry, sgot)))
11295 return FALSE;
11296 }
11297 else
11298 entry = sym->st_value;
11299 MIPS_ELF_PUT_WORD (output_bfd, entry, sgot->contents + offset);
f4416af6
AO
11300 }
11301 }
11302 }
11303
b49e97c9
TS
11304 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
11305 name = h->root.root.string;
9637f6ef 11306 if (h == elf_hash_table (info)->hdynamic
22edb2f1 11307 || h == elf_hash_table (info)->hgot)
b49e97c9
TS
11308 sym->st_shndx = SHN_ABS;
11309 else if (strcmp (name, "_DYNAMIC_LINK") == 0
11310 || strcmp (name, "_DYNAMIC_LINKING") == 0)
11311 {
11312 sym->st_shndx = SHN_ABS;
11313 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
11314 sym->st_value = 1;
11315 }
b49e97c9
TS
11316 else if (SGI_COMPAT (output_bfd))
11317 {
11318 if (strcmp (name, mips_elf_dynsym_rtproc_names[0]) == 0
11319 || strcmp (name, mips_elf_dynsym_rtproc_names[1]) == 0)
11320 {
11321 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
11322 sym->st_other = STO_PROTECTED;
11323 sym->st_value = 0;
11324 sym->st_shndx = SHN_MIPS_DATA;
11325 }
11326 else if (strcmp (name, mips_elf_dynsym_rtproc_names[2]) == 0)
11327 {
11328 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
11329 sym->st_other = STO_PROTECTED;
11330 sym->st_value = mips_elf_hash_table (info)->procedure_count;
11331 sym->st_shndx = SHN_ABS;
11332 }
11333 else if (sym->st_shndx != SHN_UNDEF && sym->st_shndx != SHN_ABS)
11334 {
11335 if (h->type == STT_FUNC)
11336 sym->st_shndx = SHN_MIPS_TEXT;
11337 else if (h->type == STT_OBJECT)
11338 sym->st_shndx = SHN_MIPS_DATA;
11339 }
11340 }
11341
861fb55a
DJ
11342 /* Emit a copy reloc, if needed. */
11343 if (h->needs_copy)
11344 {
11345 asection *s;
11346 bfd_vma symval;
11347
11348 BFD_ASSERT (h->dynindx != -1);
11349 BFD_ASSERT (htab->use_plts_and_copy_relocs);
11350
11351 s = mips_elf_rel_dyn_section (info, FALSE);
11352 symval = (h->root.u.def.section->output_section->vma
11353 + h->root.u.def.section->output_offset
11354 + h->root.u.def.value);
11355 mips_elf_output_dynamic_relocation (output_bfd, s, s->reloc_count++,
11356 h->dynindx, R_MIPS_COPY, symval);
11357 }
11358
b49e97c9
TS
11359 /* Handle the IRIX6-specific symbols. */
11360 if (IRIX_COMPAT (output_bfd) == ict_irix6)
11361 mips_elf_irix6_finish_dynamic_symbol (output_bfd, name, sym);
11362
cbf8d970
MR
11363 /* Keep dynamic compressed symbols odd. This allows the dynamic linker
11364 to treat compressed symbols like any other. */
30c09090 11365 if (ELF_ST_IS_MIPS16 (sym->st_other))
738e5348
RS
11366 {
11367 BFD_ASSERT (sym->st_value & 1);
11368 sym->st_other -= STO_MIPS16;
11369 }
cbf8d970
MR
11370 else if (ELF_ST_IS_MICROMIPS (sym->st_other))
11371 {
11372 BFD_ASSERT (sym->st_value & 1);
11373 sym->st_other -= STO_MICROMIPS;
11374 }
b49e97c9 11375
b34976b6 11376 return TRUE;
b49e97c9
TS
11377}
11378
0a44bf69
RS
11379/* Likewise, for VxWorks. */
11380
11381bfd_boolean
11382_bfd_mips_vxworks_finish_dynamic_symbol (bfd *output_bfd,
11383 struct bfd_link_info *info,
11384 struct elf_link_hash_entry *h,
11385 Elf_Internal_Sym *sym)
11386{
11387 bfd *dynobj;
11388 asection *sgot;
11389 struct mips_got_info *g;
11390 struct mips_elf_link_hash_table *htab;
020d7251 11391 struct mips_elf_link_hash_entry *hmips;
0a44bf69
RS
11392
11393 htab = mips_elf_hash_table (info);
4dfe6ac6 11394 BFD_ASSERT (htab != NULL);
0a44bf69 11395 dynobj = elf_hash_table (info)->dynobj;
020d7251 11396 hmips = (struct mips_elf_link_hash_entry *) h;
0a44bf69 11397
1bbce132 11398 if (h->plt.plist != NULL && h->plt.plist->mips_offset != MINUS_ONE)
0a44bf69 11399 {
6d79d2ed 11400 bfd_byte *loc;
1bbce132 11401 bfd_vma plt_address, got_address, got_offset, branch_offset;
0a44bf69
RS
11402 Elf_Internal_Rela rel;
11403 static const bfd_vma *plt_entry;
1bbce132
MR
11404 bfd_vma gotplt_index;
11405 bfd_vma plt_offset;
11406
11407 plt_offset = htab->plt_header_size + h->plt.plist->mips_offset;
11408 gotplt_index = h->plt.plist->gotplt_index;
0a44bf69
RS
11409
11410 BFD_ASSERT (h->dynindx != -1);
ce558b89 11411 BFD_ASSERT (htab->root.splt != NULL);
1bbce132 11412 BFD_ASSERT (gotplt_index != MINUS_ONE);
ce558b89 11413 BFD_ASSERT (plt_offset <= htab->root.splt->size);
0a44bf69
RS
11414
11415 /* Calculate the address of the .plt entry. */
ce558b89
AM
11416 plt_address = (htab->root.splt->output_section->vma
11417 + htab->root.splt->output_offset
1bbce132 11418 + plt_offset);
0a44bf69
RS
11419
11420 /* Calculate the address of the .got.plt entry. */
ce558b89
AM
11421 got_address = (htab->root.sgotplt->output_section->vma
11422 + htab->root.sgotplt->output_offset
1bbce132 11423 + gotplt_index * MIPS_ELF_GOT_SIZE (output_bfd));
0a44bf69
RS
11424
11425 /* Calculate the offset of the .got.plt entry from
11426 _GLOBAL_OFFSET_TABLE_. */
11427 got_offset = mips_elf_gotplt_index (info, h);
11428
11429 /* Calculate the offset for the branch at the start of the PLT
11430 entry. The branch jumps to the beginning of .plt. */
1bbce132 11431 branch_offset = -(plt_offset / 4 + 1) & 0xffff;
0a44bf69
RS
11432
11433 /* Fill in the initial value of the .got.plt entry. */
11434 bfd_put_32 (output_bfd, plt_address,
ce558b89 11435 (htab->root.sgotplt->contents
1bbce132 11436 + gotplt_index * MIPS_ELF_GOT_SIZE (output_bfd)));
0a44bf69
RS
11437
11438 /* Find out where the .plt entry should go. */
ce558b89 11439 loc = htab->root.splt->contents + plt_offset;
0a44bf69 11440
0e1862bb 11441 if (bfd_link_pic (info))
0a44bf69
RS
11442 {
11443 plt_entry = mips_vxworks_shared_plt_entry;
11444 bfd_put_32 (output_bfd, plt_entry[0] | branch_offset, loc);
1bbce132 11445 bfd_put_32 (output_bfd, plt_entry[1] | gotplt_index, loc + 4);
0a44bf69
RS
11446 }
11447 else
11448 {
11449 bfd_vma got_address_high, got_address_low;
11450
11451 plt_entry = mips_vxworks_exec_plt_entry;
11452 got_address_high = ((got_address + 0x8000) >> 16) & 0xffff;
11453 got_address_low = got_address & 0xffff;
11454
11455 bfd_put_32 (output_bfd, plt_entry[0] | branch_offset, loc);
1bbce132 11456 bfd_put_32 (output_bfd, plt_entry[1] | gotplt_index, loc + 4);
0a44bf69
RS
11457 bfd_put_32 (output_bfd, plt_entry[2] | got_address_high, loc + 8);
11458 bfd_put_32 (output_bfd, plt_entry[3] | got_address_low, loc + 12);
11459 bfd_put_32 (output_bfd, plt_entry[4], loc + 16);
11460 bfd_put_32 (output_bfd, plt_entry[5], loc + 20);
11461 bfd_put_32 (output_bfd, plt_entry[6], loc + 24);
11462 bfd_put_32 (output_bfd, plt_entry[7], loc + 28);
11463
11464 loc = (htab->srelplt2->contents
1bbce132 11465 + (gotplt_index * 3 + 2) * sizeof (Elf32_External_Rela));
0a44bf69
RS
11466
11467 /* Emit a relocation for the .got.plt entry. */
11468 rel.r_offset = got_address;
11469 rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_MIPS_32);
1bbce132 11470 rel.r_addend = plt_offset;
0a44bf69
RS
11471 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11472
11473 /* Emit a relocation for the lui of %hi(<.got.plt slot>). */
11474 loc += sizeof (Elf32_External_Rela);
11475 rel.r_offset = plt_address + 8;
11476 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
11477 rel.r_addend = got_offset;
11478 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11479
11480 /* Emit a relocation for the addiu of %lo(<.got.plt slot>). */
11481 loc += sizeof (Elf32_External_Rela);
11482 rel.r_offset += 4;
11483 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
11484 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11485 }
11486
11487 /* Emit an R_MIPS_JUMP_SLOT relocation against the .got.plt entry. */
ce558b89 11488 loc = (htab->root.srelplt->contents
1bbce132 11489 + gotplt_index * sizeof (Elf32_External_Rela));
0a44bf69
RS
11490 rel.r_offset = got_address;
11491 rel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_JUMP_SLOT);
11492 rel.r_addend = 0;
11493 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11494
11495 if (!h->def_regular)
11496 sym->st_shndx = SHN_UNDEF;
11497 }
11498
11499 BFD_ASSERT (h->dynindx != -1 || h->forced_local);
11500
ce558b89 11501 sgot = htab->root.sgot;
a8028dd0 11502 g = htab->got_info;
0a44bf69
RS
11503 BFD_ASSERT (g != NULL);
11504
11505 /* See if this symbol has an entry in the GOT. */
020d7251 11506 if (hmips->global_got_area != GGA_NONE)
0a44bf69
RS
11507 {
11508 bfd_vma offset;
11509 Elf_Internal_Rela outrel;
11510 bfd_byte *loc;
11511 asection *s;
11512
11513 /* Install the symbol value in the GOT. */
13fbec83 11514 offset = mips_elf_primary_global_got_index (output_bfd, info, h);
0a44bf69
RS
11515 MIPS_ELF_PUT_WORD (output_bfd, sym->st_value, sgot->contents + offset);
11516
11517 /* Add a dynamic relocation for it. */
11518 s = mips_elf_rel_dyn_section (info, FALSE);
11519 loc = s->contents + (s->reloc_count++ * sizeof (Elf32_External_Rela));
11520 outrel.r_offset = (sgot->output_section->vma
11521 + sgot->output_offset
11522 + offset);
11523 outrel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_32);
11524 outrel.r_addend = 0;
11525 bfd_elf32_swap_reloca_out (dynobj, &outrel, loc);
11526 }
11527
11528 /* Emit a copy reloc, if needed. */
11529 if (h->needs_copy)
11530 {
11531 Elf_Internal_Rela rel;
5474d94f
AM
11532 asection *srel;
11533 bfd_byte *loc;
0a44bf69
RS
11534
11535 BFD_ASSERT (h->dynindx != -1);
11536
11537 rel.r_offset = (h->root.u.def.section->output_section->vma
11538 + h->root.u.def.section->output_offset
11539 + h->root.u.def.value);
11540 rel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_COPY);
11541 rel.r_addend = 0;
afbf7e8e 11542 if (h->root.u.def.section == htab->root.sdynrelro)
5474d94f
AM
11543 srel = htab->root.sreldynrelro;
11544 else
11545 srel = htab->root.srelbss;
11546 loc = srel->contents + srel->reloc_count * sizeof (Elf32_External_Rela);
11547 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11548 ++srel->reloc_count;
0a44bf69
RS
11549 }
11550
df58fc94
RS
11551 /* If this is a mips16/microMIPS symbol, force the value to be even. */
11552 if (ELF_ST_IS_COMPRESSED (sym->st_other))
0a44bf69
RS
11553 sym->st_value &= ~1;
11554
11555 return TRUE;
11556}
11557
861fb55a
DJ
11558/* Write out a plt0 entry to the beginning of .plt. */
11559
1bbce132 11560static bfd_boolean
861fb55a
DJ
11561mips_finish_exec_plt (bfd *output_bfd, struct bfd_link_info *info)
11562{
11563 bfd_byte *loc;
11564 bfd_vma gotplt_value, gotplt_value_high, gotplt_value_low;
11565 static const bfd_vma *plt_entry;
11566 struct mips_elf_link_hash_table *htab;
11567
11568 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
11569 BFD_ASSERT (htab != NULL);
11570
861fb55a 11571 if (ABI_64_P (output_bfd))
3734320d
MF
11572 plt_entry = (htab->compact_branches
11573 ? mipsr6_n64_exec_plt0_entry_compact
11574 : mips_n64_exec_plt0_entry);
861fb55a 11575 else if (ABI_N32_P (output_bfd))
3734320d
MF
11576 plt_entry = (htab->compact_branches
11577 ? mipsr6_n32_exec_plt0_entry_compact
11578 : mips_n32_exec_plt0_entry);
833794fc 11579 else if (!htab->plt_header_is_comp)
3734320d
MF
11580 plt_entry = (htab->compact_branches
11581 ? mipsr6_o32_exec_plt0_entry_compact
11582 : mips_o32_exec_plt0_entry);
833794fc
MR
11583 else if (htab->insn32)
11584 plt_entry = micromips_insn32_o32_exec_plt0_entry;
11585 else
11586 plt_entry = micromips_o32_exec_plt0_entry;
861fb55a
DJ
11587
11588 /* Calculate the value of .got.plt. */
ce558b89
AM
11589 gotplt_value = (htab->root.sgotplt->output_section->vma
11590 + htab->root.sgotplt->output_offset);
861fb55a
DJ
11591 gotplt_value_high = ((gotplt_value + 0x8000) >> 16) & 0xffff;
11592 gotplt_value_low = gotplt_value & 0xffff;
11593
11594 /* The PLT sequence is not safe for N64 if .got.plt's address can
11595 not be loaded in two instructions. */
789ff5b6
MR
11596 if (ABI_64_P (output_bfd)
11597 && ((gotplt_value + 0x80008000) & ~(bfd_vma) 0xffffffff) != 0)
11598 {
11599 _bfd_error_handler
11600 /* xgettext:c-format */
11601 (_("%pB: `%pA' start VMA of %#" PRIx64 " outside the 32-bit range "
11602 "supported; consider using `-Ttext-segment=...'"),
11603 output_bfd,
11604 htab->root.sgotplt->output_section,
11605 (int64_t) gotplt_value);
11606 bfd_set_error (bfd_error_no_error);
11607 return FALSE;
11608 }
861fb55a
DJ
11609
11610 /* Install the PLT header. */
ce558b89 11611 loc = htab->root.splt->contents;
1bbce132
MR
11612 if (plt_entry == micromips_o32_exec_plt0_entry)
11613 {
11614 bfd_vma gotpc_offset;
11615 bfd_vma loc_address;
11616 size_t i;
11617
11618 BFD_ASSERT (gotplt_value % 4 == 0);
11619
ce558b89
AM
11620 loc_address = (htab->root.splt->output_section->vma
11621 + htab->root.splt->output_offset);
1bbce132
MR
11622 gotpc_offset = gotplt_value - ((loc_address | 3) ^ 3);
11623
11624 /* ADDIUPC has a span of +/-16MB, check we're in range. */
11625 if (gotpc_offset + 0x1000000 >= 0x2000000)
11626 {
4eca0228 11627 _bfd_error_handler
695344c0 11628 /* xgettext:c-format */
2dcf00ce
AM
11629 (_("%pB: `%pA' offset of %" PRId64 " from `%pA' "
11630 "beyond the range of ADDIUPC"),
1bbce132 11631 output_bfd,
ce558b89 11632 htab->root.sgotplt->output_section,
2dcf00ce 11633 (int64_t) gotpc_offset,
c08bb8dd 11634 htab->root.splt->output_section);
1bbce132
MR
11635 bfd_set_error (bfd_error_no_error);
11636 return FALSE;
11637 }
11638 bfd_put_16 (output_bfd,
11639 plt_entry[0] | ((gotpc_offset >> 18) & 0x7f), loc);
11640 bfd_put_16 (output_bfd, (gotpc_offset >> 2) & 0xffff, loc + 2);
11641 for (i = 2; i < ARRAY_SIZE (micromips_o32_exec_plt0_entry); i++)
11642 bfd_put_16 (output_bfd, plt_entry[i], loc + (i * 2));
11643 }
833794fc
MR
11644 else if (plt_entry == micromips_insn32_o32_exec_plt0_entry)
11645 {
11646 size_t i;
11647
11648 bfd_put_16 (output_bfd, plt_entry[0], loc);
11649 bfd_put_16 (output_bfd, gotplt_value_high, loc + 2);
11650 bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
11651 bfd_put_16 (output_bfd, gotplt_value_low, loc + 6);
11652 bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
11653 bfd_put_16 (output_bfd, gotplt_value_low, loc + 10);
11654 for (i = 6; i < ARRAY_SIZE (micromips_insn32_o32_exec_plt0_entry); i++)
11655 bfd_put_16 (output_bfd, plt_entry[i], loc + (i * 2));
11656 }
1bbce132
MR
11657 else
11658 {
11659 bfd_put_32 (output_bfd, plt_entry[0] | gotplt_value_high, loc);
11660 bfd_put_32 (output_bfd, plt_entry[1] | gotplt_value_low, loc + 4);
11661 bfd_put_32 (output_bfd, plt_entry[2] | gotplt_value_low, loc + 8);
11662 bfd_put_32 (output_bfd, plt_entry[3], loc + 12);
11663 bfd_put_32 (output_bfd, plt_entry[4], loc + 16);
11664 bfd_put_32 (output_bfd, plt_entry[5], loc + 20);
11665 bfd_put_32 (output_bfd, plt_entry[6], loc + 24);
11666 bfd_put_32 (output_bfd, plt_entry[7], loc + 28);
11667 }
11668
11669 return TRUE;
861fb55a
DJ
11670}
11671
0a44bf69
RS
11672/* Install the PLT header for a VxWorks executable and finalize the
11673 contents of .rela.plt.unloaded. */
11674
11675static void
11676mips_vxworks_finish_exec_plt (bfd *output_bfd, struct bfd_link_info *info)
11677{
11678 Elf_Internal_Rela rela;
11679 bfd_byte *loc;
11680 bfd_vma got_value, got_value_high, got_value_low, plt_address;
11681 static const bfd_vma *plt_entry;
11682 struct mips_elf_link_hash_table *htab;
11683
11684 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
11685 BFD_ASSERT (htab != NULL);
11686
0a44bf69
RS
11687 plt_entry = mips_vxworks_exec_plt0_entry;
11688
11689 /* Calculate the value of _GLOBAL_OFFSET_TABLE_. */
11690 got_value = (htab->root.hgot->root.u.def.section->output_section->vma
11691 + htab->root.hgot->root.u.def.section->output_offset
11692 + htab->root.hgot->root.u.def.value);
11693
11694 got_value_high = ((got_value + 0x8000) >> 16) & 0xffff;
11695 got_value_low = got_value & 0xffff;
11696
11697 /* Calculate the address of the PLT header. */
ce558b89
AM
11698 plt_address = (htab->root.splt->output_section->vma
11699 + htab->root.splt->output_offset);
0a44bf69
RS
11700
11701 /* Install the PLT header. */
ce558b89 11702 loc = htab->root.splt->contents;
0a44bf69
RS
11703 bfd_put_32 (output_bfd, plt_entry[0] | got_value_high, loc);
11704 bfd_put_32 (output_bfd, plt_entry[1] | got_value_low, loc + 4);
11705 bfd_put_32 (output_bfd, plt_entry[2], loc + 8);
11706 bfd_put_32 (output_bfd, plt_entry[3], loc + 12);
11707 bfd_put_32 (output_bfd, plt_entry[4], loc + 16);
11708 bfd_put_32 (output_bfd, plt_entry[5], loc + 20);
11709
11710 /* Output the relocation for the lui of %hi(_GLOBAL_OFFSET_TABLE_). */
11711 loc = htab->srelplt2->contents;
11712 rela.r_offset = plt_address;
11713 rela.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
11714 rela.r_addend = 0;
11715 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
11716 loc += sizeof (Elf32_External_Rela);
11717
11718 /* Output the relocation for the following addiu of
11719 %lo(_GLOBAL_OFFSET_TABLE_). */
11720 rela.r_offset += 4;
11721 rela.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
11722 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
11723 loc += sizeof (Elf32_External_Rela);
11724
11725 /* Fix up the remaining relocations. They may have the wrong
11726 symbol index for _G_O_T_ or _P_L_T_ depending on the order
11727 in which symbols were output. */
11728 while (loc < htab->srelplt2->contents + htab->srelplt2->size)
11729 {
11730 Elf_Internal_Rela rel;
11731
11732 bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
11733 rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_MIPS_32);
11734 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11735 loc += sizeof (Elf32_External_Rela);
11736
11737 bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
11738 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
11739 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11740 loc += sizeof (Elf32_External_Rela);
11741
11742 bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
11743 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
11744 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11745 loc += sizeof (Elf32_External_Rela);
11746 }
11747}
11748
11749/* Install the PLT header for a VxWorks shared library. */
11750
11751static void
11752mips_vxworks_finish_shared_plt (bfd *output_bfd, struct bfd_link_info *info)
11753{
11754 unsigned int i;
11755 struct mips_elf_link_hash_table *htab;
11756
11757 htab = mips_elf_hash_table (info);
4dfe6ac6 11758 BFD_ASSERT (htab != NULL);
0a44bf69
RS
11759
11760 /* We just need to copy the entry byte-by-byte. */
11761 for (i = 0; i < ARRAY_SIZE (mips_vxworks_shared_plt0_entry); i++)
11762 bfd_put_32 (output_bfd, mips_vxworks_shared_plt0_entry[i],
ce558b89 11763 htab->root.splt->contents + i * 4);
0a44bf69
RS
11764}
11765
b49e97c9
TS
11766/* Finish up the dynamic sections. */
11767
b34976b6 11768bfd_boolean
9719ad41
RS
11769_bfd_mips_elf_finish_dynamic_sections (bfd *output_bfd,
11770 struct bfd_link_info *info)
b49e97c9
TS
11771{
11772 bfd *dynobj;
11773 asection *sdyn;
11774 asection *sgot;
f4416af6 11775 struct mips_got_info *gg, *g;
0a44bf69 11776 struct mips_elf_link_hash_table *htab;
b49e97c9 11777
0a44bf69 11778 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
11779 BFD_ASSERT (htab != NULL);
11780
b49e97c9
TS
11781 dynobj = elf_hash_table (info)->dynobj;
11782
3d4d4302 11783 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
b49e97c9 11784
ce558b89 11785 sgot = htab->root.sgot;
23cc69b6 11786 gg = htab->got_info;
b49e97c9
TS
11787
11788 if (elf_hash_table (info)->dynamic_sections_created)
11789 {
11790 bfd_byte *b;
943284cc 11791 int dyn_to_skip = 0, dyn_skipped = 0;
b49e97c9
TS
11792
11793 BFD_ASSERT (sdyn != NULL);
23cc69b6
RS
11794 BFD_ASSERT (gg != NULL);
11795
d7206569 11796 g = mips_elf_bfd_got (output_bfd, FALSE);
b49e97c9
TS
11797 BFD_ASSERT (g != NULL);
11798
11799 for (b = sdyn->contents;
eea6121a 11800 b < sdyn->contents + sdyn->size;
b49e97c9
TS
11801 b += MIPS_ELF_DYN_SIZE (dynobj))
11802 {
11803 Elf_Internal_Dyn dyn;
11804 const char *name;
11805 size_t elemsize;
11806 asection *s;
b34976b6 11807 bfd_boolean swap_out_p;
b49e97c9
TS
11808
11809 /* Read in the current dynamic entry. */
11810 (*get_elf_backend_data (dynobj)->s->swap_dyn_in) (dynobj, b, &dyn);
11811
11812 /* Assume that we're going to modify it and write it out. */
b34976b6 11813 swap_out_p = TRUE;
b49e97c9
TS
11814
11815 switch (dyn.d_tag)
11816 {
11817 case DT_RELENT:
b49e97c9
TS
11818 dyn.d_un.d_val = MIPS_ELF_REL_SIZE (dynobj);
11819 break;
11820
0a44bf69 11821 case DT_RELAENT:
90c14f0c 11822 BFD_ASSERT (htab->root.target_os == is_vxworks);
0a44bf69
RS
11823 dyn.d_un.d_val = MIPS_ELF_RELA_SIZE (dynobj);
11824 break;
11825
b49e97c9
TS
11826 case DT_STRSZ:
11827 /* Rewrite DT_STRSZ. */
11828 dyn.d_un.d_val =
11829 _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
11830 break;
11831
11832 case DT_PLTGOT:
ce558b89 11833 s = htab->root.sgot;
861fb55a
DJ
11834 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
11835 break;
11836
11837 case DT_MIPS_PLTGOT:
ce558b89 11838 s = htab->root.sgotplt;
861fb55a 11839 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
b49e97c9
TS
11840 break;
11841
11842 case DT_MIPS_RLD_VERSION:
11843 dyn.d_un.d_val = 1; /* XXX */
11844 break;
11845
11846 case DT_MIPS_FLAGS:
11847 dyn.d_un.d_val = RHF_NOTPOT; /* XXX */
11848 break;
11849
b49e97c9 11850 case DT_MIPS_TIME_STAMP:
6edfbbad
DJ
11851 {
11852 time_t t;
11853 time (&t);
11854 dyn.d_un.d_val = t;
11855 }
b49e97c9
TS
11856 break;
11857
11858 case DT_MIPS_ICHECKSUM:
11859 /* XXX FIXME: */
b34976b6 11860 swap_out_p = FALSE;
b49e97c9
TS
11861 break;
11862
11863 case DT_MIPS_IVERSION:
11864 /* XXX FIXME: */
b34976b6 11865 swap_out_p = FALSE;
b49e97c9
TS
11866 break;
11867
11868 case DT_MIPS_BASE_ADDRESS:
11869 s = output_bfd->sections;
11870 BFD_ASSERT (s != NULL);
11871 dyn.d_un.d_ptr = s->vma & ~(bfd_vma) 0xffff;
11872 break;
11873
11874 case DT_MIPS_LOCAL_GOTNO:
11875 dyn.d_un.d_val = g->local_gotno;
11876 break;
11877
11878 case DT_MIPS_UNREFEXTNO:
11879 /* The index into the dynamic symbol table which is the
11880 entry of the first external symbol that is not
11881 referenced within the same object. */
11882 dyn.d_un.d_val = bfd_count_sections (output_bfd) + 1;
11883 break;
11884
11885 case DT_MIPS_GOTSYM:
d222d210 11886 if (htab->global_gotsym)
b49e97c9 11887 {
d222d210 11888 dyn.d_un.d_val = htab->global_gotsym->dynindx;
b49e97c9
TS
11889 break;
11890 }
11891 /* In case if we don't have global got symbols we default
11892 to setting DT_MIPS_GOTSYM to the same value as
1a0670f3
AM
11893 DT_MIPS_SYMTABNO. */
11894 /* Fall through. */
b49e97c9
TS
11895
11896 case DT_MIPS_SYMTABNO:
11897 name = ".dynsym";
11898 elemsize = MIPS_ELF_SYM_SIZE (output_bfd);
4ade44b7 11899 s = bfd_get_linker_section (dynobj, name);
b49e97c9 11900
131e2f8e
MF
11901 if (s != NULL)
11902 dyn.d_un.d_val = s->size / elemsize;
11903 else
11904 dyn.d_un.d_val = 0;
b49e97c9
TS
11905 break;
11906
11907 case DT_MIPS_HIPAGENO:
861fb55a 11908 dyn.d_un.d_val = g->local_gotno - htab->reserved_gotno;
b49e97c9
TS
11909 break;
11910
11911 case DT_MIPS_RLD_MAP:
b4082c70
DD
11912 {
11913 struct elf_link_hash_entry *h;
11914 h = mips_elf_hash_table (info)->rld_symbol;
11915 if (!h)
11916 {
11917 dyn_to_skip = MIPS_ELF_DYN_SIZE (dynobj);
11918 swap_out_p = FALSE;
11919 break;
11920 }
11921 s = h->root.u.def.section;
a5499fa4
MF
11922
11923 /* The MIPS_RLD_MAP tag stores the absolute address of the
11924 debug pointer. */
b4082c70
DD
11925 dyn.d_un.d_ptr = (s->output_section->vma + s->output_offset
11926 + h->root.u.def.value);
11927 }
b49e97c9
TS
11928 break;
11929
a5499fa4
MF
11930 case DT_MIPS_RLD_MAP_REL:
11931 {
11932 struct elf_link_hash_entry *h;
11933 bfd_vma dt_addr, rld_addr;
11934 h = mips_elf_hash_table (info)->rld_symbol;
11935 if (!h)
11936 {
11937 dyn_to_skip = MIPS_ELF_DYN_SIZE (dynobj);
11938 swap_out_p = FALSE;
11939 break;
11940 }
11941 s = h->root.u.def.section;
11942
11943 /* The MIPS_RLD_MAP_REL tag stores the offset to the debug
11944 pointer, relative to the address of the tag. */
11945 dt_addr = (sdyn->output_section->vma + sdyn->output_offset
d5cff5df 11946 + (b - sdyn->contents));
a5499fa4
MF
11947 rld_addr = (s->output_section->vma + s->output_offset
11948 + h->root.u.def.value);
11949 dyn.d_un.d_ptr = rld_addr - dt_addr;
11950 }
11951 break;
11952
b49e97c9
TS
11953 case DT_MIPS_OPTIONS:
11954 s = (bfd_get_section_by_name
11955 (output_bfd, MIPS_ELF_OPTIONS_SECTION_NAME (output_bfd)));
11956 dyn.d_un.d_ptr = s->vma;
11957 break;
11958
0a44bf69 11959 case DT_PLTREL:
861fb55a 11960 BFD_ASSERT (htab->use_plts_and_copy_relocs);
90c14f0c 11961 if (htab->root.target_os == is_vxworks)
861fb55a
DJ
11962 dyn.d_un.d_val = DT_RELA;
11963 else
11964 dyn.d_un.d_val = DT_REL;
0a44bf69
RS
11965 break;
11966
11967 case DT_PLTRELSZ:
861fb55a 11968 BFD_ASSERT (htab->use_plts_and_copy_relocs);
ce558b89 11969 dyn.d_un.d_val = htab->root.srelplt->size;
0a44bf69
RS
11970 break;
11971
11972 case DT_JMPREL:
861fb55a 11973 BFD_ASSERT (htab->use_plts_and_copy_relocs);
ce558b89
AM
11974 dyn.d_un.d_ptr = (htab->root.srelplt->output_section->vma
11975 + htab->root.srelplt->output_offset);
0a44bf69
RS
11976 break;
11977
943284cc
DJ
11978 case DT_TEXTREL:
11979 /* If we didn't need any text relocations after all, delete
11980 the dynamic tag. */
11981 if (!(info->flags & DF_TEXTREL))
11982 {
11983 dyn_to_skip = MIPS_ELF_DYN_SIZE (dynobj);
11984 swap_out_p = FALSE;
11985 }
11986 break;
11987
11988 case DT_FLAGS:
11989 /* If we didn't need any text relocations after all, clear
11990 DF_TEXTREL from DT_FLAGS. */
11991 if (!(info->flags & DF_TEXTREL))
11992 dyn.d_un.d_val &= ~DF_TEXTREL;
11993 else
11994 swap_out_p = FALSE;
11995 break;
11996
f16a9783
MS
11997 case DT_MIPS_XHASH:
11998 name = ".MIPS.xhash";
11999 s = bfd_get_linker_section (dynobj, name);
12000 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
12001 break;
12002
b49e97c9 12003 default:
b34976b6 12004 swap_out_p = FALSE;
90c14f0c 12005 if (htab->root.target_os == is_vxworks
7a2b07ff
NS
12006 && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
12007 swap_out_p = TRUE;
b49e97c9
TS
12008 break;
12009 }
12010
943284cc 12011 if (swap_out_p || dyn_skipped)
b49e97c9 12012 (*get_elf_backend_data (dynobj)->s->swap_dyn_out)
943284cc
DJ
12013 (dynobj, &dyn, b - dyn_skipped);
12014
12015 if (dyn_to_skip)
12016 {
12017 dyn_skipped += dyn_to_skip;
12018 dyn_to_skip = 0;
12019 }
b49e97c9 12020 }
943284cc
DJ
12021
12022 /* Wipe out any trailing entries if we shifted down a dynamic tag. */
12023 if (dyn_skipped > 0)
12024 memset (b - dyn_skipped, 0, dyn_skipped);
b49e97c9
TS
12025 }
12026
b55fd4d4
DJ
12027 if (sgot != NULL && sgot->size > 0
12028 && !bfd_is_abs_section (sgot->output_section))
b49e97c9 12029 {
90c14f0c 12030 if (htab->root.target_os == is_vxworks)
0a44bf69
RS
12031 {
12032 /* The first entry of the global offset table points to the
12033 ".dynamic" section. The second is initialized by the
12034 loader and contains the shared library identifier.
12035 The third is also initialized by the loader and points
12036 to the lazy resolution stub. */
12037 MIPS_ELF_PUT_WORD (output_bfd,
12038 sdyn->output_offset + sdyn->output_section->vma,
12039 sgot->contents);
12040 MIPS_ELF_PUT_WORD (output_bfd, 0,
12041 sgot->contents + MIPS_ELF_GOT_SIZE (output_bfd));
12042 MIPS_ELF_PUT_WORD (output_bfd, 0,
12043 sgot->contents
12044 + 2 * MIPS_ELF_GOT_SIZE (output_bfd));
12045 }
12046 else
12047 {
12048 /* The first entry of the global offset table will be filled at
12049 runtime. The second entry will be used by some runtime loaders.
12050 This isn't the case of IRIX rld. */
12051 MIPS_ELF_PUT_WORD (output_bfd, (bfd_vma) 0, sgot->contents);
51e38d68 12052 MIPS_ELF_PUT_WORD (output_bfd, MIPS_ELF_GNU_GOT1_MASK (output_bfd),
0a44bf69
RS
12053 sgot->contents + MIPS_ELF_GOT_SIZE (output_bfd));
12054 }
b49e97c9 12055
54938e2a
TS
12056 elf_section_data (sgot->output_section)->this_hdr.sh_entsize
12057 = MIPS_ELF_GOT_SIZE (output_bfd);
12058 }
b49e97c9 12059
f4416af6
AO
12060 /* Generate dynamic relocations for the non-primary gots. */
12061 if (gg != NULL && gg->next)
12062 {
12063 Elf_Internal_Rela rel[3];
12064 bfd_vma addend = 0;
12065
12066 memset (rel, 0, sizeof (rel));
12067 rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_REL32);
12068
12069 for (g = gg->next; g->next != gg; g = g->next)
12070 {
91d6fa6a 12071 bfd_vma got_index = g->next->local_gotno + g->next->global_gotno
0f20cc35 12072 + g->next->tls_gotno;
f4416af6 12073
9719ad41 12074 MIPS_ELF_PUT_WORD (output_bfd, 0, sgot->contents
91d6fa6a 12075 + got_index++ * MIPS_ELF_GOT_SIZE (output_bfd));
51e38d68
RS
12076 MIPS_ELF_PUT_WORD (output_bfd, MIPS_ELF_GNU_GOT1_MASK (output_bfd),
12077 sgot->contents
91d6fa6a 12078 + got_index++ * MIPS_ELF_GOT_SIZE (output_bfd));
f4416af6 12079
0e1862bb 12080 if (! bfd_link_pic (info))
f4416af6
AO
12081 continue;
12082
cb22ccf4 12083 for (; got_index < g->local_gotno; got_index++)
f4416af6 12084 {
cb22ccf4
KCY
12085 if (got_index >= g->assigned_low_gotno
12086 && got_index <= g->assigned_high_gotno)
12087 continue;
12088
f4416af6 12089 rel[0].r_offset = rel[1].r_offset = rel[2].r_offset
cb22ccf4 12090 = got_index * MIPS_ELF_GOT_SIZE (output_bfd);
f4416af6
AO
12091 if (!(mips_elf_create_dynamic_relocation
12092 (output_bfd, info, rel, NULL,
12093 bfd_abs_section_ptr,
12094 0, &addend, sgot)))
12095 return FALSE;
12096 BFD_ASSERT (addend == 0);
12097 }
12098 }
12099 }
12100
3133ddbf
DJ
12101 /* The generation of dynamic relocations for the non-primary gots
12102 adds more dynamic relocations. We cannot count them until
12103 here. */
12104
12105 if (elf_hash_table (info)->dynamic_sections_created)
12106 {
12107 bfd_byte *b;
12108 bfd_boolean swap_out_p;
12109
12110 BFD_ASSERT (sdyn != NULL);
12111
12112 for (b = sdyn->contents;
12113 b < sdyn->contents + sdyn->size;
12114 b += MIPS_ELF_DYN_SIZE (dynobj))
12115 {
12116 Elf_Internal_Dyn dyn;
12117 asection *s;
12118
12119 /* Read in the current dynamic entry. */
12120 (*get_elf_backend_data (dynobj)->s->swap_dyn_in) (dynobj, b, &dyn);
12121
12122 /* Assume that we're going to modify it and write it out. */
12123 swap_out_p = TRUE;
12124
12125 switch (dyn.d_tag)
12126 {
12127 case DT_RELSZ:
12128 /* Reduce DT_RELSZ to account for any relocations we
12129 decided not to make. This is for the n64 irix rld,
12130 which doesn't seem to apply any relocations if there
12131 are trailing null entries. */
0a44bf69 12132 s = mips_elf_rel_dyn_section (info, FALSE);
3133ddbf
DJ
12133 dyn.d_un.d_val = (s->reloc_count
12134 * (ABI_64_P (output_bfd)
12135 ? sizeof (Elf64_Mips_External_Rel)
12136 : sizeof (Elf32_External_Rel)));
bcfdf036
RS
12137 /* Adjust the section size too. Tools like the prelinker
12138 can reasonably expect the values to the same. */
db841b6f 12139 BFD_ASSERT (!bfd_is_abs_section (s->output_section));
bcfdf036
RS
12140 elf_section_data (s->output_section)->this_hdr.sh_size
12141 = dyn.d_un.d_val;
3133ddbf
DJ
12142 break;
12143
12144 default:
12145 swap_out_p = FALSE;
12146 break;
12147 }
12148
12149 if (swap_out_p)
12150 (*get_elf_backend_data (dynobj)->s->swap_dyn_out)
12151 (dynobj, &dyn, b);
12152 }
12153 }
12154
b49e97c9 12155 {
b49e97c9
TS
12156 asection *s;
12157 Elf32_compact_rel cpt;
12158
b49e97c9
TS
12159 if (SGI_COMPAT (output_bfd))
12160 {
12161 /* Write .compact_rel section out. */
3d4d4302 12162 s = bfd_get_linker_section (dynobj, ".compact_rel");
b49e97c9
TS
12163 if (s != NULL)
12164 {
12165 cpt.id1 = 1;
12166 cpt.num = s->reloc_count;
12167 cpt.id2 = 2;
12168 cpt.offset = (s->output_section->filepos
12169 + sizeof (Elf32_External_compact_rel));
12170 cpt.reserved0 = 0;
12171 cpt.reserved1 = 0;
12172 bfd_elf32_swap_compact_rel_out (output_bfd, &cpt,
12173 ((Elf32_External_compact_rel *)
12174 s->contents));
12175
12176 /* Clean up a dummy stub function entry in .text. */
4e41d0d7 12177 if (htab->sstubs != NULL)
b49e97c9
TS
12178 {
12179 file_ptr dummy_offset;
12180
4e41d0d7
RS
12181 BFD_ASSERT (htab->sstubs->size >= htab->function_stub_size);
12182 dummy_offset = htab->sstubs->size - htab->function_stub_size;
12183 memset (htab->sstubs->contents + dummy_offset, 0,
5108fc1b 12184 htab->function_stub_size);
b49e97c9
TS
12185 }
12186 }
12187 }
12188
0a44bf69
RS
12189 /* The psABI says that the dynamic relocations must be sorted in
12190 increasing order of r_symndx. The VxWorks EABI doesn't require
12191 this, and because the code below handles REL rather than RELA
12192 relocations, using it for VxWorks would be outright harmful. */
90c14f0c 12193 if (htab->root.target_os != is_vxworks)
b49e97c9 12194 {
0a44bf69
RS
12195 s = mips_elf_rel_dyn_section (info, FALSE);
12196 if (s != NULL
12197 && s->size > (bfd_vma)2 * MIPS_ELF_REL_SIZE (output_bfd))
12198 {
12199 reldyn_sorting_bfd = output_bfd;
b49e97c9 12200
0a44bf69
RS
12201 if (ABI_64_P (output_bfd))
12202 qsort ((Elf64_External_Rel *) s->contents + 1,
12203 s->reloc_count - 1, sizeof (Elf64_Mips_External_Rel),
12204 sort_dynamic_relocs_64);
12205 else
12206 qsort ((Elf32_External_Rel *) s->contents + 1,
12207 s->reloc_count - 1, sizeof (Elf32_External_Rel),
12208 sort_dynamic_relocs);
12209 }
b49e97c9 12210 }
b49e97c9
TS
12211 }
12212
ce558b89 12213 if (htab->root.splt && htab->root.splt->size > 0)
0a44bf69 12214 {
90c14f0c 12215 if (htab->root.target_os == is_vxworks)
861fb55a 12216 {
0e1862bb 12217 if (bfd_link_pic (info))
861fb55a
DJ
12218 mips_vxworks_finish_shared_plt (output_bfd, info);
12219 else
12220 mips_vxworks_finish_exec_plt (output_bfd, info);
12221 }
0a44bf69 12222 else
861fb55a 12223 {
0e1862bb 12224 BFD_ASSERT (!bfd_link_pic (info));
1bbce132
MR
12225 if (!mips_finish_exec_plt (output_bfd, info))
12226 return FALSE;
861fb55a 12227 }
0a44bf69 12228 }
b34976b6 12229 return TRUE;
b49e97c9
TS
12230}
12231
b49e97c9 12232
64543e1a
RS
12233/* Set ABFD's EF_MIPS_ARCH and EF_MIPS_MACH flags. */
12234
12235static void
9719ad41 12236mips_set_isa_flags (bfd *abfd)
b49e97c9 12237{
64543e1a 12238 flagword val;
b49e97c9
TS
12239
12240 switch (bfd_get_mach (abfd))
12241 {
12242 default:
c7c860d2
YS
12243 if (ABI_N32_P (abfd) || ABI_64_P (abfd))
12244 val = E_MIPS_ARCH_3;
12245 else
12246 val = E_MIPS_ARCH_1;
12247 break;
12248
b49e97c9
TS
12249 case bfd_mach_mips3000:
12250 val = E_MIPS_ARCH_1;
12251 break;
12252
12253 case bfd_mach_mips3900:
12254 val = E_MIPS_ARCH_1 | E_MIPS_MACH_3900;
12255 break;
12256
12257 case bfd_mach_mips6000:
12258 val = E_MIPS_ARCH_2;
12259 break;
12260
b417536f
MR
12261 case bfd_mach_mips4010:
12262 val = E_MIPS_ARCH_2 | E_MIPS_MACH_4010;
12263 break;
12264
b49e97c9
TS
12265 case bfd_mach_mips4000:
12266 case bfd_mach_mips4300:
12267 case bfd_mach_mips4400:
12268 case bfd_mach_mips4600:
12269 val = E_MIPS_ARCH_3;
12270 break;
12271
b49e97c9
TS
12272 case bfd_mach_mips4100:
12273 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4100;
12274 break;
12275
12276 case bfd_mach_mips4111:
12277 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4111;
12278 break;
12279
00707a0e
RS
12280 case bfd_mach_mips4120:
12281 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4120;
12282 break;
12283
b49e97c9
TS
12284 case bfd_mach_mips4650:
12285 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4650;
12286 break;
12287
00707a0e
RS
12288 case bfd_mach_mips5400:
12289 val = E_MIPS_ARCH_4 | E_MIPS_MACH_5400;
12290 break;
12291
12292 case bfd_mach_mips5500:
12293 val = E_MIPS_ARCH_4 | E_MIPS_MACH_5500;
12294 break;
12295
e407c74b
NC
12296 case bfd_mach_mips5900:
12297 val = E_MIPS_ARCH_3 | E_MIPS_MACH_5900;
12298 break;
12299
0d2e43ed
ILT
12300 case bfd_mach_mips9000:
12301 val = E_MIPS_ARCH_4 | E_MIPS_MACH_9000;
12302 break;
12303
b49e97c9 12304 case bfd_mach_mips5000:
5a7ea749 12305 case bfd_mach_mips7000:
b49e97c9
TS
12306 case bfd_mach_mips8000:
12307 case bfd_mach_mips10000:
12308 case bfd_mach_mips12000:
3aa3176b
TS
12309 case bfd_mach_mips14000:
12310 case bfd_mach_mips16000:
b49e97c9
TS
12311 val = E_MIPS_ARCH_4;
12312 break;
12313
12314 case bfd_mach_mips5:
12315 val = E_MIPS_ARCH_5;
12316 break;
12317
350cc38d
MS
12318 case bfd_mach_mips_loongson_2e:
12319 val = E_MIPS_ARCH_3 | E_MIPS_MACH_LS2E;
12320 break;
12321
12322 case bfd_mach_mips_loongson_2f:
12323 val = E_MIPS_ARCH_3 | E_MIPS_MACH_LS2F;
12324 break;
12325
b49e97c9
TS
12326 case bfd_mach_mips_sb1:
12327 val = E_MIPS_ARCH_64 | E_MIPS_MACH_SB1;
12328 break;
12329
ac8cb70f
CX
12330 case bfd_mach_mips_gs464:
12331 val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_GS464;
d051516a
NC
12332 break;
12333
bd782c07
CX
12334 case bfd_mach_mips_gs464e:
12335 val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_GS464E;
12336 break;
12337
9108bc33
CX
12338 case bfd_mach_mips_gs264e:
12339 val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_GS264E;
12340 break;
12341
6f179bd0 12342 case bfd_mach_mips_octeon:
dd6a37e7 12343 case bfd_mach_mips_octeonp:
6f179bd0
AN
12344 val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_OCTEON;
12345 break;
12346
2c629856
N
12347 case bfd_mach_mips_octeon3:
12348 val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_OCTEON3;
12349 break;
12350
52b6b6b9
JM
12351 case bfd_mach_mips_xlr:
12352 val = E_MIPS_ARCH_64 | E_MIPS_MACH_XLR;
12353 break;
12354
432233b3
AP
12355 case bfd_mach_mips_octeon2:
12356 val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_OCTEON2;
12357 break;
12358
b49e97c9
TS
12359 case bfd_mach_mipsisa32:
12360 val = E_MIPS_ARCH_32;
12361 break;
12362
12363 case bfd_mach_mipsisa64:
12364 val = E_MIPS_ARCH_64;
af7ee8bf
CD
12365 break;
12366
12367 case bfd_mach_mipsisa32r2:
ae52f483
AB
12368 case bfd_mach_mipsisa32r3:
12369 case bfd_mach_mipsisa32r5:
af7ee8bf
CD
12370 val = E_MIPS_ARCH_32R2;
12371 break;
5f74bc13 12372
38bf472a
MR
12373 case bfd_mach_mips_interaptiv_mr2:
12374 val = E_MIPS_ARCH_32R2 | E_MIPS_MACH_IAMR2;
12375 break;
12376
5f74bc13 12377 case bfd_mach_mipsisa64r2:
ae52f483
AB
12378 case bfd_mach_mipsisa64r3:
12379 case bfd_mach_mipsisa64r5:
5f74bc13
CD
12380 val = E_MIPS_ARCH_64R2;
12381 break;
7361da2c
AB
12382
12383 case bfd_mach_mipsisa32r6:
12384 val = E_MIPS_ARCH_32R6;
12385 break;
12386
12387 case bfd_mach_mipsisa64r6:
12388 val = E_MIPS_ARCH_64R6;
12389 break;
b49e97c9 12390 }
b49e97c9
TS
12391 elf_elfheader (abfd)->e_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH);
12392 elf_elfheader (abfd)->e_flags |= val;
12393
64543e1a
RS
12394}
12395
12396
28dbcedc
AM
12397/* Whether to sort relocs output by ld -r or ld --emit-relocs, by r_offset.
12398 Don't do so for code sections. We want to keep ordering of HI16/LO16
12399 as is. On the other hand, elf-eh-frame.c processing requires .eh_frame
12400 relocs to be sorted. */
12401
12402bfd_boolean
12403_bfd_mips_elf_sort_relocs_p (asection *sec)
12404{
12405 return (sec->flags & SEC_CODE) == 0;
12406}
12407
12408
64543e1a
RS
12409/* The final processing done just before writing out a MIPS ELF object
12410 file. This gets the MIPS architecture right based on the machine
12411 number. This is used by both the 32-bit and the 64-bit ABI. */
12412
12413void
cc364be6 12414_bfd_mips_final_write_processing (bfd *abfd)
64543e1a
RS
12415{
12416 unsigned int i;
12417 Elf_Internal_Shdr **hdrpp;
12418 const char *name;
12419 asection *sec;
12420
12421 /* Keep the existing EF_MIPS_MACH and EF_MIPS_ARCH flags if the former
12422 is nonzero. This is for compatibility with old objects, which used
12423 a combination of a 32-bit EF_MIPS_ARCH and a 64-bit EF_MIPS_MACH. */
12424 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == 0)
12425 mips_set_isa_flags (abfd);
12426
b49e97c9
TS
12427 /* Set the sh_info field for .gptab sections and other appropriate
12428 info for each special section. */
12429 for (i = 1, hdrpp = elf_elfsections (abfd) + 1;
12430 i < elf_numsections (abfd);
12431 i++, hdrpp++)
12432 {
12433 switch ((*hdrpp)->sh_type)
12434 {
12435 case SHT_MIPS_MSYM:
12436 case SHT_MIPS_LIBLIST:
12437 sec = bfd_get_section_by_name (abfd, ".dynstr");
12438 if (sec != NULL)
12439 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
12440 break;
12441
12442 case SHT_MIPS_GPTAB:
12443 BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
fd361982 12444 name = bfd_section_name ((*hdrpp)->bfd_section);
b49e97c9 12445 BFD_ASSERT (name != NULL
0112cd26 12446 && CONST_STRNEQ (name, ".gptab."));
b49e97c9
TS
12447 sec = bfd_get_section_by_name (abfd, name + sizeof ".gptab" - 1);
12448 BFD_ASSERT (sec != NULL);
12449 (*hdrpp)->sh_info = elf_section_data (sec)->this_idx;
12450 break;
12451
12452 case SHT_MIPS_CONTENT:
12453 BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
fd361982 12454 name = bfd_section_name ((*hdrpp)->bfd_section);
b49e97c9 12455 BFD_ASSERT (name != NULL
0112cd26 12456 && CONST_STRNEQ (name, ".MIPS.content"));
b49e97c9
TS
12457 sec = bfd_get_section_by_name (abfd,
12458 name + sizeof ".MIPS.content" - 1);
12459 BFD_ASSERT (sec != NULL);
12460 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
12461 break;
12462
12463 case SHT_MIPS_SYMBOL_LIB:
12464 sec = bfd_get_section_by_name (abfd, ".dynsym");
12465 if (sec != NULL)
12466 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
12467 sec = bfd_get_section_by_name (abfd, ".liblist");
12468 if (sec != NULL)
12469 (*hdrpp)->sh_info = elf_section_data (sec)->this_idx;
12470 break;
12471
12472 case SHT_MIPS_EVENTS:
12473 BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
fd361982 12474 name = bfd_section_name ((*hdrpp)->bfd_section);
b49e97c9 12475 BFD_ASSERT (name != NULL);
0112cd26 12476 if (CONST_STRNEQ (name, ".MIPS.events"))
b49e97c9
TS
12477 sec = bfd_get_section_by_name (abfd,
12478 name + sizeof ".MIPS.events" - 1);
12479 else
12480 {
0112cd26 12481 BFD_ASSERT (CONST_STRNEQ (name, ".MIPS.post_rel"));
b49e97c9
TS
12482 sec = bfd_get_section_by_name (abfd,
12483 (name
12484 + sizeof ".MIPS.post_rel" - 1));
12485 }
12486 BFD_ASSERT (sec != NULL);
12487 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
12488 break;
12489
f16a9783
MS
12490 case SHT_MIPS_XHASH:
12491 sec = bfd_get_section_by_name (abfd, ".dynsym");
12492 if (sec != NULL)
12493 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
b49e97c9
TS
12494 }
12495 }
12496}
06f44071 12497
cc364be6
AM
12498bfd_boolean
12499_bfd_mips_elf_final_write_processing (bfd *abfd)
06f44071 12500{
cc364be6
AM
12501 _bfd_mips_final_write_processing (abfd);
12502 return _bfd_elf_final_write_processing (abfd);
06f44071 12503}
b49e97c9 12504\f
8dc1a139 12505/* When creating an IRIX5 executable, we need REGINFO and RTPROC
b49e97c9
TS
12506 segments. */
12507
12508int
a6b96beb
AM
12509_bfd_mips_elf_additional_program_headers (bfd *abfd,
12510 struct bfd_link_info *info ATTRIBUTE_UNUSED)
b49e97c9
TS
12511{
12512 asection *s;
12513 int ret = 0;
12514
12515 /* See if we need a PT_MIPS_REGINFO segment. */
12516 s = bfd_get_section_by_name (abfd, ".reginfo");
12517 if (s && (s->flags & SEC_LOAD))
12518 ++ret;
12519
351cdf24
MF
12520 /* See if we need a PT_MIPS_ABIFLAGS segment. */
12521 if (bfd_get_section_by_name (abfd, ".MIPS.abiflags"))
12522 ++ret;
12523
b49e97c9
TS
12524 /* See if we need a PT_MIPS_OPTIONS segment. */
12525 if (IRIX_COMPAT (abfd) == ict_irix6
12526 && bfd_get_section_by_name (abfd,
12527 MIPS_ELF_OPTIONS_SECTION_NAME (abfd)))
12528 ++ret;
12529
12530 /* See if we need a PT_MIPS_RTPROC segment. */
12531 if (IRIX_COMPAT (abfd) == ict_irix5
12532 && bfd_get_section_by_name (abfd, ".dynamic")
12533 && bfd_get_section_by_name (abfd, ".mdebug"))
12534 ++ret;
12535
98c904a8
RS
12536 /* Allocate a PT_NULL header in dynamic objects. See
12537 _bfd_mips_elf_modify_segment_map for details. */
12538 if (!SGI_COMPAT (abfd)
12539 && bfd_get_section_by_name (abfd, ".dynamic"))
12540 ++ret;
12541
b49e97c9
TS
12542 return ret;
12543}
12544
8dc1a139 12545/* Modify the segment map for an IRIX5 executable. */
b49e97c9 12546
b34976b6 12547bfd_boolean
9719ad41 12548_bfd_mips_elf_modify_segment_map (bfd *abfd,
7c8b76cc 12549 struct bfd_link_info *info)
b49e97c9
TS
12550{
12551 asection *s;
12552 struct elf_segment_map *m, **pm;
986f0783 12553 size_t amt;
b49e97c9
TS
12554
12555 /* If there is a .reginfo section, we need a PT_MIPS_REGINFO
12556 segment. */
12557 s = bfd_get_section_by_name (abfd, ".reginfo");
12558 if (s != NULL && (s->flags & SEC_LOAD) != 0)
12559 {
12bd6957 12560 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
b49e97c9
TS
12561 if (m->p_type == PT_MIPS_REGINFO)
12562 break;
12563 if (m == NULL)
12564 {
12565 amt = sizeof *m;
9719ad41 12566 m = bfd_zalloc (abfd, amt);
b49e97c9 12567 if (m == NULL)
b34976b6 12568 return FALSE;
b49e97c9
TS
12569
12570 m->p_type = PT_MIPS_REGINFO;
12571 m->count = 1;
12572 m->sections[0] = s;
12573
12574 /* We want to put it after the PHDR and INTERP segments. */
12bd6957 12575 pm = &elf_seg_map (abfd);
b49e97c9
TS
12576 while (*pm != NULL
12577 && ((*pm)->p_type == PT_PHDR
12578 || (*pm)->p_type == PT_INTERP))
12579 pm = &(*pm)->next;
12580
12581 m->next = *pm;
12582 *pm = m;
12583 }
12584 }
12585
351cdf24
MF
12586 /* If there is a .MIPS.abiflags section, we need a PT_MIPS_ABIFLAGS
12587 segment. */
12588 s = bfd_get_section_by_name (abfd, ".MIPS.abiflags");
12589 if (s != NULL && (s->flags & SEC_LOAD) != 0)
12590 {
12591 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
12592 if (m->p_type == PT_MIPS_ABIFLAGS)
12593 break;
12594 if (m == NULL)
12595 {
12596 amt = sizeof *m;
12597 m = bfd_zalloc (abfd, amt);
12598 if (m == NULL)
12599 return FALSE;
12600
12601 m->p_type = PT_MIPS_ABIFLAGS;
12602 m->count = 1;
12603 m->sections[0] = s;
12604
12605 /* We want to put it after the PHDR and INTERP segments. */
12606 pm = &elf_seg_map (abfd);
12607 while (*pm != NULL
12608 && ((*pm)->p_type == PT_PHDR
12609 || (*pm)->p_type == PT_INTERP))
12610 pm = &(*pm)->next;
12611
12612 m->next = *pm;
12613 *pm = m;
12614 }
12615 }
12616
b49e97c9
TS
12617 /* For IRIX 6, we don't have .mdebug sections, nor does anything but
12618 .dynamic end up in PT_DYNAMIC. However, we do have to insert a
98a8deaf 12619 PT_MIPS_OPTIONS segment immediately following the program header
b49e97c9 12620 table. */
c1fd6598
AO
12621 if (NEWABI_P (abfd)
12622 /* On non-IRIX6 new abi, we'll have already created a segment
12623 for this section, so don't create another. I'm not sure this
12624 is not also the case for IRIX 6, but I can't test it right
12625 now. */
12626 && IRIX_COMPAT (abfd) == ict_irix6)
b49e97c9
TS
12627 {
12628 for (s = abfd->sections; s; s = s->next)
12629 if (elf_section_data (s)->this_hdr.sh_type == SHT_MIPS_OPTIONS)
12630 break;
12631
12632 if (s)
12633 {
12634 struct elf_segment_map *options_segment;
12635
12bd6957 12636 pm = &elf_seg_map (abfd);
98a8deaf
RS
12637 while (*pm != NULL
12638 && ((*pm)->p_type == PT_PHDR
12639 || (*pm)->p_type == PT_INTERP))
12640 pm = &(*pm)->next;
b49e97c9 12641
8ded5a0f
AM
12642 if (*pm == NULL || (*pm)->p_type != PT_MIPS_OPTIONS)
12643 {
12644 amt = sizeof (struct elf_segment_map);
12645 options_segment = bfd_zalloc (abfd, amt);
12646 options_segment->next = *pm;
12647 options_segment->p_type = PT_MIPS_OPTIONS;
12648 options_segment->p_flags = PF_R;
12649 options_segment->p_flags_valid = TRUE;
12650 options_segment->count = 1;
12651 options_segment->sections[0] = s;
12652 *pm = options_segment;
12653 }
b49e97c9
TS
12654 }
12655 }
12656 else
12657 {
12658 if (IRIX_COMPAT (abfd) == ict_irix5)
12659 {
12660 /* If there are .dynamic and .mdebug sections, we make a room
12661 for the RTPROC header. FIXME: Rewrite without section names. */
12662 if (bfd_get_section_by_name (abfd, ".interp") == NULL
12663 && bfd_get_section_by_name (abfd, ".dynamic") != NULL
12664 && bfd_get_section_by_name (abfd, ".mdebug") != NULL)
12665 {
12bd6957 12666 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
b49e97c9
TS
12667 if (m->p_type == PT_MIPS_RTPROC)
12668 break;
12669 if (m == NULL)
12670 {
12671 amt = sizeof *m;
9719ad41 12672 m = bfd_zalloc (abfd, amt);
b49e97c9 12673 if (m == NULL)
b34976b6 12674 return FALSE;
b49e97c9
TS
12675
12676 m->p_type = PT_MIPS_RTPROC;
12677
12678 s = bfd_get_section_by_name (abfd, ".rtproc");
12679 if (s == NULL)
12680 {
12681 m->count = 0;
12682 m->p_flags = 0;
12683 m->p_flags_valid = 1;
12684 }
12685 else
12686 {
12687 m->count = 1;
12688 m->sections[0] = s;
12689 }
12690
12691 /* We want to put it after the DYNAMIC segment. */
12bd6957 12692 pm = &elf_seg_map (abfd);
b49e97c9
TS
12693 while (*pm != NULL && (*pm)->p_type != PT_DYNAMIC)
12694 pm = &(*pm)->next;
12695 if (*pm != NULL)
12696 pm = &(*pm)->next;
12697
12698 m->next = *pm;
12699 *pm = m;
12700 }
12701 }
12702 }
8dc1a139 12703 /* On IRIX5, the PT_DYNAMIC segment includes the .dynamic,
b49e97c9
TS
12704 .dynstr, .dynsym, and .hash sections, and everything in
12705 between. */
12bd6957 12706 for (pm = &elf_seg_map (abfd); *pm != NULL;
b49e97c9
TS
12707 pm = &(*pm)->next)
12708 if ((*pm)->p_type == PT_DYNAMIC)
12709 break;
12710 m = *pm;
f6f62d6f
RS
12711 /* GNU/Linux binaries do not need the extended PT_DYNAMIC section.
12712 glibc's dynamic linker has traditionally derived the number of
12713 tags from the p_filesz field, and sometimes allocates stack
12714 arrays of that size. An overly-big PT_DYNAMIC segment can
12715 be actively harmful in such cases. Making PT_DYNAMIC contain
12716 other sections can also make life hard for the prelinker,
12717 which might move one of the other sections to a different
12718 PT_LOAD segment. */
12719 if (SGI_COMPAT (abfd)
12720 && m != NULL
12721 && m->count == 1
12722 && strcmp (m->sections[0]->name, ".dynamic") == 0)
b49e97c9
TS
12723 {
12724 static const char *sec_names[] =
12725 {
12726 ".dynamic", ".dynstr", ".dynsym", ".hash"
12727 };
12728 bfd_vma low, high;
12729 unsigned int i, c;
12730 struct elf_segment_map *n;
12731
792b4a53 12732 low = ~(bfd_vma) 0;
b49e97c9
TS
12733 high = 0;
12734 for (i = 0; i < sizeof sec_names / sizeof sec_names[0]; i++)
12735 {
12736 s = bfd_get_section_by_name (abfd, sec_names[i]);
12737 if (s != NULL && (s->flags & SEC_LOAD) != 0)
12738 {
12739 bfd_size_type sz;
12740
12741 if (low > s->vma)
12742 low = s->vma;
eea6121a 12743 sz = s->size;
b49e97c9
TS
12744 if (high < s->vma + sz)
12745 high = s->vma + sz;
12746 }
12747 }
12748
12749 c = 0;
12750 for (s = abfd->sections; s != NULL; s = s->next)
12751 if ((s->flags & SEC_LOAD) != 0
12752 && s->vma >= low
eea6121a 12753 && s->vma + s->size <= high)
b49e97c9
TS
12754 ++c;
12755
986f0783 12756 amt = sizeof *n - sizeof (asection *) + c * sizeof (asection *);
9719ad41 12757 n = bfd_zalloc (abfd, amt);
b49e97c9 12758 if (n == NULL)
b34976b6 12759 return FALSE;
b49e97c9
TS
12760 *n = *m;
12761 n->count = c;
12762
12763 i = 0;
12764 for (s = abfd->sections; s != NULL; s = s->next)
12765 {
12766 if ((s->flags & SEC_LOAD) != 0
12767 && s->vma >= low
eea6121a 12768 && s->vma + s->size <= high)
b49e97c9
TS
12769 {
12770 n->sections[i] = s;
12771 ++i;
12772 }
12773 }
12774
12775 *pm = n;
12776 }
12777 }
12778
98c904a8
RS
12779 /* Allocate a spare program header in dynamic objects so that tools
12780 like the prelinker can add an extra PT_LOAD entry.
12781
12782 If the prelinker needs to make room for a new PT_LOAD entry, its
12783 standard procedure is to move the first (read-only) sections into
12784 the new (writable) segment. However, the MIPS ABI requires
12785 .dynamic to be in a read-only segment, and the section will often
12786 start within sizeof (ElfNN_Phdr) bytes of the last program header.
12787
12788 Although the prelinker could in principle move .dynamic to a
12789 writable segment, it seems better to allocate a spare program
12790 header instead, and avoid the need to move any sections.
12791 There is a long tradition of allocating spare dynamic tags,
12792 so allocating a spare program header seems like a natural
7c8b76cc
JM
12793 extension.
12794
12795 If INFO is NULL, we may be copying an already prelinked binary
12796 with objcopy or strip, so do not add this header. */
12797 if (info != NULL
12798 && !SGI_COMPAT (abfd)
98c904a8
RS
12799 && bfd_get_section_by_name (abfd, ".dynamic"))
12800 {
12bd6957 12801 for (pm = &elf_seg_map (abfd); *pm != NULL; pm = &(*pm)->next)
98c904a8
RS
12802 if ((*pm)->p_type == PT_NULL)
12803 break;
12804 if (*pm == NULL)
12805 {
12806 m = bfd_zalloc (abfd, sizeof (*m));
12807 if (m == NULL)
12808 return FALSE;
12809
12810 m->p_type = PT_NULL;
12811 *pm = m;
12812 }
12813 }
12814
b34976b6 12815 return TRUE;
b49e97c9
TS
12816}
12817\f
12818/* Return the section that should be marked against GC for a given
12819 relocation. */
12820
12821asection *
9719ad41 12822_bfd_mips_elf_gc_mark_hook (asection *sec,
07adf181 12823 struct bfd_link_info *info,
9719ad41
RS
12824 Elf_Internal_Rela *rel,
12825 struct elf_link_hash_entry *h,
12826 Elf_Internal_Sym *sym)
b49e97c9
TS
12827{
12828 /* ??? Do mips16 stub sections need to be handled special? */
12829
12830 if (h != NULL)
07adf181
AM
12831 switch (ELF_R_TYPE (sec->owner, rel->r_info))
12832 {
12833 case R_MIPS_GNU_VTINHERIT:
12834 case R_MIPS_GNU_VTENTRY:
12835 return NULL;
12836 }
b49e97c9 12837
07adf181 12838 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
b49e97c9
TS
12839}
12840
351cdf24
MF
12841/* Prevent .MIPS.abiflags from being discarded with --gc-sections. */
12842
12843bfd_boolean
12844_bfd_mips_elf_gc_mark_extra_sections (struct bfd_link_info *info,
12845 elf_gc_mark_hook_fn gc_mark_hook)
12846{
12847 bfd *sub;
12848
12849 _bfd_elf_gc_mark_extra_sections (info, gc_mark_hook);
12850
12851 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
12852 {
12853 asection *o;
12854
12855 if (! is_mips_elf (sub))
12856 continue;
12857
12858 for (o = sub->sections; o != NULL; o = o->next)
12859 if (!o->gc_mark
fd361982 12860 && MIPS_ELF_ABIFLAGS_SECTION_NAME_P (bfd_section_name (o)))
351cdf24
MF
12861 {
12862 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
12863 return FALSE;
12864 }
12865 }
12866
12867 return TRUE;
12868}
b49e97c9
TS
12869\f
12870/* Copy data from a MIPS ELF indirect symbol to its direct symbol,
12871 hiding the old indirect symbol. Process additional relocation
12872 information. Also called for weakdefs, in which case we just let
12873 _bfd_elf_link_hash_copy_indirect copy the flags for us. */
12874
12875void
fcfa13d2 12876_bfd_mips_elf_copy_indirect_symbol (struct bfd_link_info *info,
9719ad41
RS
12877 struct elf_link_hash_entry *dir,
12878 struct elf_link_hash_entry *ind)
b49e97c9
TS
12879{
12880 struct mips_elf_link_hash_entry *dirmips, *indmips;
12881
fcfa13d2 12882 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
b49e97c9 12883
861fb55a
DJ
12884 dirmips = (struct mips_elf_link_hash_entry *) dir;
12885 indmips = (struct mips_elf_link_hash_entry *) ind;
12886 /* Any absolute non-dynamic relocations against an indirect or weak
12887 definition will be against the target symbol. */
12888 if (indmips->has_static_relocs)
12889 dirmips->has_static_relocs = TRUE;
12890
b49e97c9
TS
12891 if (ind->root.type != bfd_link_hash_indirect)
12892 return;
12893
b49e97c9
TS
12894 dirmips->possibly_dynamic_relocs += indmips->possibly_dynamic_relocs;
12895 if (indmips->readonly_reloc)
b34976b6 12896 dirmips->readonly_reloc = TRUE;
b49e97c9 12897 if (indmips->no_fn_stub)
b34976b6 12898 dirmips->no_fn_stub = TRUE;
61b0a4af
RS
12899 if (indmips->fn_stub)
12900 {
12901 dirmips->fn_stub = indmips->fn_stub;
12902 indmips->fn_stub = NULL;
12903 }
12904 if (indmips->need_fn_stub)
12905 {
12906 dirmips->need_fn_stub = TRUE;
12907 indmips->need_fn_stub = FALSE;
12908 }
12909 if (indmips->call_stub)
12910 {
12911 dirmips->call_stub = indmips->call_stub;
12912 indmips->call_stub = NULL;
12913 }
12914 if (indmips->call_fp_stub)
12915 {
12916 dirmips->call_fp_stub = indmips->call_fp_stub;
12917 indmips->call_fp_stub = NULL;
12918 }
634835ae
RS
12919 if (indmips->global_got_area < dirmips->global_got_area)
12920 dirmips->global_got_area = indmips->global_got_area;
12921 if (indmips->global_got_area < GGA_NONE)
12922 indmips->global_got_area = GGA_NONE;
861fb55a
DJ
12923 if (indmips->has_nonpic_branches)
12924 dirmips->has_nonpic_branches = TRUE;
b49e97c9 12925}
47275900
MR
12926
12927/* Take care of the special `__gnu_absolute_zero' symbol and ignore attempts
12928 to hide it. It has to remain global (it will also be protected) so as to
12929 be assigned a global GOT entry, which will then remain unchanged at load
12930 time. */
12931
12932void
12933_bfd_mips_elf_hide_symbol (struct bfd_link_info *info,
12934 struct elf_link_hash_entry *entry,
12935 bfd_boolean force_local)
12936{
12937 struct mips_elf_link_hash_table *htab;
12938
12939 htab = mips_elf_hash_table (info);
12940 BFD_ASSERT (htab != NULL);
12941 if (htab->use_absolute_zero
12942 && strcmp (entry->root.root.string, "__gnu_absolute_zero") == 0)
12943 return;
12944
12945 _bfd_elf_link_hash_hide_symbol (info, entry, force_local);
12946}
b49e97c9 12947\f
d01414a5
TS
12948#define PDR_SIZE 32
12949
b34976b6 12950bfd_boolean
9719ad41
RS
12951_bfd_mips_elf_discard_info (bfd *abfd, struct elf_reloc_cookie *cookie,
12952 struct bfd_link_info *info)
d01414a5
TS
12953{
12954 asection *o;
b34976b6 12955 bfd_boolean ret = FALSE;
d01414a5
TS
12956 unsigned char *tdata;
12957 size_t i, skip;
12958
12959 o = bfd_get_section_by_name (abfd, ".pdr");
12960 if (! o)
b34976b6 12961 return FALSE;
eea6121a 12962 if (o->size == 0)
b34976b6 12963 return FALSE;
eea6121a 12964 if (o->size % PDR_SIZE != 0)
b34976b6 12965 return FALSE;
d01414a5
TS
12966 if (o->output_section != NULL
12967 && bfd_is_abs_section (o->output_section))
b34976b6 12968 return FALSE;
d01414a5 12969
eea6121a 12970 tdata = bfd_zmalloc (o->size / PDR_SIZE);
d01414a5 12971 if (! tdata)
b34976b6 12972 return FALSE;
d01414a5 12973
9719ad41 12974 cookie->rels = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
45d6a902 12975 info->keep_memory);
d01414a5
TS
12976 if (!cookie->rels)
12977 {
12978 free (tdata);
b34976b6 12979 return FALSE;
d01414a5
TS
12980 }
12981
12982 cookie->rel = cookie->rels;
12983 cookie->relend = cookie->rels + o->reloc_count;
12984
eea6121a 12985 for (i = 0, skip = 0; i < o->size / PDR_SIZE; i ++)
d01414a5 12986 {
c152c796 12987 if (bfd_elf_reloc_symbol_deleted_p (i * PDR_SIZE, cookie))
d01414a5
TS
12988 {
12989 tdata[i] = 1;
12990 skip ++;
12991 }
12992 }
12993
12994 if (skip != 0)
12995 {
f0abc2a1 12996 mips_elf_section_data (o)->u.tdata = tdata;
e034b2cc
MR
12997 if (o->rawsize == 0)
12998 o->rawsize = o->size;
eea6121a 12999 o->size -= skip * PDR_SIZE;
b34976b6 13000 ret = TRUE;
d01414a5
TS
13001 }
13002 else
13003 free (tdata);
13004
13005 if (! info->keep_memory)
13006 free (cookie->rels);
13007
13008 return ret;
13009}
13010
b34976b6 13011bfd_boolean
9719ad41 13012_bfd_mips_elf_ignore_discarded_relocs (asection *sec)
53bfd6b4
MR
13013{
13014 if (strcmp (sec->name, ".pdr") == 0)
b34976b6
AM
13015 return TRUE;
13016 return FALSE;
53bfd6b4 13017}
d01414a5 13018
b34976b6 13019bfd_boolean
c7b8f16e
JB
13020_bfd_mips_elf_write_section (bfd *output_bfd,
13021 struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
07d6d2b8 13022 asection *sec, bfd_byte *contents)
d01414a5
TS
13023{
13024 bfd_byte *to, *from, *end;
13025 int i;
13026
13027 if (strcmp (sec->name, ".pdr") != 0)
b34976b6 13028 return FALSE;
d01414a5 13029
f0abc2a1 13030 if (mips_elf_section_data (sec)->u.tdata == NULL)
b34976b6 13031 return FALSE;
d01414a5
TS
13032
13033 to = contents;
eea6121a 13034 end = contents + sec->size;
d01414a5
TS
13035 for (from = contents, i = 0;
13036 from < end;
13037 from += PDR_SIZE, i++)
13038 {
f0abc2a1 13039 if ((mips_elf_section_data (sec)->u.tdata)[i] == 1)
d01414a5
TS
13040 continue;
13041 if (to != from)
13042 memcpy (to, from, PDR_SIZE);
13043 to += PDR_SIZE;
13044 }
13045 bfd_set_section_contents (output_bfd, sec->output_section, contents,
eea6121a 13046 sec->output_offset, sec->size);
b34976b6 13047 return TRUE;
d01414a5 13048}
53bfd6b4 13049\f
df58fc94
RS
13050/* microMIPS code retains local labels for linker relaxation. Omit them
13051 from output by default for clarity. */
13052
13053bfd_boolean
13054_bfd_mips_elf_is_target_special_symbol (bfd *abfd, asymbol *sym)
13055{
13056 return _bfd_elf_is_local_label_name (abfd, sym->name);
13057}
13058
b49e97c9
TS
13059/* MIPS ELF uses a special find_nearest_line routine in order the
13060 handle the ECOFF debugging information. */
13061
13062struct mips_elf_find_line
13063{
13064 struct ecoff_debug_info d;
13065 struct ecoff_find_line i;
13066};
13067
b34976b6 13068bfd_boolean
fb167eb2
AM
13069_bfd_mips_elf_find_nearest_line (bfd *abfd, asymbol **symbols,
13070 asection *section, bfd_vma offset,
9719ad41
RS
13071 const char **filename_ptr,
13072 const char **functionname_ptr,
fb167eb2
AM
13073 unsigned int *line_ptr,
13074 unsigned int *discriminator_ptr)
b49e97c9
TS
13075{
13076 asection *msec;
13077
fb167eb2 13078 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
b49e97c9 13079 filename_ptr, functionname_ptr,
fb167eb2
AM
13080 line_ptr, discriminator_ptr,
13081 dwarf_debug_sections,
7f3bf384
AM
13082 &elf_tdata (abfd)->dwarf2_find_line_info)
13083 == 1)
e7679060 13084 return TRUE;
46d09186 13085
e7679060
AM
13086 if (_bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
13087 filename_ptr, functionname_ptr,
13088 line_ptr))
13089 {
13090 if (!*functionname_ptr)
13091 _bfd_elf_find_function (abfd, symbols, section, offset,
13092 *filename_ptr ? NULL : filename_ptr,
13093 functionname_ptr);
46d09186
NC
13094 return TRUE;
13095 }
b49e97c9
TS
13096
13097 msec = bfd_get_section_by_name (abfd, ".mdebug");
13098 if (msec != NULL)
13099 {
13100 flagword origflags;
13101 struct mips_elf_find_line *fi;
13102 const struct ecoff_debug_swap * const swap =
13103 get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
13104
13105 /* If we are called during a link, mips_elf_final_link may have
13106 cleared the SEC_HAS_CONTENTS field. We force it back on here
13107 if appropriate (which it normally will be). */
13108 origflags = msec->flags;
13109 if (elf_section_data (msec)->this_hdr.sh_type != SHT_NOBITS)
13110 msec->flags |= SEC_HAS_CONTENTS;
13111
698600e4 13112 fi = mips_elf_tdata (abfd)->find_line_info;
b49e97c9
TS
13113 if (fi == NULL)
13114 {
13115 bfd_size_type external_fdr_size;
13116 char *fraw_src;
13117 char *fraw_end;
13118 struct fdr *fdr_ptr;
13119 bfd_size_type amt = sizeof (struct mips_elf_find_line);
13120
9719ad41 13121 fi = bfd_zalloc (abfd, amt);
b49e97c9
TS
13122 if (fi == NULL)
13123 {
13124 msec->flags = origflags;
b34976b6 13125 return FALSE;
b49e97c9
TS
13126 }
13127
13128 if (! _bfd_mips_elf_read_ecoff_info (abfd, msec, &fi->d))
13129 {
13130 msec->flags = origflags;
b34976b6 13131 return FALSE;
b49e97c9
TS
13132 }
13133
13134 /* Swap in the FDR information. */
13135 amt = fi->d.symbolic_header.ifdMax * sizeof (struct fdr);
9719ad41 13136 fi->d.fdr = bfd_alloc (abfd, amt);
b49e97c9
TS
13137 if (fi->d.fdr == NULL)
13138 {
13139 msec->flags = origflags;
b34976b6 13140 return FALSE;
b49e97c9
TS
13141 }
13142 external_fdr_size = swap->external_fdr_size;
13143 fdr_ptr = fi->d.fdr;
13144 fraw_src = (char *) fi->d.external_fdr;
13145 fraw_end = (fraw_src
13146 + fi->d.symbolic_header.ifdMax * external_fdr_size);
13147 for (; fraw_src < fraw_end; fraw_src += external_fdr_size, fdr_ptr++)
9719ad41 13148 (*swap->swap_fdr_in) (abfd, fraw_src, fdr_ptr);
b49e97c9 13149
698600e4 13150 mips_elf_tdata (abfd)->find_line_info = fi;
b49e97c9
TS
13151
13152 /* Note that we don't bother to ever free this information.
07d6d2b8
AM
13153 find_nearest_line is either called all the time, as in
13154 objdump -l, so the information should be saved, or it is
13155 rarely called, as in ld error messages, so the memory
13156 wasted is unimportant. Still, it would probably be a
13157 good idea for free_cached_info to throw it away. */
b49e97c9
TS
13158 }
13159
13160 if (_bfd_ecoff_locate_line (abfd, section, offset, &fi->d, swap,
13161 &fi->i, filename_ptr, functionname_ptr,
13162 line_ptr))
13163 {
13164 msec->flags = origflags;
b34976b6 13165 return TRUE;
b49e97c9
TS
13166 }
13167
13168 msec->flags = origflags;
13169 }
13170
13171 /* Fall back on the generic ELF find_nearest_line routine. */
13172
fb167eb2 13173 return _bfd_elf_find_nearest_line (abfd, symbols, section, offset,
b49e97c9 13174 filename_ptr, functionname_ptr,
fb167eb2 13175 line_ptr, discriminator_ptr);
b49e97c9 13176}
4ab527b0
FF
13177
13178bfd_boolean
13179_bfd_mips_elf_find_inliner_info (bfd *abfd,
13180 const char **filename_ptr,
13181 const char **functionname_ptr,
13182 unsigned int *line_ptr)
13183{
13184 bfd_boolean found;
13185 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
13186 functionname_ptr, line_ptr,
13187 & elf_tdata (abfd)->dwarf2_find_line_info);
13188 return found;
13189}
13190
b49e97c9
TS
13191\f
13192/* When are writing out the .options or .MIPS.options section,
13193 remember the bytes we are writing out, so that we can install the
13194 GP value in the section_processing routine. */
13195
b34976b6 13196bfd_boolean
9719ad41
RS
13197_bfd_mips_elf_set_section_contents (bfd *abfd, sec_ptr section,
13198 const void *location,
13199 file_ptr offset, bfd_size_type count)
b49e97c9 13200{
cc2e31b9 13201 if (MIPS_ELF_OPTIONS_SECTION_NAME_P (section->name))
b49e97c9
TS
13202 {
13203 bfd_byte *c;
13204
13205 if (elf_section_data (section) == NULL)
13206 {
986f0783 13207 size_t amt = sizeof (struct bfd_elf_section_data);
9719ad41 13208 section->used_by_bfd = bfd_zalloc (abfd, amt);
b49e97c9 13209 if (elf_section_data (section) == NULL)
b34976b6 13210 return FALSE;
b49e97c9 13211 }
f0abc2a1 13212 c = mips_elf_section_data (section)->u.tdata;
b49e97c9
TS
13213 if (c == NULL)
13214 {
eea6121a 13215 c = bfd_zalloc (abfd, section->size);
b49e97c9 13216 if (c == NULL)
b34976b6 13217 return FALSE;
f0abc2a1 13218 mips_elf_section_data (section)->u.tdata = c;
b49e97c9
TS
13219 }
13220
9719ad41 13221 memcpy (c + offset, location, count);
b49e97c9
TS
13222 }
13223
13224 return _bfd_elf_set_section_contents (abfd, section, location, offset,
13225 count);
13226}
13227
13228/* This is almost identical to bfd_generic_get_... except that some
13229 MIPS relocations need to be handled specially. Sigh. */
13230
13231bfd_byte *
9719ad41
RS
13232_bfd_elf_mips_get_relocated_section_contents
13233 (bfd *abfd,
13234 struct bfd_link_info *link_info,
13235 struct bfd_link_order *link_order,
13236 bfd_byte *data,
13237 bfd_boolean relocatable,
13238 asymbol **symbols)
b49e97c9
TS
13239{
13240 /* Get enough memory to hold the stuff */
13241 bfd *input_bfd = link_order->u.indirect.section->owner;
13242 asection *input_section = link_order->u.indirect.section;
eea6121a 13243 bfd_size_type sz;
b49e97c9
TS
13244
13245 long reloc_size = bfd_get_reloc_upper_bound (input_bfd, input_section);
13246 arelent **reloc_vector = NULL;
13247 long reloc_count;
13248
13249 if (reloc_size < 0)
13250 goto error_return;
13251
9719ad41 13252 reloc_vector = bfd_malloc (reloc_size);
b49e97c9
TS
13253 if (reloc_vector == NULL && reloc_size != 0)
13254 goto error_return;
13255
13256 /* read in the section */
eea6121a
AM
13257 sz = input_section->rawsize ? input_section->rawsize : input_section->size;
13258 if (!bfd_get_section_contents (input_bfd, input_section, data, 0, sz))
b49e97c9
TS
13259 goto error_return;
13260
b49e97c9
TS
13261 reloc_count = bfd_canonicalize_reloc (input_bfd,
13262 input_section,
13263 reloc_vector,
13264 symbols);
13265 if (reloc_count < 0)
13266 goto error_return;
13267
13268 if (reloc_count > 0)
13269 {
13270 arelent **parent;
13271 /* for mips */
13272 int gp_found;
13273 bfd_vma gp = 0x12345678; /* initialize just to shut gcc up */
13274
13275 {
13276 struct bfd_hash_entry *h;
13277 struct bfd_link_hash_entry *lh;
13278 /* Skip all this stuff if we aren't mixing formats. */
13279 if (abfd && input_bfd
13280 && abfd->xvec == input_bfd->xvec)
13281 lh = 0;
13282 else
13283 {
b34976b6 13284 h = bfd_hash_lookup (&link_info->hash->table, "_gp", FALSE, FALSE);
b49e97c9
TS
13285 lh = (struct bfd_link_hash_entry *) h;
13286 }
13287 lookup:
13288 if (lh)
13289 {
13290 switch (lh->type)
13291 {
13292 case bfd_link_hash_undefined:
13293 case bfd_link_hash_undefweak:
13294 case bfd_link_hash_common:
13295 gp_found = 0;
13296 break;
13297 case bfd_link_hash_defined:
13298 case bfd_link_hash_defweak:
13299 gp_found = 1;
13300 gp = lh->u.def.value;
13301 break;
13302 case bfd_link_hash_indirect:
13303 case bfd_link_hash_warning:
13304 lh = lh->u.i.link;
13305 /* @@FIXME ignoring warning for now */
13306 goto lookup;
13307 case bfd_link_hash_new:
13308 default:
13309 abort ();
13310 }
13311 }
13312 else
13313 gp_found = 0;
13314 }
13315 /* end mips */
9719ad41 13316 for (parent = reloc_vector; *parent != NULL; parent++)
b49e97c9 13317 {
9719ad41 13318 char *error_message = NULL;
b49e97c9
TS
13319 bfd_reloc_status_type r;
13320
13321 /* Specific to MIPS: Deal with relocation types that require
13322 knowing the gp of the output bfd. */
13323 asymbol *sym = *(*parent)->sym_ptr_ptr;
b49e97c9 13324
8236346f
EC
13325 /* If we've managed to find the gp and have a special
13326 function for the relocation then go ahead, else default
13327 to the generic handling. */
13328 if (gp_found
13329 && (*parent)->howto->special_function
13330 == _bfd_mips_elf32_gprel16_reloc)
13331 r = _bfd_mips_elf_gprel16_with_gp (input_bfd, sym, *parent,
13332 input_section, relocatable,
13333 data, gp);
13334 else
86324f90 13335 r = bfd_perform_relocation (input_bfd, *parent, data,
8236346f
EC
13336 input_section,
13337 relocatable ? abfd : NULL,
13338 &error_message);
b49e97c9 13339
1049f94e 13340 if (relocatable)
b49e97c9
TS
13341 {
13342 asection *os = input_section->output_section;
13343
13344 /* A partial link, so keep the relocs */
13345 os->orelocation[os->reloc_count] = *parent;
13346 os->reloc_count++;
13347 }
13348
13349 if (r != bfd_reloc_ok)
13350 {
13351 switch (r)
13352 {
13353 case bfd_reloc_undefined:
1a72702b
AM
13354 (*link_info->callbacks->undefined_symbol)
13355 (link_info, bfd_asymbol_name (*(*parent)->sym_ptr_ptr),
13356 input_bfd, input_section, (*parent)->address, TRUE);
b49e97c9
TS
13357 break;
13358 case bfd_reloc_dangerous:
9719ad41 13359 BFD_ASSERT (error_message != NULL);
1a72702b
AM
13360 (*link_info->callbacks->reloc_dangerous)
13361 (link_info, error_message,
13362 input_bfd, input_section, (*parent)->address);
b49e97c9
TS
13363 break;
13364 case bfd_reloc_overflow:
1a72702b
AM
13365 (*link_info->callbacks->reloc_overflow)
13366 (link_info, NULL,
13367 bfd_asymbol_name (*(*parent)->sym_ptr_ptr),
13368 (*parent)->howto->name, (*parent)->addend,
13369 input_bfd, input_section, (*parent)->address);
b49e97c9
TS
13370 break;
13371 case bfd_reloc_outofrange:
13372 default:
13373 abort ();
13374 break;
13375 }
13376
13377 }
13378 }
13379 }
c9594989 13380 free (reloc_vector);
b49e97c9
TS
13381 return data;
13382
dc1e8a47 13383 error_return:
c9594989 13384 free (reloc_vector);
b49e97c9
TS
13385 return NULL;
13386}
13387\f
df58fc94
RS
13388static bfd_boolean
13389mips_elf_relax_delete_bytes (bfd *abfd,
13390 asection *sec, bfd_vma addr, int count)
13391{
13392 Elf_Internal_Shdr *symtab_hdr;
13393 unsigned int sec_shndx;
13394 bfd_byte *contents;
13395 Elf_Internal_Rela *irel, *irelend;
13396 Elf_Internal_Sym *isym;
13397 Elf_Internal_Sym *isymend;
13398 struct elf_link_hash_entry **sym_hashes;
13399 struct elf_link_hash_entry **end_hashes;
13400 struct elf_link_hash_entry **start_hashes;
13401 unsigned int symcount;
13402
13403 sec_shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
13404 contents = elf_section_data (sec)->this_hdr.contents;
13405
13406 irel = elf_section_data (sec)->relocs;
13407 irelend = irel + sec->reloc_count;
13408
13409 /* Actually delete the bytes. */
13410 memmove (contents + addr, contents + addr + count,
13411 (size_t) (sec->size - addr - count));
13412 sec->size -= count;
13413
13414 /* Adjust all the relocs. */
13415 for (irel = elf_section_data (sec)->relocs; irel < irelend; irel++)
13416 {
13417 /* Get the new reloc address. */
13418 if (irel->r_offset > addr)
13419 irel->r_offset -= count;
13420 }
13421
13422 BFD_ASSERT (addr % 2 == 0);
13423 BFD_ASSERT (count % 2 == 0);
13424
13425 /* Adjust the local symbols defined in this section. */
13426 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
13427 isym = (Elf_Internal_Sym *) symtab_hdr->contents;
13428 for (isymend = isym + symtab_hdr->sh_info; isym < isymend; isym++)
2309ddf2 13429 if (isym->st_shndx == sec_shndx && isym->st_value > addr)
df58fc94
RS
13430 isym->st_value -= count;
13431
13432 /* Now adjust the global symbols defined in this section. */
13433 symcount = (symtab_hdr->sh_size / sizeof (Elf32_External_Sym)
13434 - symtab_hdr->sh_info);
13435 sym_hashes = start_hashes = elf_sym_hashes (abfd);
13436 end_hashes = sym_hashes + symcount;
13437
13438 for (; sym_hashes < end_hashes; sym_hashes++)
13439 {
13440 struct elf_link_hash_entry *sym_hash = *sym_hashes;
13441
13442 if ((sym_hash->root.type == bfd_link_hash_defined
13443 || sym_hash->root.type == bfd_link_hash_defweak)
13444 && sym_hash->root.u.def.section == sec)
13445 {
2309ddf2 13446 bfd_vma value = sym_hash->root.u.def.value;
df58fc94 13447
df58fc94
RS
13448 if (ELF_ST_IS_MICROMIPS (sym_hash->other))
13449 value &= MINUS_TWO;
13450 if (value > addr)
13451 sym_hash->root.u.def.value -= count;
13452 }
13453 }
13454
13455 return TRUE;
13456}
13457
13458
13459/* Opcodes needed for microMIPS relaxation as found in
13460 opcodes/micromips-opc.c. */
13461
13462struct opcode_descriptor {
13463 unsigned long match;
13464 unsigned long mask;
13465};
13466
13467/* The $ra register aka $31. */
13468
13469#define RA 31
13470
13471/* 32-bit instruction format register fields. */
13472
13473#define OP32_SREG(opcode) (((opcode) >> 16) & 0x1f)
13474#define OP32_TREG(opcode) (((opcode) >> 21) & 0x1f)
13475
13476/* Check if a 5-bit register index can be abbreviated to 3 bits. */
13477
13478#define OP16_VALID_REG(r) \
13479 ((2 <= (r) && (r) <= 7) || (16 <= (r) && (r) <= 17))
13480
13481
13482/* 32-bit and 16-bit branches. */
13483
13484static const struct opcode_descriptor b_insns_32[] = {
13485 { /* "b", "p", */ 0x40400000, 0xffff0000 }, /* bgez 0 */
13486 { /* "b", "p", */ 0x94000000, 0xffff0000 }, /* beq 0, 0 */
13487 { 0, 0 } /* End marker for find_match(). */
13488};
13489
13490static const struct opcode_descriptor bc_insn_32 =
13491 { /* "bc(1|2)(ft)", "N,p", */ 0x42800000, 0xfec30000 };
13492
13493static const struct opcode_descriptor bz_insn_32 =
13494 { /* "b(g|l)(e|t)z", "s,p", */ 0x40000000, 0xff200000 };
13495
13496static const struct opcode_descriptor bzal_insn_32 =
13497 { /* "b(ge|lt)zal", "s,p", */ 0x40200000, 0xffa00000 };
13498
13499static const struct opcode_descriptor beq_insn_32 =
13500 { /* "b(eq|ne)", "s,t,p", */ 0x94000000, 0xdc000000 };
13501
13502static const struct opcode_descriptor b_insn_16 =
13503 { /* "b", "mD", */ 0xcc00, 0xfc00 };
13504
13505static const struct opcode_descriptor bz_insn_16 =
c088dedf 13506 { /* "b(eq|ne)z", "md,mE", */ 0x8c00, 0xdc00 };
df58fc94
RS
13507
13508
13509/* 32-bit and 16-bit branch EQ and NE zero. */
13510
13511/* NOTE: All opcode tables have BEQ/BNE in the same order: first the
13512 eq and second the ne. This convention is used when replacing a
13513 32-bit BEQ/BNE with the 16-bit version. */
13514
13515#define BZC32_REG_FIELD(r) (((r) & 0x1f) << 16)
13516
13517static const struct opcode_descriptor bz_rs_insns_32[] = {
13518 { /* "beqz", "s,p", */ 0x94000000, 0xffe00000 },
13519 { /* "bnez", "s,p", */ 0xb4000000, 0xffe00000 },
13520 { 0, 0 } /* End marker for find_match(). */
13521};
13522
13523static const struct opcode_descriptor bz_rt_insns_32[] = {
13524 { /* "beqz", "t,p", */ 0x94000000, 0xfc01f000 },
13525 { /* "bnez", "t,p", */ 0xb4000000, 0xfc01f000 },
13526 { 0, 0 } /* End marker for find_match(). */
13527};
13528
13529static const struct opcode_descriptor bzc_insns_32[] = {
13530 { /* "beqzc", "s,p", */ 0x40e00000, 0xffe00000 },
13531 { /* "bnezc", "s,p", */ 0x40a00000, 0xffe00000 },
13532 { 0, 0 } /* End marker for find_match(). */
13533};
13534
13535static const struct opcode_descriptor bz_insns_16[] = {
13536 { /* "beqz", "md,mE", */ 0x8c00, 0xfc00 },
13537 { /* "bnez", "md,mE", */ 0xac00, 0xfc00 },
13538 { 0, 0 } /* End marker for find_match(). */
13539};
13540
13541/* Switch between a 5-bit register index and its 3-bit shorthand. */
13542
e67f83e5 13543#define BZ16_REG(opcode) ((((((opcode) >> 7) & 7) + 0x1e) & 0xf) + 2)
eb6b0cf4 13544#define BZ16_REG_FIELD(r) (((r) & 7) << 7)
df58fc94
RS
13545
13546
13547/* 32-bit instructions with a delay slot. */
13548
13549static const struct opcode_descriptor jal_insn_32_bd16 =
13550 { /* "jals", "a", */ 0x74000000, 0xfc000000 };
13551
13552static const struct opcode_descriptor jal_insn_32_bd32 =
13553 { /* "jal", "a", */ 0xf4000000, 0xfc000000 };
13554
13555static const struct opcode_descriptor jal_x_insn_32_bd32 =
13556 { /* "jal[x]", "a", */ 0xf0000000, 0xf8000000 };
13557
13558static const struct opcode_descriptor j_insn_32 =
13559 { /* "j", "a", */ 0xd4000000, 0xfc000000 };
13560
13561static const struct opcode_descriptor jalr_insn_32 =
13562 { /* "jalr[.hb]", "t,s", */ 0x00000f3c, 0xfc00efff };
13563
13564/* This table can be compacted, because no opcode replacement is made. */
13565
13566static const struct opcode_descriptor ds_insns_32_bd16[] = {
13567 { /* "jals", "a", */ 0x74000000, 0xfc000000 },
13568
13569 { /* "jalrs[.hb]", "t,s", */ 0x00004f3c, 0xfc00efff },
13570 { /* "b(ge|lt)zals", "s,p", */ 0x42200000, 0xffa00000 },
13571
13572 { /* "b(g|l)(e|t)z", "s,p", */ 0x40000000, 0xff200000 },
13573 { /* "b(eq|ne)", "s,t,p", */ 0x94000000, 0xdc000000 },
13574 { /* "j", "a", */ 0xd4000000, 0xfc000000 },
13575 { 0, 0 } /* End marker for find_match(). */
13576};
13577
13578/* This table can be compacted, because no opcode replacement is made. */
13579
13580static const struct opcode_descriptor ds_insns_32_bd32[] = {
13581 { /* "jal[x]", "a", */ 0xf0000000, 0xf8000000 },
13582
13583 { /* "jalr[.hb]", "t,s", */ 0x00000f3c, 0xfc00efff },
13584 { /* "b(ge|lt)zal", "s,p", */ 0x40200000, 0xffa00000 },
13585 { 0, 0 } /* End marker for find_match(). */
13586};
13587
13588
13589/* 16-bit instructions with a delay slot. */
13590
13591static const struct opcode_descriptor jalr_insn_16_bd16 =
13592 { /* "jalrs", "my,mj", */ 0x45e0, 0xffe0 };
13593
13594static const struct opcode_descriptor jalr_insn_16_bd32 =
13595 { /* "jalr", "my,mj", */ 0x45c0, 0xffe0 };
13596
13597static const struct opcode_descriptor jr_insn_16 =
13598 { /* "jr", "mj", */ 0x4580, 0xffe0 };
13599
13600#define JR16_REG(opcode) ((opcode) & 0x1f)
13601
13602/* This table can be compacted, because no opcode replacement is made. */
13603
13604static const struct opcode_descriptor ds_insns_16_bd16[] = {
13605 { /* "jalrs", "my,mj", */ 0x45e0, 0xffe0 },
13606
13607 { /* "b", "mD", */ 0xcc00, 0xfc00 },
13608 { /* "b(eq|ne)z", "md,mE", */ 0x8c00, 0xdc00 },
13609 { /* "jr", "mj", */ 0x4580, 0xffe0 },
13610 { 0, 0 } /* End marker for find_match(). */
13611};
13612
13613
13614/* LUI instruction. */
13615
13616static const struct opcode_descriptor lui_insn =
13617 { /* "lui", "s,u", */ 0x41a00000, 0xffe00000 };
13618
13619
13620/* ADDIU instruction. */
13621
13622static const struct opcode_descriptor addiu_insn =
13623 { /* "addiu", "t,r,j", */ 0x30000000, 0xfc000000 };
13624
13625static const struct opcode_descriptor addiupc_insn =
13626 { /* "addiu", "mb,$pc,mQ", */ 0x78000000, 0xfc000000 };
13627
13628#define ADDIUPC_REG_FIELD(r) \
13629 (((2 <= (r) && (r) <= 7) ? (r) : ((r) - 16)) << 23)
13630
13631
13632/* Relaxable instructions in a JAL delay slot: MOVE. */
13633
13634/* The 16-bit move has rd in 9:5 and rs in 4:0. The 32-bit moves
13635 (ADDU, OR) have rd in 15:11 and rs in 10:16. */
13636#define MOVE32_RD(opcode) (((opcode) >> 11) & 0x1f)
13637#define MOVE32_RS(opcode) (((opcode) >> 16) & 0x1f)
13638
13639#define MOVE16_RD_FIELD(r) (((r) & 0x1f) << 5)
13640#define MOVE16_RS_FIELD(r) (((r) & 0x1f) )
13641
13642static const struct opcode_descriptor move_insns_32[] = {
df58fc94 13643 { /* "move", "d,s", */ 0x00000290, 0xffe007ff }, /* or d,s,$0 */
40fc1451 13644 { /* "move", "d,s", */ 0x00000150, 0xffe007ff }, /* addu d,s,$0 */
df58fc94
RS
13645 { 0, 0 } /* End marker for find_match(). */
13646};
13647
13648static const struct opcode_descriptor move_insn_16 =
13649 { /* "move", "mp,mj", */ 0x0c00, 0xfc00 };
13650
13651
13652/* NOP instructions. */
13653
13654static const struct opcode_descriptor nop_insn_32 =
13655 { /* "nop", "", */ 0x00000000, 0xffffffff };
13656
13657static const struct opcode_descriptor nop_insn_16 =
13658 { /* "nop", "", */ 0x0c00, 0xffff };
13659
13660
13661/* Instruction match support. */
13662
13663#define MATCH(opcode, insn) ((opcode & insn.mask) == insn.match)
13664
13665static int
13666find_match (unsigned long opcode, const struct opcode_descriptor insn[])
13667{
13668 unsigned long indx;
13669
13670 for (indx = 0; insn[indx].mask != 0; indx++)
13671 if (MATCH (opcode, insn[indx]))
13672 return indx;
13673
13674 return -1;
13675}
13676
13677
13678/* Branch and delay slot decoding support. */
13679
13680/* If PTR points to what *might* be a 16-bit branch or jump, then
13681 return the minimum length of its delay slot, otherwise return 0.
13682 Non-zero results are not definitive as we might be checking against
13683 the second half of another instruction. */
13684
13685static int
13686check_br16_dslot (bfd *abfd, bfd_byte *ptr)
13687{
13688 unsigned long opcode;
13689 int bdsize;
13690
13691 opcode = bfd_get_16 (abfd, ptr);
13692 if (MATCH (opcode, jalr_insn_16_bd32) != 0)
13693 /* 16-bit branch/jump with a 32-bit delay slot. */
13694 bdsize = 4;
13695 else if (MATCH (opcode, jalr_insn_16_bd16) != 0
13696 || find_match (opcode, ds_insns_16_bd16) >= 0)
13697 /* 16-bit branch/jump with a 16-bit delay slot. */
13698 bdsize = 2;
13699 else
13700 /* No delay slot. */
13701 bdsize = 0;
13702
13703 return bdsize;
13704}
13705
13706/* If PTR points to what *might* be a 32-bit branch or jump, then
13707 return the minimum length of its delay slot, otherwise return 0.
13708 Non-zero results are not definitive as we might be checking against
13709 the second half of another instruction. */
13710
13711static int
13712check_br32_dslot (bfd *abfd, bfd_byte *ptr)
13713{
13714 unsigned long opcode;
13715 int bdsize;
13716
d21911ea 13717 opcode = bfd_get_micromips_32 (abfd, ptr);
df58fc94
RS
13718 if (find_match (opcode, ds_insns_32_bd32) >= 0)
13719 /* 32-bit branch/jump with a 32-bit delay slot. */
13720 bdsize = 4;
13721 else if (find_match (opcode, ds_insns_32_bd16) >= 0)
13722 /* 32-bit branch/jump with a 16-bit delay slot. */
13723 bdsize = 2;
13724 else
13725 /* No delay slot. */
13726 bdsize = 0;
13727
13728 return bdsize;
13729}
13730
13731/* If PTR points to a 16-bit branch or jump with a 32-bit delay slot
13732 that doesn't fiddle with REG, then return TRUE, otherwise FALSE. */
13733
13734static bfd_boolean
13735check_br16 (bfd *abfd, bfd_byte *ptr, unsigned long reg)
13736{
13737 unsigned long opcode;
13738
13739 opcode = bfd_get_16 (abfd, ptr);
13740 if (MATCH (opcode, b_insn_16)
13741 /* B16 */
13742 || (MATCH (opcode, jr_insn_16) && reg != JR16_REG (opcode))
13743 /* JR16 */
13744 || (MATCH (opcode, bz_insn_16) && reg != BZ16_REG (opcode))
13745 /* BEQZ16, BNEZ16 */
13746 || (MATCH (opcode, jalr_insn_16_bd32)
13747 /* JALR16 */
13748 && reg != JR16_REG (opcode) && reg != RA))
13749 return TRUE;
13750
13751 return FALSE;
13752}
13753
13754/* If PTR points to a 32-bit branch or jump that doesn't fiddle with REG,
13755 then return TRUE, otherwise FALSE. */
13756
f41e5fcc 13757static bfd_boolean
df58fc94
RS
13758check_br32 (bfd *abfd, bfd_byte *ptr, unsigned long reg)
13759{
13760 unsigned long opcode;
13761
d21911ea 13762 opcode = bfd_get_micromips_32 (abfd, ptr);
df58fc94
RS
13763 if (MATCH (opcode, j_insn_32)
13764 /* J */
13765 || MATCH (opcode, bc_insn_32)
13766 /* BC1F, BC1T, BC2F, BC2T */
13767 || (MATCH (opcode, jal_x_insn_32_bd32) && reg != RA)
13768 /* JAL, JALX */
13769 || (MATCH (opcode, bz_insn_32) && reg != OP32_SREG (opcode))
13770 /* BGEZ, BGTZ, BLEZ, BLTZ */
13771 || (MATCH (opcode, bzal_insn_32)
13772 /* BGEZAL, BLTZAL */
13773 && reg != OP32_SREG (opcode) && reg != RA)
13774 || ((MATCH (opcode, jalr_insn_32) || MATCH (opcode, beq_insn_32))
13775 /* JALR, JALR.HB, BEQ, BNE */
13776 && reg != OP32_SREG (opcode) && reg != OP32_TREG (opcode)))
13777 return TRUE;
13778
13779 return FALSE;
13780}
13781
80cab405
MR
13782/* If the instruction encoding at PTR and relocations [INTERNAL_RELOCS,
13783 IRELEND) at OFFSET indicate that there must be a compact branch there,
13784 then return TRUE, otherwise FALSE. */
df58fc94
RS
13785
13786static bfd_boolean
80cab405
MR
13787check_relocated_bzc (bfd *abfd, const bfd_byte *ptr, bfd_vma offset,
13788 const Elf_Internal_Rela *internal_relocs,
13789 const Elf_Internal_Rela *irelend)
df58fc94 13790{
80cab405
MR
13791 const Elf_Internal_Rela *irel;
13792 unsigned long opcode;
13793
d21911ea 13794 opcode = bfd_get_micromips_32 (abfd, ptr);
80cab405
MR
13795 if (find_match (opcode, bzc_insns_32) < 0)
13796 return FALSE;
df58fc94
RS
13797
13798 for (irel = internal_relocs; irel < irelend; irel++)
80cab405
MR
13799 if (irel->r_offset == offset
13800 && ELF32_R_TYPE (irel->r_info) == R_MICROMIPS_PC16_S1)
13801 return TRUE;
13802
df58fc94
RS
13803 return FALSE;
13804}
80cab405
MR
13805
13806/* Bitsize checking. */
13807#define IS_BITSIZE(val, N) \
13808 (((((val) & ((1ULL << (N)) - 1)) ^ (1ULL << ((N) - 1))) \
13809 - (1ULL << ((N) - 1))) == (val))
13810
df58fc94
RS
13811\f
13812bfd_boolean
13813_bfd_mips_elf_relax_section (bfd *abfd, asection *sec,
13814 struct bfd_link_info *link_info,
13815 bfd_boolean *again)
13816{
833794fc 13817 bfd_boolean insn32 = mips_elf_hash_table (link_info)->insn32;
df58fc94
RS
13818 Elf_Internal_Shdr *symtab_hdr;
13819 Elf_Internal_Rela *internal_relocs;
13820 Elf_Internal_Rela *irel, *irelend;
13821 bfd_byte *contents = NULL;
13822 Elf_Internal_Sym *isymbuf = NULL;
13823
13824 /* Assume nothing changes. */
13825 *again = FALSE;
13826
13827 /* We don't have to do anything for a relocatable link, if
13828 this section does not have relocs, or if this is not a
13829 code section. */
13830
0e1862bb 13831 if (bfd_link_relocatable (link_info)
df58fc94
RS
13832 || (sec->flags & SEC_RELOC) == 0
13833 || sec->reloc_count == 0
13834 || (sec->flags & SEC_CODE) == 0)
13835 return TRUE;
13836
13837 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
13838
13839 /* Get a copy of the native relocations. */
13840 internal_relocs = (_bfd_elf_link_read_relocs
2c3fc389 13841 (abfd, sec, NULL, (Elf_Internal_Rela *) NULL,
df58fc94
RS
13842 link_info->keep_memory));
13843 if (internal_relocs == NULL)
13844 goto error_return;
13845
13846 /* Walk through them looking for relaxing opportunities. */
13847 irelend = internal_relocs + sec->reloc_count;
13848 for (irel = internal_relocs; irel < irelend; irel++)
13849 {
13850 unsigned long r_symndx = ELF32_R_SYM (irel->r_info);
13851 unsigned int r_type = ELF32_R_TYPE (irel->r_info);
13852 bfd_boolean target_is_micromips_code_p;
13853 unsigned long opcode;
13854 bfd_vma symval;
13855 bfd_vma pcrval;
2309ddf2 13856 bfd_byte *ptr;
df58fc94
RS
13857 int fndopc;
13858
13859 /* The number of bytes to delete for relaxation and from where
07d6d2b8 13860 to delete these bytes starting at irel->r_offset. */
df58fc94
RS
13861 int delcnt = 0;
13862 int deloff = 0;
13863
13864 /* If this isn't something that can be relaxed, then ignore
07d6d2b8 13865 this reloc. */
df58fc94
RS
13866 if (r_type != R_MICROMIPS_HI16
13867 && r_type != R_MICROMIPS_PC16_S1
2309ddf2 13868 && r_type != R_MICROMIPS_26_S1)
df58fc94
RS
13869 continue;
13870
13871 /* Get the section contents if we haven't done so already. */
13872 if (contents == NULL)
13873 {
13874 /* Get cached copy if it exists. */
13875 if (elf_section_data (sec)->this_hdr.contents != NULL)
13876 contents = elf_section_data (sec)->this_hdr.contents;
13877 /* Go get them off disk. */
13878 else if (!bfd_malloc_and_get_section (abfd, sec, &contents))
13879 goto error_return;
13880 }
2309ddf2 13881 ptr = contents + irel->r_offset;
df58fc94
RS
13882
13883 /* Read this BFD's local symbols if we haven't done so already. */
13884 if (isymbuf == NULL && symtab_hdr->sh_info != 0)
13885 {
13886 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
13887 if (isymbuf == NULL)
13888 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
13889 symtab_hdr->sh_info, 0,
13890 NULL, NULL, NULL);
13891 if (isymbuf == NULL)
13892 goto error_return;
13893 }
13894
13895 /* Get the value of the symbol referred to by the reloc. */
13896 if (r_symndx < symtab_hdr->sh_info)
13897 {
13898 /* A local symbol. */
13899 Elf_Internal_Sym *isym;
13900 asection *sym_sec;
13901
13902 isym = isymbuf + r_symndx;
13903 if (isym->st_shndx == SHN_UNDEF)
13904 sym_sec = bfd_und_section_ptr;
13905 else if (isym->st_shndx == SHN_ABS)
13906 sym_sec = bfd_abs_section_ptr;
13907 else if (isym->st_shndx == SHN_COMMON)
13908 sym_sec = bfd_com_section_ptr;
13909 else
13910 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
13911 symval = (isym->st_value
13912 + sym_sec->output_section->vma
13913 + sym_sec->output_offset);
13914 target_is_micromips_code_p = ELF_ST_IS_MICROMIPS (isym->st_other);
13915 }
13916 else
13917 {
13918 unsigned long indx;
13919 struct elf_link_hash_entry *h;
13920
13921 /* An external symbol. */
13922 indx = r_symndx - symtab_hdr->sh_info;
13923 h = elf_sym_hashes (abfd)[indx];
13924 BFD_ASSERT (h != NULL);
13925
13926 if (h->root.type != bfd_link_hash_defined
13927 && h->root.type != bfd_link_hash_defweak)
13928 /* This appears to be a reference to an undefined
13929 symbol. Just ignore it -- it will be caught by the
13930 regular reloc processing. */
13931 continue;
13932
13933 symval = (h->root.u.def.value
13934 + h->root.u.def.section->output_section->vma
13935 + h->root.u.def.section->output_offset);
13936 target_is_micromips_code_p = (!h->needs_plt
13937 && ELF_ST_IS_MICROMIPS (h->other));
13938 }
13939
13940
13941 /* For simplicity of coding, we are going to modify the
07d6d2b8
AM
13942 section contents, the section relocs, and the BFD symbol
13943 table. We must tell the rest of the code not to free up this
13944 information. It would be possible to instead create a table
13945 of changes which have to be made, as is done in coff-mips.c;
13946 that would be more work, but would require less memory when
13947 the linker is run. */
df58fc94
RS
13948
13949 /* Only 32-bit instructions relaxed. */
13950 if (irel->r_offset + 4 > sec->size)
13951 continue;
13952
d21911ea 13953 opcode = bfd_get_micromips_32 (abfd, ptr);
df58fc94
RS
13954
13955 /* This is the pc-relative distance from the instruction the
07d6d2b8 13956 relocation is applied to, to the symbol referred. */
df58fc94
RS
13957 pcrval = (symval
13958 - (sec->output_section->vma + sec->output_offset)
13959 - irel->r_offset);
13960
13961 /* R_MICROMIPS_HI16 / LUI relaxation to nil, performing relaxation
07d6d2b8
AM
13962 of corresponding R_MICROMIPS_LO16 to R_MICROMIPS_HI0_LO16 or
13963 R_MICROMIPS_PC23_S2. The R_MICROMIPS_PC23_S2 condition is
df58fc94 13964
07d6d2b8 13965 (symval % 4 == 0 && IS_BITSIZE (pcrval, 25))
df58fc94 13966
07d6d2b8
AM
13967 where pcrval has first to be adjusted to apply against the LO16
13968 location (we make the adjustment later on, when we have figured
13969 out the offset). */
df58fc94
RS
13970 if (r_type == R_MICROMIPS_HI16 && MATCH (opcode, lui_insn))
13971 {
80cab405 13972 bfd_boolean bzc = FALSE;
df58fc94
RS
13973 unsigned long nextopc;
13974 unsigned long reg;
13975 bfd_vma offset;
13976
13977 /* Give up if the previous reloc was a HI16 against this symbol
13978 too. */
13979 if (irel > internal_relocs
13980 && ELF32_R_TYPE (irel[-1].r_info) == R_MICROMIPS_HI16
13981 && ELF32_R_SYM (irel[-1].r_info) == r_symndx)
13982 continue;
13983
13984 /* Or if the next reloc is not a LO16 against this symbol. */
13985 if (irel + 1 >= irelend
13986 || ELF32_R_TYPE (irel[1].r_info) != R_MICROMIPS_LO16
13987 || ELF32_R_SYM (irel[1].r_info) != r_symndx)
13988 continue;
13989
13990 /* Or if the second next reloc is a LO16 against this symbol too. */
13991 if (irel + 2 >= irelend
13992 && ELF32_R_TYPE (irel[2].r_info) == R_MICROMIPS_LO16
13993 && ELF32_R_SYM (irel[2].r_info) == r_symndx)
13994 continue;
13995
80cab405
MR
13996 /* See if the LUI instruction *might* be in a branch delay slot.
13997 We check whether what looks like a 16-bit branch or jump is
13998 actually an immediate argument to a compact branch, and let
13999 it through if so. */
df58fc94 14000 if (irel->r_offset >= 2
2309ddf2 14001 && check_br16_dslot (abfd, ptr - 2)
df58fc94 14002 && !(irel->r_offset >= 4
80cab405
MR
14003 && (bzc = check_relocated_bzc (abfd,
14004 ptr - 4, irel->r_offset - 4,
14005 internal_relocs, irelend))))
df58fc94
RS
14006 continue;
14007 if (irel->r_offset >= 4
80cab405 14008 && !bzc
2309ddf2 14009 && check_br32_dslot (abfd, ptr - 4))
df58fc94
RS
14010 continue;
14011
14012 reg = OP32_SREG (opcode);
14013
14014 /* We only relax adjacent instructions or ones separated with
14015 a branch or jump that has a delay slot. The branch or jump
14016 must not fiddle with the register used to hold the address.
14017 Subtract 4 for the LUI itself. */
14018 offset = irel[1].r_offset - irel[0].r_offset;
14019 switch (offset - 4)
14020 {
14021 case 0:
14022 break;
14023 case 2:
2309ddf2 14024 if (check_br16 (abfd, ptr + 4, reg))
df58fc94
RS
14025 break;
14026 continue;
14027 case 4:
2309ddf2 14028 if (check_br32 (abfd, ptr + 4, reg))
df58fc94
RS
14029 break;
14030 continue;
14031 default:
14032 continue;
14033 }
14034
d21911ea 14035 nextopc = bfd_get_micromips_32 (abfd, contents + irel[1].r_offset);
df58fc94
RS
14036
14037 /* Give up unless the same register is used with both
14038 relocations. */
14039 if (OP32_SREG (nextopc) != reg)
14040 continue;
14041
14042 /* Now adjust pcrval, subtracting the offset to the LO16 reloc
14043 and rounding up to take masking of the two LSBs into account. */
14044 pcrval = ((pcrval - offset + 3) | 3) ^ 3;
14045
14046 /* R_MICROMIPS_LO16 relaxation to R_MICROMIPS_HI0_LO16. */
14047 if (IS_BITSIZE (symval, 16))
14048 {
14049 /* Fix the relocation's type. */
14050 irel[1].r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_HI0_LO16);
14051
14052 /* Instructions using R_MICROMIPS_LO16 have the base or
07d6d2b8
AM
14053 source register in bits 20:16. This register becomes $0
14054 (zero) as the result of the R_MICROMIPS_HI16 being 0. */
df58fc94
RS
14055 nextopc &= ~0x001f0000;
14056 bfd_put_16 (abfd, (nextopc >> 16) & 0xffff,
14057 contents + irel[1].r_offset);
14058 }
14059
14060 /* R_MICROMIPS_LO16 / ADDIU relaxation to R_MICROMIPS_PC23_S2.
14061 We add 4 to take LUI deletion into account while checking
14062 the PC-relative distance. */
14063 else if (symval % 4 == 0
14064 && IS_BITSIZE (pcrval + 4, 25)
14065 && MATCH (nextopc, addiu_insn)
14066 && OP32_TREG (nextopc) == OP32_SREG (nextopc)
14067 && OP16_VALID_REG (OP32_TREG (nextopc)))
14068 {
14069 /* Fix the relocation's type. */
14070 irel[1].r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_PC23_S2);
14071
14072 /* Replace ADDIU with the ADDIUPC version. */
14073 nextopc = (addiupc_insn.match
14074 | ADDIUPC_REG_FIELD (OP32_TREG (nextopc)));
14075
d21911ea
MR
14076 bfd_put_micromips_32 (abfd, nextopc,
14077 contents + irel[1].r_offset);
df58fc94
RS
14078 }
14079
14080 /* Can't do anything, give up, sigh... */
14081 else
14082 continue;
14083
14084 /* Fix the relocation's type. */
14085 irel->r_info = ELF32_R_INFO (r_symndx, R_MIPS_NONE);
14086
14087 /* Delete the LUI instruction: 4 bytes at irel->r_offset. */
14088 delcnt = 4;
14089 deloff = 0;
14090 }
14091
14092 /* Compact branch relaxation -- due to the multitude of macros
07d6d2b8
AM
14093 employed by the compiler/assembler, compact branches are not
14094 always generated. Obviously, this can/will be fixed elsewhere,
14095 but there is no drawback in double checking it here. */
df58fc94
RS
14096 else if (r_type == R_MICROMIPS_PC16_S1
14097 && irel->r_offset + 5 < sec->size
14098 && ((fndopc = find_match (opcode, bz_rs_insns_32)) >= 0
14099 || (fndopc = find_match (opcode, bz_rt_insns_32)) >= 0)
833794fc
MR
14100 && ((!insn32
14101 && (delcnt = MATCH (bfd_get_16 (abfd, ptr + 4),
14102 nop_insn_16) ? 2 : 0))
14103 || (irel->r_offset + 7 < sec->size
14104 && (delcnt = MATCH (bfd_get_micromips_32 (abfd,
14105 ptr + 4),
14106 nop_insn_32) ? 4 : 0))))
df58fc94
RS
14107 {
14108 unsigned long reg;
14109
14110 reg = OP32_SREG (opcode) ? OP32_SREG (opcode) : OP32_TREG (opcode);
14111
14112 /* Replace BEQZ/BNEZ with the compact version. */
14113 opcode = (bzc_insns_32[fndopc].match
14114 | BZC32_REG_FIELD (reg)
14115 | (opcode & 0xffff)); /* Addend value. */
14116
d21911ea 14117 bfd_put_micromips_32 (abfd, opcode, ptr);
df58fc94 14118
833794fc
MR
14119 /* Delete the delay slot NOP: two or four bytes from
14120 irel->offset + 4; delcnt has already been set above. */
df58fc94
RS
14121 deloff = 4;
14122 }
14123
14124 /* R_MICROMIPS_PC16_S1 relaxation to R_MICROMIPS_PC10_S1. We need
07d6d2b8 14125 to check the distance from the next instruction, so subtract 2. */
833794fc
MR
14126 else if (!insn32
14127 && r_type == R_MICROMIPS_PC16_S1
df58fc94
RS
14128 && IS_BITSIZE (pcrval - 2, 11)
14129 && find_match (opcode, b_insns_32) >= 0)
14130 {
14131 /* Fix the relocation's type. */
14132 irel->r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_PC10_S1);
14133
a8685210 14134 /* Replace the 32-bit opcode with a 16-bit opcode. */
df58fc94
RS
14135 bfd_put_16 (abfd,
14136 (b_insn_16.match
14137 | (opcode & 0x3ff)), /* Addend value. */
2309ddf2 14138 ptr);
df58fc94
RS
14139
14140 /* Delete 2 bytes from irel->r_offset + 2. */
14141 delcnt = 2;
14142 deloff = 2;
14143 }
14144
14145 /* R_MICROMIPS_PC16_S1 relaxation to R_MICROMIPS_PC7_S1. We need
07d6d2b8 14146 to check the distance from the next instruction, so subtract 2. */
833794fc
MR
14147 else if (!insn32
14148 && r_type == R_MICROMIPS_PC16_S1
df58fc94
RS
14149 && IS_BITSIZE (pcrval - 2, 8)
14150 && (((fndopc = find_match (opcode, bz_rs_insns_32)) >= 0
14151 && OP16_VALID_REG (OP32_SREG (opcode)))
14152 || ((fndopc = find_match (opcode, bz_rt_insns_32)) >= 0
14153 && OP16_VALID_REG (OP32_TREG (opcode)))))
14154 {
14155 unsigned long reg;
14156
14157 reg = OP32_SREG (opcode) ? OP32_SREG (opcode) : OP32_TREG (opcode);
14158
14159 /* Fix the relocation's type. */
14160 irel->r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_PC7_S1);
14161
a8685210 14162 /* Replace the 32-bit opcode with a 16-bit opcode. */
df58fc94
RS
14163 bfd_put_16 (abfd,
14164 (bz_insns_16[fndopc].match
14165 | BZ16_REG_FIELD (reg)
14166 | (opcode & 0x7f)), /* Addend value. */
2309ddf2 14167 ptr);
df58fc94
RS
14168
14169 /* Delete 2 bytes from irel->r_offset + 2. */
14170 delcnt = 2;
14171 deloff = 2;
14172 }
14173
14174 /* R_MICROMIPS_26_S1 -- JAL to JALS relaxation for microMIPS targets. */
833794fc
MR
14175 else if (!insn32
14176 && r_type == R_MICROMIPS_26_S1
df58fc94
RS
14177 && target_is_micromips_code_p
14178 && irel->r_offset + 7 < sec->size
14179 && MATCH (opcode, jal_insn_32_bd32))
14180 {
14181 unsigned long n32opc;
14182 bfd_boolean relaxed = FALSE;
14183
d21911ea 14184 n32opc = bfd_get_micromips_32 (abfd, ptr + 4);
df58fc94
RS
14185
14186 if (MATCH (n32opc, nop_insn_32))
14187 {
14188 /* Replace delay slot 32-bit NOP with a 16-bit NOP. */
2309ddf2 14189 bfd_put_16 (abfd, nop_insn_16.match, ptr + 4);
df58fc94
RS
14190
14191 relaxed = TRUE;
14192 }
14193 else if (find_match (n32opc, move_insns_32) >= 0)
14194 {
14195 /* Replace delay slot 32-bit MOVE with 16-bit MOVE. */
14196 bfd_put_16 (abfd,
14197 (move_insn_16.match
14198 | MOVE16_RD_FIELD (MOVE32_RD (n32opc))
14199 | MOVE16_RS_FIELD (MOVE32_RS (n32opc))),
2309ddf2 14200 ptr + 4);
df58fc94
RS
14201
14202 relaxed = TRUE;
14203 }
14204 /* Other 32-bit instructions relaxable to 16-bit
14205 instructions will be handled here later. */
14206
14207 if (relaxed)
14208 {
14209 /* JAL with 32-bit delay slot that is changed to a JALS
07d6d2b8 14210 with 16-bit delay slot. */
d21911ea 14211 bfd_put_micromips_32 (abfd, jal_insn_32_bd16.match, ptr);
df58fc94
RS
14212
14213 /* Delete 2 bytes from irel->r_offset + 6. */
14214 delcnt = 2;
14215 deloff = 6;
14216 }
14217 }
14218
14219 if (delcnt != 0)
14220 {
14221 /* Note that we've changed the relocs, section contents, etc. */
14222 elf_section_data (sec)->relocs = internal_relocs;
14223 elf_section_data (sec)->this_hdr.contents = contents;
14224 symtab_hdr->contents = (unsigned char *) isymbuf;
14225
14226 /* Delete bytes depending on the delcnt and deloff. */
14227 if (!mips_elf_relax_delete_bytes (abfd, sec,
14228 irel->r_offset + deloff, delcnt))
14229 goto error_return;
14230
14231 /* That will change things, so we should relax again.
14232 Note that this is not required, and it may be slow. */
14233 *again = TRUE;
14234 }
14235 }
14236
14237 if (isymbuf != NULL
14238 && symtab_hdr->contents != (unsigned char *) isymbuf)
14239 {
14240 if (! link_info->keep_memory)
14241 free (isymbuf);
14242 else
14243 {
14244 /* Cache the symbols for elf_link_input_bfd. */
14245 symtab_hdr->contents = (unsigned char *) isymbuf;
14246 }
14247 }
14248
14249 if (contents != NULL
14250 && elf_section_data (sec)->this_hdr.contents != contents)
14251 {
14252 if (! link_info->keep_memory)
14253 free (contents);
14254 else
14255 {
14256 /* Cache the section contents for elf_link_input_bfd. */
14257 elf_section_data (sec)->this_hdr.contents = contents;
14258 }
14259 }
14260
c9594989 14261 if (elf_section_data (sec)->relocs != internal_relocs)
df58fc94
RS
14262 free (internal_relocs);
14263
14264 return TRUE;
14265
14266 error_return:
c9594989 14267 if (symtab_hdr->contents != (unsigned char *) isymbuf)
df58fc94 14268 free (isymbuf);
c9594989 14269 if (elf_section_data (sec)->this_hdr.contents != contents)
df58fc94 14270 free (contents);
c9594989 14271 if (elf_section_data (sec)->relocs != internal_relocs)
df58fc94
RS
14272 free (internal_relocs);
14273
14274 return FALSE;
14275}
14276\f
b49e97c9
TS
14277/* Create a MIPS ELF linker hash table. */
14278
14279struct bfd_link_hash_table *
9719ad41 14280_bfd_mips_elf_link_hash_table_create (bfd *abfd)
b49e97c9
TS
14281{
14282 struct mips_elf_link_hash_table *ret;
986f0783 14283 size_t amt = sizeof (struct mips_elf_link_hash_table);
b49e97c9 14284
7bf52ea2 14285 ret = bfd_zmalloc (amt);
9719ad41 14286 if (ret == NULL)
b49e97c9
TS
14287 return NULL;
14288
66eb6687
AM
14289 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
14290 mips_elf_link_hash_newfunc,
4dfe6ac6
NC
14291 sizeof (struct mips_elf_link_hash_entry),
14292 MIPS_ELF_DATA))
b49e97c9 14293 {
e2d34d7d 14294 free (ret);
b49e97c9
TS
14295 return NULL;
14296 }
1bbce132
MR
14297 ret->root.init_plt_refcount.plist = NULL;
14298 ret->root.init_plt_offset.plist = NULL;
b49e97c9 14299
b49e97c9
TS
14300 return &ret->root.root;
14301}
0a44bf69
RS
14302
14303/* Likewise, but indicate that the target is VxWorks. */
14304
14305struct bfd_link_hash_table *
14306_bfd_mips_vxworks_link_hash_table_create (bfd *abfd)
14307{
14308 struct bfd_link_hash_table *ret;
14309
14310 ret = _bfd_mips_elf_link_hash_table_create (abfd);
14311 if (ret)
14312 {
14313 struct mips_elf_link_hash_table *htab;
14314
14315 htab = (struct mips_elf_link_hash_table *) ret;
861fb55a 14316 htab->use_plts_and_copy_relocs = TRUE;
0a44bf69
RS
14317 }
14318 return ret;
14319}
861fb55a
DJ
14320
14321/* A function that the linker calls if we are allowed to use PLTs
14322 and copy relocs. */
14323
14324void
14325_bfd_mips_elf_use_plts_and_copy_relocs (struct bfd_link_info *info)
14326{
14327 mips_elf_hash_table (info)->use_plts_and_copy_relocs = TRUE;
14328}
833794fc
MR
14329
14330/* A function that the linker calls to select between all or only
8b10b0b3 14331 32-bit microMIPS instructions, and between making or ignoring
47275900
MR
14332 branch relocation checks for invalid transitions between ISA modes.
14333 Also record whether we have been configured for a GNU target. */
833794fc
MR
14334
14335void
8b10b0b3 14336_bfd_mips_elf_linker_flags (struct bfd_link_info *info, bfd_boolean insn32,
47275900
MR
14337 bfd_boolean ignore_branch_isa,
14338 bfd_boolean gnu_target)
833794fc 14339{
8b10b0b3
MR
14340 mips_elf_hash_table (info)->insn32 = insn32;
14341 mips_elf_hash_table (info)->ignore_branch_isa = ignore_branch_isa;
47275900 14342 mips_elf_hash_table (info)->gnu_target = gnu_target;
833794fc 14343}
3734320d
MF
14344
14345/* A function that the linker calls to enable use of compact branches in
14346 linker generated code for MIPSR6. */
14347
14348void
14349_bfd_mips_elf_compact_branches (struct bfd_link_info *info, bfd_boolean on)
14350{
14351 mips_elf_hash_table (info)->compact_branches = on;
14352}
14353
b49e97c9 14354\f
c97c330b
MF
14355/* Structure for saying that BFD machine EXTENSION extends BASE. */
14356
14357struct mips_mach_extension
14358{
14359 unsigned long extension, base;
14360};
14361
14362
14363/* An array describing how BFD machines relate to one another. The entries
14364 are ordered topologically with MIPS I extensions listed last. */
14365
14366static const struct mips_mach_extension mips_mach_extensions[] =
14367{
14368 /* MIPS64r2 extensions. */
14369 { bfd_mach_mips_octeon3, bfd_mach_mips_octeon2 },
14370 { bfd_mach_mips_octeon2, bfd_mach_mips_octeonp },
14371 { bfd_mach_mips_octeonp, bfd_mach_mips_octeon },
14372 { bfd_mach_mips_octeon, bfd_mach_mipsisa64r2 },
9108bc33 14373 { bfd_mach_mips_gs264e, bfd_mach_mips_gs464e },
bd782c07 14374 { bfd_mach_mips_gs464e, bfd_mach_mips_gs464 },
ac8cb70f 14375 { bfd_mach_mips_gs464, bfd_mach_mipsisa64r2 },
c97c330b
MF
14376
14377 /* MIPS64 extensions. */
14378 { bfd_mach_mipsisa64r2, bfd_mach_mipsisa64 },
14379 { bfd_mach_mips_sb1, bfd_mach_mipsisa64 },
14380 { bfd_mach_mips_xlr, bfd_mach_mipsisa64 },
14381
14382 /* MIPS V extensions. */
14383 { bfd_mach_mipsisa64, bfd_mach_mips5 },
14384
14385 /* R10000 extensions. */
14386 { bfd_mach_mips12000, bfd_mach_mips10000 },
14387 { bfd_mach_mips14000, bfd_mach_mips10000 },
14388 { bfd_mach_mips16000, bfd_mach_mips10000 },
14389
14390 /* R5000 extensions. Note: the vr5500 ISA is an extension of the core
14391 vr5400 ISA, but doesn't include the multimedia stuff. It seems
14392 better to allow vr5400 and vr5500 code to be merged anyway, since
14393 many libraries will just use the core ISA. Perhaps we could add
14394 some sort of ASE flag if this ever proves a problem. */
14395 { bfd_mach_mips5500, bfd_mach_mips5400 },
14396 { bfd_mach_mips5400, bfd_mach_mips5000 },
14397
14398 /* MIPS IV extensions. */
14399 { bfd_mach_mips5, bfd_mach_mips8000 },
14400 { bfd_mach_mips10000, bfd_mach_mips8000 },
14401 { bfd_mach_mips5000, bfd_mach_mips8000 },
14402 { bfd_mach_mips7000, bfd_mach_mips8000 },
14403 { bfd_mach_mips9000, bfd_mach_mips8000 },
14404
14405 /* VR4100 extensions. */
14406 { bfd_mach_mips4120, bfd_mach_mips4100 },
14407 { bfd_mach_mips4111, bfd_mach_mips4100 },
14408
14409 /* MIPS III extensions. */
14410 { bfd_mach_mips_loongson_2e, bfd_mach_mips4000 },
14411 { bfd_mach_mips_loongson_2f, bfd_mach_mips4000 },
14412 { bfd_mach_mips8000, bfd_mach_mips4000 },
14413 { bfd_mach_mips4650, bfd_mach_mips4000 },
14414 { bfd_mach_mips4600, bfd_mach_mips4000 },
14415 { bfd_mach_mips4400, bfd_mach_mips4000 },
14416 { bfd_mach_mips4300, bfd_mach_mips4000 },
14417 { bfd_mach_mips4100, bfd_mach_mips4000 },
c97c330b
MF
14418 { bfd_mach_mips5900, bfd_mach_mips4000 },
14419
38bf472a
MR
14420 /* MIPS32r3 extensions. */
14421 { bfd_mach_mips_interaptiv_mr2, bfd_mach_mipsisa32r3 },
14422
14423 /* MIPS32r2 extensions. */
14424 { bfd_mach_mipsisa32r3, bfd_mach_mipsisa32r2 },
14425
c97c330b
MF
14426 /* MIPS32 extensions. */
14427 { bfd_mach_mipsisa32r2, bfd_mach_mipsisa32 },
14428
14429 /* MIPS II extensions. */
14430 { bfd_mach_mips4000, bfd_mach_mips6000 },
14431 { bfd_mach_mipsisa32, bfd_mach_mips6000 },
b417536f 14432 { bfd_mach_mips4010, bfd_mach_mips6000 },
c97c330b
MF
14433
14434 /* MIPS I extensions. */
14435 { bfd_mach_mips6000, bfd_mach_mips3000 },
14436 { bfd_mach_mips3900, bfd_mach_mips3000 }
14437};
14438
14439/* Return true if bfd machine EXTENSION is an extension of machine BASE. */
14440
14441static bfd_boolean
14442mips_mach_extends_p (unsigned long base, unsigned long extension)
14443{
14444 size_t i;
14445
14446 if (extension == base)
14447 return TRUE;
14448
14449 if (base == bfd_mach_mipsisa32
14450 && mips_mach_extends_p (bfd_mach_mipsisa64, extension))
14451 return TRUE;
14452
14453 if (base == bfd_mach_mipsisa32r2
14454 && mips_mach_extends_p (bfd_mach_mipsisa64r2, extension))
14455 return TRUE;
14456
14457 for (i = 0; i < ARRAY_SIZE (mips_mach_extensions); i++)
14458 if (extension == mips_mach_extensions[i].extension)
14459 {
14460 extension = mips_mach_extensions[i].base;
14461 if (extension == base)
14462 return TRUE;
14463 }
14464
14465 return FALSE;
14466}
14467
14468/* Return the BFD mach for each .MIPS.abiflags ISA Extension. */
14469
14470static unsigned long
14471bfd_mips_isa_ext_mach (unsigned int isa_ext)
14472{
14473 switch (isa_ext)
14474 {
07d6d2b8
AM
14475 case AFL_EXT_3900: return bfd_mach_mips3900;
14476 case AFL_EXT_4010: return bfd_mach_mips4010;
14477 case AFL_EXT_4100: return bfd_mach_mips4100;
14478 case AFL_EXT_4111: return bfd_mach_mips4111;
14479 case AFL_EXT_4120: return bfd_mach_mips4120;
14480 case AFL_EXT_4650: return bfd_mach_mips4650;
14481 case AFL_EXT_5400: return bfd_mach_mips5400;
14482 case AFL_EXT_5500: return bfd_mach_mips5500;
14483 case AFL_EXT_5900: return bfd_mach_mips5900;
14484 case AFL_EXT_10000: return bfd_mach_mips10000;
c97c330b
MF
14485 case AFL_EXT_LOONGSON_2E: return bfd_mach_mips_loongson_2e;
14486 case AFL_EXT_LOONGSON_2F: return bfd_mach_mips_loongson_2f;
07d6d2b8 14487 case AFL_EXT_SB1: return bfd_mach_mips_sb1;
c97c330b
MF
14488 case AFL_EXT_OCTEON: return bfd_mach_mips_octeon;
14489 case AFL_EXT_OCTEONP: return bfd_mach_mips_octeonp;
14490 case AFL_EXT_OCTEON2: return bfd_mach_mips_octeon2;
07d6d2b8
AM
14491 case AFL_EXT_XLR: return bfd_mach_mips_xlr;
14492 default: return bfd_mach_mips3000;
c97c330b
MF
14493 }
14494}
14495
351cdf24
MF
14496/* Return the .MIPS.abiflags value representing each ISA Extension. */
14497
14498unsigned int
14499bfd_mips_isa_ext (bfd *abfd)
14500{
14501 switch (bfd_get_mach (abfd))
14502 {
07d6d2b8
AM
14503 case bfd_mach_mips3900: return AFL_EXT_3900;
14504 case bfd_mach_mips4010: return AFL_EXT_4010;
14505 case bfd_mach_mips4100: return AFL_EXT_4100;
14506 case bfd_mach_mips4111: return AFL_EXT_4111;
14507 case bfd_mach_mips4120: return AFL_EXT_4120;
14508 case bfd_mach_mips4650: return AFL_EXT_4650;
14509 case bfd_mach_mips5400: return AFL_EXT_5400;
14510 case bfd_mach_mips5500: return AFL_EXT_5500;
14511 case bfd_mach_mips5900: return AFL_EXT_5900;
14512 case bfd_mach_mips10000: return AFL_EXT_10000;
c97c330b
MF
14513 case bfd_mach_mips_loongson_2e: return AFL_EXT_LOONGSON_2E;
14514 case bfd_mach_mips_loongson_2f: return AFL_EXT_LOONGSON_2F;
07d6d2b8
AM
14515 case bfd_mach_mips_sb1: return AFL_EXT_SB1;
14516 case bfd_mach_mips_octeon: return AFL_EXT_OCTEON;
14517 case bfd_mach_mips_octeonp: return AFL_EXT_OCTEONP;
14518 case bfd_mach_mips_octeon3: return AFL_EXT_OCTEON3;
14519 case bfd_mach_mips_octeon2: return AFL_EXT_OCTEON2;
14520 case bfd_mach_mips_xlr: return AFL_EXT_XLR;
38bf472a
MR
14521 case bfd_mach_mips_interaptiv_mr2:
14522 return AFL_EXT_INTERAPTIV_MR2;
07d6d2b8 14523 default: return 0;
c97c330b
MF
14524 }
14525}
14526
14527/* Encode ISA level and revision as a single value. */
14528#define LEVEL_REV(LEV,REV) ((LEV) << 3 | (REV))
14529
14530/* Decode a single value into level and revision. */
14531#define ISA_LEVEL(LEVREV) ((LEVREV) >> 3)
14532#define ISA_REV(LEVREV) ((LEVREV) & 0x7)
351cdf24
MF
14533
14534/* Update the isa_level, isa_rev, isa_ext fields of abiflags. */
14535
14536static void
14537update_mips_abiflags_isa (bfd *abfd, Elf_Internal_ABIFlags_v0 *abiflags)
14538{
c97c330b 14539 int new_isa = 0;
351cdf24
MF
14540 switch (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH)
14541 {
c97c330b
MF
14542 case E_MIPS_ARCH_1: new_isa = LEVEL_REV (1, 0); break;
14543 case E_MIPS_ARCH_2: new_isa = LEVEL_REV (2, 0); break;
14544 case E_MIPS_ARCH_3: new_isa = LEVEL_REV (3, 0); break;
14545 case E_MIPS_ARCH_4: new_isa = LEVEL_REV (4, 0); break;
14546 case E_MIPS_ARCH_5: new_isa = LEVEL_REV (5, 0); break;
14547 case E_MIPS_ARCH_32: new_isa = LEVEL_REV (32, 1); break;
14548 case E_MIPS_ARCH_32R2: new_isa = LEVEL_REV (32, 2); break;
14549 case E_MIPS_ARCH_32R6: new_isa = LEVEL_REV (32, 6); break;
14550 case E_MIPS_ARCH_64: new_isa = LEVEL_REV (64, 1); break;
14551 case E_MIPS_ARCH_64R2: new_isa = LEVEL_REV (64, 2); break;
14552 case E_MIPS_ARCH_64R6: new_isa = LEVEL_REV (64, 6); break;
351cdf24 14553 default:
4eca0228 14554 _bfd_error_handler
695344c0 14555 /* xgettext:c-format */
2c1c9679 14556 (_("%pB: unknown architecture %s"),
351cdf24
MF
14557 abfd, bfd_printable_name (abfd));
14558 }
14559
c97c330b
MF
14560 if (new_isa > LEVEL_REV (abiflags->isa_level, abiflags->isa_rev))
14561 {
14562 abiflags->isa_level = ISA_LEVEL (new_isa);
14563 abiflags->isa_rev = ISA_REV (new_isa);
14564 }
14565
14566 /* Update the isa_ext if ABFD describes a further extension. */
14567 if (mips_mach_extends_p (bfd_mips_isa_ext_mach (abiflags->isa_ext),
14568 bfd_get_mach (abfd)))
14569 abiflags->isa_ext = bfd_mips_isa_ext (abfd);
351cdf24
MF
14570}
14571
14572/* Return true if the given ELF header flags describe a 32-bit binary. */
14573
14574static bfd_boolean
14575mips_32bit_flags_p (flagword flags)
14576{
14577 return ((flags & EF_MIPS_32BITMODE) != 0
14578 || (flags & EF_MIPS_ABI) == E_MIPS_ABI_O32
14579 || (flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI32
14580 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1
14581 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_2
14582 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32
7361da2c
AB
14583 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R2
14584 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R6);
351cdf24
MF
14585}
14586
14587/* Infer the content of the ABI flags based on the elf header. */
14588
14589static void
14590infer_mips_abiflags (bfd *abfd, Elf_Internal_ABIFlags_v0* abiflags)
14591{
14592 obj_attribute *in_attr;
14593
14594 memset (abiflags, 0, sizeof (Elf_Internal_ABIFlags_v0));
14595 update_mips_abiflags_isa (abfd, abiflags);
14596
14597 if (mips_32bit_flags_p (elf_elfheader (abfd)->e_flags))
14598 abiflags->gpr_size = AFL_REG_32;
14599 else
14600 abiflags->gpr_size = AFL_REG_64;
14601
14602 abiflags->cpr1_size = AFL_REG_NONE;
14603
14604 in_attr = elf_known_obj_attributes (abfd)[OBJ_ATTR_GNU];
14605 abiflags->fp_abi = in_attr[Tag_GNU_MIPS_ABI_FP].i;
14606
14607 if (abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_SINGLE
14608 || abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_XX
14609 || (abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_DOUBLE
14610 && abiflags->gpr_size == AFL_REG_32))
14611 abiflags->cpr1_size = AFL_REG_32;
14612 else if (abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_DOUBLE
14613 || abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_64
14614 || abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_64A)
14615 abiflags->cpr1_size = AFL_REG_64;
14616
14617 abiflags->cpr2_size = AFL_REG_NONE;
14618
14619 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MDMX)
14620 abiflags->ases |= AFL_ASE_MDMX;
14621 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_M16)
14622 abiflags->ases |= AFL_ASE_MIPS16;
14623 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MICROMIPS)
14624 abiflags->ases |= AFL_ASE_MICROMIPS;
14625
14626 if (abiflags->fp_abi != Val_GNU_MIPS_ABI_FP_ANY
14627 && abiflags->fp_abi != Val_GNU_MIPS_ABI_FP_SOFT
14628 && abiflags->fp_abi != Val_GNU_MIPS_ABI_FP_64A
14629 && abiflags->isa_level >= 32
bdc6c06e 14630 && abiflags->ases != AFL_ASE_LOONGSON_EXT)
351cdf24
MF
14631 abiflags->flags1 |= AFL_FLAGS1_ODDSPREG;
14632}
14633
b49e97c9
TS
14634/* We need to use a special link routine to handle the .reginfo and
14635 the .mdebug sections. We need to merge all instances of these
14636 sections together, not write them all out sequentially. */
14637
b34976b6 14638bfd_boolean
9719ad41 14639_bfd_mips_elf_final_link (bfd *abfd, struct bfd_link_info *info)
b49e97c9 14640{
b49e97c9
TS
14641 asection *o;
14642 struct bfd_link_order *p;
14643 asection *reginfo_sec, *mdebug_sec, *gptab_data_sec, *gptab_bss_sec;
351cdf24 14644 asection *rtproc_sec, *abiflags_sec;
b49e97c9
TS
14645 Elf32_RegInfo reginfo;
14646 struct ecoff_debug_info debug;
861fb55a 14647 struct mips_htab_traverse_info hti;
7a2a6943
NC
14648 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14649 const struct ecoff_debug_swap *swap = bed->elf_backend_ecoff_debug_swap;
b49e97c9 14650 HDRR *symhdr = &debug.symbolic_header;
9719ad41 14651 void *mdebug_handle = NULL;
b49e97c9
TS
14652 asection *s;
14653 EXTR esym;
14654 unsigned int i;
14655 bfd_size_type amt;
0a44bf69 14656 struct mips_elf_link_hash_table *htab;
b49e97c9
TS
14657
14658 static const char * const secname[] =
14659 {
14660 ".text", ".init", ".fini", ".data",
14661 ".rodata", ".sdata", ".sbss", ".bss"
14662 };
14663 static const int sc[] =
14664 {
14665 scText, scInit, scFini, scData,
14666 scRData, scSData, scSBss, scBss
14667 };
14668
0a44bf69 14669 htab = mips_elf_hash_table (info);
4dfe6ac6
NC
14670 BFD_ASSERT (htab != NULL);
14671
64575f78
MR
14672 /* Sort the dynamic symbols so that those with GOT entries come after
14673 those without. */
d4596a51
RS
14674 if (!mips_elf_sort_hash_table (abfd, info))
14675 return FALSE;
b49e97c9 14676
861fb55a
DJ
14677 /* Create any scheduled LA25 stubs. */
14678 hti.info = info;
14679 hti.output_bfd = abfd;
14680 hti.error = FALSE;
14681 htab_traverse (htab->la25_stubs, mips_elf_create_la25_stub, &hti);
14682 if (hti.error)
14683 return FALSE;
14684
b49e97c9
TS
14685 /* Get a value for the GP register. */
14686 if (elf_gp (abfd) == 0)
14687 {
14688 struct bfd_link_hash_entry *h;
14689
b34976b6 14690 h = bfd_link_hash_lookup (info->hash, "_gp", FALSE, FALSE, TRUE);
9719ad41 14691 if (h != NULL && h->type == bfd_link_hash_defined)
b49e97c9
TS
14692 elf_gp (abfd) = (h->u.def.value
14693 + h->u.def.section->output_section->vma
14694 + h->u.def.section->output_offset);
90c14f0c 14695 else if (htab->root.target_os == is_vxworks
0a44bf69
RS
14696 && (h = bfd_link_hash_lookup (info->hash,
14697 "_GLOBAL_OFFSET_TABLE_",
14698 FALSE, FALSE, TRUE))
14699 && h->type == bfd_link_hash_defined)
14700 elf_gp (abfd) = (h->u.def.section->output_section->vma
14701 + h->u.def.section->output_offset
14702 + h->u.def.value);
0e1862bb 14703 else if (bfd_link_relocatable (info))
b49e97c9
TS
14704 {
14705 bfd_vma lo = MINUS_ONE;
14706
14707 /* Find the GP-relative section with the lowest offset. */
9719ad41 14708 for (o = abfd->sections; o != NULL; o = o->next)
b49e97c9
TS
14709 if (o->vma < lo
14710 && (elf_section_data (o)->this_hdr.sh_flags & SHF_MIPS_GPREL))
14711 lo = o->vma;
14712
14713 /* And calculate GP relative to that. */
0a44bf69 14714 elf_gp (abfd) = lo + ELF_MIPS_GP_OFFSET (info);
b49e97c9
TS
14715 }
14716 else
14717 {
14718 /* If the relocate_section function needs to do a reloc
14719 involving the GP value, it should make a reloc_dangerous
14720 callback to warn that GP is not defined. */
14721 }
14722 }
14723
14724 /* Go through the sections and collect the .reginfo and .mdebug
14725 information. */
351cdf24 14726 abiflags_sec = NULL;
b49e97c9
TS
14727 reginfo_sec = NULL;
14728 mdebug_sec = NULL;
14729 gptab_data_sec = NULL;
14730 gptab_bss_sec = NULL;
9719ad41 14731 for (o = abfd->sections; o != NULL; o = o->next)
b49e97c9 14732 {
351cdf24
MF
14733 if (strcmp (o->name, ".MIPS.abiflags") == 0)
14734 {
14735 /* We have found the .MIPS.abiflags section in the output file.
14736 Look through all the link_orders comprising it and remove them.
14737 The data is merged in _bfd_mips_elf_merge_private_bfd_data. */
14738 for (p = o->map_head.link_order; p != NULL; p = p->next)
14739 {
14740 asection *input_section;
14741
14742 if (p->type != bfd_indirect_link_order)
14743 {
14744 if (p->type == bfd_data_link_order)
14745 continue;
14746 abort ();
14747 }
14748
14749 input_section = p->u.indirect.section;
14750
14751 /* Hack: reset the SEC_HAS_CONTENTS flag so that
14752 elf_link_input_bfd ignores this section. */
14753 input_section->flags &= ~SEC_HAS_CONTENTS;
14754 }
14755
14756 /* Size has been set in _bfd_mips_elf_always_size_sections. */
14757 BFD_ASSERT(o->size == sizeof (Elf_External_ABIFlags_v0));
14758
14759 /* Skip this section later on (I don't think this currently
14760 matters, but someday it might). */
14761 o->map_head.link_order = NULL;
14762
14763 abiflags_sec = o;
14764 }
14765
b49e97c9
TS
14766 if (strcmp (o->name, ".reginfo") == 0)
14767 {
14768 memset (&reginfo, 0, sizeof reginfo);
14769
14770 /* We have found the .reginfo section in the output file.
14771 Look through all the link_orders comprising it and merge
14772 the information together. */
8423293d 14773 for (p = o->map_head.link_order; p != NULL; p = p->next)
b49e97c9
TS
14774 {
14775 asection *input_section;
14776 bfd *input_bfd;
14777 Elf32_External_RegInfo ext;
14778 Elf32_RegInfo sub;
6798f8bf 14779 bfd_size_type sz;
b49e97c9
TS
14780
14781 if (p->type != bfd_indirect_link_order)
14782 {
14783 if (p->type == bfd_data_link_order)
14784 continue;
14785 abort ();
14786 }
14787
14788 input_section = p->u.indirect.section;
14789 input_bfd = input_section->owner;
14790
6798f8bf
MR
14791 sz = (input_section->size < sizeof (ext)
14792 ? input_section->size : sizeof (ext));
14793 memset (&ext, 0, sizeof (ext));
b49e97c9 14794 if (! bfd_get_section_contents (input_bfd, input_section,
6798f8bf 14795 &ext, 0, sz))
b34976b6 14796 return FALSE;
b49e97c9
TS
14797
14798 bfd_mips_elf32_swap_reginfo_in (input_bfd, &ext, &sub);
14799
14800 reginfo.ri_gprmask |= sub.ri_gprmask;
14801 reginfo.ri_cprmask[0] |= sub.ri_cprmask[0];
14802 reginfo.ri_cprmask[1] |= sub.ri_cprmask[1];
14803 reginfo.ri_cprmask[2] |= sub.ri_cprmask[2];
14804 reginfo.ri_cprmask[3] |= sub.ri_cprmask[3];
14805
14806 /* ri_gp_value is set by the function
1c5e4ee9 14807 `_bfd_mips_elf_section_processing' when the section is
b49e97c9
TS
14808 finally written out. */
14809
14810 /* Hack: reset the SEC_HAS_CONTENTS flag so that
14811 elf_link_input_bfd ignores this section. */
14812 input_section->flags &= ~SEC_HAS_CONTENTS;
14813 }
14814
14815 /* Size has been set in _bfd_mips_elf_always_size_sections. */
b248d650 14816 BFD_ASSERT(o->size == sizeof (Elf32_External_RegInfo));
b49e97c9
TS
14817
14818 /* Skip this section later on (I don't think this currently
14819 matters, but someday it might). */
8423293d 14820 o->map_head.link_order = NULL;
b49e97c9
TS
14821
14822 reginfo_sec = o;
14823 }
14824
14825 if (strcmp (o->name, ".mdebug") == 0)
14826 {
14827 struct extsym_info einfo;
14828 bfd_vma last;
14829
14830 /* We have found the .mdebug section in the output file.
14831 Look through all the link_orders comprising it and merge
14832 the information together. */
14833 symhdr->magic = swap->sym_magic;
14834 /* FIXME: What should the version stamp be? */
14835 symhdr->vstamp = 0;
14836 symhdr->ilineMax = 0;
14837 symhdr->cbLine = 0;
14838 symhdr->idnMax = 0;
14839 symhdr->ipdMax = 0;
14840 symhdr->isymMax = 0;
14841 symhdr->ioptMax = 0;
14842 symhdr->iauxMax = 0;
14843 symhdr->issMax = 0;
14844 symhdr->issExtMax = 0;
14845 symhdr->ifdMax = 0;
14846 symhdr->crfd = 0;
14847 symhdr->iextMax = 0;
14848
14849 /* We accumulate the debugging information itself in the
14850 debug_info structure. */
14851 debug.line = NULL;
14852 debug.external_dnr = NULL;
14853 debug.external_pdr = NULL;
14854 debug.external_sym = NULL;
14855 debug.external_opt = NULL;
14856 debug.external_aux = NULL;
14857 debug.ss = NULL;
14858 debug.ssext = debug.ssext_end = NULL;
14859 debug.external_fdr = NULL;
14860 debug.external_rfd = NULL;
14861 debug.external_ext = debug.external_ext_end = NULL;
14862
14863 mdebug_handle = bfd_ecoff_debug_init (abfd, &debug, swap, info);
9719ad41 14864 if (mdebug_handle == NULL)
b34976b6 14865 return FALSE;
b49e97c9
TS
14866
14867 esym.jmptbl = 0;
14868 esym.cobol_main = 0;
14869 esym.weakext = 0;
14870 esym.reserved = 0;
14871 esym.ifd = ifdNil;
14872 esym.asym.iss = issNil;
14873 esym.asym.st = stLocal;
14874 esym.asym.reserved = 0;
14875 esym.asym.index = indexNil;
14876 last = 0;
14877 for (i = 0; i < sizeof (secname) / sizeof (secname[0]); i++)
14878 {
14879 esym.asym.sc = sc[i];
14880 s = bfd_get_section_by_name (abfd, secname[i]);
14881 if (s != NULL)
14882 {
14883 esym.asym.value = s->vma;
eea6121a 14884 last = s->vma + s->size;
b49e97c9
TS
14885 }
14886 else
14887 esym.asym.value = last;
14888 if (!bfd_ecoff_debug_one_external (abfd, &debug, swap,
14889 secname[i], &esym))
b34976b6 14890 return FALSE;
b49e97c9
TS
14891 }
14892
8423293d 14893 for (p = o->map_head.link_order; p != NULL; p = p->next)
b49e97c9
TS
14894 {
14895 asection *input_section;
14896 bfd *input_bfd;
14897 const struct ecoff_debug_swap *input_swap;
14898 struct ecoff_debug_info input_debug;
14899 char *eraw_src;
14900 char *eraw_end;
14901
14902 if (p->type != bfd_indirect_link_order)
14903 {
14904 if (p->type == bfd_data_link_order)
14905 continue;
14906 abort ();
14907 }
14908
14909 input_section = p->u.indirect.section;
14910 input_bfd = input_section->owner;
14911
d5eaccd7 14912 if (!is_mips_elf (input_bfd))
b49e97c9
TS
14913 {
14914 /* I don't know what a non MIPS ELF bfd would be
14915 doing with a .mdebug section, but I don't really
14916 want to deal with it. */
14917 continue;
14918 }
14919
14920 input_swap = (get_elf_backend_data (input_bfd)
14921 ->elf_backend_ecoff_debug_swap);
14922
eea6121a 14923 BFD_ASSERT (p->size == input_section->size);
b49e97c9
TS
14924
14925 /* The ECOFF linking code expects that we have already
14926 read in the debugging information and set up an
14927 ecoff_debug_info structure, so we do that now. */
14928 if (! _bfd_mips_elf_read_ecoff_info (input_bfd, input_section,
14929 &input_debug))
b34976b6 14930 return FALSE;
b49e97c9
TS
14931
14932 if (! (bfd_ecoff_debug_accumulate
14933 (mdebug_handle, abfd, &debug, swap, input_bfd,
14934 &input_debug, input_swap, info)))
b34976b6 14935 return FALSE;
b49e97c9
TS
14936
14937 /* Loop through the external symbols. For each one with
14938 interesting information, try to find the symbol in
14939 the linker global hash table and save the information
14940 for the output external symbols. */
14941 eraw_src = input_debug.external_ext;
14942 eraw_end = (eraw_src
14943 + (input_debug.symbolic_header.iextMax
14944 * input_swap->external_ext_size));
14945 for (;
14946 eraw_src < eraw_end;
14947 eraw_src += input_swap->external_ext_size)
14948 {
14949 EXTR ext;
14950 const char *name;
14951 struct mips_elf_link_hash_entry *h;
14952
9719ad41 14953 (*input_swap->swap_ext_in) (input_bfd, eraw_src, &ext);
b49e97c9
TS
14954 if (ext.asym.sc == scNil
14955 || ext.asym.sc == scUndefined
14956 || ext.asym.sc == scSUndefined)
14957 continue;
14958
14959 name = input_debug.ssext + ext.asym.iss;
14960 h = mips_elf_link_hash_lookup (mips_elf_hash_table (info),
b34976b6 14961 name, FALSE, FALSE, TRUE);
b49e97c9
TS
14962 if (h == NULL || h->esym.ifd != -2)
14963 continue;
14964
14965 if (ext.ifd != -1)
14966 {
14967 BFD_ASSERT (ext.ifd
14968 < input_debug.symbolic_header.ifdMax);
14969 ext.ifd = input_debug.ifdmap[ext.ifd];
14970 }
14971
14972 h->esym = ext;
14973 }
14974
14975 /* Free up the information we just read. */
14976 free (input_debug.line);
14977 free (input_debug.external_dnr);
14978 free (input_debug.external_pdr);
14979 free (input_debug.external_sym);
14980 free (input_debug.external_opt);
14981 free (input_debug.external_aux);
14982 free (input_debug.ss);
14983 free (input_debug.ssext);
14984 free (input_debug.external_fdr);
14985 free (input_debug.external_rfd);
14986 free (input_debug.external_ext);
14987
14988 /* Hack: reset the SEC_HAS_CONTENTS flag so that
14989 elf_link_input_bfd ignores this section. */
14990 input_section->flags &= ~SEC_HAS_CONTENTS;
14991 }
14992
0e1862bb 14993 if (SGI_COMPAT (abfd) && bfd_link_pic (info))
b49e97c9
TS
14994 {
14995 /* Create .rtproc section. */
87e0a731 14996 rtproc_sec = bfd_get_linker_section (abfd, ".rtproc");
b49e97c9
TS
14997 if (rtproc_sec == NULL)
14998 {
14999 flagword flags = (SEC_HAS_CONTENTS | SEC_IN_MEMORY
15000 | SEC_LINKER_CREATED | SEC_READONLY);
15001
87e0a731
AM
15002 rtproc_sec = bfd_make_section_anyway_with_flags (abfd,
15003 ".rtproc",
15004 flags);
b49e97c9 15005 if (rtproc_sec == NULL
fd361982 15006 || !bfd_set_section_alignment (rtproc_sec, 4))
b34976b6 15007 return FALSE;
b49e97c9
TS
15008 }
15009
15010 if (! mips_elf_create_procedure_table (mdebug_handle, abfd,
15011 info, rtproc_sec,
15012 &debug))
b34976b6 15013 return FALSE;
b49e97c9
TS
15014 }
15015
15016 /* Build the external symbol information. */
15017 einfo.abfd = abfd;
15018 einfo.info = info;
15019 einfo.debug = &debug;
15020 einfo.swap = swap;
b34976b6 15021 einfo.failed = FALSE;
b49e97c9 15022 mips_elf_link_hash_traverse (mips_elf_hash_table (info),
9719ad41 15023 mips_elf_output_extsym, &einfo);
b49e97c9 15024 if (einfo.failed)
b34976b6 15025 return FALSE;
b49e97c9
TS
15026
15027 /* Set the size of the .mdebug section. */
eea6121a 15028 o->size = bfd_ecoff_debug_size (abfd, &debug, swap);
b49e97c9
TS
15029
15030 /* Skip this section later on (I don't think this currently
15031 matters, but someday it might). */
8423293d 15032 o->map_head.link_order = NULL;
b49e97c9
TS
15033
15034 mdebug_sec = o;
15035 }
15036
0112cd26 15037 if (CONST_STRNEQ (o->name, ".gptab."))
b49e97c9
TS
15038 {
15039 const char *subname;
15040 unsigned int c;
15041 Elf32_gptab *tab;
15042 Elf32_External_gptab *ext_tab;
15043 unsigned int j;
15044
15045 /* The .gptab.sdata and .gptab.sbss sections hold
15046 information describing how the small data area would
15047 change depending upon the -G switch. These sections
15048 not used in executables files. */
0e1862bb 15049 if (! bfd_link_relocatable (info))
b49e97c9 15050 {
8423293d 15051 for (p = o->map_head.link_order; p != NULL; p = p->next)
b49e97c9
TS
15052 {
15053 asection *input_section;
15054
15055 if (p->type != bfd_indirect_link_order)
15056 {
15057 if (p->type == bfd_data_link_order)
15058 continue;
15059 abort ();
15060 }
15061
15062 input_section = p->u.indirect.section;
15063
15064 /* Hack: reset the SEC_HAS_CONTENTS flag so that
15065 elf_link_input_bfd ignores this section. */
15066 input_section->flags &= ~SEC_HAS_CONTENTS;
15067 }
15068
15069 /* Skip this section later on (I don't think this
15070 currently matters, but someday it might). */
8423293d 15071 o->map_head.link_order = NULL;
b49e97c9
TS
15072
15073 /* Really remove the section. */
5daa8fe7 15074 bfd_section_list_remove (abfd, o);
b49e97c9
TS
15075 --abfd->section_count;
15076
15077 continue;
15078 }
15079
15080 /* There is one gptab for initialized data, and one for
15081 uninitialized data. */
15082 if (strcmp (o->name, ".gptab.sdata") == 0)
15083 gptab_data_sec = o;
15084 else if (strcmp (o->name, ".gptab.sbss") == 0)
15085 gptab_bss_sec = o;
15086 else
15087 {
4eca0228 15088 _bfd_error_handler
695344c0 15089 /* xgettext:c-format */
871b3ab2 15090 (_("%pB: illegal section name `%pA'"), abfd, o);
b49e97c9 15091 bfd_set_error (bfd_error_nonrepresentable_section);
b34976b6 15092 return FALSE;
b49e97c9
TS
15093 }
15094
15095 /* The linker script always combines .gptab.data and
15096 .gptab.sdata into .gptab.sdata, and likewise for
15097 .gptab.bss and .gptab.sbss. It is possible that there is
15098 no .sdata or .sbss section in the output file, in which
15099 case we must change the name of the output section. */
15100 subname = o->name + sizeof ".gptab" - 1;
15101 if (bfd_get_section_by_name (abfd, subname) == NULL)
15102 {
15103 if (o == gptab_data_sec)
15104 o->name = ".gptab.data";
15105 else
15106 o->name = ".gptab.bss";
15107 subname = o->name + sizeof ".gptab" - 1;
15108 BFD_ASSERT (bfd_get_section_by_name (abfd, subname) != NULL);
15109 }
15110
15111 /* Set up the first entry. */
15112 c = 1;
15113 amt = c * sizeof (Elf32_gptab);
9719ad41 15114 tab = bfd_malloc (amt);
b49e97c9 15115 if (tab == NULL)
b34976b6 15116 return FALSE;
b49e97c9
TS
15117 tab[0].gt_header.gt_current_g_value = elf_gp_size (abfd);
15118 tab[0].gt_header.gt_unused = 0;
15119
15120 /* Combine the input sections. */
8423293d 15121 for (p = o->map_head.link_order; p != NULL; p = p->next)
b49e97c9
TS
15122 {
15123 asection *input_section;
15124 bfd *input_bfd;
15125 bfd_size_type size;
15126 unsigned long last;
15127 bfd_size_type gpentry;
15128
15129 if (p->type != bfd_indirect_link_order)
15130 {
15131 if (p->type == bfd_data_link_order)
15132 continue;
15133 abort ();
15134 }
15135
15136 input_section = p->u.indirect.section;
15137 input_bfd = input_section->owner;
15138
15139 /* Combine the gptab entries for this input section one
15140 by one. We know that the input gptab entries are
15141 sorted by ascending -G value. */
eea6121a 15142 size = input_section->size;
b49e97c9
TS
15143 last = 0;
15144 for (gpentry = sizeof (Elf32_External_gptab);
15145 gpentry < size;
15146 gpentry += sizeof (Elf32_External_gptab))
15147 {
15148 Elf32_External_gptab ext_gptab;
15149 Elf32_gptab int_gptab;
15150 unsigned long val;
15151 unsigned long add;
b34976b6 15152 bfd_boolean exact;
b49e97c9
TS
15153 unsigned int look;
15154
15155 if (! (bfd_get_section_contents
9719ad41
RS
15156 (input_bfd, input_section, &ext_gptab, gpentry,
15157 sizeof (Elf32_External_gptab))))
b49e97c9
TS
15158 {
15159 free (tab);
b34976b6 15160 return FALSE;
b49e97c9
TS
15161 }
15162
15163 bfd_mips_elf32_swap_gptab_in (input_bfd, &ext_gptab,
15164 &int_gptab);
15165 val = int_gptab.gt_entry.gt_g_value;
15166 add = int_gptab.gt_entry.gt_bytes - last;
15167
b34976b6 15168 exact = FALSE;
b49e97c9
TS
15169 for (look = 1; look < c; look++)
15170 {
15171 if (tab[look].gt_entry.gt_g_value >= val)
15172 tab[look].gt_entry.gt_bytes += add;
15173
15174 if (tab[look].gt_entry.gt_g_value == val)
b34976b6 15175 exact = TRUE;
b49e97c9
TS
15176 }
15177
15178 if (! exact)
15179 {
15180 Elf32_gptab *new_tab;
15181 unsigned int max;
15182
15183 /* We need a new table entry. */
15184 amt = (bfd_size_type) (c + 1) * sizeof (Elf32_gptab);
9719ad41 15185 new_tab = bfd_realloc (tab, amt);
b49e97c9
TS
15186 if (new_tab == NULL)
15187 {
15188 free (tab);
b34976b6 15189 return FALSE;
b49e97c9
TS
15190 }
15191 tab = new_tab;
15192 tab[c].gt_entry.gt_g_value = val;
15193 tab[c].gt_entry.gt_bytes = add;
15194
15195 /* Merge in the size for the next smallest -G
15196 value, since that will be implied by this new
15197 value. */
15198 max = 0;
15199 for (look = 1; look < c; look++)
15200 {
15201 if (tab[look].gt_entry.gt_g_value < val
15202 && (max == 0
15203 || (tab[look].gt_entry.gt_g_value
15204 > tab[max].gt_entry.gt_g_value)))
15205 max = look;
15206 }
15207 if (max != 0)
15208 tab[c].gt_entry.gt_bytes +=
15209 tab[max].gt_entry.gt_bytes;
15210
15211 ++c;
15212 }
15213
15214 last = int_gptab.gt_entry.gt_bytes;
15215 }
15216
15217 /* Hack: reset the SEC_HAS_CONTENTS flag so that
15218 elf_link_input_bfd ignores this section. */
15219 input_section->flags &= ~SEC_HAS_CONTENTS;
15220 }
15221
15222 /* The table must be sorted by -G value. */
15223 if (c > 2)
15224 qsort (tab + 1, c - 1, sizeof (tab[0]), gptab_compare);
15225
15226 /* Swap out the table. */
15227 amt = (bfd_size_type) c * sizeof (Elf32_External_gptab);
9719ad41 15228 ext_tab = bfd_alloc (abfd, amt);
b49e97c9
TS
15229 if (ext_tab == NULL)
15230 {
15231 free (tab);
b34976b6 15232 return FALSE;
b49e97c9
TS
15233 }
15234
15235 for (j = 0; j < c; j++)
15236 bfd_mips_elf32_swap_gptab_out (abfd, tab + j, ext_tab + j);
15237 free (tab);
15238
eea6121a 15239 o->size = c * sizeof (Elf32_External_gptab);
b49e97c9
TS
15240 o->contents = (bfd_byte *) ext_tab;
15241
15242 /* Skip this section later on (I don't think this currently
15243 matters, but someday it might). */
8423293d 15244 o->map_head.link_order = NULL;
b49e97c9
TS
15245 }
15246 }
15247
15248 /* Invoke the regular ELF backend linker to do all the work. */
c152c796 15249 if (!bfd_elf_final_link (abfd, info))
b34976b6 15250 return FALSE;
b49e97c9
TS
15251
15252 /* Now write out the computed sections. */
15253
351cdf24
MF
15254 if (abiflags_sec != NULL)
15255 {
15256 Elf_External_ABIFlags_v0 ext;
15257 Elf_Internal_ABIFlags_v0 *abiflags;
15258
15259 abiflags = &mips_elf_tdata (abfd)->abiflags;
15260
15261 /* Set up the abiflags if no valid input sections were found. */
15262 if (!mips_elf_tdata (abfd)->abiflags_valid)
15263 {
15264 infer_mips_abiflags (abfd, abiflags);
15265 mips_elf_tdata (abfd)->abiflags_valid = TRUE;
15266 }
15267 bfd_mips_elf_swap_abiflags_v0_out (abfd, abiflags, &ext);
15268 if (! bfd_set_section_contents (abfd, abiflags_sec, &ext, 0, sizeof ext))
15269 return FALSE;
15270 }
15271
9719ad41 15272 if (reginfo_sec != NULL)
b49e97c9
TS
15273 {
15274 Elf32_External_RegInfo ext;
15275
15276 bfd_mips_elf32_swap_reginfo_out (abfd, &reginfo, &ext);
9719ad41 15277 if (! bfd_set_section_contents (abfd, reginfo_sec, &ext, 0, sizeof ext))
b34976b6 15278 return FALSE;
b49e97c9
TS
15279 }
15280
9719ad41 15281 if (mdebug_sec != NULL)
b49e97c9
TS
15282 {
15283 BFD_ASSERT (abfd->output_has_begun);
15284 if (! bfd_ecoff_write_accumulated_debug (mdebug_handle, abfd, &debug,
15285 swap, info,
15286 mdebug_sec->filepos))
b34976b6 15287 return FALSE;
b49e97c9
TS
15288
15289 bfd_ecoff_debug_free (mdebug_handle, abfd, &debug, swap, info);
15290 }
15291
9719ad41 15292 if (gptab_data_sec != NULL)
b49e97c9
TS
15293 {
15294 if (! bfd_set_section_contents (abfd, gptab_data_sec,
15295 gptab_data_sec->contents,
eea6121a 15296 0, gptab_data_sec->size))
b34976b6 15297 return FALSE;
b49e97c9
TS
15298 }
15299
9719ad41 15300 if (gptab_bss_sec != NULL)
b49e97c9
TS
15301 {
15302 if (! bfd_set_section_contents (abfd, gptab_bss_sec,
15303 gptab_bss_sec->contents,
eea6121a 15304 0, gptab_bss_sec->size))
b34976b6 15305 return FALSE;
b49e97c9
TS
15306 }
15307
15308 if (SGI_COMPAT (abfd))
15309 {
15310 rtproc_sec = bfd_get_section_by_name (abfd, ".rtproc");
15311 if (rtproc_sec != NULL)
15312 {
15313 if (! bfd_set_section_contents (abfd, rtproc_sec,
15314 rtproc_sec->contents,
eea6121a 15315 0, rtproc_sec->size))
b34976b6 15316 return FALSE;
b49e97c9
TS
15317 }
15318 }
15319
b34976b6 15320 return TRUE;
b49e97c9
TS
15321}
15322\f
b2e9744f
MR
15323/* Merge object file header flags from IBFD into OBFD. Raise an error
15324 if there are conflicting settings. */
15325
15326static bfd_boolean
50e03d47 15327mips_elf_merge_obj_e_flags (bfd *ibfd, struct bfd_link_info *info)
b2e9744f 15328{
50e03d47 15329 bfd *obfd = info->output_bfd;
b2e9744f
MR
15330 struct mips_elf_obj_tdata *out_tdata = mips_elf_tdata (obfd);
15331 flagword old_flags;
15332 flagword new_flags;
15333 bfd_boolean ok;
15334
15335 new_flags = elf_elfheader (ibfd)->e_flags;
15336 elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_NOREORDER;
15337 old_flags = elf_elfheader (obfd)->e_flags;
15338
15339 /* Check flag compatibility. */
15340
15341 new_flags &= ~EF_MIPS_NOREORDER;
15342 old_flags &= ~EF_MIPS_NOREORDER;
15343
15344 /* Some IRIX 6 BSD-compatibility objects have this bit set. It
15345 doesn't seem to matter. */
15346 new_flags &= ~EF_MIPS_XGOT;
15347 old_flags &= ~EF_MIPS_XGOT;
15348
15349 /* MIPSpro generates ucode info in n64 objects. Again, we should
15350 just be able to ignore this. */
15351 new_flags &= ~EF_MIPS_UCODE;
15352 old_flags &= ~EF_MIPS_UCODE;
15353
15354 /* DSOs should only be linked with CPIC code. */
15355 if ((ibfd->flags & DYNAMIC) != 0)
15356 new_flags |= EF_MIPS_PIC | EF_MIPS_CPIC;
15357
15358 if (new_flags == old_flags)
15359 return TRUE;
15360
15361 ok = TRUE;
15362
15363 if (((new_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) != 0)
15364 != ((old_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) != 0))
15365 {
4eca0228 15366 _bfd_error_handler
871b3ab2 15367 (_("%pB: warning: linking abicalls files with non-abicalls files"),
b2e9744f
MR
15368 ibfd);
15369 ok = TRUE;
15370 }
15371
15372 if (new_flags & (EF_MIPS_PIC | EF_MIPS_CPIC))
15373 elf_elfheader (obfd)->e_flags |= EF_MIPS_CPIC;
15374 if (! (new_flags & EF_MIPS_PIC))
15375 elf_elfheader (obfd)->e_flags &= ~EF_MIPS_PIC;
15376
15377 new_flags &= ~ (EF_MIPS_PIC | EF_MIPS_CPIC);
15378 old_flags &= ~ (EF_MIPS_PIC | EF_MIPS_CPIC);
15379
15380 /* Compare the ISAs. */
15381 if (mips_32bit_flags_p (old_flags) != mips_32bit_flags_p (new_flags))
15382 {
4eca0228 15383 _bfd_error_handler
871b3ab2 15384 (_("%pB: linking 32-bit code with 64-bit code"),
b2e9744f
MR
15385 ibfd);
15386 ok = FALSE;
15387 }
15388 else if (!mips_mach_extends_p (bfd_get_mach (ibfd), bfd_get_mach (obfd)))
15389 {
15390 /* OBFD's ISA isn't the same as, or an extension of, IBFD's. */
15391 if (mips_mach_extends_p (bfd_get_mach (obfd), bfd_get_mach (ibfd)))
15392 {
15393 /* Copy the architecture info from IBFD to OBFD. Also copy
15394 the 32-bit flag (if set) so that we continue to recognise
15395 OBFD as a 32-bit binary. */
15396 bfd_set_arch_info (obfd, bfd_get_arch_info (ibfd));
15397 elf_elfheader (obfd)->e_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH);
15398 elf_elfheader (obfd)->e_flags
15399 |= new_flags & (EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
15400
15401 /* Update the ABI flags isa_level, isa_rev, isa_ext fields. */
15402 update_mips_abiflags_isa (obfd, &out_tdata->abiflags);
15403
15404 /* Copy across the ABI flags if OBFD doesn't use them
15405 and if that was what caused us to treat IBFD as 32-bit. */
15406 if ((old_flags & EF_MIPS_ABI) == 0
15407 && mips_32bit_flags_p (new_flags)
15408 && !mips_32bit_flags_p (new_flags & ~EF_MIPS_ABI))
15409 elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_ABI;
15410 }
15411 else
15412 {
15413 /* The ISAs aren't compatible. */
4eca0228 15414 _bfd_error_handler
695344c0 15415 /* xgettext:c-format */
871b3ab2 15416 (_("%pB: linking %s module with previous %s modules"),
b2e9744f
MR
15417 ibfd,
15418 bfd_printable_name (ibfd),
15419 bfd_printable_name (obfd));
15420 ok = FALSE;
15421 }
15422 }
15423
15424 new_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
15425 old_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
15426
15427 /* Compare ABIs. The 64-bit ABI does not use EF_MIPS_ABI. But, it
15428 does set EI_CLASS differently from any 32-bit ABI. */
15429 if ((new_flags & EF_MIPS_ABI) != (old_flags & EF_MIPS_ABI)
15430 || (elf_elfheader (ibfd)->e_ident[EI_CLASS]
15431 != elf_elfheader (obfd)->e_ident[EI_CLASS]))
15432 {
15433 /* Only error if both are set (to different values). */
15434 if (((new_flags & EF_MIPS_ABI) && (old_flags & EF_MIPS_ABI))
15435 || (elf_elfheader (ibfd)->e_ident[EI_CLASS]
15436 != elf_elfheader (obfd)->e_ident[EI_CLASS]))
15437 {
4eca0228 15438 _bfd_error_handler
695344c0 15439 /* xgettext:c-format */
871b3ab2 15440 (_("%pB: ABI mismatch: linking %s module with previous %s modules"),
b2e9744f
MR
15441 ibfd,
15442 elf_mips_abi_name (ibfd),
15443 elf_mips_abi_name (obfd));
15444 ok = FALSE;
15445 }
15446 new_flags &= ~EF_MIPS_ABI;
15447 old_flags &= ~EF_MIPS_ABI;
15448 }
15449
15450 /* Compare ASEs. Forbid linking MIPS16 and microMIPS ASE modules together
15451 and allow arbitrary mixing of the remaining ASEs (retain the union). */
15452 if ((new_flags & EF_MIPS_ARCH_ASE) != (old_flags & EF_MIPS_ARCH_ASE))
15453 {
15454 int old_micro = old_flags & EF_MIPS_ARCH_ASE_MICROMIPS;
15455 int new_micro = new_flags & EF_MIPS_ARCH_ASE_MICROMIPS;
15456 int old_m16 = old_flags & EF_MIPS_ARCH_ASE_M16;
15457 int new_m16 = new_flags & EF_MIPS_ARCH_ASE_M16;
15458 int micro_mis = old_m16 && new_micro;
15459 int m16_mis = old_micro && new_m16;
15460
15461 if (m16_mis || micro_mis)
15462 {
4eca0228 15463 _bfd_error_handler
695344c0 15464 /* xgettext:c-format */
871b3ab2 15465 (_("%pB: ASE mismatch: linking %s module with previous %s modules"),
b2e9744f
MR
15466 ibfd,
15467 m16_mis ? "MIPS16" : "microMIPS",
15468 m16_mis ? "microMIPS" : "MIPS16");
15469 ok = FALSE;
15470 }
15471
15472 elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_ARCH_ASE;
15473
15474 new_flags &= ~ EF_MIPS_ARCH_ASE;
15475 old_flags &= ~ EF_MIPS_ARCH_ASE;
15476 }
15477
15478 /* Compare NaN encodings. */
15479 if ((new_flags & EF_MIPS_NAN2008) != (old_flags & EF_MIPS_NAN2008))
15480 {
695344c0 15481 /* xgettext:c-format */
871b3ab2 15482 _bfd_error_handler (_("%pB: linking %s module with previous %s modules"),
b2e9744f
MR
15483 ibfd,
15484 (new_flags & EF_MIPS_NAN2008
15485 ? "-mnan=2008" : "-mnan=legacy"),
15486 (old_flags & EF_MIPS_NAN2008
15487 ? "-mnan=2008" : "-mnan=legacy"));
15488 ok = FALSE;
15489 new_flags &= ~EF_MIPS_NAN2008;
15490 old_flags &= ~EF_MIPS_NAN2008;
15491 }
15492
15493 /* Compare FP64 state. */
15494 if ((new_flags & EF_MIPS_FP64) != (old_flags & EF_MIPS_FP64))
15495 {
695344c0 15496 /* xgettext:c-format */
871b3ab2 15497 _bfd_error_handler (_("%pB: linking %s module with previous %s modules"),
b2e9744f
MR
15498 ibfd,
15499 (new_flags & EF_MIPS_FP64
15500 ? "-mfp64" : "-mfp32"),
15501 (old_flags & EF_MIPS_FP64
15502 ? "-mfp64" : "-mfp32"));
15503 ok = FALSE;
15504 new_flags &= ~EF_MIPS_FP64;
15505 old_flags &= ~EF_MIPS_FP64;
15506 }
15507
15508 /* Warn about any other mismatches */
15509 if (new_flags != old_flags)
15510 {
695344c0 15511 /* xgettext:c-format */
4eca0228 15512 _bfd_error_handler
871b3ab2 15513 (_("%pB: uses different e_flags (%#x) fields than previous modules "
d42c267e
AM
15514 "(%#x)"),
15515 ibfd, new_flags, old_flags);
b2e9744f
MR
15516 ok = FALSE;
15517 }
15518
15519 return ok;
15520}
15521
2cf19d5c
JM
15522/* Merge object attributes from IBFD into OBFD. Raise an error if
15523 there are conflicting attributes. */
15524static bfd_boolean
50e03d47 15525mips_elf_merge_obj_attributes (bfd *ibfd, struct bfd_link_info *info)
2cf19d5c 15526{
50e03d47 15527 bfd *obfd = info->output_bfd;
2cf19d5c
JM
15528 obj_attribute *in_attr;
15529 obj_attribute *out_attr;
6ae68ba3 15530 bfd *abi_fp_bfd;
b60bf9be 15531 bfd *abi_msa_bfd;
6ae68ba3
MR
15532
15533 abi_fp_bfd = mips_elf_tdata (obfd)->abi_fp_bfd;
15534 in_attr = elf_known_obj_attributes (ibfd)[OBJ_ATTR_GNU];
d929bc19 15535 if (!abi_fp_bfd && in_attr[Tag_GNU_MIPS_ABI_FP].i != Val_GNU_MIPS_ABI_FP_ANY)
6ae68ba3 15536 mips_elf_tdata (obfd)->abi_fp_bfd = ibfd;
2cf19d5c 15537
b60bf9be
CF
15538 abi_msa_bfd = mips_elf_tdata (obfd)->abi_msa_bfd;
15539 if (!abi_msa_bfd
15540 && in_attr[Tag_GNU_MIPS_ABI_MSA].i != Val_GNU_MIPS_ABI_MSA_ANY)
15541 mips_elf_tdata (obfd)->abi_msa_bfd = ibfd;
15542
2cf19d5c
JM
15543 if (!elf_known_obj_attributes_proc (obfd)[0].i)
15544 {
15545 /* This is the first object. Copy the attributes. */
15546 _bfd_elf_copy_obj_attributes (ibfd, obfd);
15547
15548 /* Use the Tag_null value to indicate the attributes have been
15549 initialized. */
15550 elf_known_obj_attributes_proc (obfd)[0].i = 1;
15551
15552 return TRUE;
15553 }
15554
15555 /* Check for conflicting Tag_GNU_MIPS_ABI_FP attributes and merge
15556 non-conflicting ones. */
2cf19d5c
JM
15557 out_attr = elf_known_obj_attributes (obfd)[OBJ_ATTR_GNU];
15558 if (in_attr[Tag_GNU_MIPS_ABI_FP].i != out_attr[Tag_GNU_MIPS_ABI_FP].i)
15559 {
757a636f 15560 int out_fp, in_fp;
6ae68ba3 15561
757a636f
RS
15562 out_fp = out_attr[Tag_GNU_MIPS_ABI_FP].i;
15563 in_fp = in_attr[Tag_GNU_MIPS_ABI_FP].i;
15564 out_attr[Tag_GNU_MIPS_ABI_FP].type = 1;
15565 if (out_fp == Val_GNU_MIPS_ABI_FP_ANY)
15566 out_attr[Tag_GNU_MIPS_ABI_FP].i = in_fp;
351cdf24
MF
15567 else if (out_fp == Val_GNU_MIPS_ABI_FP_XX
15568 && (in_fp == Val_GNU_MIPS_ABI_FP_DOUBLE
15569 || in_fp == Val_GNU_MIPS_ABI_FP_64
15570 || in_fp == Val_GNU_MIPS_ABI_FP_64A))
15571 {
15572 mips_elf_tdata (obfd)->abi_fp_bfd = ibfd;
15573 out_attr[Tag_GNU_MIPS_ABI_FP].i = in_attr[Tag_GNU_MIPS_ABI_FP].i;
15574 }
15575 else if (in_fp == Val_GNU_MIPS_ABI_FP_XX
15576 && (out_fp == Val_GNU_MIPS_ABI_FP_DOUBLE
15577 || out_fp == Val_GNU_MIPS_ABI_FP_64
15578 || out_fp == Val_GNU_MIPS_ABI_FP_64A))
15579 /* Keep the current setting. */;
15580 else if (out_fp == Val_GNU_MIPS_ABI_FP_64A
15581 && in_fp == Val_GNU_MIPS_ABI_FP_64)
15582 {
15583 mips_elf_tdata (obfd)->abi_fp_bfd = ibfd;
15584 out_attr[Tag_GNU_MIPS_ABI_FP].i = in_attr[Tag_GNU_MIPS_ABI_FP].i;
15585 }
15586 else if (in_fp == Val_GNU_MIPS_ABI_FP_64A
15587 && out_fp == Val_GNU_MIPS_ABI_FP_64)
15588 /* Keep the current setting. */;
757a636f
RS
15589 else if (in_fp != Val_GNU_MIPS_ABI_FP_ANY)
15590 {
15591 const char *out_string, *in_string;
6ae68ba3 15592
757a636f
RS
15593 out_string = _bfd_mips_fp_abi_string (out_fp);
15594 in_string = _bfd_mips_fp_abi_string (in_fp);
15595 /* First warn about cases involving unrecognised ABIs. */
15596 if (!out_string && !in_string)
695344c0 15597 /* xgettext:c-format */
757a636f 15598 _bfd_error_handler
2c1c9679 15599 (_("warning: %pB uses unknown floating point ABI %d "
871b3ab2 15600 "(set by %pB), %pB uses unknown floating point ABI %d"),
c08bb8dd 15601 obfd, out_fp, abi_fp_bfd, ibfd, in_fp);
757a636f
RS
15602 else if (!out_string)
15603 _bfd_error_handler
695344c0 15604 /* xgettext:c-format */
2c1c9679 15605 (_("warning: %pB uses unknown floating point ABI %d "
871b3ab2 15606 "(set by %pB), %pB uses %s"),
c08bb8dd 15607 obfd, out_fp, abi_fp_bfd, ibfd, in_string);
757a636f
RS
15608 else if (!in_string)
15609 _bfd_error_handler
695344c0 15610 /* xgettext:c-format */
2c1c9679 15611 (_("warning: %pB uses %s (set by %pB), "
871b3ab2 15612 "%pB uses unknown floating point ABI %d"),
c08bb8dd 15613 obfd, out_string, abi_fp_bfd, ibfd, in_fp);
757a636f
RS
15614 else
15615 {
15616 /* If one of the bfds is soft-float, the other must be
15617 hard-float. The exact choice of hard-float ABI isn't
15618 really relevant to the error message. */
15619 if (in_fp == Val_GNU_MIPS_ABI_FP_SOFT)
15620 out_string = "-mhard-float";
15621 else if (out_fp == Val_GNU_MIPS_ABI_FP_SOFT)
15622 in_string = "-mhard-float";
15623 _bfd_error_handler
695344c0 15624 /* xgettext:c-format */
2c1c9679 15625 (_("warning: %pB uses %s (set by %pB), %pB uses %s"),
c08bb8dd 15626 obfd, out_string, abi_fp_bfd, ibfd, in_string);
757a636f
RS
15627 }
15628 }
2cf19d5c
JM
15629 }
15630
b60bf9be
CF
15631 /* Check for conflicting Tag_GNU_MIPS_ABI_MSA attributes and merge
15632 non-conflicting ones. */
15633 if (in_attr[Tag_GNU_MIPS_ABI_MSA].i != out_attr[Tag_GNU_MIPS_ABI_MSA].i)
15634 {
15635 out_attr[Tag_GNU_MIPS_ABI_MSA].type = 1;
15636 if (out_attr[Tag_GNU_MIPS_ABI_MSA].i == Val_GNU_MIPS_ABI_MSA_ANY)
15637 out_attr[Tag_GNU_MIPS_ABI_MSA].i = in_attr[Tag_GNU_MIPS_ABI_MSA].i;
15638 else if (in_attr[Tag_GNU_MIPS_ABI_MSA].i != Val_GNU_MIPS_ABI_MSA_ANY)
15639 switch (out_attr[Tag_GNU_MIPS_ABI_MSA].i)
15640 {
15641 case Val_GNU_MIPS_ABI_MSA_128:
15642 _bfd_error_handler
695344c0 15643 /* xgettext:c-format */
2c1c9679 15644 (_("warning: %pB uses %s (set by %pB), "
871b3ab2 15645 "%pB uses unknown MSA ABI %d"),
c08bb8dd
AM
15646 obfd, "-mmsa", abi_msa_bfd,
15647 ibfd, in_attr[Tag_GNU_MIPS_ABI_MSA].i);
b60bf9be
CF
15648 break;
15649
15650 default:
15651 switch (in_attr[Tag_GNU_MIPS_ABI_MSA].i)
15652 {
15653 case Val_GNU_MIPS_ABI_MSA_128:
15654 _bfd_error_handler
695344c0 15655 /* xgettext:c-format */
2c1c9679 15656 (_("warning: %pB uses unknown MSA ABI %d "
871b3ab2 15657 "(set by %pB), %pB uses %s"),
c08bb8dd
AM
15658 obfd, out_attr[Tag_GNU_MIPS_ABI_MSA].i,
15659 abi_msa_bfd, ibfd, "-mmsa");
b60bf9be
CF
15660 break;
15661
15662 default:
15663 _bfd_error_handler
695344c0 15664 /* xgettext:c-format */
2c1c9679 15665 (_("warning: %pB uses unknown MSA ABI %d "
871b3ab2 15666 "(set by %pB), %pB uses unknown MSA ABI %d"),
c08bb8dd
AM
15667 obfd, out_attr[Tag_GNU_MIPS_ABI_MSA].i,
15668 abi_msa_bfd, ibfd, in_attr[Tag_GNU_MIPS_ABI_MSA].i);
b60bf9be
CF
15669 break;
15670 }
15671 }
15672 }
15673
2cf19d5c 15674 /* Merge Tag_compatibility attributes and any common GNU ones. */
50e03d47 15675 return _bfd_elf_merge_object_attributes (ibfd, info);
2cf19d5c
JM
15676}
15677
a3dc0a7f
MR
15678/* Merge object ABI flags from IBFD into OBFD. Raise an error if
15679 there are conflicting settings. */
15680
15681static bfd_boolean
15682mips_elf_merge_obj_abiflags (bfd *ibfd, bfd *obfd)
15683{
15684 obj_attribute *out_attr = elf_known_obj_attributes (obfd)[OBJ_ATTR_GNU];
15685 struct mips_elf_obj_tdata *out_tdata = mips_elf_tdata (obfd);
15686 struct mips_elf_obj_tdata *in_tdata = mips_elf_tdata (ibfd);
15687
15688 /* Update the output abiflags fp_abi using the computed fp_abi. */
15689 out_tdata->abiflags.fp_abi = out_attr[Tag_GNU_MIPS_ABI_FP].i;
15690
15691#define max(a, b) ((a) > (b) ? (a) : (b))
15692 /* Merge abiflags. */
15693 out_tdata->abiflags.isa_level = max (out_tdata->abiflags.isa_level,
15694 in_tdata->abiflags.isa_level);
15695 out_tdata->abiflags.isa_rev = max (out_tdata->abiflags.isa_rev,
15696 in_tdata->abiflags.isa_rev);
15697 out_tdata->abiflags.gpr_size = max (out_tdata->abiflags.gpr_size,
15698 in_tdata->abiflags.gpr_size);
15699 out_tdata->abiflags.cpr1_size = max (out_tdata->abiflags.cpr1_size,
15700 in_tdata->abiflags.cpr1_size);
15701 out_tdata->abiflags.cpr2_size = max (out_tdata->abiflags.cpr2_size,
15702 in_tdata->abiflags.cpr2_size);
15703#undef max
15704 out_tdata->abiflags.ases |= in_tdata->abiflags.ases;
15705 out_tdata->abiflags.flags1 |= in_tdata->abiflags.flags1;
15706
15707 return TRUE;
15708}
15709
b49e97c9
TS
15710/* Merge backend specific data from an object file to the output
15711 object file when linking. */
15712
b34976b6 15713bfd_boolean
50e03d47 15714_bfd_mips_elf_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
b49e97c9 15715{
50e03d47 15716 bfd *obfd = info->output_bfd;
cf8502c1
MR
15717 struct mips_elf_obj_tdata *out_tdata;
15718 struct mips_elf_obj_tdata *in_tdata;
b34976b6 15719 bfd_boolean null_input_bfd = TRUE;
b49e97c9 15720 asection *sec;
d537eeb5 15721 bfd_boolean ok;
b49e97c9 15722
58238693 15723 /* Check if we have the same endianness. */
50e03d47 15724 if (! _bfd_generic_verify_endian_match (ibfd, info))
aa701218 15725 {
4eca0228 15726 _bfd_error_handler
871b3ab2 15727 (_("%pB: endianness incompatible with that of the selected emulation"),
d003868e 15728 ibfd);
aa701218
AO
15729 return FALSE;
15730 }
b49e97c9 15731
d5eaccd7 15732 if (!is_mips_elf (ibfd) || !is_mips_elf (obfd))
b34976b6 15733 return TRUE;
b49e97c9 15734
cf8502c1
MR
15735 in_tdata = mips_elf_tdata (ibfd);
15736 out_tdata = mips_elf_tdata (obfd);
15737
aa701218
AO
15738 if (strcmp (bfd_get_target (ibfd), bfd_get_target (obfd)) != 0)
15739 {
4eca0228 15740 _bfd_error_handler
871b3ab2 15741 (_("%pB: ABI is incompatible with that of the selected emulation"),
d003868e 15742 ibfd);
aa701218
AO
15743 return FALSE;
15744 }
15745
23ba6f18
MR
15746 /* Check to see if the input BFD actually contains any sections. If not,
15747 then it has no attributes, and its flags may not have been initialized
15748 either, but it cannot actually cause any incompatibility. */
6b728d32 15749 /* FIXME: This excludes any input shared library from consideration. */
351cdf24
MF
15750 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
15751 {
15752 /* Ignore synthetic sections and empty .text, .data and .bss sections
15753 which are automatically generated by gas. Also ignore fake
15754 (s)common sections, since merely defining a common symbol does
15755 not affect compatibility. */
15756 if ((sec->flags & SEC_IS_COMMON) == 0
15757 && strcmp (sec->name, ".reginfo")
15758 && strcmp (sec->name, ".mdebug")
15759 && (sec->size != 0
15760 || (strcmp (sec->name, ".text")
15761 && strcmp (sec->name, ".data")
15762 && strcmp (sec->name, ".bss"))))
15763 {
15764 null_input_bfd = FALSE;
15765 break;
15766 }
15767 }
15768 if (null_input_bfd)
15769 return TRUE;
15770
28d45e28 15771 /* Populate abiflags using existing information. */
23ba6f18
MR
15772 if (in_tdata->abiflags_valid)
15773 {
15774 obj_attribute *in_attr = elf_known_obj_attributes (ibfd)[OBJ_ATTR_GNU];
28d45e28
MR
15775 Elf_Internal_ABIFlags_v0 in_abiflags;
15776 Elf_Internal_ABIFlags_v0 abiflags;
15777
15778 /* Set up the FP ABI attribute from the abiflags if it is not already
07d6d2b8 15779 set. */
23ba6f18 15780 if (in_attr[Tag_GNU_MIPS_ABI_FP].i == Val_GNU_MIPS_ABI_FP_ANY)
07d6d2b8 15781 in_attr[Tag_GNU_MIPS_ABI_FP].i = in_tdata->abiflags.fp_abi;
23ba6f18 15782
351cdf24 15783 infer_mips_abiflags (ibfd, &abiflags);
cf8502c1 15784 in_abiflags = in_tdata->abiflags;
351cdf24
MF
15785
15786 /* It is not possible to infer the correct ISA revision
07d6d2b8 15787 for R3 or R5 so drop down to R2 for the checks. */
351cdf24
MF
15788 if (in_abiflags.isa_rev == 3 || in_abiflags.isa_rev == 5)
15789 in_abiflags.isa_rev = 2;
15790
c97c330b
MF
15791 if (LEVEL_REV (in_abiflags.isa_level, in_abiflags.isa_rev)
15792 < LEVEL_REV (abiflags.isa_level, abiflags.isa_rev))
4eca0228 15793 _bfd_error_handler
2c1c9679 15794 (_("%pB: warning: inconsistent ISA between e_flags and "
351cdf24
MF
15795 ".MIPS.abiflags"), ibfd);
15796 if (abiflags.fp_abi != Val_GNU_MIPS_ABI_FP_ANY
15797 && in_abiflags.fp_abi != abiflags.fp_abi)
4eca0228 15798 _bfd_error_handler
2c1c9679 15799 (_("%pB: warning: inconsistent FP ABI between .gnu.attributes and "
351cdf24
MF
15800 ".MIPS.abiflags"), ibfd);
15801 if ((in_abiflags.ases & abiflags.ases) != abiflags.ases)
4eca0228 15802 _bfd_error_handler
2c1c9679 15803 (_("%pB: warning: inconsistent ASEs between e_flags and "
351cdf24 15804 ".MIPS.abiflags"), ibfd);
c97c330b
MF
15805 /* The isa_ext is allowed to be an extension of what can be inferred
15806 from e_flags. */
15807 if (!mips_mach_extends_p (bfd_mips_isa_ext_mach (abiflags.isa_ext),
15808 bfd_mips_isa_ext_mach (in_abiflags.isa_ext)))
4eca0228 15809 _bfd_error_handler
2c1c9679 15810 (_("%pB: warning: inconsistent ISA extensions between e_flags and "
351cdf24
MF
15811 ".MIPS.abiflags"), ibfd);
15812 if (in_abiflags.flags2 != 0)
4eca0228 15813 _bfd_error_handler
2c1c9679 15814 (_("%pB: warning: unexpected flag in the flags2 field of "
351cdf24 15815 ".MIPS.abiflags (0x%lx)"), ibfd,
d42c267e 15816 in_abiflags.flags2);
351cdf24 15817 }
28d45e28
MR
15818 else
15819 {
15820 infer_mips_abiflags (ibfd, &in_tdata->abiflags);
15821 in_tdata->abiflags_valid = TRUE;
15822 }
15823
cf8502c1 15824 if (!out_tdata->abiflags_valid)
351cdf24
MF
15825 {
15826 /* Copy input abiflags if output abiflags are not already valid. */
cf8502c1
MR
15827 out_tdata->abiflags = in_tdata->abiflags;
15828 out_tdata->abiflags_valid = TRUE;
351cdf24 15829 }
b49e97c9
TS
15830
15831 if (! elf_flags_init (obfd))
15832 {
b34976b6 15833 elf_flags_init (obfd) = TRUE;
351cdf24 15834 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
b49e97c9
TS
15835 elf_elfheader (obfd)->e_ident[EI_CLASS]
15836 = elf_elfheader (ibfd)->e_ident[EI_CLASS];
15837
15838 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
2907b861 15839 && (bfd_get_arch_info (obfd)->the_default
68ffbac6 15840 || mips_mach_extends_p (bfd_get_mach (obfd),
2907b861 15841 bfd_get_mach (ibfd))))
b49e97c9
TS
15842 {
15843 if (! bfd_set_arch_mach (obfd, bfd_get_arch (ibfd),
15844 bfd_get_mach (ibfd)))
b34976b6 15845 return FALSE;
351cdf24
MF
15846
15847 /* Update the ABI flags isa_level, isa_rev and isa_ext fields. */
cf8502c1 15848 update_mips_abiflags_isa (obfd, &out_tdata->abiflags);
b49e97c9
TS
15849 }
15850
d537eeb5 15851 ok = TRUE;
b49e97c9 15852 }
d537eeb5 15853 else
50e03d47 15854 ok = mips_elf_merge_obj_e_flags (ibfd, info);
d537eeb5 15855
50e03d47 15856 ok = mips_elf_merge_obj_attributes (ibfd, info) && ok;
b49e97c9 15857
a3dc0a7f 15858 ok = mips_elf_merge_obj_abiflags (ibfd, obfd) && ok;
351cdf24 15859
d537eeb5 15860 if (!ok)
b49e97c9
TS
15861 {
15862 bfd_set_error (bfd_error_bad_value);
b34976b6 15863 return FALSE;
b49e97c9
TS
15864 }
15865
b34976b6 15866 return TRUE;
b49e97c9
TS
15867}
15868
15869/* Function to keep MIPS specific file flags like as EF_MIPS_PIC. */
15870
b34976b6 15871bfd_boolean
9719ad41 15872_bfd_mips_elf_set_private_flags (bfd *abfd, flagword flags)
b49e97c9
TS
15873{
15874 BFD_ASSERT (!elf_flags_init (abfd)
15875 || elf_elfheader (abfd)->e_flags == flags);
15876
15877 elf_elfheader (abfd)->e_flags = flags;
b34976b6
AM
15878 elf_flags_init (abfd) = TRUE;
15879 return TRUE;
b49e97c9
TS
15880}
15881
ad9563d6
CM
15882char *
15883_bfd_mips_elf_get_target_dtag (bfd_vma dtag)
15884{
15885 switch (dtag)
15886 {
15887 default: return "";
15888 case DT_MIPS_RLD_VERSION:
15889 return "MIPS_RLD_VERSION";
15890 case DT_MIPS_TIME_STAMP:
15891 return "MIPS_TIME_STAMP";
15892 case DT_MIPS_ICHECKSUM:
15893 return "MIPS_ICHECKSUM";
15894 case DT_MIPS_IVERSION:
15895 return "MIPS_IVERSION";
15896 case DT_MIPS_FLAGS:
15897 return "MIPS_FLAGS";
15898 case DT_MIPS_BASE_ADDRESS:
15899 return "MIPS_BASE_ADDRESS";
15900 case DT_MIPS_MSYM:
15901 return "MIPS_MSYM";
15902 case DT_MIPS_CONFLICT:
15903 return "MIPS_CONFLICT";
15904 case DT_MIPS_LIBLIST:
15905 return "MIPS_LIBLIST";
15906 case DT_MIPS_LOCAL_GOTNO:
15907 return "MIPS_LOCAL_GOTNO";
15908 case DT_MIPS_CONFLICTNO:
15909 return "MIPS_CONFLICTNO";
15910 case DT_MIPS_LIBLISTNO:
15911 return "MIPS_LIBLISTNO";
15912 case DT_MIPS_SYMTABNO:
15913 return "MIPS_SYMTABNO";
15914 case DT_MIPS_UNREFEXTNO:
15915 return "MIPS_UNREFEXTNO";
15916 case DT_MIPS_GOTSYM:
15917 return "MIPS_GOTSYM";
15918 case DT_MIPS_HIPAGENO:
15919 return "MIPS_HIPAGENO";
15920 case DT_MIPS_RLD_MAP:
15921 return "MIPS_RLD_MAP";
a5499fa4
MF
15922 case DT_MIPS_RLD_MAP_REL:
15923 return "MIPS_RLD_MAP_REL";
ad9563d6
CM
15924 case DT_MIPS_DELTA_CLASS:
15925 return "MIPS_DELTA_CLASS";
15926 case DT_MIPS_DELTA_CLASS_NO:
15927 return "MIPS_DELTA_CLASS_NO";
15928 case DT_MIPS_DELTA_INSTANCE:
15929 return "MIPS_DELTA_INSTANCE";
15930 case DT_MIPS_DELTA_INSTANCE_NO:
15931 return "MIPS_DELTA_INSTANCE_NO";
15932 case DT_MIPS_DELTA_RELOC:
15933 return "MIPS_DELTA_RELOC";
15934 case DT_MIPS_DELTA_RELOC_NO:
15935 return "MIPS_DELTA_RELOC_NO";
15936 case DT_MIPS_DELTA_SYM:
15937 return "MIPS_DELTA_SYM";
15938 case DT_MIPS_DELTA_SYM_NO:
15939 return "MIPS_DELTA_SYM_NO";
15940 case DT_MIPS_DELTA_CLASSSYM:
15941 return "MIPS_DELTA_CLASSSYM";
15942 case DT_MIPS_DELTA_CLASSSYM_NO:
15943 return "MIPS_DELTA_CLASSSYM_NO";
15944 case DT_MIPS_CXX_FLAGS:
15945 return "MIPS_CXX_FLAGS";
15946 case DT_MIPS_PIXIE_INIT:
15947 return "MIPS_PIXIE_INIT";
15948 case DT_MIPS_SYMBOL_LIB:
15949 return "MIPS_SYMBOL_LIB";
15950 case DT_MIPS_LOCALPAGE_GOTIDX:
15951 return "MIPS_LOCALPAGE_GOTIDX";
15952 case DT_MIPS_LOCAL_GOTIDX:
15953 return "MIPS_LOCAL_GOTIDX";
15954 case DT_MIPS_HIDDEN_GOTIDX:
15955 return "MIPS_HIDDEN_GOTIDX";
15956 case DT_MIPS_PROTECTED_GOTIDX:
15957 return "MIPS_PROTECTED_GOT_IDX";
15958 case DT_MIPS_OPTIONS:
15959 return "MIPS_OPTIONS";
15960 case DT_MIPS_INTERFACE:
15961 return "MIPS_INTERFACE";
15962 case DT_MIPS_DYNSTR_ALIGN:
15963 return "DT_MIPS_DYNSTR_ALIGN";
15964 case DT_MIPS_INTERFACE_SIZE:
15965 return "DT_MIPS_INTERFACE_SIZE";
15966 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR:
15967 return "DT_MIPS_RLD_TEXT_RESOLVE_ADDR";
15968 case DT_MIPS_PERF_SUFFIX:
15969 return "DT_MIPS_PERF_SUFFIX";
15970 case DT_MIPS_COMPACT_SIZE:
15971 return "DT_MIPS_COMPACT_SIZE";
15972 case DT_MIPS_GP_VALUE:
15973 return "DT_MIPS_GP_VALUE";
15974 case DT_MIPS_AUX_DYNAMIC:
15975 return "DT_MIPS_AUX_DYNAMIC";
861fb55a
DJ
15976 case DT_MIPS_PLTGOT:
15977 return "DT_MIPS_PLTGOT";
15978 case DT_MIPS_RWPLT:
15979 return "DT_MIPS_RWPLT";
f16a9783
MS
15980 case DT_MIPS_XHASH:
15981 return "DT_MIPS_XHASH";
ad9563d6
CM
15982 }
15983}
15984
757a636f
RS
15985/* Return the meaning of Tag_GNU_MIPS_ABI_FP value FP, or null if
15986 not known. */
15987
15988const char *
15989_bfd_mips_fp_abi_string (int fp)
15990{
15991 switch (fp)
15992 {
15993 /* These strings aren't translated because they're simply
15994 option lists. */
15995 case Val_GNU_MIPS_ABI_FP_DOUBLE:
15996 return "-mdouble-float";
15997
15998 case Val_GNU_MIPS_ABI_FP_SINGLE:
15999 return "-msingle-float";
16000
16001 case Val_GNU_MIPS_ABI_FP_SOFT:
16002 return "-msoft-float";
16003
351cdf24
MF
16004 case Val_GNU_MIPS_ABI_FP_OLD_64:
16005 return _("-mips32r2 -mfp64 (12 callee-saved)");
16006
16007 case Val_GNU_MIPS_ABI_FP_XX:
16008 return "-mfpxx";
16009
757a636f 16010 case Val_GNU_MIPS_ABI_FP_64:
351cdf24
MF
16011 return "-mgp32 -mfp64";
16012
16013 case Val_GNU_MIPS_ABI_FP_64A:
16014 return "-mgp32 -mfp64 -mno-odd-spreg";
757a636f
RS
16015
16016 default:
16017 return 0;
16018 }
16019}
16020
351cdf24
MF
16021static void
16022print_mips_ases (FILE *file, unsigned int mask)
16023{
16024 if (mask & AFL_ASE_DSP)
16025 fputs ("\n\tDSP ASE", file);
16026 if (mask & AFL_ASE_DSPR2)
16027 fputs ("\n\tDSP R2 ASE", file);
8f4f9071
MF
16028 if (mask & AFL_ASE_DSPR3)
16029 fputs ("\n\tDSP R3 ASE", file);
351cdf24
MF
16030 if (mask & AFL_ASE_EVA)
16031 fputs ("\n\tEnhanced VA Scheme", file);
16032 if (mask & AFL_ASE_MCU)
16033 fputs ("\n\tMCU (MicroController) ASE", file);
16034 if (mask & AFL_ASE_MDMX)
16035 fputs ("\n\tMDMX ASE", file);
16036 if (mask & AFL_ASE_MIPS3D)
16037 fputs ("\n\tMIPS-3D ASE", file);
16038 if (mask & AFL_ASE_MT)
16039 fputs ("\n\tMT ASE", file);
16040 if (mask & AFL_ASE_SMARTMIPS)
16041 fputs ("\n\tSmartMIPS ASE", file);
16042 if (mask & AFL_ASE_VIRT)
16043 fputs ("\n\tVZ ASE", file);
16044 if (mask & AFL_ASE_MSA)
16045 fputs ("\n\tMSA ASE", file);
16046 if (mask & AFL_ASE_MIPS16)
16047 fputs ("\n\tMIPS16 ASE", file);
16048 if (mask & AFL_ASE_MICROMIPS)
16049 fputs ("\n\tMICROMIPS ASE", file);
16050 if (mask & AFL_ASE_XPA)
16051 fputs ("\n\tXPA ASE", file);
25499ac7
MR
16052 if (mask & AFL_ASE_MIPS16E2)
16053 fputs ("\n\tMIPS16e2 ASE", file);
730c3174
SE
16054 if (mask & AFL_ASE_CRC)
16055 fputs ("\n\tCRC ASE", file);
6f20c942
FS
16056 if (mask & AFL_ASE_GINV)
16057 fputs ("\n\tGINV ASE", file);
8095d2f7
CX
16058 if (mask & AFL_ASE_LOONGSON_MMI)
16059 fputs ("\n\tLoongson MMI ASE", file);
716c08de
CX
16060 if (mask & AFL_ASE_LOONGSON_CAM)
16061 fputs ("\n\tLoongson CAM ASE", file);
bdc6c06e
CX
16062 if (mask & AFL_ASE_LOONGSON_EXT)
16063 fputs ("\n\tLoongson EXT ASE", file);
a693765e
CX
16064 if (mask & AFL_ASE_LOONGSON_EXT2)
16065 fputs ("\n\tLoongson EXT2 ASE", file);
351cdf24
MF
16066 if (mask == 0)
16067 fprintf (file, "\n\t%s", _("None"));
00ac7aa0
MF
16068 else if ((mask & ~AFL_ASE_MASK) != 0)
16069 fprintf (stdout, "\n\t%s (%x)", _("Unknown"), mask & ~AFL_ASE_MASK);
351cdf24
MF
16070}
16071
16072static void
16073print_mips_isa_ext (FILE *file, unsigned int isa_ext)
16074{
16075 switch (isa_ext)
16076 {
16077 case 0:
16078 fputs (_("None"), file);
16079 break;
16080 case AFL_EXT_XLR:
16081 fputs ("RMI XLR", file);
16082 break;
2c629856
N
16083 case AFL_EXT_OCTEON3:
16084 fputs ("Cavium Networks Octeon3", file);
16085 break;
351cdf24
MF
16086 case AFL_EXT_OCTEON2:
16087 fputs ("Cavium Networks Octeon2", file);
16088 break;
16089 case AFL_EXT_OCTEONP:
16090 fputs ("Cavium Networks OcteonP", file);
16091 break;
351cdf24
MF
16092 case AFL_EXT_OCTEON:
16093 fputs ("Cavium Networks Octeon", file);
16094 break;
16095 case AFL_EXT_5900:
16096 fputs ("Toshiba R5900", file);
16097 break;
16098 case AFL_EXT_4650:
16099 fputs ("MIPS R4650", file);
16100 break;
16101 case AFL_EXT_4010:
16102 fputs ("LSI R4010", file);
16103 break;
16104 case AFL_EXT_4100:
16105 fputs ("NEC VR4100", file);
16106 break;
16107 case AFL_EXT_3900:
16108 fputs ("Toshiba R3900", file);
16109 break;
16110 case AFL_EXT_10000:
16111 fputs ("MIPS R10000", file);
16112 break;
16113 case AFL_EXT_SB1:
16114 fputs ("Broadcom SB-1", file);
16115 break;
16116 case AFL_EXT_4111:
16117 fputs ("NEC VR4111/VR4181", file);
16118 break;
16119 case AFL_EXT_4120:
16120 fputs ("NEC VR4120", file);
16121 break;
16122 case AFL_EXT_5400:
16123 fputs ("NEC VR5400", file);
16124 break;
16125 case AFL_EXT_5500:
16126 fputs ("NEC VR5500", file);
16127 break;
16128 case AFL_EXT_LOONGSON_2E:
16129 fputs ("ST Microelectronics Loongson 2E", file);
16130 break;
16131 case AFL_EXT_LOONGSON_2F:
16132 fputs ("ST Microelectronics Loongson 2F", file);
16133 break;
38bf472a
MR
16134 case AFL_EXT_INTERAPTIV_MR2:
16135 fputs ("Imagination interAptiv MR2", file);
16136 break;
351cdf24 16137 default:
00ac7aa0 16138 fprintf (file, "%s (%d)", _("Unknown"), isa_ext);
351cdf24
MF
16139 break;
16140 }
16141}
16142
16143static void
16144print_mips_fp_abi_value (FILE *file, int val)
16145{
16146 switch (val)
16147 {
16148 case Val_GNU_MIPS_ABI_FP_ANY:
16149 fprintf (file, _("Hard or soft float\n"));
16150 break;
16151 case Val_GNU_MIPS_ABI_FP_DOUBLE:
16152 fprintf (file, _("Hard float (double precision)\n"));
16153 break;
16154 case Val_GNU_MIPS_ABI_FP_SINGLE:
16155 fprintf (file, _("Hard float (single precision)\n"));
16156 break;
16157 case Val_GNU_MIPS_ABI_FP_SOFT:
16158 fprintf (file, _("Soft float\n"));
16159 break;
16160 case Val_GNU_MIPS_ABI_FP_OLD_64:
16161 fprintf (file, _("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
16162 break;
16163 case Val_GNU_MIPS_ABI_FP_XX:
16164 fprintf (file, _("Hard float (32-bit CPU, Any FPU)\n"));
16165 break;
16166 case Val_GNU_MIPS_ABI_FP_64:
16167 fprintf (file, _("Hard float (32-bit CPU, 64-bit FPU)\n"));
16168 break;
16169 case Val_GNU_MIPS_ABI_FP_64A:
16170 fprintf (file, _("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
16171 break;
16172 default:
16173 fprintf (file, "??? (%d)\n", val);
16174 break;
16175 }
16176}
16177
16178static int
16179get_mips_reg_size (int reg_size)
16180{
16181 return (reg_size == AFL_REG_NONE) ? 0
16182 : (reg_size == AFL_REG_32) ? 32
16183 : (reg_size == AFL_REG_64) ? 64
16184 : (reg_size == AFL_REG_128) ? 128
16185 : -1;
16186}
16187
b34976b6 16188bfd_boolean
9719ad41 16189_bfd_mips_elf_print_private_bfd_data (bfd *abfd, void *ptr)
b49e97c9 16190{
9719ad41 16191 FILE *file = ptr;
b49e97c9
TS
16192
16193 BFD_ASSERT (abfd != NULL && ptr != NULL);
16194
16195 /* Print normal ELF private data. */
16196 _bfd_elf_print_private_bfd_data (abfd, ptr);
16197
16198 /* xgettext:c-format */
16199 fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
16200
16201 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O32)
16202 fprintf (file, _(" [abi=O32]"));
16203 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O64)
16204 fprintf (file, _(" [abi=O64]"));
16205 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI32)
16206 fprintf (file, _(" [abi=EABI32]"));
16207 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64)
16208 fprintf (file, _(" [abi=EABI64]"));
16209 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI))
16210 fprintf (file, _(" [abi unknown]"));
16211 else if (ABI_N32_P (abfd))
16212 fprintf (file, _(" [abi=N32]"));
16213 else if (ABI_64_P (abfd))
16214 fprintf (file, _(" [abi=64]"));
16215 else
16216 fprintf (file, _(" [no abi set]"));
16217
16218 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1)
ae0d2616 16219 fprintf (file, " [mips1]");
b49e97c9 16220 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_2)
ae0d2616 16221 fprintf (file, " [mips2]");
b49e97c9 16222 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_3)
ae0d2616 16223 fprintf (file, " [mips3]");
b49e97c9 16224 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_4)
ae0d2616 16225 fprintf (file, " [mips4]");
b49e97c9 16226 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_5)
ae0d2616 16227 fprintf (file, " [mips5]");
b49e97c9 16228 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32)
ae0d2616 16229 fprintf (file, " [mips32]");
b49e97c9 16230 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64)
ae0d2616 16231 fprintf (file, " [mips64]");
af7ee8bf 16232 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R2)
ae0d2616 16233 fprintf (file, " [mips32r2]");
5f74bc13 16234 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64R2)
ae0d2616 16235 fprintf (file, " [mips64r2]");
7361da2c
AB
16236 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R6)
16237 fprintf (file, " [mips32r6]");
16238 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64R6)
16239 fprintf (file, " [mips64r6]");
b49e97c9
TS
16240 else
16241 fprintf (file, _(" [unknown ISA]"));
16242
40d32fc6 16243 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MDMX)
ae0d2616 16244 fprintf (file, " [mdmx]");
40d32fc6
CD
16245
16246 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_M16)
ae0d2616 16247 fprintf (file, " [mips16]");
40d32fc6 16248
df58fc94
RS
16249 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MICROMIPS)
16250 fprintf (file, " [micromips]");
16251
ba92f887
MR
16252 if (elf_elfheader (abfd)->e_flags & EF_MIPS_NAN2008)
16253 fprintf (file, " [nan2008]");
16254
5baf5e34 16255 if (elf_elfheader (abfd)->e_flags & EF_MIPS_FP64)
351cdf24 16256 fprintf (file, " [old fp64]");
5baf5e34 16257
b49e97c9 16258 if (elf_elfheader (abfd)->e_flags & EF_MIPS_32BITMODE)
ae0d2616 16259 fprintf (file, " [32bitmode]");
b49e97c9
TS
16260 else
16261 fprintf (file, _(" [not 32bitmode]"));
16262
c0e3f241 16263 if (elf_elfheader (abfd)->e_flags & EF_MIPS_NOREORDER)
ae0d2616 16264 fprintf (file, " [noreorder]");
c0e3f241
CD
16265
16266 if (elf_elfheader (abfd)->e_flags & EF_MIPS_PIC)
ae0d2616 16267 fprintf (file, " [PIC]");
c0e3f241
CD
16268
16269 if (elf_elfheader (abfd)->e_flags & EF_MIPS_CPIC)
ae0d2616 16270 fprintf (file, " [CPIC]");
c0e3f241
CD
16271
16272 if (elf_elfheader (abfd)->e_flags & EF_MIPS_XGOT)
ae0d2616 16273 fprintf (file, " [XGOT]");
c0e3f241
CD
16274
16275 if (elf_elfheader (abfd)->e_flags & EF_MIPS_UCODE)
ae0d2616 16276 fprintf (file, " [UCODE]");
c0e3f241 16277
b49e97c9
TS
16278 fputc ('\n', file);
16279
351cdf24
MF
16280 if (mips_elf_tdata (abfd)->abiflags_valid)
16281 {
16282 Elf_Internal_ABIFlags_v0 *abiflags = &mips_elf_tdata (abfd)->abiflags;
16283 fprintf (file, "\nMIPS ABI Flags Version: %d\n", abiflags->version);
16284 fprintf (file, "\nISA: MIPS%d", abiflags->isa_level);
16285 if (abiflags->isa_rev > 1)
16286 fprintf (file, "r%d", abiflags->isa_rev);
16287 fprintf (file, "\nGPR size: %d",
16288 get_mips_reg_size (abiflags->gpr_size));
16289 fprintf (file, "\nCPR1 size: %d",
16290 get_mips_reg_size (abiflags->cpr1_size));
16291 fprintf (file, "\nCPR2 size: %d",
16292 get_mips_reg_size (abiflags->cpr2_size));
16293 fputs ("\nFP ABI: ", file);
16294 print_mips_fp_abi_value (file, abiflags->fp_abi);
16295 fputs ("ISA Extension: ", file);
16296 print_mips_isa_ext (file, abiflags->isa_ext);
16297 fputs ("\nASEs:", file);
16298 print_mips_ases (file, abiflags->ases);
16299 fprintf (file, "\nFLAGS 1: %8.8lx", abiflags->flags1);
16300 fprintf (file, "\nFLAGS 2: %8.8lx", abiflags->flags2);
16301 fputc ('\n', file);
16302 }
16303
b34976b6 16304 return TRUE;
b49e97c9 16305}
2f89ff8d 16306
b35d266b 16307const struct bfd_elf_special_section _bfd_mips_elf_special_sections[] =
2f89ff8d 16308{
07d6d2b8
AM
16309 { STRING_COMMA_LEN (".lit4"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
16310 { STRING_COMMA_LEN (".lit8"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
0112cd26 16311 { STRING_COMMA_LEN (".mdebug"), 0, SHT_MIPS_DEBUG, 0 },
07d6d2b8 16312 { STRING_COMMA_LEN (".sbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
0112cd26
NC
16313 { STRING_COMMA_LEN (".sdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
16314 { STRING_COMMA_LEN (".ucode"), 0, SHT_MIPS_UCODE, 0 },
f16a9783 16315 { STRING_COMMA_LEN (".MIPS.xhash"), 0, SHT_MIPS_XHASH, SHF_ALLOC },
07d6d2b8 16316 { NULL, 0, 0, 0, 0 }
2f89ff8d 16317};
5e2b0d47 16318
8992f0d7
TS
16319/* Merge non visibility st_other attributes. Ensure that the
16320 STO_OPTIONAL flag is copied into h->other, even if this is not a
16321 definiton of the symbol. */
5e2b0d47
NC
16322void
16323_bfd_mips_elf_merge_symbol_attribute (struct elf_link_hash_entry *h,
16324 const Elf_Internal_Sym *isym,
16325 bfd_boolean definition,
16326 bfd_boolean dynamic ATTRIBUTE_UNUSED)
16327{
8992f0d7
TS
16328 if ((isym->st_other & ~ELF_ST_VISIBILITY (-1)) != 0)
16329 {
16330 unsigned char other;
16331
16332 other = (definition ? isym->st_other : h->other);
16333 other &= ~ELF_ST_VISIBILITY (-1);
16334 h->other = other | ELF_ST_VISIBILITY (h->other);
16335 }
16336
16337 if (!definition
5e2b0d47
NC
16338 && ELF_MIPS_IS_OPTIONAL (isym->st_other))
16339 h->other |= STO_OPTIONAL;
16340}
12ac1cf5
NC
16341
16342/* Decide whether an undefined symbol is special and can be ignored.
16343 This is the case for OPTIONAL symbols on IRIX. */
16344bfd_boolean
16345_bfd_mips_elf_ignore_undef_symbol (struct elf_link_hash_entry *h)
16346{
16347 return ELF_MIPS_IS_OPTIONAL (h->other) ? TRUE : FALSE;
16348}
e0764319
NC
16349
16350bfd_boolean
16351_bfd_mips_elf_common_definition (Elf_Internal_Sym *sym)
16352{
16353 return (sym->st_shndx == SHN_COMMON
16354 || sym->st_shndx == SHN_MIPS_ACOMMON
16355 || sym->st_shndx == SHN_MIPS_SCOMMON);
16356}
861fb55a
DJ
16357
16358/* Return address for Ith PLT stub in section PLT, for relocation REL
16359 or (bfd_vma) -1 if it should not be included. */
16360
16361bfd_vma
16362_bfd_mips_elf_plt_sym_val (bfd_vma i, const asection *plt,
16363 const arelent *rel ATTRIBUTE_UNUSED)
16364{
16365 return (plt->vma
16366 + 4 * ARRAY_SIZE (mips_o32_exec_plt0_entry)
16367 + i * 4 * ARRAY_SIZE (mips_exec_plt_entry));
16368}
16369
1bbce132
MR
16370/* Build a table of synthetic symbols to represent the PLT. As with MIPS16
16371 and microMIPS PLT slots we may have a many-to-one mapping between .plt
16372 and .got.plt and also the slots may be of a different size each we walk
16373 the PLT manually fetching instructions and matching them against known
16374 patterns. To make things easier standard MIPS slots, if any, always come
16375 first. As we don't create proper ELF symbols we use the UDATA.I member
16376 of ASYMBOL to carry ISA annotation. The encoding used is the same as
16377 with the ST_OTHER member of the ELF symbol. */
16378
16379long
16380_bfd_mips_elf_get_synthetic_symtab (bfd *abfd,
16381 long symcount ATTRIBUTE_UNUSED,
16382 asymbol **syms ATTRIBUTE_UNUSED,
16383 long dynsymcount, asymbol **dynsyms,
16384 asymbol **ret)
16385{
16386 static const char pltname[] = "_PROCEDURE_LINKAGE_TABLE_";
16387 static const char microsuffix[] = "@micromipsplt";
16388 static const char m16suffix[] = "@mips16plt";
16389 static const char mipssuffix[] = "@plt";
16390
16391 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
16392 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
16393 bfd_boolean micromips_p = MICROMIPS_P (abfd);
16394 Elf_Internal_Shdr *hdr;
16395 bfd_byte *plt_data;
16396 bfd_vma plt_offset;
16397 unsigned int other;
16398 bfd_vma entry_size;
16399 bfd_vma plt0_size;
16400 asection *relplt;
16401 bfd_vma opcode;
16402 asection *plt;
16403 asymbol *send;
16404 size_t size;
16405 char *names;
16406 long counti;
16407 arelent *p;
16408 asymbol *s;
16409 char *nend;
16410 long count;
16411 long pi;
16412 long i;
16413 long n;
16414
16415 *ret = NULL;
16416
16417 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0 || dynsymcount <= 0)
16418 return 0;
16419
16420 relplt = bfd_get_section_by_name (abfd, ".rel.plt");
16421 if (relplt == NULL)
16422 return 0;
16423
16424 hdr = &elf_section_data (relplt)->this_hdr;
16425 if (hdr->sh_link != elf_dynsymtab (abfd) || hdr->sh_type != SHT_REL)
16426 return 0;
16427
16428 plt = bfd_get_section_by_name (abfd, ".plt");
16429 if (plt == NULL)
16430 return 0;
16431
16432 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
16433 if (!(*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
16434 return -1;
16435 p = relplt->relocation;
16436
16437 /* Calculating the exact amount of space required for symbols would
16438 require two passes over the PLT, so just pessimise assuming two
16439 PLT slots per relocation. */
16440 count = relplt->size / hdr->sh_entsize;
16441 counti = count * bed->s->int_rels_per_ext_rel;
16442 size = 2 * count * sizeof (asymbol);
16443 size += count * (sizeof (mipssuffix) +
16444 (micromips_p ? sizeof (microsuffix) : sizeof (m16suffix)));
16445 for (pi = 0; pi < counti; pi += bed->s->int_rels_per_ext_rel)
16446 size += 2 * strlen ((*p[pi].sym_ptr_ptr)->name);
16447
16448 /* Add the size of "_PROCEDURE_LINKAGE_TABLE_" too. */
16449 size += sizeof (asymbol) + sizeof (pltname);
16450
16451 if (!bfd_malloc_and_get_section (abfd, plt, &plt_data))
16452 return -1;
16453
16454 if (plt->size < 16)
16455 return -1;
16456
16457 s = *ret = bfd_malloc (size);
16458 if (s == NULL)
16459 return -1;
16460 send = s + 2 * count + 1;
16461
16462 names = (char *) send;
16463 nend = (char *) s + size;
16464 n = 0;
16465
16466 opcode = bfd_get_micromips_32 (abfd, plt_data + 12);
16467 if (opcode == 0x3302fffe)
16468 {
16469 if (!micromips_p)
16470 return -1;
16471 plt0_size = 2 * ARRAY_SIZE (micromips_o32_exec_plt0_entry);
16472 other = STO_MICROMIPS;
16473 }
833794fc
MR
16474 else if (opcode == 0x0398c1d0)
16475 {
16476 if (!micromips_p)
16477 return -1;
16478 plt0_size = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt0_entry);
16479 other = STO_MICROMIPS;
16480 }
1bbce132
MR
16481 else
16482 {
16483 plt0_size = 4 * ARRAY_SIZE (mips_o32_exec_plt0_entry);
16484 other = 0;
16485 }
16486
16487 s->the_bfd = abfd;
16488 s->flags = BSF_SYNTHETIC | BSF_FUNCTION | BSF_LOCAL;
16489 s->section = plt;
16490 s->value = 0;
16491 s->name = names;
16492 s->udata.i = other;
16493 memcpy (names, pltname, sizeof (pltname));
16494 names += sizeof (pltname);
16495 ++s, ++n;
16496
16497 pi = 0;
16498 for (plt_offset = plt0_size;
16499 plt_offset + 8 <= plt->size && s < send;
16500 plt_offset += entry_size)
16501 {
16502 bfd_vma gotplt_addr;
16503 const char *suffix;
16504 bfd_vma gotplt_hi;
16505 bfd_vma gotplt_lo;
16506 size_t suffixlen;
16507
16508 opcode = bfd_get_micromips_32 (abfd, plt_data + plt_offset + 4);
16509
16510 /* Check if the second word matches the expected MIPS16 instruction. */
16511 if (opcode == 0x651aeb00)
16512 {
16513 if (micromips_p)
16514 return -1;
16515 /* Truncated table??? */
16516 if (plt_offset + 16 > plt->size)
16517 break;
16518 gotplt_addr = bfd_get_32 (abfd, plt_data + plt_offset + 12);
16519 entry_size = 2 * ARRAY_SIZE (mips16_o32_exec_plt_entry);
16520 suffixlen = sizeof (m16suffix);
16521 suffix = m16suffix;
16522 other = STO_MIPS16;
16523 }
833794fc 16524 /* Likewise the expected microMIPS instruction (no insn32 mode). */
1bbce132
MR
16525 else if (opcode == 0xff220000)
16526 {
16527 if (!micromips_p)
16528 return -1;
16529 gotplt_hi = bfd_get_16 (abfd, plt_data + plt_offset) & 0x7f;
16530 gotplt_lo = bfd_get_16 (abfd, plt_data + plt_offset + 2) & 0xffff;
16531 gotplt_hi = ((gotplt_hi ^ 0x40) - 0x40) << 18;
16532 gotplt_lo <<= 2;
16533 gotplt_addr = gotplt_hi + gotplt_lo;
16534 gotplt_addr += ((plt->vma + plt_offset) | 3) ^ 3;
16535 entry_size = 2 * ARRAY_SIZE (micromips_o32_exec_plt_entry);
16536 suffixlen = sizeof (microsuffix);
16537 suffix = microsuffix;
16538 other = STO_MICROMIPS;
16539 }
833794fc
MR
16540 /* Likewise the expected microMIPS instruction (insn32 mode). */
16541 else if ((opcode & 0xffff0000) == 0xff2f0000)
16542 {
16543 gotplt_hi = bfd_get_16 (abfd, plt_data + plt_offset + 2) & 0xffff;
16544 gotplt_lo = bfd_get_16 (abfd, plt_data + plt_offset + 6) & 0xffff;
16545 gotplt_hi = ((gotplt_hi ^ 0x8000) - 0x8000) << 16;
16546 gotplt_lo = (gotplt_lo ^ 0x8000) - 0x8000;
16547 gotplt_addr = gotplt_hi + gotplt_lo;
16548 entry_size = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt_entry);
16549 suffixlen = sizeof (microsuffix);
16550 suffix = microsuffix;
16551 other = STO_MICROMIPS;
16552 }
1bbce132
MR
16553 /* Otherwise assume standard MIPS code. */
16554 else
16555 {
16556 gotplt_hi = bfd_get_32 (abfd, plt_data + plt_offset) & 0xffff;
16557 gotplt_lo = bfd_get_32 (abfd, plt_data + plt_offset + 4) & 0xffff;
16558 gotplt_hi = ((gotplt_hi ^ 0x8000) - 0x8000) << 16;
16559 gotplt_lo = (gotplt_lo ^ 0x8000) - 0x8000;
16560 gotplt_addr = gotplt_hi + gotplt_lo;
16561 entry_size = 4 * ARRAY_SIZE (mips_exec_plt_entry);
16562 suffixlen = sizeof (mipssuffix);
16563 suffix = mipssuffix;
16564 other = 0;
16565 }
16566 /* Truncated table??? */
16567 if (plt_offset + entry_size > plt->size)
16568 break;
16569
16570 for (i = 0;
16571 i < count && p[pi].address != gotplt_addr;
16572 i++, pi = (pi + bed->s->int_rels_per_ext_rel) % counti);
16573
16574 if (i < count)
16575 {
16576 size_t namelen;
16577 size_t len;
16578
16579 *s = **p[pi].sym_ptr_ptr;
16580 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
16581 we are defining a symbol, ensure one of them is set. */
16582 if ((s->flags & BSF_LOCAL) == 0)
16583 s->flags |= BSF_GLOBAL;
16584 s->flags |= BSF_SYNTHETIC;
16585 s->section = plt;
16586 s->value = plt_offset;
16587 s->name = names;
16588 s->udata.i = other;
16589
16590 len = strlen ((*p[pi].sym_ptr_ptr)->name);
16591 namelen = len + suffixlen;
16592 if (names + namelen > nend)
16593 break;
16594
16595 memcpy (names, (*p[pi].sym_ptr_ptr)->name, len);
16596 names += len;
16597 memcpy (names, suffix, suffixlen);
16598 names += suffixlen;
16599
16600 ++s, ++n;
16601 pi = (pi + bed->s->int_rels_per_ext_rel) % counti;
16602 }
16603 }
16604
16605 free (plt_data);
16606
16607 return n;
16608}
16609
5e7fc731
MR
16610/* Return the ABI flags associated with ABFD if available. */
16611
16612Elf_Internal_ABIFlags_v0 *
16613bfd_mips_elf_get_abiflags (bfd *abfd)
16614{
16615 struct mips_elf_obj_tdata *tdata = mips_elf_tdata (abfd);
16616
16617 return tdata->abiflags_valid ? &tdata->abiflags : NULL;
16618}
16619
bb29b84d
MR
16620/* MIPS libc ABI versions, used with the EI_ABIVERSION ELF file header
16621 field. Taken from `libc-abis.h' generated at GNU libc build time.
16622 Using a MIPS_ prefix as other libc targets use different values. */
16623enum
16624{
16625 MIPS_LIBC_ABI_DEFAULT = 0,
16626 MIPS_LIBC_ABI_MIPS_PLT,
16627 MIPS_LIBC_ABI_UNIQUE,
16628 MIPS_LIBC_ABI_MIPS_O32_FP64,
47275900 16629 MIPS_LIBC_ABI_ABSOLUTE,
f16a9783 16630 MIPS_LIBC_ABI_XHASH,
bb29b84d
MR
16631 MIPS_LIBC_ABI_MAX
16632};
16633
ed7e9d0b
AM
16634bfd_boolean
16635_bfd_mips_init_file_header (bfd *abfd, struct bfd_link_info *link_info)
861fb55a 16636{
47275900 16637 struct mips_elf_link_hash_table *htab = NULL;
861fb55a
DJ
16638 Elf_Internal_Ehdr *i_ehdrp;
16639
ed7e9d0b
AM
16640 if (!_bfd_elf_init_file_header (abfd, link_info))
16641 return FALSE;
16642
861fb55a
DJ
16643 i_ehdrp = elf_elfheader (abfd);
16644 if (link_info)
16645 {
16646 htab = mips_elf_hash_table (link_info);
4dfe6ac6 16647 BFD_ASSERT (htab != NULL);
861fb55a 16648 }
0af03126 16649
90c14f0c
L
16650 if (htab != NULL
16651 && htab->use_plts_and_copy_relocs
16652 && htab->root.target_os != is_vxworks)
47275900
MR
16653 i_ehdrp->e_ident[EI_ABIVERSION] = MIPS_LIBC_ABI_MIPS_PLT;
16654
351cdf24
MF
16655 if (mips_elf_tdata (abfd)->abiflags.fp_abi == Val_GNU_MIPS_ABI_FP_64
16656 || mips_elf_tdata (abfd)->abiflags.fp_abi == Val_GNU_MIPS_ABI_FP_64A)
bb29b84d 16657 i_ehdrp->e_ident[EI_ABIVERSION] = MIPS_LIBC_ABI_MIPS_O32_FP64;
334cd8a7 16658
47275900
MR
16659 /* Mark that we need support for absolute symbols in the dynamic loader. */
16660 if (htab != NULL && htab->use_absolute_zero && htab->gnu_target)
16661 i_ehdrp->e_ident[EI_ABIVERSION] = MIPS_LIBC_ABI_ABSOLUTE;
16662
f16a9783
MS
16663 /* Mark that we need support for .MIPS.xhash in the dynamic linker,
16664 if it is the only hash section that will be created. */
16665 if (link_info && link_info->emit_gnu_hash && !link_info->emit_hash)
16666 i_ehdrp->e_ident[EI_ABIVERSION] = MIPS_LIBC_ABI_XHASH;
ed7e9d0b 16667 return TRUE;
861fb55a 16668}
2f0c68f2
CM
16669
16670int
1ced1a5f
MR
16671_bfd_mips_elf_compact_eh_encoding
16672 (struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
2f0c68f2
CM
16673{
16674 return DW_EH_PE_pcrel | DW_EH_PE_sdata4;
16675}
16676
16677/* Return the opcode for can't unwind. */
16678
16679int
1ced1a5f
MR
16680_bfd_mips_elf_cant_unwind_opcode
16681 (struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
2f0c68f2
CM
16682{
16683 return COMPACT_EH_CANT_UNWIND_OPCODE;
16684}
f16a9783
MS
16685
16686/* Record a position XLAT_LOC in the xlat translation table, associated with
16687 the hash entry H. The entry in the translation table will later be
16688 populated with the real symbol dynindx. */
16689
16690void
16691_bfd_mips_elf_record_xhash_symbol (struct elf_link_hash_entry *h,
16692 bfd_vma xlat_loc)
16693{
16694 struct mips_elf_link_hash_entry *hmips;
16695
16696 hmips = (struct mips_elf_link_hash_entry *) h;
16697 hmips->mipsxhash_loc = xlat_loc;
16698}
This page took 2.690239 seconds and 4 git commands to generate.