Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / elfxx-mips.c
1 /* MIPS-specific support for ELF
2 Copyright (C) 1993-2015 Free Software Foundation, Inc.
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
11 This file is part of BFD, the Binary File Descriptor library.
12
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
15 the Free Software Foundation; either version 3 of the License, or
16 (at your option) any later version.
17
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.
22
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
25 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
26 MA 02110-1301, USA. */
27
28
29 /* This file handles functionality common to the different MIPS ABI's. */
30
31 #include "sysdep.h"
32 #include "bfd.h"
33 #include "libbfd.h"
34 #include "libiberty.h"
35 #include "elf-bfd.h"
36 #include "elfxx-mips.h"
37 #include "elf/mips.h"
38 #include "elf-vxworks.h"
39 #include "dwarf2.h"
40
41 /* Get the ECOFF swapping routines. */
42 #include "coff/sym.h"
43 #include "coff/symconst.h"
44 #include "coff/ecoff.h"
45 #include "coff/mips.h"
46
47 #include "hashtab.h"
48
49 /* Types of TLS GOT entry. */
50 enum mips_got_tls_type {
51 GOT_TLS_NONE,
52 GOT_TLS_GD,
53 GOT_TLS_LDM,
54 GOT_TLS_IE
55 };
56
57 /* This structure is used to hold information about one GOT entry.
58 There are four types of entry:
59
60 (1) an absolute address
61 requires: abfd == NULL
62 fields: d.address
63
64 (2) a SYMBOL + OFFSET address, where SYMBOL is local to an input bfd
65 requires: abfd != NULL, symndx >= 0, tls_type != GOT_TLS_LDM
66 fields: abfd, symndx, d.addend, tls_type
67
68 (3) a SYMBOL address, where SYMBOL is not local to an input bfd
69 requires: abfd != NULL, symndx == -1
70 fields: d.h, tls_type
71
72 (4) a TLS LDM slot
73 requires: abfd != NULL, symndx == 0, tls_type == GOT_TLS_LDM
74 fields: none; there's only one of these per GOT. */
75 struct mips_got_entry
76 {
77 /* One input bfd that needs the GOT entry. */
78 bfd *abfd;
79 /* The index of the symbol, as stored in the relocation r_info, if
80 we have a local symbol; -1 otherwise. */
81 long symndx;
82 union
83 {
84 /* If abfd == NULL, an address that must be stored in the got. */
85 bfd_vma address;
86 /* If abfd != NULL && symndx != -1, the addend of the relocation
87 that should be added to the symbol value. */
88 bfd_vma addend;
89 /* If abfd != NULL && symndx == -1, the hash table entry
90 corresponding to a symbol in the GOT. The symbol's entry
91 is in the local area if h->global_got_area is GGA_NONE,
92 otherwise it is in the global area. */
93 struct mips_elf_link_hash_entry *h;
94 } d;
95
96 /* The TLS type of this GOT entry. An LDM GOT entry will be a local
97 symbol entry with r_symndx == 0. */
98 unsigned char tls_type;
99
100 /* True if we have filled in the GOT contents for a TLS entry,
101 and created the associated relocations. */
102 unsigned char tls_initialized;
103
104 /* The offset from the beginning of the .got section to the entry
105 corresponding to this symbol+addend. If it's a global symbol
106 whose offset is yet to be decided, it's going to be -1. */
107 long gotidx;
108 };
109
110 /* This structure represents a GOT page reference from an input bfd.
111 Each instance represents a symbol + ADDEND, where the representation
112 of the symbol depends on whether it is local to the input bfd.
113 If it is, then SYMNDX >= 0, and the symbol has index SYMNDX in U.ABFD.
114 Otherwise, SYMNDX < 0 and U.H points to the symbol's hash table entry.
115
116 Page references with SYMNDX >= 0 always become page references
117 in the output. Page references with SYMNDX < 0 only become page
118 references if the symbol binds locally; in other cases, the page
119 reference decays to a global GOT reference. */
120 struct mips_got_page_ref
121 {
122 long symndx;
123 union
124 {
125 struct mips_elf_link_hash_entry *h;
126 bfd *abfd;
127 } u;
128 bfd_vma addend;
129 };
130
131 /* This structure describes a range of addends: [MIN_ADDEND, MAX_ADDEND].
132 The structures form a non-overlapping list that is sorted by increasing
133 MIN_ADDEND. */
134 struct mips_got_page_range
135 {
136 struct mips_got_page_range *next;
137 bfd_signed_vma min_addend;
138 bfd_signed_vma max_addend;
139 };
140
141 /* This structure describes the range of addends that are applied to page
142 relocations against a given section. */
143 struct mips_got_page_entry
144 {
145 /* The section that these entries are based on. */
146 asection *sec;
147 /* The ranges for this page entry. */
148 struct mips_got_page_range *ranges;
149 /* The maximum number of page entries needed for RANGES. */
150 bfd_vma num_pages;
151 };
152
153 /* This structure is used to hold .got information when linking. */
154
155 struct mips_got_info
156 {
157 /* The number of global .got entries. */
158 unsigned int global_gotno;
159 /* The number of global .got entries that are in the GGA_RELOC_ONLY area. */
160 unsigned int reloc_only_gotno;
161 /* The number of .got slots used for TLS. */
162 unsigned int tls_gotno;
163 /* The first unused TLS .got entry. Used only during
164 mips_elf_initialize_tls_index. */
165 unsigned int tls_assigned_gotno;
166 /* The number of local .got entries, eventually including page entries. */
167 unsigned int local_gotno;
168 /* The maximum number of page entries needed. */
169 unsigned int page_gotno;
170 /* The number of relocations needed for the GOT entries. */
171 unsigned int relocs;
172 /* The first unused local .got entry. */
173 unsigned int assigned_low_gotno;
174 /* The last unused local .got entry. */
175 unsigned int assigned_high_gotno;
176 /* A hash table holding members of the got. */
177 struct htab *got_entries;
178 /* A hash table holding mips_got_page_ref structures. */
179 struct htab *got_page_refs;
180 /* A hash table of mips_got_page_entry structures. */
181 struct htab *got_page_entries;
182 /* In multi-got links, a pointer to the next got (err, rather, most
183 of the time, it points to the previous got). */
184 struct mips_got_info *next;
185 };
186
187 /* Structure passed when merging bfds' gots. */
188
189 struct mips_elf_got_per_bfd_arg
190 {
191 /* The output bfd. */
192 bfd *obfd;
193 /* The link information. */
194 struct bfd_link_info *info;
195 /* A pointer to the primary got, i.e., the one that's going to get
196 the implicit relocations from DT_MIPS_LOCAL_GOTNO and
197 DT_MIPS_GOTSYM. */
198 struct mips_got_info *primary;
199 /* A non-primary got we're trying to merge with other input bfd's
200 gots. */
201 struct mips_got_info *current;
202 /* The maximum number of got entries that can be addressed with a
203 16-bit offset. */
204 unsigned int max_count;
205 /* The maximum number of page entries needed by each got. */
206 unsigned int max_pages;
207 /* The total number of global entries which will live in the
208 primary got and be automatically relocated. This includes
209 those not referenced by the primary GOT but included in
210 the "master" GOT. */
211 unsigned int global_count;
212 };
213
214 /* A structure used to pass information to htab_traverse callbacks
215 when laying out the GOT. */
216
217 struct mips_elf_traverse_got_arg
218 {
219 struct bfd_link_info *info;
220 struct mips_got_info *g;
221 int value;
222 };
223
224 struct _mips_elf_section_data
225 {
226 struct bfd_elf_section_data elf;
227 union
228 {
229 bfd_byte *tdata;
230 } u;
231 };
232
233 #define mips_elf_section_data(sec) \
234 ((struct _mips_elf_section_data *) elf_section_data (sec))
235
236 #define is_mips_elf(bfd) \
237 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
238 && elf_tdata (bfd) != NULL \
239 && elf_object_id (bfd) == MIPS_ELF_DATA)
240
241 /* The ABI says that every symbol used by dynamic relocations must have
242 a global GOT entry. Among other things, this provides the dynamic
243 linker with a free, directly-indexed cache. The GOT can therefore
244 contain symbols that are not referenced by GOT relocations themselves
245 (in other words, it may have symbols that are not referenced by things
246 like R_MIPS_GOT16 and R_MIPS_GOT_PAGE).
247
248 GOT relocations are less likely to overflow if we put the associated
249 GOT entries towards the beginning. We therefore divide the global
250 GOT entries into two areas: "normal" and "reloc-only". Entries in
251 the first area can be used for both dynamic relocations and GP-relative
252 accesses, while those in the "reloc-only" area are for dynamic
253 relocations only.
254
255 These GGA_* ("Global GOT Area") values are organised so that lower
256 values are more general than higher values. Also, non-GGA_NONE
257 values are ordered by the position of the area in the GOT. */
258 #define GGA_NORMAL 0
259 #define GGA_RELOC_ONLY 1
260 #define GGA_NONE 2
261
262 /* Information about a non-PIC interface to a PIC function. There are
263 two ways of creating these interfaces. The first is to add:
264
265 lui $25,%hi(func)
266 addiu $25,$25,%lo(func)
267
268 immediately before a PIC function "func". The second is to add:
269
270 lui $25,%hi(func)
271 j func
272 addiu $25,$25,%lo(func)
273
274 to a separate trampoline section.
275
276 Stubs of the first kind go in a new section immediately before the
277 target function. Stubs of the second kind go in a single section
278 pointed to by the hash table's "strampoline" field. */
279 struct mips_elf_la25_stub {
280 /* The generated section that contains this stub. */
281 asection *stub_section;
282
283 /* The offset of the stub from the start of STUB_SECTION. */
284 bfd_vma offset;
285
286 /* One symbol for the original function. Its location is available
287 in H->root.root.u.def. */
288 struct mips_elf_link_hash_entry *h;
289 };
290
291 /* Macros for populating a mips_elf_la25_stub. */
292
293 #define LA25_LUI(VAL) (0x3c190000 | (VAL)) /* lui t9,VAL */
294 #define LA25_J(VAL) (0x08000000 | (((VAL) >> 2) & 0x3ffffff)) /* j VAL */
295 #define LA25_ADDIU(VAL) (0x27390000 | (VAL)) /* addiu t9,t9,VAL */
296 #define LA25_LUI_MICROMIPS(VAL) \
297 (0x41b90000 | (VAL)) /* lui t9,VAL */
298 #define LA25_J_MICROMIPS(VAL) \
299 (0xd4000000 | (((VAL) >> 1) & 0x3ffffff)) /* j VAL */
300 #define LA25_ADDIU_MICROMIPS(VAL) \
301 (0x33390000 | (VAL)) /* addiu t9,t9,VAL */
302
303 /* This structure is passed to mips_elf_sort_hash_table_f when sorting
304 the dynamic symbols. */
305
306 struct mips_elf_hash_sort_data
307 {
308 /* The symbol in the global GOT with the lowest dynamic symbol table
309 index. */
310 struct elf_link_hash_entry *low;
311 /* The least dynamic symbol table index corresponding to a non-TLS
312 symbol with a GOT entry. */
313 long min_got_dynindx;
314 /* The greatest dynamic symbol table index corresponding to a symbol
315 with a GOT entry that is not referenced (e.g., a dynamic symbol
316 with dynamic relocations pointing to it from non-primary GOTs). */
317 long max_unref_got_dynindx;
318 /* The greatest dynamic symbol table index not corresponding to a
319 symbol without a GOT entry. */
320 long max_non_got_dynindx;
321 };
322
323 /* We make up to two PLT entries if needed, one for standard MIPS code
324 and one for compressed code, either a MIPS16 or microMIPS one. We
325 keep a separate record of traditional lazy-binding stubs, for easier
326 processing. */
327
328 struct plt_entry
329 {
330 /* Traditional SVR4 stub offset, or -1 if none. */
331 bfd_vma stub_offset;
332
333 /* Standard PLT entry offset, or -1 if none. */
334 bfd_vma mips_offset;
335
336 /* Compressed PLT entry offset, or -1 if none. */
337 bfd_vma comp_offset;
338
339 /* The corresponding .got.plt index, or -1 if none. */
340 bfd_vma gotplt_index;
341
342 /* Whether we need a standard PLT entry. */
343 unsigned int need_mips : 1;
344
345 /* Whether we need a compressed PLT entry. */
346 unsigned int need_comp : 1;
347 };
348
349 /* The MIPS ELF linker needs additional information for each symbol in
350 the global hash table. */
351
352 struct mips_elf_link_hash_entry
353 {
354 struct elf_link_hash_entry root;
355
356 /* External symbol information. */
357 EXTR esym;
358
359 /* The la25 stub we have created for ths symbol, if any. */
360 struct mips_elf_la25_stub *la25_stub;
361
362 /* Number of R_MIPS_32, R_MIPS_REL32, or R_MIPS_64 relocs against
363 this symbol. */
364 unsigned int possibly_dynamic_relocs;
365
366 /* If there is a stub that 32 bit functions should use to call this
367 16 bit function, this points to the section containing the stub. */
368 asection *fn_stub;
369
370 /* If there is a stub that 16 bit functions should use to call this
371 32 bit function, this points to the section containing the stub. */
372 asection *call_stub;
373
374 /* This is like the call_stub field, but it is used if the function
375 being called returns a floating point value. */
376 asection *call_fp_stub;
377
378 /* The highest GGA_* value that satisfies all references to this symbol. */
379 unsigned int global_got_area : 2;
380
381 /* True if all GOT relocations against this symbol are for calls. This is
382 a looser condition than no_fn_stub below, because there may be other
383 non-call non-GOT relocations against the symbol. */
384 unsigned int got_only_for_calls : 1;
385
386 /* True if one of the relocations described by possibly_dynamic_relocs
387 is against a readonly section. */
388 unsigned int readonly_reloc : 1;
389
390 /* True if there is a relocation against this symbol that must be
391 resolved by the static linker (in other words, if the relocation
392 cannot possibly be made dynamic). */
393 unsigned int has_static_relocs : 1;
394
395 /* True if we must not create a .MIPS.stubs entry for this symbol.
396 This is set, for example, if there are relocations related to
397 taking the function's address, i.e. any but R_MIPS_CALL*16 ones.
398 See "MIPS ABI Supplement, 3rd Edition", p. 4-20. */
399 unsigned int no_fn_stub : 1;
400
401 /* Whether we need the fn_stub; this is true if this symbol appears
402 in any relocs other than a 16 bit call. */
403 unsigned int need_fn_stub : 1;
404
405 /* True if this symbol is referenced by branch relocations from
406 any non-PIC input file. This is used to determine whether an
407 la25 stub is required. */
408 unsigned int has_nonpic_branches : 1;
409
410 /* Does this symbol need a traditional MIPS lazy-binding stub
411 (as opposed to a PLT entry)? */
412 unsigned int needs_lazy_stub : 1;
413
414 /* Does this symbol resolve to a PLT entry? */
415 unsigned int use_plt_entry : 1;
416 };
417
418 /* MIPS ELF linker hash table. */
419
420 struct mips_elf_link_hash_table
421 {
422 struct elf_link_hash_table root;
423
424 /* The number of .rtproc entries. */
425 bfd_size_type procedure_count;
426
427 /* The size of the .compact_rel section (if SGI_COMPAT). */
428 bfd_size_type compact_rel_size;
429
430 /* This flag indicates that the value of DT_MIPS_RLD_MAP dynamic entry
431 is set to the address of __rld_obj_head as in IRIX5 and IRIX6. */
432 bfd_boolean use_rld_obj_head;
433
434 /* The __rld_map or __rld_obj_head symbol. */
435 struct elf_link_hash_entry *rld_symbol;
436
437 /* This is set if we see any mips16 stub sections. */
438 bfd_boolean mips16_stubs_seen;
439
440 /* True if we can generate copy relocs and PLTs. */
441 bfd_boolean use_plts_and_copy_relocs;
442
443 /* True if we can only use 32-bit microMIPS instructions. */
444 bfd_boolean insn32;
445
446 /* True if we're generating code for VxWorks. */
447 bfd_boolean is_vxworks;
448
449 /* True if we already reported the small-data section overflow. */
450 bfd_boolean small_data_overflow_reported;
451
452 /* Shortcuts to some dynamic sections, or NULL if they are not
453 being used. */
454 asection *srelbss;
455 asection *sdynbss;
456 asection *srelplt;
457 asection *srelplt2;
458 asection *sgotplt;
459 asection *splt;
460 asection *sstubs;
461 asection *sgot;
462
463 /* The master GOT information. */
464 struct mips_got_info *got_info;
465
466 /* The global symbol in the GOT with the lowest index in the dynamic
467 symbol table. */
468 struct elf_link_hash_entry *global_gotsym;
469
470 /* The size of the PLT header in bytes. */
471 bfd_vma plt_header_size;
472
473 /* The size of a standard PLT entry in bytes. */
474 bfd_vma plt_mips_entry_size;
475
476 /* The size of a compressed PLT entry in bytes. */
477 bfd_vma plt_comp_entry_size;
478
479 /* The offset of the next standard PLT entry to create. */
480 bfd_vma plt_mips_offset;
481
482 /* The offset of the next compressed PLT entry to create. */
483 bfd_vma plt_comp_offset;
484
485 /* The index of the next .got.plt entry to create. */
486 bfd_vma plt_got_index;
487
488 /* The number of functions that need a lazy-binding stub. */
489 bfd_vma lazy_stub_count;
490
491 /* The size of a function stub entry in bytes. */
492 bfd_vma function_stub_size;
493
494 /* The number of reserved entries at the beginning of the GOT. */
495 unsigned int reserved_gotno;
496
497 /* The section used for mips_elf_la25_stub trampolines.
498 See the comment above that structure for details. */
499 asection *strampoline;
500
501 /* A table of mips_elf_la25_stubs, indexed by (input_section, offset)
502 pairs. */
503 htab_t la25_stubs;
504
505 /* A function FN (NAME, IS, OS) that creates a new input section
506 called NAME and links it to output section OS. If IS is nonnull,
507 the new section should go immediately before it, otherwise it
508 should go at the (current) beginning of OS.
509
510 The function returns the new section on success, otherwise it
511 returns null. */
512 asection *(*add_stub_section) (const char *, asection *, asection *);
513
514 /* Small local sym cache. */
515 struct sym_cache sym_cache;
516
517 /* Is the PLT header compressed? */
518 unsigned int plt_header_is_comp : 1;
519 };
520
521 /* Get the MIPS ELF linker hash table from a link_info structure. */
522
523 #define mips_elf_hash_table(p) \
524 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
525 == MIPS_ELF_DATA ? ((struct mips_elf_link_hash_table *) ((p)->hash)) : NULL)
526
527 /* A structure used to communicate with htab_traverse callbacks. */
528 struct mips_htab_traverse_info
529 {
530 /* The usual link-wide information. */
531 struct bfd_link_info *info;
532 bfd *output_bfd;
533
534 /* Starts off FALSE and is set to TRUE if the link should be aborted. */
535 bfd_boolean error;
536 };
537
538 /* MIPS ELF private object data. */
539
540 struct mips_elf_obj_tdata
541 {
542 /* Generic ELF private object data. */
543 struct elf_obj_tdata root;
544
545 /* Input BFD providing Tag_GNU_MIPS_ABI_FP attribute for output. */
546 bfd *abi_fp_bfd;
547
548 /* Input BFD providing Tag_GNU_MIPS_ABI_MSA attribute for output. */
549 bfd *abi_msa_bfd;
550
551 /* The abiflags for this object. */
552 Elf_Internal_ABIFlags_v0 abiflags;
553 bfd_boolean abiflags_valid;
554
555 /* The GOT requirements of input bfds. */
556 struct mips_got_info *got;
557
558 /* Used by _bfd_mips_elf_find_nearest_line. The structure could be
559 included directly in this one, but there's no point to wasting
560 the memory just for the infrequently called find_nearest_line. */
561 struct mips_elf_find_line *find_line_info;
562
563 /* An array of stub sections indexed by symbol number. */
564 asection **local_stubs;
565 asection **local_call_stubs;
566
567 /* The Irix 5 support uses two virtual sections, which represent
568 text/data symbols defined in dynamic objects. */
569 asymbol *elf_data_symbol;
570 asymbol *elf_text_symbol;
571 asection *elf_data_section;
572 asection *elf_text_section;
573 };
574
575 /* Get MIPS ELF private object data from BFD's tdata. */
576
577 #define mips_elf_tdata(bfd) \
578 ((struct mips_elf_obj_tdata *) (bfd)->tdata.any)
579
580 #define TLS_RELOC_P(r_type) \
581 (r_type == R_MIPS_TLS_DTPMOD32 \
582 || r_type == R_MIPS_TLS_DTPMOD64 \
583 || r_type == R_MIPS_TLS_DTPREL32 \
584 || r_type == R_MIPS_TLS_DTPREL64 \
585 || r_type == R_MIPS_TLS_GD \
586 || r_type == R_MIPS_TLS_LDM \
587 || r_type == R_MIPS_TLS_DTPREL_HI16 \
588 || r_type == R_MIPS_TLS_DTPREL_LO16 \
589 || r_type == R_MIPS_TLS_GOTTPREL \
590 || r_type == R_MIPS_TLS_TPREL32 \
591 || r_type == R_MIPS_TLS_TPREL64 \
592 || r_type == R_MIPS_TLS_TPREL_HI16 \
593 || r_type == R_MIPS_TLS_TPREL_LO16 \
594 || r_type == R_MIPS16_TLS_GD \
595 || r_type == R_MIPS16_TLS_LDM \
596 || r_type == R_MIPS16_TLS_DTPREL_HI16 \
597 || r_type == R_MIPS16_TLS_DTPREL_LO16 \
598 || r_type == R_MIPS16_TLS_GOTTPREL \
599 || r_type == R_MIPS16_TLS_TPREL_HI16 \
600 || r_type == R_MIPS16_TLS_TPREL_LO16 \
601 || r_type == R_MICROMIPS_TLS_GD \
602 || r_type == R_MICROMIPS_TLS_LDM \
603 || r_type == R_MICROMIPS_TLS_DTPREL_HI16 \
604 || r_type == R_MICROMIPS_TLS_DTPREL_LO16 \
605 || r_type == R_MICROMIPS_TLS_GOTTPREL \
606 || r_type == R_MICROMIPS_TLS_TPREL_HI16 \
607 || r_type == R_MICROMIPS_TLS_TPREL_LO16)
608
609 /* Structure used to pass information to mips_elf_output_extsym. */
610
611 struct extsym_info
612 {
613 bfd *abfd;
614 struct bfd_link_info *info;
615 struct ecoff_debug_info *debug;
616 const struct ecoff_debug_swap *swap;
617 bfd_boolean failed;
618 };
619
620 /* The names of the runtime procedure table symbols used on IRIX5. */
621
622 static const char * const mips_elf_dynsym_rtproc_names[] =
623 {
624 "_procedure_table",
625 "_procedure_string_table",
626 "_procedure_table_size",
627 NULL
628 };
629
630 /* These structures are used to generate the .compact_rel section on
631 IRIX5. */
632
633 typedef struct
634 {
635 unsigned long id1; /* Always one? */
636 unsigned long num; /* Number of compact relocation entries. */
637 unsigned long id2; /* Always two? */
638 unsigned long offset; /* The file offset of the first relocation. */
639 unsigned long reserved0; /* Zero? */
640 unsigned long reserved1; /* Zero? */
641 } Elf32_compact_rel;
642
643 typedef struct
644 {
645 bfd_byte id1[4];
646 bfd_byte num[4];
647 bfd_byte id2[4];
648 bfd_byte offset[4];
649 bfd_byte reserved0[4];
650 bfd_byte reserved1[4];
651 } Elf32_External_compact_rel;
652
653 typedef struct
654 {
655 unsigned int ctype : 1; /* 1: long 0: short format. See below. */
656 unsigned int rtype : 4; /* Relocation types. See below. */
657 unsigned int dist2to : 8;
658 unsigned int relvaddr : 19; /* (VADDR - vaddr of the previous entry)/ 4 */
659 unsigned long konst; /* KONST field. See below. */
660 unsigned long vaddr; /* VADDR to be relocated. */
661 } Elf32_crinfo;
662
663 typedef struct
664 {
665 unsigned int ctype : 1; /* 1: long 0: short format. See below. */
666 unsigned int rtype : 4; /* Relocation types. See below. */
667 unsigned int dist2to : 8;
668 unsigned int relvaddr : 19; /* (VADDR - vaddr of the previous entry)/ 4 */
669 unsigned long konst; /* KONST field. See below. */
670 } Elf32_crinfo2;
671
672 typedef struct
673 {
674 bfd_byte info[4];
675 bfd_byte konst[4];
676 bfd_byte vaddr[4];
677 } Elf32_External_crinfo;
678
679 typedef struct
680 {
681 bfd_byte info[4];
682 bfd_byte konst[4];
683 } Elf32_External_crinfo2;
684
685 /* These are the constants used to swap the bitfields in a crinfo. */
686
687 #define CRINFO_CTYPE (0x1)
688 #define CRINFO_CTYPE_SH (31)
689 #define CRINFO_RTYPE (0xf)
690 #define CRINFO_RTYPE_SH (27)
691 #define CRINFO_DIST2TO (0xff)
692 #define CRINFO_DIST2TO_SH (19)
693 #define CRINFO_RELVADDR (0x7ffff)
694 #define CRINFO_RELVADDR_SH (0)
695
696 /* A compact relocation info has long (3 words) or short (2 words)
697 formats. A short format doesn't have VADDR field and relvaddr
698 fields contains ((VADDR - vaddr of the previous entry) >> 2). */
699 #define CRF_MIPS_LONG 1
700 #define CRF_MIPS_SHORT 0
701
702 /* There are 4 types of compact relocation at least. The value KONST
703 has different meaning for each type:
704
705 (type) (konst)
706 CT_MIPS_REL32 Address in data
707 CT_MIPS_WORD Address in word (XXX)
708 CT_MIPS_GPHI_LO GP - vaddr
709 CT_MIPS_JMPAD Address to jump
710 */
711
712 #define CRT_MIPS_REL32 0xa
713 #define CRT_MIPS_WORD 0xb
714 #define CRT_MIPS_GPHI_LO 0xc
715 #define CRT_MIPS_JMPAD 0xd
716
717 #define mips_elf_set_cr_format(x,format) ((x).ctype = (format))
718 #define mips_elf_set_cr_type(x,type) ((x).rtype = (type))
719 #define mips_elf_set_cr_dist2to(x,v) ((x).dist2to = (v))
720 #define mips_elf_set_cr_relvaddr(x,d) ((x).relvaddr = (d)<<2)
721 \f
722 /* The structure of the runtime procedure descriptor created by the
723 loader for use by the static exception system. */
724
725 typedef struct runtime_pdr {
726 bfd_vma adr; /* Memory address of start of procedure. */
727 long regmask; /* Save register mask. */
728 long regoffset; /* Save register offset. */
729 long fregmask; /* Save floating point register mask. */
730 long fregoffset; /* Save floating point register offset. */
731 long frameoffset; /* Frame size. */
732 short framereg; /* Frame pointer register. */
733 short pcreg; /* Offset or reg of return pc. */
734 long irpss; /* Index into the runtime string table. */
735 long reserved;
736 struct exception_info *exception_info;/* Pointer to exception array. */
737 } RPDR, *pRPDR;
738 #define cbRPDR sizeof (RPDR)
739 #define rpdNil ((pRPDR) 0)
740 \f
741 static struct mips_got_entry *mips_elf_create_local_got_entry
742 (bfd *, struct bfd_link_info *, bfd *, bfd_vma, unsigned long,
743 struct mips_elf_link_hash_entry *, int);
744 static bfd_boolean mips_elf_sort_hash_table_f
745 (struct mips_elf_link_hash_entry *, void *);
746 static bfd_vma mips_elf_high
747 (bfd_vma);
748 static bfd_boolean mips_elf_create_dynamic_relocation
749 (bfd *, struct bfd_link_info *, const Elf_Internal_Rela *,
750 struct mips_elf_link_hash_entry *, asection *, bfd_vma,
751 bfd_vma *, asection *);
752 static bfd_vma mips_elf_adjust_gp
753 (bfd *, struct mips_got_info *, bfd *);
754
755 /* This will be used when we sort the dynamic relocation records. */
756 static bfd *reldyn_sorting_bfd;
757
758 /* True if ABFD is for CPUs with load interlocking that include
759 non-MIPS1 CPUs and R3900. */
760 #define LOAD_INTERLOCKS_P(abfd) \
761 ( ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) != E_MIPS_ARCH_1) \
762 || ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == E_MIPS_MACH_3900))
763
764 /* True if ABFD is for CPUs that are faster if JAL is converted to BAL.
765 This should be safe for all architectures. We enable this predicate
766 for RM9000 for now. */
767 #define JAL_TO_BAL_P(abfd) \
768 ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == E_MIPS_MACH_9000)
769
770 /* True if ABFD is for CPUs that are faster if JALR is converted to BAL.
771 This should be safe for all architectures. We enable this predicate for
772 all CPUs. */
773 #define JALR_TO_BAL_P(abfd) 1
774
775 /* True if ABFD is for CPUs that are faster if JR is converted to B.
776 This should be safe for all architectures. We enable this predicate for
777 all CPUs. */
778 #define JR_TO_B_P(abfd) 1
779
780 /* True if ABFD is a PIC object. */
781 #define PIC_OBJECT_P(abfd) \
782 ((elf_elfheader (abfd)->e_flags & EF_MIPS_PIC) != 0)
783
784 /* Nonzero if ABFD is using the O32 ABI. */
785 #define ABI_O32_P(abfd) \
786 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O32)
787
788 /* Nonzero if ABFD is using the N32 ABI. */
789 #define ABI_N32_P(abfd) \
790 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI2) != 0)
791
792 /* Nonzero if ABFD is using the N64 ABI. */
793 #define ABI_64_P(abfd) \
794 (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64)
795
796 /* Nonzero if ABFD is using NewABI conventions. */
797 #define NEWABI_P(abfd) (ABI_N32_P (abfd) || ABI_64_P (abfd))
798
799 /* Nonzero if ABFD has microMIPS code. */
800 #define MICROMIPS_P(abfd) \
801 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MICROMIPS) != 0)
802
803 /* Nonzero if ABFD is MIPS R6. */
804 #define MIPSR6_P(abfd) \
805 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R6 \
806 || (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64R6)
807
808 /* The IRIX compatibility level we are striving for. */
809 #define IRIX_COMPAT(abfd) \
810 (get_elf_backend_data (abfd)->elf_backend_mips_irix_compat (abfd))
811
812 /* Whether we are trying to be compatible with IRIX at all. */
813 #define SGI_COMPAT(abfd) \
814 (IRIX_COMPAT (abfd) != ict_none)
815
816 /* The name of the options section. */
817 #define MIPS_ELF_OPTIONS_SECTION_NAME(abfd) \
818 (NEWABI_P (abfd) ? ".MIPS.options" : ".options")
819
820 /* True if NAME is the recognized name of any SHT_MIPS_OPTIONS section.
821 Some IRIX system files do not use MIPS_ELF_OPTIONS_SECTION_NAME. */
822 #define MIPS_ELF_OPTIONS_SECTION_NAME_P(NAME) \
823 (strcmp (NAME, ".MIPS.options") == 0 || strcmp (NAME, ".options") == 0)
824
825 /* True if NAME is the recognized name of any SHT_MIPS_ABIFLAGS section. */
826 #define MIPS_ELF_ABIFLAGS_SECTION_NAME_P(NAME) \
827 (strcmp (NAME, ".MIPS.abiflags") == 0)
828
829 /* Whether the section is readonly. */
830 #define MIPS_ELF_READONLY_SECTION(sec) \
831 ((sec->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY)) \
832 == (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
833
834 /* The name of the stub section. */
835 #define MIPS_ELF_STUB_SECTION_NAME(abfd) ".MIPS.stubs"
836
837 /* The size of an external REL relocation. */
838 #define MIPS_ELF_REL_SIZE(abfd) \
839 (get_elf_backend_data (abfd)->s->sizeof_rel)
840
841 /* The size of an external RELA relocation. */
842 #define MIPS_ELF_RELA_SIZE(abfd) \
843 (get_elf_backend_data (abfd)->s->sizeof_rela)
844
845 /* The size of an external dynamic table entry. */
846 #define MIPS_ELF_DYN_SIZE(abfd) \
847 (get_elf_backend_data (abfd)->s->sizeof_dyn)
848
849 /* The size of a GOT entry. */
850 #define MIPS_ELF_GOT_SIZE(abfd) \
851 (get_elf_backend_data (abfd)->s->arch_size / 8)
852
853 /* The size of the .rld_map section. */
854 #define MIPS_ELF_RLD_MAP_SIZE(abfd) \
855 (get_elf_backend_data (abfd)->s->arch_size / 8)
856
857 /* The size of a symbol-table entry. */
858 #define MIPS_ELF_SYM_SIZE(abfd) \
859 (get_elf_backend_data (abfd)->s->sizeof_sym)
860
861 /* The default alignment for sections, as a power of two. */
862 #define MIPS_ELF_LOG_FILE_ALIGN(abfd) \
863 (get_elf_backend_data (abfd)->s->log_file_align)
864
865 /* Get word-sized data. */
866 #define MIPS_ELF_GET_WORD(abfd, ptr) \
867 (ABI_64_P (abfd) ? bfd_get_64 (abfd, ptr) : bfd_get_32 (abfd, ptr))
868
869 /* Put out word-sized data. */
870 #define MIPS_ELF_PUT_WORD(abfd, val, ptr) \
871 (ABI_64_P (abfd) \
872 ? bfd_put_64 (abfd, val, ptr) \
873 : bfd_put_32 (abfd, val, ptr))
874
875 /* The opcode for word-sized loads (LW or LD). */
876 #define MIPS_ELF_LOAD_WORD(abfd) \
877 (ABI_64_P (abfd) ? 0xdc000000 : 0x8c000000)
878
879 /* Add a dynamic symbol table-entry. */
880 #define MIPS_ELF_ADD_DYNAMIC_ENTRY(info, tag, val) \
881 _bfd_elf_add_dynamic_entry (info, tag, val)
882
883 #define MIPS_ELF_RTYPE_TO_HOWTO(abfd, rtype, rela) \
884 (get_elf_backend_data (abfd)->elf_backend_mips_rtype_to_howto (rtype, rela))
885
886 /* The name of the dynamic relocation section. */
887 #define MIPS_ELF_REL_DYN_NAME(INFO) \
888 (mips_elf_hash_table (INFO)->is_vxworks ? ".rela.dyn" : ".rel.dyn")
889
890 /* In case we're on a 32-bit machine, construct a 64-bit "-1" value
891 from smaller values. Start with zero, widen, *then* decrement. */
892 #define MINUS_ONE (((bfd_vma)0) - 1)
893 #define MINUS_TWO (((bfd_vma)0) - 2)
894
895 /* The value to write into got[1] for SVR4 targets, to identify it is
896 a GNU object. The dynamic linker can then use got[1] to store the
897 module pointer. */
898 #define MIPS_ELF_GNU_GOT1_MASK(abfd) \
899 ((bfd_vma) 1 << (ABI_64_P (abfd) ? 63 : 31))
900
901 /* The offset of $gp from the beginning of the .got section. */
902 #define ELF_MIPS_GP_OFFSET(INFO) \
903 (mips_elf_hash_table (INFO)->is_vxworks ? 0x0 : 0x7ff0)
904
905 /* The maximum size of the GOT for it to be addressable using 16-bit
906 offsets from $gp. */
907 #define MIPS_ELF_GOT_MAX_SIZE(INFO) (ELF_MIPS_GP_OFFSET (INFO) + 0x7fff)
908
909 /* Instructions which appear in a stub. */
910 #define STUB_LW(abfd) \
911 ((ABI_64_P (abfd) \
912 ? 0xdf998010 /* ld t9,0x8010(gp) */ \
913 : 0x8f998010)) /* lw t9,0x8010(gp) */
914 #define STUB_MOVE(abfd) \
915 ((ABI_64_P (abfd) \
916 ? 0x03e0782d /* daddu t7,ra */ \
917 : 0x03e07821)) /* addu t7,ra */
918 #define STUB_LUI(VAL) (0x3c180000 + (VAL)) /* lui t8,VAL */
919 #define STUB_JALR 0x0320f809 /* jalr t9,ra */
920 #define STUB_ORI(VAL) (0x37180000 + (VAL)) /* ori t8,t8,VAL */
921 #define STUB_LI16U(VAL) (0x34180000 + (VAL)) /* ori t8,zero,VAL unsigned */
922 #define STUB_LI16S(abfd, VAL) \
923 ((ABI_64_P (abfd) \
924 ? (0x64180000 + (VAL)) /* daddiu t8,zero,VAL sign extended */ \
925 : (0x24180000 + (VAL)))) /* addiu t8,zero,VAL sign extended */
926
927 /* Likewise for the microMIPS ASE. */
928 #define STUB_LW_MICROMIPS(abfd) \
929 (ABI_64_P (abfd) \
930 ? 0xdf3c8010 /* ld t9,0x8010(gp) */ \
931 : 0xff3c8010) /* lw t9,0x8010(gp) */
932 #define STUB_MOVE_MICROMIPS 0x0dff /* move t7,ra */
933 #define STUB_MOVE32_MICROMIPS(abfd) \
934 (ABI_64_P (abfd) \
935 ? 0x581f7950 /* daddu t7,ra,zero */ \
936 : 0x001f7950) /* addu t7,ra,zero */
937 #define STUB_LUI_MICROMIPS(VAL) \
938 (0x41b80000 + (VAL)) /* lui t8,VAL */
939 #define STUB_JALR_MICROMIPS 0x45d9 /* jalr t9 */
940 #define STUB_JALR32_MICROMIPS 0x03f90f3c /* jalr ra,t9 */
941 #define STUB_ORI_MICROMIPS(VAL) \
942 (0x53180000 + (VAL)) /* ori t8,t8,VAL */
943 #define STUB_LI16U_MICROMIPS(VAL) \
944 (0x53000000 + (VAL)) /* ori t8,zero,VAL unsigned */
945 #define STUB_LI16S_MICROMIPS(abfd, VAL) \
946 (ABI_64_P (abfd) \
947 ? 0x5f000000 + (VAL) /* daddiu t8,zero,VAL sign extended */ \
948 : 0x33000000 + (VAL)) /* addiu t8,zero,VAL sign extended */
949
950 #define MIPS_FUNCTION_STUB_NORMAL_SIZE 16
951 #define MIPS_FUNCTION_STUB_BIG_SIZE 20
952 #define MICROMIPS_FUNCTION_STUB_NORMAL_SIZE 12
953 #define MICROMIPS_FUNCTION_STUB_BIG_SIZE 16
954 #define MICROMIPS_INSN32_FUNCTION_STUB_NORMAL_SIZE 16
955 #define MICROMIPS_INSN32_FUNCTION_STUB_BIG_SIZE 20
956
957 /* The name of the dynamic interpreter. This is put in the .interp
958 section. */
959
960 #define ELF_DYNAMIC_INTERPRETER(abfd) \
961 (ABI_N32_P (abfd) ? "/usr/lib32/libc.so.1" \
962 : ABI_64_P (abfd) ? "/usr/lib64/libc.so.1" \
963 : "/usr/lib/libc.so.1")
964
965 #ifdef BFD64
966 #define MNAME(bfd,pre,pos) \
967 (ABI_64_P (bfd) ? CONCAT4 (pre,64,_,pos) : CONCAT4 (pre,32,_,pos))
968 #define ELF_R_SYM(bfd, i) \
969 (ABI_64_P (bfd) ? ELF64_R_SYM (i) : ELF32_R_SYM (i))
970 #define ELF_R_TYPE(bfd, i) \
971 (ABI_64_P (bfd) ? ELF64_MIPS_R_TYPE (i) : ELF32_R_TYPE (i))
972 #define ELF_R_INFO(bfd, s, t) \
973 (ABI_64_P (bfd) ? ELF64_R_INFO (s, t) : ELF32_R_INFO (s, t))
974 #else
975 #define MNAME(bfd,pre,pos) CONCAT4 (pre,32,_,pos)
976 #define ELF_R_SYM(bfd, i) \
977 (ELF32_R_SYM (i))
978 #define ELF_R_TYPE(bfd, i) \
979 (ELF32_R_TYPE (i))
980 #define ELF_R_INFO(bfd, s, t) \
981 (ELF32_R_INFO (s, t))
982 #endif
983 \f
984 /* The mips16 compiler uses a couple of special sections to handle
985 floating point arguments.
986
987 Section names that look like .mips16.fn.FNNAME contain stubs that
988 copy floating point arguments from the fp regs to the gp regs and
989 then jump to FNNAME. If any 32 bit function calls FNNAME, the
990 call should be redirected to the stub instead. If no 32 bit
991 function calls FNNAME, the stub should be discarded. We need to
992 consider any reference to the function, not just a call, because
993 if the address of the function is taken we will need the stub,
994 since the address might be passed to a 32 bit function.
995
996 Section names that look like .mips16.call.FNNAME contain stubs
997 that copy floating point arguments from the gp regs to the fp
998 regs and then jump to FNNAME. If FNNAME is a 32 bit function,
999 then any 16 bit function that calls FNNAME should be redirected
1000 to the stub instead. If FNNAME is not a 32 bit function, the
1001 stub should be discarded.
1002
1003 .mips16.call.fp.FNNAME sections are similar, but contain stubs
1004 which call FNNAME and then copy the return value from the fp regs
1005 to the gp regs. These stubs store the return value in $18 while
1006 calling FNNAME; any function which might call one of these stubs
1007 must arrange to save $18 around the call. (This case is not
1008 needed for 32 bit functions that call 16 bit functions, because
1009 16 bit functions always return floating point values in both
1010 $f0/$f1 and $2/$3.)
1011
1012 Note that in all cases FNNAME might be defined statically.
1013 Therefore, FNNAME is not used literally. Instead, the relocation
1014 information will indicate which symbol the section is for.
1015
1016 We record any stubs that we find in the symbol table. */
1017
1018 #define FN_STUB ".mips16.fn."
1019 #define CALL_STUB ".mips16.call."
1020 #define CALL_FP_STUB ".mips16.call.fp."
1021
1022 #define FN_STUB_P(name) CONST_STRNEQ (name, FN_STUB)
1023 #define CALL_STUB_P(name) CONST_STRNEQ (name, CALL_STUB)
1024 #define CALL_FP_STUB_P(name) CONST_STRNEQ (name, CALL_FP_STUB)
1025 \f
1026 /* The format of the first PLT entry in an O32 executable. */
1027 static const bfd_vma mips_o32_exec_plt0_entry[] =
1028 {
1029 0x3c1c0000, /* lui $28, %hi(&GOTPLT[0]) */
1030 0x8f990000, /* lw $25, %lo(&GOTPLT[0])($28) */
1031 0x279c0000, /* addiu $28, $28, %lo(&GOTPLT[0]) */
1032 0x031cc023, /* subu $24, $24, $28 */
1033 0x03e07821, /* move $15, $31 # 32-bit move (addu) */
1034 0x0018c082, /* srl $24, $24, 2 */
1035 0x0320f809, /* jalr $25 */
1036 0x2718fffe /* subu $24, $24, 2 */
1037 };
1038
1039 /* The format of the first PLT entry in an N32 executable. Different
1040 because gp ($28) is not available; we use t2 ($14) instead. */
1041 static const bfd_vma mips_n32_exec_plt0_entry[] =
1042 {
1043 0x3c0e0000, /* lui $14, %hi(&GOTPLT[0]) */
1044 0x8dd90000, /* lw $25, %lo(&GOTPLT[0])($14) */
1045 0x25ce0000, /* addiu $14, $14, %lo(&GOTPLT[0]) */
1046 0x030ec023, /* subu $24, $24, $14 */
1047 0x03e07821, /* move $15, $31 # 32-bit move (addu) */
1048 0x0018c082, /* srl $24, $24, 2 */
1049 0x0320f809, /* jalr $25 */
1050 0x2718fffe /* subu $24, $24, 2 */
1051 };
1052
1053 /* The format of the first PLT entry in an N64 executable. Different
1054 from N32 because of the increased size of GOT entries. */
1055 static const bfd_vma mips_n64_exec_plt0_entry[] =
1056 {
1057 0x3c0e0000, /* lui $14, %hi(&GOTPLT[0]) */
1058 0xddd90000, /* ld $25, %lo(&GOTPLT[0])($14) */
1059 0x25ce0000, /* addiu $14, $14, %lo(&GOTPLT[0]) */
1060 0x030ec023, /* subu $24, $24, $14 */
1061 0x03e0782d, /* move $15, $31 # 64-bit move (daddu) */
1062 0x0018c0c2, /* srl $24, $24, 3 */
1063 0x0320f809, /* jalr $25 */
1064 0x2718fffe /* subu $24, $24, 2 */
1065 };
1066
1067 /* The format of the microMIPS first PLT entry in an O32 executable.
1068 We rely on v0 ($2) rather than t8 ($24) to contain the address
1069 of the GOTPLT entry handled, so this stub may only be used when
1070 all the subsequent PLT entries are microMIPS code too.
1071
1072 The trailing NOP is for alignment and correct disassembly only. */
1073 static const bfd_vma micromips_o32_exec_plt0_entry[] =
1074 {
1075 0x7980, 0x0000, /* addiupc $3, (&GOTPLT[0]) - . */
1076 0xff23, 0x0000, /* lw $25, 0($3) */
1077 0x0535, /* subu $2, $2, $3 */
1078 0x2525, /* srl $2, $2, 2 */
1079 0x3302, 0xfffe, /* subu $24, $2, 2 */
1080 0x0dff, /* move $15, $31 */
1081 0x45f9, /* jalrs $25 */
1082 0x0f83, /* move $28, $3 */
1083 0x0c00 /* nop */
1084 };
1085
1086 /* The format of the microMIPS first PLT entry in an O32 executable
1087 in the insn32 mode. */
1088 static const bfd_vma micromips_insn32_o32_exec_plt0_entry[] =
1089 {
1090 0x41bc, 0x0000, /* lui $28, %hi(&GOTPLT[0]) */
1091 0xff3c, 0x0000, /* lw $25, %lo(&GOTPLT[0])($28) */
1092 0x339c, 0x0000, /* addiu $28, $28, %lo(&GOTPLT[0]) */
1093 0x0398, 0xc1d0, /* subu $24, $24, $28 */
1094 0x001f, 0x7950, /* move $15, $31 */
1095 0x0318, 0x1040, /* srl $24, $24, 2 */
1096 0x03f9, 0x0f3c, /* jalr $25 */
1097 0x3318, 0xfffe /* subu $24, $24, 2 */
1098 };
1099
1100 /* The format of subsequent standard PLT entries. */
1101 static const bfd_vma mips_exec_plt_entry[] =
1102 {
1103 0x3c0f0000, /* lui $15, %hi(.got.plt entry) */
1104 0x01f90000, /* l[wd] $25, %lo(.got.plt entry)($15) */
1105 0x25f80000, /* addiu $24, $15, %lo(.got.plt entry) */
1106 0x03200008 /* jr $25 */
1107 };
1108
1109 /* In the following PLT entry the JR and ADDIU instructions will
1110 be swapped in _bfd_mips_elf_finish_dynamic_symbol because
1111 LOAD_INTERLOCKS_P will be true for MIPS R6. */
1112 static const bfd_vma mipsr6_exec_plt_entry[] =
1113 {
1114 0x3c0f0000, /* lui $15, %hi(.got.plt entry) */
1115 0x01f90000, /* l[wd] $25, %lo(.got.plt entry)($15) */
1116 0x25f80000, /* addiu $24, $15, %lo(.got.plt entry) */
1117 0x03200009 /* jr $25 */
1118 };
1119
1120 /* The format of subsequent MIPS16 o32 PLT entries. We use v0 ($2)
1121 and v1 ($3) as temporaries because t8 ($24) and t9 ($25) are not
1122 directly addressable. */
1123 static const bfd_vma mips16_o32_exec_plt_entry[] =
1124 {
1125 0xb203, /* lw $2, 12($pc) */
1126 0x9a60, /* lw $3, 0($2) */
1127 0x651a, /* move $24, $2 */
1128 0xeb00, /* jr $3 */
1129 0x653b, /* move $25, $3 */
1130 0x6500, /* nop */
1131 0x0000, 0x0000 /* .word (.got.plt entry) */
1132 };
1133
1134 /* The format of subsequent microMIPS o32 PLT entries. We use v0 ($2)
1135 as a temporary because t8 ($24) is not addressable with ADDIUPC. */
1136 static const bfd_vma micromips_o32_exec_plt_entry[] =
1137 {
1138 0x7900, 0x0000, /* addiupc $2, (.got.plt entry) - . */
1139 0xff22, 0x0000, /* lw $25, 0($2) */
1140 0x4599, /* jr $25 */
1141 0x0f02 /* move $24, $2 */
1142 };
1143
1144 /* The format of subsequent microMIPS o32 PLT entries in the insn32 mode. */
1145 static const bfd_vma micromips_insn32_o32_exec_plt_entry[] =
1146 {
1147 0x41af, 0x0000, /* lui $15, %hi(.got.plt entry) */
1148 0xff2f, 0x0000, /* lw $25, %lo(.got.plt entry)($15) */
1149 0x0019, 0x0f3c, /* jr $25 */
1150 0x330f, 0x0000 /* addiu $24, $15, %lo(.got.plt entry) */
1151 };
1152
1153 /* The format of the first PLT entry in a VxWorks executable. */
1154 static const bfd_vma mips_vxworks_exec_plt0_entry[] =
1155 {
1156 0x3c190000, /* lui t9, %hi(_GLOBAL_OFFSET_TABLE_) */
1157 0x27390000, /* addiu t9, t9, %lo(_GLOBAL_OFFSET_TABLE_) */
1158 0x8f390008, /* lw t9, 8(t9) */
1159 0x00000000, /* nop */
1160 0x03200008, /* jr t9 */
1161 0x00000000 /* nop */
1162 };
1163
1164 /* The format of subsequent PLT entries. */
1165 static const bfd_vma mips_vxworks_exec_plt_entry[] =
1166 {
1167 0x10000000, /* b .PLT_resolver */
1168 0x24180000, /* li t8, <pltindex> */
1169 0x3c190000, /* lui t9, %hi(<.got.plt slot>) */
1170 0x27390000, /* addiu t9, t9, %lo(<.got.plt slot>) */
1171 0x8f390000, /* lw t9, 0(t9) */
1172 0x00000000, /* nop */
1173 0x03200008, /* jr t9 */
1174 0x00000000 /* nop */
1175 };
1176
1177 /* The format of the first PLT entry in a VxWorks shared object. */
1178 static const bfd_vma mips_vxworks_shared_plt0_entry[] =
1179 {
1180 0x8f990008, /* lw t9, 8(gp) */
1181 0x00000000, /* nop */
1182 0x03200008, /* jr t9 */
1183 0x00000000, /* nop */
1184 0x00000000, /* nop */
1185 0x00000000 /* nop */
1186 };
1187
1188 /* The format of subsequent PLT entries. */
1189 static const bfd_vma mips_vxworks_shared_plt_entry[] =
1190 {
1191 0x10000000, /* b .PLT_resolver */
1192 0x24180000 /* li t8, <pltindex> */
1193 };
1194 \f
1195 /* microMIPS 32-bit opcode helper installer. */
1196
1197 static void
1198 bfd_put_micromips_32 (const bfd *abfd, bfd_vma opcode, bfd_byte *ptr)
1199 {
1200 bfd_put_16 (abfd, (opcode >> 16) & 0xffff, ptr);
1201 bfd_put_16 (abfd, opcode & 0xffff, ptr + 2);
1202 }
1203
1204 /* microMIPS 32-bit opcode helper retriever. */
1205
1206 static bfd_vma
1207 bfd_get_micromips_32 (const bfd *abfd, const bfd_byte *ptr)
1208 {
1209 return (bfd_get_16 (abfd, ptr) << 16) | bfd_get_16 (abfd, ptr + 2);
1210 }
1211 \f
1212 /* Look up an entry in a MIPS ELF linker hash table. */
1213
1214 #define mips_elf_link_hash_lookup(table, string, create, copy, follow) \
1215 ((struct mips_elf_link_hash_entry *) \
1216 elf_link_hash_lookup (&(table)->root, (string), (create), \
1217 (copy), (follow)))
1218
1219 /* Traverse a MIPS ELF linker hash table. */
1220
1221 #define mips_elf_link_hash_traverse(table, func, info) \
1222 (elf_link_hash_traverse \
1223 (&(table)->root, \
1224 (bfd_boolean (*) (struct elf_link_hash_entry *, void *)) (func), \
1225 (info)))
1226
1227 /* Find the base offsets for thread-local storage in this object,
1228 for GD/LD and IE/LE respectively. */
1229
1230 #define TP_OFFSET 0x7000
1231 #define DTP_OFFSET 0x8000
1232
1233 static bfd_vma
1234 dtprel_base (struct bfd_link_info *info)
1235 {
1236 /* If tls_sec is NULL, we should have signalled an error already. */
1237 if (elf_hash_table (info)->tls_sec == NULL)
1238 return 0;
1239 return elf_hash_table (info)->tls_sec->vma + DTP_OFFSET;
1240 }
1241
1242 static bfd_vma
1243 tprel_base (struct bfd_link_info *info)
1244 {
1245 /* If tls_sec is NULL, we should have signalled an error already. */
1246 if (elf_hash_table (info)->tls_sec == NULL)
1247 return 0;
1248 return elf_hash_table (info)->tls_sec->vma + TP_OFFSET;
1249 }
1250
1251 /* Create an entry in a MIPS ELF linker hash table. */
1252
1253 static struct bfd_hash_entry *
1254 mips_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
1255 struct bfd_hash_table *table, const char *string)
1256 {
1257 struct mips_elf_link_hash_entry *ret =
1258 (struct mips_elf_link_hash_entry *) entry;
1259
1260 /* Allocate the structure if it has not already been allocated by a
1261 subclass. */
1262 if (ret == NULL)
1263 ret = bfd_hash_allocate (table, sizeof (struct mips_elf_link_hash_entry));
1264 if (ret == NULL)
1265 return (struct bfd_hash_entry *) ret;
1266
1267 /* Call the allocation method of the superclass. */
1268 ret = ((struct mips_elf_link_hash_entry *)
1269 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
1270 table, string));
1271 if (ret != NULL)
1272 {
1273 /* Set local fields. */
1274 memset (&ret->esym, 0, sizeof (EXTR));
1275 /* We use -2 as a marker to indicate that the information has
1276 not been set. -1 means there is no associated ifd. */
1277 ret->esym.ifd = -2;
1278 ret->la25_stub = 0;
1279 ret->possibly_dynamic_relocs = 0;
1280 ret->fn_stub = NULL;
1281 ret->call_stub = NULL;
1282 ret->call_fp_stub = NULL;
1283 ret->global_got_area = GGA_NONE;
1284 ret->got_only_for_calls = TRUE;
1285 ret->readonly_reloc = FALSE;
1286 ret->has_static_relocs = FALSE;
1287 ret->no_fn_stub = FALSE;
1288 ret->need_fn_stub = FALSE;
1289 ret->has_nonpic_branches = FALSE;
1290 ret->needs_lazy_stub = FALSE;
1291 ret->use_plt_entry = FALSE;
1292 }
1293
1294 return (struct bfd_hash_entry *) ret;
1295 }
1296
1297 /* Allocate MIPS ELF private object data. */
1298
1299 bfd_boolean
1300 _bfd_mips_elf_mkobject (bfd *abfd)
1301 {
1302 return bfd_elf_allocate_object (abfd, sizeof (struct mips_elf_obj_tdata),
1303 MIPS_ELF_DATA);
1304 }
1305
1306 bfd_boolean
1307 _bfd_mips_elf_new_section_hook (bfd *abfd, asection *sec)
1308 {
1309 if (!sec->used_by_bfd)
1310 {
1311 struct _mips_elf_section_data *sdata;
1312 bfd_size_type amt = sizeof (*sdata);
1313
1314 sdata = bfd_zalloc (abfd, amt);
1315 if (sdata == NULL)
1316 return FALSE;
1317 sec->used_by_bfd = sdata;
1318 }
1319
1320 return _bfd_elf_new_section_hook (abfd, sec);
1321 }
1322 \f
1323 /* Read ECOFF debugging information from a .mdebug section into a
1324 ecoff_debug_info structure. */
1325
1326 bfd_boolean
1327 _bfd_mips_elf_read_ecoff_info (bfd *abfd, asection *section,
1328 struct ecoff_debug_info *debug)
1329 {
1330 HDRR *symhdr;
1331 const struct ecoff_debug_swap *swap;
1332 char *ext_hdr;
1333
1334 swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
1335 memset (debug, 0, sizeof (*debug));
1336
1337 ext_hdr = bfd_malloc (swap->external_hdr_size);
1338 if (ext_hdr == NULL && swap->external_hdr_size != 0)
1339 goto error_return;
1340
1341 if (! bfd_get_section_contents (abfd, section, ext_hdr, 0,
1342 swap->external_hdr_size))
1343 goto error_return;
1344
1345 symhdr = &debug->symbolic_header;
1346 (*swap->swap_hdr_in) (abfd, ext_hdr, symhdr);
1347
1348 /* The symbolic header contains absolute file offsets and sizes to
1349 read. */
1350 #define READ(ptr, offset, count, size, type) \
1351 if (symhdr->count == 0) \
1352 debug->ptr = NULL; \
1353 else \
1354 { \
1355 bfd_size_type amt = (bfd_size_type) size * symhdr->count; \
1356 debug->ptr = bfd_malloc (amt); \
1357 if (debug->ptr == NULL) \
1358 goto error_return; \
1359 if (bfd_seek (abfd, symhdr->offset, SEEK_SET) != 0 \
1360 || bfd_bread (debug->ptr, amt, abfd) != amt) \
1361 goto error_return; \
1362 }
1363
1364 READ (line, cbLineOffset, cbLine, sizeof (unsigned char), unsigned char *);
1365 READ (external_dnr, cbDnOffset, idnMax, swap->external_dnr_size, void *);
1366 READ (external_pdr, cbPdOffset, ipdMax, swap->external_pdr_size, void *);
1367 READ (external_sym, cbSymOffset, isymMax, swap->external_sym_size, void *);
1368 READ (external_opt, cbOptOffset, ioptMax, swap->external_opt_size, void *);
1369 READ (external_aux, cbAuxOffset, iauxMax, sizeof (union aux_ext),
1370 union aux_ext *);
1371 READ (ss, cbSsOffset, issMax, sizeof (char), char *);
1372 READ (ssext, cbSsExtOffset, issExtMax, sizeof (char), char *);
1373 READ (external_fdr, cbFdOffset, ifdMax, swap->external_fdr_size, void *);
1374 READ (external_rfd, cbRfdOffset, crfd, swap->external_rfd_size, void *);
1375 READ (external_ext, cbExtOffset, iextMax, swap->external_ext_size, void *);
1376 #undef READ
1377
1378 debug->fdr = NULL;
1379
1380 return TRUE;
1381
1382 error_return:
1383 if (ext_hdr != NULL)
1384 free (ext_hdr);
1385 if (debug->line != NULL)
1386 free (debug->line);
1387 if (debug->external_dnr != NULL)
1388 free (debug->external_dnr);
1389 if (debug->external_pdr != NULL)
1390 free (debug->external_pdr);
1391 if (debug->external_sym != NULL)
1392 free (debug->external_sym);
1393 if (debug->external_opt != NULL)
1394 free (debug->external_opt);
1395 if (debug->external_aux != NULL)
1396 free (debug->external_aux);
1397 if (debug->ss != NULL)
1398 free (debug->ss);
1399 if (debug->ssext != NULL)
1400 free (debug->ssext);
1401 if (debug->external_fdr != NULL)
1402 free (debug->external_fdr);
1403 if (debug->external_rfd != NULL)
1404 free (debug->external_rfd);
1405 if (debug->external_ext != NULL)
1406 free (debug->external_ext);
1407 return FALSE;
1408 }
1409 \f
1410 /* Swap RPDR (runtime procedure table entry) for output. */
1411
1412 static void
1413 ecoff_swap_rpdr_out (bfd *abfd, const RPDR *in, struct rpdr_ext *ex)
1414 {
1415 H_PUT_S32 (abfd, in->adr, ex->p_adr);
1416 H_PUT_32 (abfd, in->regmask, ex->p_regmask);
1417 H_PUT_32 (abfd, in->regoffset, ex->p_regoffset);
1418 H_PUT_32 (abfd, in->fregmask, ex->p_fregmask);
1419 H_PUT_32 (abfd, in->fregoffset, ex->p_fregoffset);
1420 H_PUT_32 (abfd, in->frameoffset, ex->p_frameoffset);
1421
1422 H_PUT_16 (abfd, in->framereg, ex->p_framereg);
1423 H_PUT_16 (abfd, in->pcreg, ex->p_pcreg);
1424
1425 H_PUT_32 (abfd, in->irpss, ex->p_irpss);
1426 }
1427
1428 /* Create a runtime procedure table from the .mdebug section. */
1429
1430 static bfd_boolean
1431 mips_elf_create_procedure_table (void *handle, bfd *abfd,
1432 struct bfd_link_info *info, asection *s,
1433 struct ecoff_debug_info *debug)
1434 {
1435 const struct ecoff_debug_swap *swap;
1436 HDRR *hdr = &debug->symbolic_header;
1437 RPDR *rpdr, *rp;
1438 struct rpdr_ext *erp;
1439 void *rtproc;
1440 struct pdr_ext *epdr;
1441 struct sym_ext *esym;
1442 char *ss, **sv;
1443 char *str;
1444 bfd_size_type size;
1445 bfd_size_type count;
1446 unsigned long sindex;
1447 unsigned long i;
1448 PDR pdr;
1449 SYMR sym;
1450 const char *no_name_func = _("static procedure (no name)");
1451
1452 epdr = NULL;
1453 rpdr = NULL;
1454 esym = NULL;
1455 ss = NULL;
1456 sv = NULL;
1457
1458 swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
1459
1460 sindex = strlen (no_name_func) + 1;
1461 count = hdr->ipdMax;
1462 if (count > 0)
1463 {
1464 size = swap->external_pdr_size;
1465
1466 epdr = bfd_malloc (size * count);
1467 if (epdr == NULL)
1468 goto error_return;
1469
1470 if (! _bfd_ecoff_get_accumulated_pdr (handle, (bfd_byte *) epdr))
1471 goto error_return;
1472
1473 size = sizeof (RPDR);
1474 rp = rpdr = bfd_malloc (size * count);
1475 if (rpdr == NULL)
1476 goto error_return;
1477
1478 size = sizeof (char *);
1479 sv = bfd_malloc (size * count);
1480 if (sv == NULL)
1481 goto error_return;
1482
1483 count = hdr->isymMax;
1484 size = swap->external_sym_size;
1485 esym = bfd_malloc (size * count);
1486 if (esym == NULL)
1487 goto error_return;
1488
1489 if (! _bfd_ecoff_get_accumulated_sym (handle, (bfd_byte *) esym))
1490 goto error_return;
1491
1492 count = hdr->issMax;
1493 ss = bfd_malloc (count);
1494 if (ss == NULL)
1495 goto error_return;
1496 if (! _bfd_ecoff_get_accumulated_ss (handle, (bfd_byte *) ss))
1497 goto error_return;
1498
1499 count = hdr->ipdMax;
1500 for (i = 0; i < (unsigned long) count; i++, rp++)
1501 {
1502 (*swap->swap_pdr_in) (abfd, epdr + i, &pdr);
1503 (*swap->swap_sym_in) (abfd, &esym[pdr.isym], &sym);
1504 rp->adr = sym.value;
1505 rp->regmask = pdr.regmask;
1506 rp->regoffset = pdr.regoffset;
1507 rp->fregmask = pdr.fregmask;
1508 rp->fregoffset = pdr.fregoffset;
1509 rp->frameoffset = pdr.frameoffset;
1510 rp->framereg = pdr.framereg;
1511 rp->pcreg = pdr.pcreg;
1512 rp->irpss = sindex;
1513 sv[i] = ss + sym.iss;
1514 sindex += strlen (sv[i]) + 1;
1515 }
1516 }
1517
1518 size = sizeof (struct rpdr_ext) * (count + 2) + sindex;
1519 size = BFD_ALIGN (size, 16);
1520 rtproc = bfd_alloc (abfd, size);
1521 if (rtproc == NULL)
1522 {
1523 mips_elf_hash_table (info)->procedure_count = 0;
1524 goto error_return;
1525 }
1526
1527 mips_elf_hash_table (info)->procedure_count = count + 2;
1528
1529 erp = rtproc;
1530 memset (erp, 0, sizeof (struct rpdr_ext));
1531 erp++;
1532 str = (char *) rtproc + sizeof (struct rpdr_ext) * (count + 2);
1533 strcpy (str, no_name_func);
1534 str += strlen (no_name_func) + 1;
1535 for (i = 0; i < count; i++)
1536 {
1537 ecoff_swap_rpdr_out (abfd, rpdr + i, erp + i);
1538 strcpy (str, sv[i]);
1539 str += strlen (sv[i]) + 1;
1540 }
1541 H_PUT_S32 (abfd, -1, (erp + count)->p_adr);
1542
1543 /* Set the size and contents of .rtproc section. */
1544 s->size = size;
1545 s->contents = rtproc;
1546
1547 /* Skip this section later on (I don't think this currently
1548 matters, but someday it might). */
1549 s->map_head.link_order = NULL;
1550
1551 if (epdr != NULL)
1552 free (epdr);
1553 if (rpdr != NULL)
1554 free (rpdr);
1555 if (esym != NULL)
1556 free (esym);
1557 if (ss != NULL)
1558 free (ss);
1559 if (sv != NULL)
1560 free (sv);
1561
1562 return TRUE;
1563
1564 error_return:
1565 if (epdr != NULL)
1566 free (epdr);
1567 if (rpdr != NULL)
1568 free (rpdr);
1569 if (esym != NULL)
1570 free (esym);
1571 if (ss != NULL)
1572 free (ss);
1573 if (sv != NULL)
1574 free (sv);
1575 return FALSE;
1576 }
1577 \f
1578 /* We're going to create a stub for H. Create a symbol for the stub's
1579 value and size, to help make the disassembly easier to read. */
1580
1581 static bfd_boolean
1582 mips_elf_create_stub_symbol (struct bfd_link_info *info,
1583 struct mips_elf_link_hash_entry *h,
1584 const char *prefix, asection *s, bfd_vma value,
1585 bfd_vma size)
1586 {
1587 struct bfd_link_hash_entry *bh;
1588 struct elf_link_hash_entry *elfh;
1589 const char *name;
1590
1591 if (ELF_ST_IS_MICROMIPS (h->root.other))
1592 value |= 1;
1593
1594 /* Create a new symbol. */
1595 name = ACONCAT ((prefix, h->root.root.root.string, NULL));
1596 bh = NULL;
1597 if (!_bfd_generic_link_add_one_symbol (info, s->owner, name,
1598 BSF_LOCAL, s, value, NULL,
1599 TRUE, FALSE, &bh))
1600 return FALSE;
1601
1602 /* Make it a local function. */
1603 elfh = (struct elf_link_hash_entry *) bh;
1604 elfh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
1605 elfh->size = size;
1606 elfh->forced_local = 1;
1607 return TRUE;
1608 }
1609
1610 /* We're about to redefine H. Create a symbol to represent H's
1611 current value and size, to help make the disassembly easier
1612 to read. */
1613
1614 static bfd_boolean
1615 mips_elf_create_shadow_symbol (struct bfd_link_info *info,
1616 struct mips_elf_link_hash_entry *h,
1617 const char *prefix)
1618 {
1619 struct bfd_link_hash_entry *bh;
1620 struct elf_link_hash_entry *elfh;
1621 const char *name;
1622 asection *s;
1623 bfd_vma value;
1624
1625 /* Read the symbol's value. */
1626 BFD_ASSERT (h->root.root.type == bfd_link_hash_defined
1627 || h->root.root.type == bfd_link_hash_defweak);
1628 s = h->root.root.u.def.section;
1629 value = h->root.root.u.def.value;
1630
1631 /* Create a new symbol. */
1632 name = ACONCAT ((prefix, h->root.root.root.string, NULL));
1633 bh = NULL;
1634 if (!_bfd_generic_link_add_one_symbol (info, s->owner, name,
1635 BSF_LOCAL, s, value, NULL,
1636 TRUE, FALSE, &bh))
1637 return FALSE;
1638
1639 /* Make it local and copy the other attributes from H. */
1640 elfh = (struct elf_link_hash_entry *) bh;
1641 elfh->type = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (h->root.type));
1642 elfh->other = h->root.other;
1643 elfh->size = h->root.size;
1644 elfh->forced_local = 1;
1645 return TRUE;
1646 }
1647
1648 /* Return TRUE if relocations in SECTION can refer directly to a MIPS16
1649 function rather than to a hard-float stub. */
1650
1651 static bfd_boolean
1652 section_allows_mips16_refs_p (asection *section)
1653 {
1654 const char *name;
1655
1656 name = bfd_get_section_name (section->owner, section);
1657 return (FN_STUB_P (name)
1658 || CALL_STUB_P (name)
1659 || CALL_FP_STUB_P (name)
1660 || strcmp (name, ".pdr") == 0);
1661 }
1662
1663 /* [RELOCS, RELEND) are the relocations against SEC, which is a MIPS16
1664 stub section of some kind. Return the R_SYMNDX of the target
1665 function, or 0 if we can't decide which function that is. */
1666
1667 static unsigned long
1668 mips16_stub_symndx (const struct elf_backend_data *bed,
1669 asection *sec ATTRIBUTE_UNUSED,
1670 const Elf_Internal_Rela *relocs,
1671 const Elf_Internal_Rela *relend)
1672 {
1673 int int_rels_per_ext_rel = bed->s->int_rels_per_ext_rel;
1674 const Elf_Internal_Rela *rel;
1675
1676 /* Trust the first R_MIPS_NONE relocation, if any, but not a subsequent
1677 one in a compound relocation. */
1678 for (rel = relocs; rel < relend; rel += int_rels_per_ext_rel)
1679 if (ELF_R_TYPE (sec->owner, rel->r_info) == R_MIPS_NONE)
1680 return ELF_R_SYM (sec->owner, rel->r_info);
1681
1682 /* Otherwise trust the first relocation, whatever its kind. This is
1683 the traditional behavior. */
1684 if (relocs < relend)
1685 return ELF_R_SYM (sec->owner, relocs->r_info);
1686
1687 return 0;
1688 }
1689
1690 /* Check the mips16 stubs for a particular symbol, and see if we can
1691 discard them. */
1692
1693 static void
1694 mips_elf_check_mips16_stubs (struct bfd_link_info *info,
1695 struct mips_elf_link_hash_entry *h)
1696 {
1697 /* Dynamic symbols must use the standard call interface, in case other
1698 objects try to call them. */
1699 if (h->fn_stub != NULL
1700 && h->root.dynindx != -1)
1701 {
1702 mips_elf_create_shadow_symbol (info, h, ".mips16.");
1703 h->need_fn_stub = TRUE;
1704 }
1705
1706 if (h->fn_stub != NULL
1707 && ! h->need_fn_stub)
1708 {
1709 /* We don't need the fn_stub; the only references to this symbol
1710 are 16 bit calls. Clobber the size to 0 to prevent it from
1711 being included in the link. */
1712 h->fn_stub->size = 0;
1713 h->fn_stub->flags &= ~SEC_RELOC;
1714 h->fn_stub->reloc_count = 0;
1715 h->fn_stub->flags |= SEC_EXCLUDE;
1716 }
1717
1718 if (h->call_stub != NULL
1719 && ELF_ST_IS_MIPS16 (h->root.other))
1720 {
1721 /* We don't need the call_stub; this is a 16 bit function, so
1722 calls from other 16 bit functions are OK. Clobber the size
1723 to 0 to prevent it from being included in the link. */
1724 h->call_stub->size = 0;
1725 h->call_stub->flags &= ~SEC_RELOC;
1726 h->call_stub->reloc_count = 0;
1727 h->call_stub->flags |= SEC_EXCLUDE;
1728 }
1729
1730 if (h->call_fp_stub != NULL
1731 && ELF_ST_IS_MIPS16 (h->root.other))
1732 {
1733 /* We don't need the call_stub; this is a 16 bit function, so
1734 calls from other 16 bit functions are OK. Clobber the size
1735 to 0 to prevent it from being included in the link. */
1736 h->call_fp_stub->size = 0;
1737 h->call_fp_stub->flags &= ~SEC_RELOC;
1738 h->call_fp_stub->reloc_count = 0;
1739 h->call_fp_stub->flags |= SEC_EXCLUDE;
1740 }
1741 }
1742
1743 /* Hashtable callbacks for mips_elf_la25_stubs. */
1744
1745 static hashval_t
1746 mips_elf_la25_stub_hash (const void *entry_)
1747 {
1748 const struct mips_elf_la25_stub *entry;
1749
1750 entry = (struct mips_elf_la25_stub *) entry_;
1751 return entry->h->root.root.u.def.section->id
1752 + entry->h->root.root.u.def.value;
1753 }
1754
1755 static int
1756 mips_elf_la25_stub_eq (const void *entry1_, const void *entry2_)
1757 {
1758 const struct mips_elf_la25_stub *entry1, *entry2;
1759
1760 entry1 = (struct mips_elf_la25_stub *) entry1_;
1761 entry2 = (struct mips_elf_la25_stub *) entry2_;
1762 return ((entry1->h->root.root.u.def.section
1763 == entry2->h->root.root.u.def.section)
1764 && (entry1->h->root.root.u.def.value
1765 == entry2->h->root.root.u.def.value));
1766 }
1767
1768 /* Called by the linker to set up the la25 stub-creation code. FN is
1769 the linker's implementation of add_stub_function. Return true on
1770 success. */
1771
1772 bfd_boolean
1773 _bfd_mips_elf_init_stubs (struct bfd_link_info *info,
1774 asection *(*fn) (const char *, asection *,
1775 asection *))
1776 {
1777 struct mips_elf_link_hash_table *htab;
1778
1779 htab = mips_elf_hash_table (info);
1780 if (htab == NULL)
1781 return FALSE;
1782
1783 htab->add_stub_section = fn;
1784 htab->la25_stubs = htab_try_create (1, mips_elf_la25_stub_hash,
1785 mips_elf_la25_stub_eq, NULL);
1786 if (htab->la25_stubs == NULL)
1787 return FALSE;
1788
1789 return TRUE;
1790 }
1791
1792 /* Return true if H is a locally-defined PIC function, in the sense
1793 that it or its fn_stub might need $25 to be valid on entry.
1794 Note that MIPS16 functions set up $gp using PC-relative instructions,
1795 so they themselves never need $25 to be valid. Only non-MIPS16
1796 entry points are of interest here. */
1797
1798 static bfd_boolean
1799 mips_elf_local_pic_function_p (struct mips_elf_link_hash_entry *h)
1800 {
1801 return ((h->root.root.type == bfd_link_hash_defined
1802 || h->root.root.type == bfd_link_hash_defweak)
1803 && h->root.def_regular
1804 && !bfd_is_abs_section (h->root.root.u.def.section)
1805 && (!ELF_ST_IS_MIPS16 (h->root.other)
1806 || (h->fn_stub && h->need_fn_stub))
1807 && (PIC_OBJECT_P (h->root.root.u.def.section->owner)
1808 || ELF_ST_IS_MIPS_PIC (h->root.other)));
1809 }
1810
1811 /* Set *SEC to the input section that contains the target of STUB.
1812 Return the offset of the target from the start of that section. */
1813
1814 static bfd_vma
1815 mips_elf_get_la25_target (struct mips_elf_la25_stub *stub,
1816 asection **sec)
1817 {
1818 if (ELF_ST_IS_MIPS16 (stub->h->root.other))
1819 {
1820 BFD_ASSERT (stub->h->need_fn_stub);
1821 *sec = stub->h->fn_stub;
1822 return 0;
1823 }
1824 else
1825 {
1826 *sec = stub->h->root.root.u.def.section;
1827 return stub->h->root.root.u.def.value;
1828 }
1829 }
1830
1831 /* STUB describes an la25 stub that we have decided to implement
1832 by inserting an LUI/ADDIU pair before the target function.
1833 Create the section and redirect the function symbol to it. */
1834
1835 static bfd_boolean
1836 mips_elf_add_la25_intro (struct mips_elf_la25_stub *stub,
1837 struct bfd_link_info *info)
1838 {
1839 struct mips_elf_link_hash_table *htab;
1840 char *name;
1841 asection *s, *input_section;
1842 unsigned int align;
1843
1844 htab = mips_elf_hash_table (info);
1845 if (htab == NULL)
1846 return FALSE;
1847
1848 /* Create a unique name for the new section. */
1849 name = bfd_malloc (11 + sizeof (".text.stub."));
1850 if (name == NULL)
1851 return FALSE;
1852 sprintf (name, ".text.stub.%d", (int) htab_elements (htab->la25_stubs));
1853
1854 /* Create the section. */
1855 mips_elf_get_la25_target (stub, &input_section);
1856 s = htab->add_stub_section (name, input_section,
1857 input_section->output_section);
1858 if (s == NULL)
1859 return FALSE;
1860
1861 /* Make sure that any padding goes before the stub. */
1862 align = input_section->alignment_power;
1863 if (!bfd_set_section_alignment (s->owner, s, align))
1864 return FALSE;
1865 if (align > 3)
1866 s->size = (1 << align) - 8;
1867
1868 /* Create a symbol for the stub. */
1869 mips_elf_create_stub_symbol (info, stub->h, ".pic.", s, s->size, 8);
1870 stub->stub_section = s;
1871 stub->offset = s->size;
1872
1873 /* Allocate room for it. */
1874 s->size += 8;
1875 return TRUE;
1876 }
1877
1878 /* STUB describes an la25 stub that we have decided to implement
1879 with a separate trampoline. Allocate room for it and redirect
1880 the function symbol to it. */
1881
1882 static bfd_boolean
1883 mips_elf_add_la25_trampoline (struct mips_elf_la25_stub *stub,
1884 struct bfd_link_info *info)
1885 {
1886 struct mips_elf_link_hash_table *htab;
1887 asection *s;
1888
1889 htab = mips_elf_hash_table (info);
1890 if (htab == NULL)
1891 return FALSE;
1892
1893 /* Create a trampoline section, if we haven't already. */
1894 s = htab->strampoline;
1895 if (s == NULL)
1896 {
1897 asection *input_section = stub->h->root.root.u.def.section;
1898 s = htab->add_stub_section (".text", NULL,
1899 input_section->output_section);
1900 if (s == NULL || !bfd_set_section_alignment (s->owner, s, 4))
1901 return FALSE;
1902 htab->strampoline = s;
1903 }
1904
1905 /* Create a symbol for the stub. */
1906 mips_elf_create_stub_symbol (info, stub->h, ".pic.", s, s->size, 16);
1907 stub->stub_section = s;
1908 stub->offset = s->size;
1909
1910 /* Allocate room for it. */
1911 s->size += 16;
1912 return TRUE;
1913 }
1914
1915 /* H describes a symbol that needs an la25 stub. Make sure that an
1916 appropriate stub exists and point H at it. */
1917
1918 static bfd_boolean
1919 mips_elf_add_la25_stub (struct bfd_link_info *info,
1920 struct mips_elf_link_hash_entry *h)
1921 {
1922 struct mips_elf_link_hash_table *htab;
1923 struct mips_elf_la25_stub search, *stub;
1924 bfd_boolean use_trampoline_p;
1925 asection *s;
1926 bfd_vma value;
1927 void **slot;
1928
1929 /* Describe the stub we want. */
1930 search.stub_section = NULL;
1931 search.offset = 0;
1932 search.h = h;
1933
1934 /* See if we've already created an equivalent stub. */
1935 htab = mips_elf_hash_table (info);
1936 if (htab == NULL)
1937 return FALSE;
1938
1939 slot = htab_find_slot (htab->la25_stubs, &search, INSERT);
1940 if (slot == NULL)
1941 return FALSE;
1942
1943 stub = (struct mips_elf_la25_stub *) *slot;
1944 if (stub != NULL)
1945 {
1946 /* We can reuse the existing stub. */
1947 h->la25_stub = stub;
1948 return TRUE;
1949 }
1950
1951 /* Create a permanent copy of ENTRY and add it to the hash table. */
1952 stub = bfd_malloc (sizeof (search));
1953 if (stub == NULL)
1954 return FALSE;
1955 *stub = search;
1956 *slot = stub;
1957
1958 /* Prefer to use LUI/ADDIU stubs if the function is at the beginning
1959 of the section and if we would need no more than 2 nops. */
1960 value = mips_elf_get_la25_target (stub, &s);
1961 use_trampoline_p = (value != 0 || s->alignment_power > 4);
1962
1963 h->la25_stub = stub;
1964 return (use_trampoline_p
1965 ? mips_elf_add_la25_trampoline (stub, info)
1966 : mips_elf_add_la25_intro (stub, info));
1967 }
1968
1969 /* A mips_elf_link_hash_traverse callback that is called before sizing
1970 sections. DATA points to a mips_htab_traverse_info structure. */
1971
1972 static bfd_boolean
1973 mips_elf_check_symbols (struct mips_elf_link_hash_entry *h, void *data)
1974 {
1975 struct mips_htab_traverse_info *hti;
1976
1977 hti = (struct mips_htab_traverse_info *) data;
1978 if (!hti->info->relocatable)
1979 mips_elf_check_mips16_stubs (hti->info, h);
1980
1981 if (mips_elf_local_pic_function_p (h))
1982 {
1983 /* PR 12845: If H is in a section that has been garbage
1984 collected it will have its output section set to *ABS*. */
1985 if (bfd_is_abs_section (h->root.root.u.def.section->output_section))
1986 return TRUE;
1987
1988 /* H is a function that might need $25 to be valid on entry.
1989 If we're creating a non-PIC relocatable object, mark H as
1990 being PIC. If we're creating a non-relocatable object with
1991 non-PIC branches and jumps to H, make sure that H has an la25
1992 stub. */
1993 if (hti->info->relocatable)
1994 {
1995 if (!PIC_OBJECT_P (hti->output_bfd))
1996 h->root.other = ELF_ST_SET_MIPS_PIC (h->root.other);
1997 }
1998 else if (h->has_nonpic_branches && !mips_elf_add_la25_stub (hti->info, h))
1999 {
2000 hti->error = TRUE;
2001 return FALSE;
2002 }
2003 }
2004 return TRUE;
2005 }
2006 \f
2007 /* R_MIPS16_26 is used for the mips16 jal and jalx instructions.
2008 Most mips16 instructions are 16 bits, but these instructions
2009 are 32 bits.
2010
2011 The format of these instructions is:
2012
2013 +--------------+--------------------------------+
2014 | JALX | X| Imm 20:16 | Imm 25:21 |
2015 +--------------+--------------------------------+
2016 | Immediate 15:0 |
2017 +-----------------------------------------------+
2018
2019 JALX is the 5-bit value 00011. X is 0 for jal, 1 for jalx.
2020 Note that the immediate value in the first word is swapped.
2021
2022 When producing a relocatable object file, R_MIPS16_26 is
2023 handled mostly like R_MIPS_26. In particular, the addend is
2024 stored as a straight 26-bit value in a 32-bit instruction.
2025 (gas makes life simpler for itself by never adjusting a
2026 R_MIPS16_26 reloc to be against a section, so the addend is
2027 always zero). However, the 32 bit instruction is stored as 2
2028 16-bit values, rather than a single 32-bit value. In a
2029 big-endian file, the result is the same; in a little-endian
2030 file, the two 16-bit halves of the 32 bit value are swapped.
2031 This is so that a disassembler can recognize the jal
2032 instruction.
2033
2034 When doing a final link, R_MIPS16_26 is treated as a 32 bit
2035 instruction stored as two 16-bit values. The addend A is the
2036 contents of the targ26 field. The calculation is the same as
2037 R_MIPS_26. When storing the calculated value, reorder the
2038 immediate value as shown above, and don't forget to store the
2039 value as two 16-bit values.
2040
2041 To put it in MIPS ABI terms, the relocation field is T-targ26-16,
2042 defined as
2043
2044 big-endian:
2045 +--------+----------------------+
2046 | | |
2047 | | targ26-16 |
2048 |31 26|25 0|
2049 +--------+----------------------+
2050
2051 little-endian:
2052 +----------+------+-------------+
2053 | | | |
2054 | sub1 | | sub2 |
2055 |0 9|10 15|16 31|
2056 +----------+--------------------+
2057 where targ26-16 is sub1 followed by sub2 (i.e., the addend field A is
2058 ((sub1 << 16) | sub2)).
2059
2060 When producing a relocatable object file, the calculation is
2061 (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
2062 When producing a fully linked file, the calculation is
2063 let R = (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
2064 ((R & 0x1f0000) << 5) | ((R & 0x3e00000) >> 5) | (R & 0xffff)
2065
2066 The table below lists the other MIPS16 instruction relocations.
2067 Each one is calculated in the same way as the non-MIPS16 relocation
2068 given on the right, but using the extended MIPS16 layout of 16-bit
2069 immediate fields:
2070
2071 R_MIPS16_GPREL R_MIPS_GPREL16
2072 R_MIPS16_GOT16 R_MIPS_GOT16
2073 R_MIPS16_CALL16 R_MIPS_CALL16
2074 R_MIPS16_HI16 R_MIPS_HI16
2075 R_MIPS16_LO16 R_MIPS_LO16
2076
2077 A typical instruction will have a format like this:
2078
2079 +--------------+--------------------------------+
2080 | EXTEND | Imm 10:5 | Imm 15:11 |
2081 +--------------+--------------------------------+
2082 | Major | rx | ry | Imm 4:0 |
2083 +--------------+--------------------------------+
2084
2085 EXTEND is the five bit value 11110. Major is the instruction
2086 opcode.
2087
2088 All we need to do here is shuffle the bits appropriately.
2089 As above, the two 16-bit halves must be swapped on a
2090 little-endian system. */
2091
2092 static inline bfd_boolean
2093 mips16_reloc_p (int r_type)
2094 {
2095 switch (r_type)
2096 {
2097 case R_MIPS16_26:
2098 case R_MIPS16_GPREL:
2099 case R_MIPS16_GOT16:
2100 case R_MIPS16_CALL16:
2101 case R_MIPS16_HI16:
2102 case R_MIPS16_LO16:
2103 case R_MIPS16_TLS_GD:
2104 case R_MIPS16_TLS_LDM:
2105 case R_MIPS16_TLS_DTPREL_HI16:
2106 case R_MIPS16_TLS_DTPREL_LO16:
2107 case R_MIPS16_TLS_GOTTPREL:
2108 case R_MIPS16_TLS_TPREL_HI16:
2109 case R_MIPS16_TLS_TPREL_LO16:
2110 return TRUE;
2111
2112 default:
2113 return FALSE;
2114 }
2115 }
2116
2117 /* Check if a microMIPS reloc. */
2118
2119 static inline bfd_boolean
2120 micromips_reloc_p (unsigned int r_type)
2121 {
2122 return r_type >= R_MICROMIPS_min && r_type < R_MICROMIPS_max;
2123 }
2124
2125 /* Similar to MIPS16, the two 16-bit halves in microMIPS must be swapped
2126 on a little-endian system. This does not apply to R_MICROMIPS_PC7_S1
2127 and R_MICROMIPS_PC10_S1 relocs that apply to 16-bit instructions. */
2128
2129 static inline bfd_boolean
2130 micromips_reloc_shuffle_p (unsigned int r_type)
2131 {
2132 return (micromips_reloc_p (r_type)
2133 && r_type != R_MICROMIPS_PC7_S1
2134 && r_type != R_MICROMIPS_PC10_S1);
2135 }
2136
2137 static inline bfd_boolean
2138 got16_reloc_p (int r_type)
2139 {
2140 return (r_type == R_MIPS_GOT16
2141 || r_type == R_MIPS16_GOT16
2142 || r_type == R_MICROMIPS_GOT16);
2143 }
2144
2145 static inline bfd_boolean
2146 call16_reloc_p (int r_type)
2147 {
2148 return (r_type == R_MIPS_CALL16
2149 || r_type == R_MIPS16_CALL16
2150 || r_type == R_MICROMIPS_CALL16);
2151 }
2152
2153 static inline bfd_boolean
2154 got_disp_reloc_p (unsigned int r_type)
2155 {
2156 return r_type == R_MIPS_GOT_DISP || r_type == R_MICROMIPS_GOT_DISP;
2157 }
2158
2159 static inline bfd_boolean
2160 got_page_reloc_p (unsigned int r_type)
2161 {
2162 return r_type == R_MIPS_GOT_PAGE || r_type == R_MICROMIPS_GOT_PAGE;
2163 }
2164
2165 static inline bfd_boolean
2166 got_ofst_reloc_p (unsigned int r_type)
2167 {
2168 return r_type == R_MIPS_GOT_OFST || r_type == R_MICROMIPS_GOT_OFST;
2169 }
2170
2171 static inline bfd_boolean
2172 got_hi16_reloc_p (unsigned int r_type)
2173 {
2174 return r_type == R_MIPS_GOT_HI16 || r_type == R_MICROMIPS_GOT_HI16;
2175 }
2176
2177 static inline bfd_boolean
2178 got_lo16_reloc_p (unsigned int r_type)
2179 {
2180 return r_type == R_MIPS_GOT_LO16 || r_type == R_MICROMIPS_GOT_LO16;
2181 }
2182
2183 static inline bfd_boolean
2184 call_hi16_reloc_p (unsigned int r_type)
2185 {
2186 return r_type == R_MIPS_CALL_HI16 || r_type == R_MICROMIPS_CALL_HI16;
2187 }
2188
2189 static inline bfd_boolean
2190 call_lo16_reloc_p (unsigned int r_type)
2191 {
2192 return r_type == R_MIPS_CALL_LO16 || r_type == R_MICROMIPS_CALL_LO16;
2193 }
2194
2195 static inline bfd_boolean
2196 hi16_reloc_p (int r_type)
2197 {
2198 return (r_type == R_MIPS_HI16
2199 || r_type == R_MIPS16_HI16
2200 || r_type == R_MICROMIPS_HI16
2201 || r_type == R_MIPS_PCHI16);
2202 }
2203
2204 static inline bfd_boolean
2205 lo16_reloc_p (int r_type)
2206 {
2207 return (r_type == R_MIPS_LO16
2208 || r_type == R_MIPS16_LO16
2209 || r_type == R_MICROMIPS_LO16
2210 || r_type == R_MIPS_PCLO16);
2211 }
2212
2213 static inline bfd_boolean
2214 mips16_call_reloc_p (int r_type)
2215 {
2216 return r_type == R_MIPS16_26 || r_type == R_MIPS16_CALL16;
2217 }
2218
2219 static inline bfd_boolean
2220 jal_reloc_p (int r_type)
2221 {
2222 return (r_type == R_MIPS_26
2223 || r_type == R_MIPS16_26
2224 || r_type == R_MICROMIPS_26_S1);
2225 }
2226
2227 static inline bfd_boolean
2228 aligned_pcrel_reloc_p (int r_type)
2229 {
2230 return (r_type == R_MIPS_PC18_S3
2231 || r_type == R_MIPS_PC19_S2);
2232 }
2233
2234 static inline bfd_boolean
2235 micromips_branch_reloc_p (int r_type)
2236 {
2237 return (r_type == R_MICROMIPS_26_S1
2238 || r_type == R_MICROMIPS_PC16_S1
2239 || r_type == R_MICROMIPS_PC10_S1
2240 || r_type == R_MICROMIPS_PC7_S1);
2241 }
2242
2243 static inline bfd_boolean
2244 tls_gd_reloc_p (unsigned int r_type)
2245 {
2246 return (r_type == R_MIPS_TLS_GD
2247 || r_type == R_MIPS16_TLS_GD
2248 || r_type == R_MICROMIPS_TLS_GD);
2249 }
2250
2251 static inline bfd_boolean
2252 tls_ldm_reloc_p (unsigned int r_type)
2253 {
2254 return (r_type == R_MIPS_TLS_LDM
2255 || r_type == R_MIPS16_TLS_LDM
2256 || r_type == R_MICROMIPS_TLS_LDM);
2257 }
2258
2259 static inline bfd_boolean
2260 tls_gottprel_reloc_p (unsigned int r_type)
2261 {
2262 return (r_type == R_MIPS_TLS_GOTTPREL
2263 || r_type == R_MIPS16_TLS_GOTTPREL
2264 || r_type == R_MICROMIPS_TLS_GOTTPREL);
2265 }
2266
2267 void
2268 _bfd_mips_elf_reloc_unshuffle (bfd *abfd, int r_type,
2269 bfd_boolean jal_shuffle, bfd_byte *data)
2270 {
2271 bfd_vma first, second, val;
2272
2273 if (!mips16_reloc_p (r_type) && !micromips_reloc_shuffle_p (r_type))
2274 return;
2275
2276 /* Pick up the first and second halfwords of the instruction. */
2277 first = bfd_get_16 (abfd, data);
2278 second = bfd_get_16 (abfd, data + 2);
2279 if (micromips_reloc_p (r_type) || (r_type == R_MIPS16_26 && !jal_shuffle))
2280 val = first << 16 | second;
2281 else if (r_type != R_MIPS16_26)
2282 val = (((first & 0xf800) << 16) | ((second & 0xffe0) << 11)
2283 | ((first & 0x1f) << 11) | (first & 0x7e0) | (second & 0x1f));
2284 else
2285 val = (((first & 0xfc00) << 16) | ((first & 0x3e0) << 11)
2286 | ((first & 0x1f) << 21) | second);
2287 bfd_put_32 (abfd, val, data);
2288 }
2289
2290 void
2291 _bfd_mips_elf_reloc_shuffle (bfd *abfd, int r_type,
2292 bfd_boolean jal_shuffle, bfd_byte *data)
2293 {
2294 bfd_vma first, second, val;
2295
2296 if (!mips16_reloc_p (r_type) && !micromips_reloc_shuffle_p (r_type))
2297 return;
2298
2299 val = bfd_get_32 (abfd, data);
2300 if (micromips_reloc_p (r_type) || (r_type == R_MIPS16_26 && !jal_shuffle))
2301 {
2302 second = val & 0xffff;
2303 first = val >> 16;
2304 }
2305 else if (r_type != R_MIPS16_26)
2306 {
2307 second = ((val >> 11) & 0xffe0) | (val & 0x1f);
2308 first = ((val >> 16) & 0xf800) | ((val >> 11) & 0x1f) | (val & 0x7e0);
2309 }
2310 else
2311 {
2312 second = val & 0xffff;
2313 first = ((val >> 16) & 0xfc00) | ((val >> 11) & 0x3e0)
2314 | ((val >> 21) & 0x1f);
2315 }
2316 bfd_put_16 (abfd, second, data + 2);
2317 bfd_put_16 (abfd, first, data);
2318 }
2319
2320 bfd_reloc_status_type
2321 _bfd_mips_elf_gprel16_with_gp (bfd *abfd, asymbol *symbol,
2322 arelent *reloc_entry, asection *input_section,
2323 bfd_boolean relocatable, void *data, bfd_vma gp)
2324 {
2325 bfd_vma relocation;
2326 bfd_signed_vma val;
2327 bfd_reloc_status_type status;
2328
2329 if (bfd_is_com_section (symbol->section))
2330 relocation = 0;
2331 else
2332 relocation = symbol->value;
2333
2334 relocation += symbol->section->output_section->vma;
2335 relocation += symbol->section->output_offset;
2336
2337 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
2338 return bfd_reloc_outofrange;
2339
2340 /* Set val to the offset into the section or symbol. */
2341 val = reloc_entry->addend;
2342
2343 _bfd_mips_elf_sign_extend (val, 16);
2344
2345 /* Adjust val for the final section location and GP value. If we
2346 are producing relocatable output, we don't want to do this for
2347 an external symbol. */
2348 if (! relocatable
2349 || (symbol->flags & BSF_SECTION_SYM) != 0)
2350 val += relocation - gp;
2351
2352 if (reloc_entry->howto->partial_inplace)
2353 {
2354 status = _bfd_relocate_contents (reloc_entry->howto, abfd, val,
2355 (bfd_byte *) data
2356 + reloc_entry->address);
2357 if (status != bfd_reloc_ok)
2358 return status;
2359 }
2360 else
2361 reloc_entry->addend = val;
2362
2363 if (relocatable)
2364 reloc_entry->address += input_section->output_offset;
2365
2366 return bfd_reloc_ok;
2367 }
2368
2369 /* Used to store a REL high-part relocation such as R_MIPS_HI16 or
2370 R_MIPS_GOT16. REL is the relocation, INPUT_SECTION is the section
2371 that contains the relocation field and DATA points to the start of
2372 INPUT_SECTION. */
2373
2374 struct mips_hi16
2375 {
2376 struct mips_hi16 *next;
2377 bfd_byte *data;
2378 asection *input_section;
2379 arelent rel;
2380 };
2381
2382 /* FIXME: This should not be a static variable. */
2383
2384 static struct mips_hi16 *mips_hi16_list;
2385
2386 /* A howto special_function for REL *HI16 relocations. We can only
2387 calculate the correct value once we've seen the partnering
2388 *LO16 relocation, so just save the information for later.
2389
2390 The ABI requires that the *LO16 immediately follow the *HI16.
2391 However, as a GNU extension, we permit an arbitrary number of
2392 *HI16s to be associated with a single *LO16. This significantly
2393 simplies the relocation handling in gcc. */
2394
2395 bfd_reloc_status_type
2396 _bfd_mips_elf_hi16_reloc (bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry,
2397 asymbol *symbol ATTRIBUTE_UNUSED, void *data,
2398 asection *input_section, bfd *output_bfd,
2399 char **error_message ATTRIBUTE_UNUSED)
2400 {
2401 struct mips_hi16 *n;
2402
2403 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
2404 return bfd_reloc_outofrange;
2405
2406 n = bfd_malloc (sizeof *n);
2407 if (n == NULL)
2408 return bfd_reloc_outofrange;
2409
2410 n->next = mips_hi16_list;
2411 n->data = data;
2412 n->input_section = input_section;
2413 n->rel = *reloc_entry;
2414 mips_hi16_list = n;
2415
2416 if (output_bfd != NULL)
2417 reloc_entry->address += input_section->output_offset;
2418
2419 return bfd_reloc_ok;
2420 }
2421
2422 /* A howto special_function for REL R_MIPS*_GOT16 relocations. This is just
2423 like any other 16-bit relocation when applied to global symbols, but is
2424 treated in the same as R_MIPS_HI16 when applied to local symbols. */
2425
2426 bfd_reloc_status_type
2427 _bfd_mips_elf_got16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2428 void *data, asection *input_section,
2429 bfd *output_bfd, char **error_message)
2430 {
2431 if ((symbol->flags & (BSF_GLOBAL | BSF_WEAK)) != 0
2432 || bfd_is_und_section (bfd_get_section (symbol))
2433 || bfd_is_com_section (bfd_get_section (symbol)))
2434 /* The relocation is against a global symbol. */
2435 return _bfd_mips_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2436 input_section, output_bfd,
2437 error_message);
2438
2439 return _bfd_mips_elf_hi16_reloc (abfd, reloc_entry, symbol, data,
2440 input_section, output_bfd, error_message);
2441 }
2442
2443 /* A howto special_function for REL *LO16 relocations. The *LO16 itself
2444 is a straightforward 16 bit inplace relocation, but we must deal with
2445 any partnering high-part relocations as well. */
2446
2447 bfd_reloc_status_type
2448 _bfd_mips_elf_lo16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2449 void *data, asection *input_section,
2450 bfd *output_bfd, char **error_message)
2451 {
2452 bfd_vma vallo;
2453 bfd_byte *location = (bfd_byte *) data + reloc_entry->address;
2454
2455 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
2456 return bfd_reloc_outofrange;
2457
2458 _bfd_mips_elf_reloc_unshuffle (abfd, reloc_entry->howto->type, FALSE,
2459 location);
2460 vallo = bfd_get_32 (abfd, location);
2461 _bfd_mips_elf_reloc_shuffle (abfd, reloc_entry->howto->type, FALSE,
2462 location);
2463
2464 while (mips_hi16_list != NULL)
2465 {
2466 bfd_reloc_status_type ret;
2467 struct mips_hi16 *hi;
2468
2469 hi = mips_hi16_list;
2470
2471 /* R_MIPS*_GOT16 relocations are something of a special case. We
2472 want to install the addend in the same way as for a R_MIPS*_HI16
2473 relocation (with a rightshift of 16). However, since GOT16
2474 relocations can also be used with global symbols, their howto
2475 has a rightshift of 0. */
2476 if (hi->rel.howto->type == R_MIPS_GOT16)
2477 hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MIPS_HI16, FALSE);
2478 else if (hi->rel.howto->type == R_MIPS16_GOT16)
2479 hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MIPS16_HI16, FALSE);
2480 else if (hi->rel.howto->type == R_MICROMIPS_GOT16)
2481 hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MICROMIPS_HI16, FALSE);
2482
2483 /* VALLO is a signed 16-bit number. Bias it by 0x8000 so that any
2484 carry or borrow will induce a change of +1 or -1 in the high part. */
2485 hi->rel.addend += (vallo + 0x8000) & 0xffff;
2486
2487 ret = _bfd_mips_elf_generic_reloc (abfd, &hi->rel, symbol, hi->data,
2488 hi->input_section, output_bfd,
2489 error_message);
2490 if (ret != bfd_reloc_ok)
2491 return ret;
2492
2493 mips_hi16_list = hi->next;
2494 free (hi);
2495 }
2496
2497 return _bfd_mips_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2498 input_section, output_bfd,
2499 error_message);
2500 }
2501
2502 /* A generic howto special_function. This calculates and installs the
2503 relocation itself, thus avoiding the oft-discussed problems in
2504 bfd_perform_relocation and bfd_install_relocation. */
2505
2506 bfd_reloc_status_type
2507 _bfd_mips_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry,
2508 asymbol *symbol, void *data ATTRIBUTE_UNUSED,
2509 asection *input_section, bfd *output_bfd,
2510 char **error_message ATTRIBUTE_UNUSED)
2511 {
2512 bfd_signed_vma val;
2513 bfd_reloc_status_type status;
2514 bfd_boolean relocatable;
2515
2516 relocatable = (output_bfd != NULL);
2517
2518 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
2519 return bfd_reloc_outofrange;
2520
2521 /* Build up the field adjustment in VAL. */
2522 val = 0;
2523 if (!relocatable || (symbol->flags & BSF_SECTION_SYM) != 0)
2524 {
2525 /* Either we're calculating the final field value or we have a
2526 relocation against a section symbol. Add in the section's
2527 offset or address. */
2528 val += symbol->section->output_section->vma;
2529 val += symbol->section->output_offset;
2530 }
2531
2532 if (!relocatable)
2533 {
2534 /* We're calculating the final field value. Add in the symbol's value
2535 and, if pc-relative, subtract the address of the field itself. */
2536 val += symbol->value;
2537 if (reloc_entry->howto->pc_relative)
2538 {
2539 val -= input_section->output_section->vma;
2540 val -= input_section->output_offset;
2541 val -= reloc_entry->address;
2542 }
2543 }
2544
2545 /* VAL is now the final adjustment. If we're keeping this relocation
2546 in the output file, and if the relocation uses a separate addend,
2547 we just need to add VAL to that addend. Otherwise we need to add
2548 VAL to the relocation field itself. */
2549 if (relocatable && !reloc_entry->howto->partial_inplace)
2550 reloc_entry->addend += val;
2551 else
2552 {
2553 bfd_byte *location = (bfd_byte *) data + reloc_entry->address;
2554
2555 /* Add in the separate addend, if any. */
2556 val += reloc_entry->addend;
2557
2558 /* Add VAL to the relocation field. */
2559 _bfd_mips_elf_reloc_unshuffle (abfd, reloc_entry->howto->type, FALSE,
2560 location);
2561 status = _bfd_relocate_contents (reloc_entry->howto, abfd, val,
2562 location);
2563 _bfd_mips_elf_reloc_shuffle (abfd, reloc_entry->howto->type, FALSE,
2564 location);
2565
2566 if (status != bfd_reloc_ok)
2567 return status;
2568 }
2569
2570 if (relocatable)
2571 reloc_entry->address += input_section->output_offset;
2572
2573 return bfd_reloc_ok;
2574 }
2575 \f
2576 /* Swap an entry in a .gptab section. Note that these routines rely
2577 on the equivalence of the two elements of the union. */
2578
2579 static void
2580 bfd_mips_elf32_swap_gptab_in (bfd *abfd, const Elf32_External_gptab *ex,
2581 Elf32_gptab *in)
2582 {
2583 in->gt_entry.gt_g_value = H_GET_32 (abfd, ex->gt_entry.gt_g_value);
2584 in->gt_entry.gt_bytes = H_GET_32 (abfd, ex->gt_entry.gt_bytes);
2585 }
2586
2587 static void
2588 bfd_mips_elf32_swap_gptab_out (bfd *abfd, const Elf32_gptab *in,
2589 Elf32_External_gptab *ex)
2590 {
2591 H_PUT_32 (abfd, in->gt_entry.gt_g_value, ex->gt_entry.gt_g_value);
2592 H_PUT_32 (abfd, in->gt_entry.gt_bytes, ex->gt_entry.gt_bytes);
2593 }
2594
2595 static void
2596 bfd_elf32_swap_compact_rel_out (bfd *abfd, const Elf32_compact_rel *in,
2597 Elf32_External_compact_rel *ex)
2598 {
2599 H_PUT_32 (abfd, in->id1, ex->id1);
2600 H_PUT_32 (abfd, in->num, ex->num);
2601 H_PUT_32 (abfd, in->id2, ex->id2);
2602 H_PUT_32 (abfd, in->offset, ex->offset);
2603 H_PUT_32 (abfd, in->reserved0, ex->reserved0);
2604 H_PUT_32 (abfd, in->reserved1, ex->reserved1);
2605 }
2606
2607 static void
2608 bfd_elf32_swap_crinfo_out (bfd *abfd, const Elf32_crinfo *in,
2609 Elf32_External_crinfo *ex)
2610 {
2611 unsigned long l;
2612
2613 l = (((in->ctype & CRINFO_CTYPE) << CRINFO_CTYPE_SH)
2614 | ((in->rtype & CRINFO_RTYPE) << CRINFO_RTYPE_SH)
2615 | ((in->dist2to & CRINFO_DIST2TO) << CRINFO_DIST2TO_SH)
2616 | ((in->relvaddr & CRINFO_RELVADDR) << CRINFO_RELVADDR_SH));
2617 H_PUT_32 (abfd, l, ex->info);
2618 H_PUT_32 (abfd, in->konst, ex->konst);
2619 H_PUT_32 (abfd, in->vaddr, ex->vaddr);
2620 }
2621 \f
2622 /* A .reginfo section holds a single Elf32_RegInfo structure. These
2623 routines swap this structure in and out. They are used outside of
2624 BFD, so they are globally visible. */
2625
2626 void
2627 bfd_mips_elf32_swap_reginfo_in (bfd *abfd, const Elf32_External_RegInfo *ex,
2628 Elf32_RegInfo *in)
2629 {
2630 in->ri_gprmask = H_GET_32 (abfd, ex->ri_gprmask);
2631 in->ri_cprmask[0] = H_GET_32 (abfd, ex->ri_cprmask[0]);
2632 in->ri_cprmask[1] = H_GET_32 (abfd, ex->ri_cprmask[1]);
2633 in->ri_cprmask[2] = H_GET_32 (abfd, ex->ri_cprmask[2]);
2634 in->ri_cprmask[3] = H_GET_32 (abfd, ex->ri_cprmask[3]);
2635 in->ri_gp_value = H_GET_32 (abfd, ex->ri_gp_value);
2636 }
2637
2638 void
2639 bfd_mips_elf32_swap_reginfo_out (bfd *abfd, const Elf32_RegInfo *in,
2640 Elf32_External_RegInfo *ex)
2641 {
2642 H_PUT_32 (abfd, in->ri_gprmask, ex->ri_gprmask);
2643 H_PUT_32 (abfd, in->ri_cprmask[0], ex->ri_cprmask[0]);
2644 H_PUT_32 (abfd, in->ri_cprmask[1], ex->ri_cprmask[1]);
2645 H_PUT_32 (abfd, in->ri_cprmask[2], ex->ri_cprmask[2]);
2646 H_PUT_32 (abfd, in->ri_cprmask[3], ex->ri_cprmask[3]);
2647 H_PUT_32 (abfd, in->ri_gp_value, ex->ri_gp_value);
2648 }
2649
2650 /* In the 64 bit ABI, the .MIPS.options section holds register
2651 information in an Elf64_Reginfo structure. These routines swap
2652 them in and out. They are globally visible because they are used
2653 outside of BFD. These routines are here so that gas can call them
2654 without worrying about whether the 64 bit ABI has been included. */
2655
2656 void
2657 bfd_mips_elf64_swap_reginfo_in (bfd *abfd, const Elf64_External_RegInfo *ex,
2658 Elf64_Internal_RegInfo *in)
2659 {
2660 in->ri_gprmask = H_GET_32 (abfd, ex->ri_gprmask);
2661 in->ri_pad = H_GET_32 (abfd, ex->ri_pad);
2662 in->ri_cprmask[0] = H_GET_32 (abfd, ex->ri_cprmask[0]);
2663 in->ri_cprmask[1] = H_GET_32 (abfd, ex->ri_cprmask[1]);
2664 in->ri_cprmask[2] = H_GET_32 (abfd, ex->ri_cprmask[2]);
2665 in->ri_cprmask[3] = H_GET_32 (abfd, ex->ri_cprmask[3]);
2666 in->ri_gp_value = H_GET_64 (abfd, ex->ri_gp_value);
2667 }
2668
2669 void
2670 bfd_mips_elf64_swap_reginfo_out (bfd *abfd, const Elf64_Internal_RegInfo *in,
2671 Elf64_External_RegInfo *ex)
2672 {
2673 H_PUT_32 (abfd, in->ri_gprmask, ex->ri_gprmask);
2674 H_PUT_32 (abfd, in->ri_pad, ex->ri_pad);
2675 H_PUT_32 (abfd, in->ri_cprmask[0], ex->ri_cprmask[0]);
2676 H_PUT_32 (abfd, in->ri_cprmask[1], ex->ri_cprmask[1]);
2677 H_PUT_32 (abfd, in->ri_cprmask[2], ex->ri_cprmask[2]);
2678 H_PUT_32 (abfd, in->ri_cprmask[3], ex->ri_cprmask[3]);
2679 H_PUT_64 (abfd, in->ri_gp_value, ex->ri_gp_value);
2680 }
2681
2682 /* Swap in an options header. */
2683
2684 void
2685 bfd_mips_elf_swap_options_in (bfd *abfd, const Elf_External_Options *ex,
2686 Elf_Internal_Options *in)
2687 {
2688 in->kind = H_GET_8 (abfd, ex->kind);
2689 in->size = H_GET_8 (abfd, ex->size);
2690 in->section = H_GET_16 (abfd, ex->section);
2691 in->info = H_GET_32 (abfd, ex->info);
2692 }
2693
2694 /* Swap out an options header. */
2695
2696 void
2697 bfd_mips_elf_swap_options_out (bfd *abfd, const Elf_Internal_Options *in,
2698 Elf_External_Options *ex)
2699 {
2700 H_PUT_8 (abfd, in->kind, ex->kind);
2701 H_PUT_8 (abfd, in->size, ex->size);
2702 H_PUT_16 (abfd, in->section, ex->section);
2703 H_PUT_32 (abfd, in->info, ex->info);
2704 }
2705
2706 /* Swap in an abiflags structure. */
2707
2708 void
2709 bfd_mips_elf_swap_abiflags_v0_in (bfd *abfd,
2710 const Elf_External_ABIFlags_v0 *ex,
2711 Elf_Internal_ABIFlags_v0 *in)
2712 {
2713 in->version = H_GET_16 (abfd, ex->version);
2714 in->isa_level = H_GET_8 (abfd, ex->isa_level);
2715 in->isa_rev = H_GET_8 (abfd, ex->isa_rev);
2716 in->gpr_size = H_GET_8 (abfd, ex->gpr_size);
2717 in->cpr1_size = H_GET_8 (abfd, ex->cpr1_size);
2718 in->cpr2_size = H_GET_8 (abfd, ex->cpr2_size);
2719 in->fp_abi = H_GET_8 (abfd, ex->fp_abi);
2720 in->isa_ext = H_GET_32 (abfd, ex->isa_ext);
2721 in->ases = H_GET_32 (abfd, ex->ases);
2722 in->flags1 = H_GET_32 (abfd, ex->flags1);
2723 in->flags2 = H_GET_32 (abfd, ex->flags2);
2724 }
2725
2726 /* Swap out an abiflags structure. */
2727
2728 void
2729 bfd_mips_elf_swap_abiflags_v0_out (bfd *abfd,
2730 const Elf_Internal_ABIFlags_v0 *in,
2731 Elf_External_ABIFlags_v0 *ex)
2732 {
2733 H_PUT_16 (abfd, in->version, ex->version);
2734 H_PUT_8 (abfd, in->isa_level, ex->isa_level);
2735 H_PUT_8 (abfd, in->isa_rev, ex->isa_rev);
2736 H_PUT_8 (abfd, in->gpr_size, ex->gpr_size);
2737 H_PUT_8 (abfd, in->cpr1_size, ex->cpr1_size);
2738 H_PUT_8 (abfd, in->cpr2_size, ex->cpr2_size);
2739 H_PUT_8 (abfd, in->fp_abi, ex->fp_abi);
2740 H_PUT_32 (abfd, in->isa_ext, ex->isa_ext);
2741 H_PUT_32 (abfd, in->ases, ex->ases);
2742 H_PUT_32 (abfd, in->flags1, ex->flags1);
2743 H_PUT_32 (abfd, in->flags2, ex->flags2);
2744 }
2745 \f
2746 /* This function is called via qsort() to sort the dynamic relocation
2747 entries by increasing r_symndx value. */
2748
2749 static int
2750 sort_dynamic_relocs (const void *arg1, const void *arg2)
2751 {
2752 Elf_Internal_Rela int_reloc1;
2753 Elf_Internal_Rela int_reloc2;
2754 int diff;
2755
2756 bfd_elf32_swap_reloc_in (reldyn_sorting_bfd, arg1, &int_reloc1);
2757 bfd_elf32_swap_reloc_in (reldyn_sorting_bfd, arg2, &int_reloc2);
2758
2759 diff = ELF32_R_SYM (int_reloc1.r_info) - ELF32_R_SYM (int_reloc2.r_info);
2760 if (diff != 0)
2761 return diff;
2762
2763 if (int_reloc1.r_offset < int_reloc2.r_offset)
2764 return -1;
2765 if (int_reloc1.r_offset > int_reloc2.r_offset)
2766 return 1;
2767 return 0;
2768 }
2769
2770 /* Like sort_dynamic_relocs, but used for elf64 relocations. */
2771
2772 static int
2773 sort_dynamic_relocs_64 (const void *arg1 ATTRIBUTE_UNUSED,
2774 const void *arg2 ATTRIBUTE_UNUSED)
2775 {
2776 #ifdef BFD64
2777 Elf_Internal_Rela int_reloc1[3];
2778 Elf_Internal_Rela int_reloc2[3];
2779
2780 (*get_elf_backend_data (reldyn_sorting_bfd)->s->swap_reloc_in)
2781 (reldyn_sorting_bfd, arg1, int_reloc1);
2782 (*get_elf_backend_data (reldyn_sorting_bfd)->s->swap_reloc_in)
2783 (reldyn_sorting_bfd, arg2, int_reloc2);
2784
2785 if (ELF64_R_SYM (int_reloc1[0].r_info) < ELF64_R_SYM (int_reloc2[0].r_info))
2786 return -1;
2787 if (ELF64_R_SYM (int_reloc1[0].r_info) > ELF64_R_SYM (int_reloc2[0].r_info))
2788 return 1;
2789
2790 if (int_reloc1[0].r_offset < int_reloc2[0].r_offset)
2791 return -1;
2792 if (int_reloc1[0].r_offset > int_reloc2[0].r_offset)
2793 return 1;
2794 return 0;
2795 #else
2796 abort ();
2797 #endif
2798 }
2799
2800
2801 /* This routine is used to write out ECOFF debugging external symbol
2802 information. It is called via mips_elf_link_hash_traverse. The
2803 ECOFF external symbol information must match the ELF external
2804 symbol information. Unfortunately, at this point we don't know
2805 whether a symbol is required by reloc information, so the two
2806 tables may wind up being different. We must sort out the external
2807 symbol information before we can set the final size of the .mdebug
2808 section, and we must set the size of the .mdebug section before we
2809 can relocate any sections, and we can't know which symbols are
2810 required by relocation until we relocate the sections.
2811 Fortunately, it is relatively unlikely that any symbol will be
2812 stripped but required by a reloc. In particular, it can not happen
2813 when generating a final executable. */
2814
2815 static bfd_boolean
2816 mips_elf_output_extsym (struct mips_elf_link_hash_entry *h, void *data)
2817 {
2818 struct extsym_info *einfo = data;
2819 bfd_boolean strip;
2820 asection *sec, *output_section;
2821
2822 if (h->root.indx == -2)
2823 strip = FALSE;
2824 else if ((h->root.def_dynamic
2825 || h->root.ref_dynamic
2826 || h->root.type == bfd_link_hash_new)
2827 && !h->root.def_regular
2828 && !h->root.ref_regular)
2829 strip = TRUE;
2830 else if (einfo->info->strip == strip_all
2831 || (einfo->info->strip == strip_some
2832 && bfd_hash_lookup (einfo->info->keep_hash,
2833 h->root.root.root.string,
2834 FALSE, FALSE) == NULL))
2835 strip = TRUE;
2836 else
2837 strip = FALSE;
2838
2839 if (strip)
2840 return TRUE;
2841
2842 if (h->esym.ifd == -2)
2843 {
2844 h->esym.jmptbl = 0;
2845 h->esym.cobol_main = 0;
2846 h->esym.weakext = 0;
2847 h->esym.reserved = 0;
2848 h->esym.ifd = ifdNil;
2849 h->esym.asym.value = 0;
2850 h->esym.asym.st = stGlobal;
2851
2852 if (h->root.root.type == bfd_link_hash_undefined
2853 || h->root.root.type == bfd_link_hash_undefweak)
2854 {
2855 const char *name;
2856
2857 /* Use undefined class. Also, set class and type for some
2858 special symbols. */
2859 name = h->root.root.root.string;
2860 if (strcmp (name, mips_elf_dynsym_rtproc_names[0]) == 0
2861 || strcmp (name, mips_elf_dynsym_rtproc_names[1]) == 0)
2862 {
2863 h->esym.asym.sc = scData;
2864 h->esym.asym.st = stLabel;
2865 h->esym.asym.value = 0;
2866 }
2867 else if (strcmp (name, mips_elf_dynsym_rtproc_names[2]) == 0)
2868 {
2869 h->esym.asym.sc = scAbs;
2870 h->esym.asym.st = stLabel;
2871 h->esym.asym.value =
2872 mips_elf_hash_table (einfo->info)->procedure_count;
2873 }
2874 else if (strcmp (name, "_gp_disp") == 0 && ! NEWABI_P (einfo->abfd))
2875 {
2876 h->esym.asym.sc = scAbs;
2877 h->esym.asym.st = stLabel;
2878 h->esym.asym.value = elf_gp (einfo->abfd);
2879 }
2880 else
2881 h->esym.asym.sc = scUndefined;
2882 }
2883 else if (h->root.root.type != bfd_link_hash_defined
2884 && h->root.root.type != bfd_link_hash_defweak)
2885 h->esym.asym.sc = scAbs;
2886 else
2887 {
2888 const char *name;
2889
2890 sec = h->root.root.u.def.section;
2891 output_section = sec->output_section;
2892
2893 /* When making a shared library and symbol h is the one from
2894 the another shared library, OUTPUT_SECTION may be null. */
2895 if (output_section == NULL)
2896 h->esym.asym.sc = scUndefined;
2897 else
2898 {
2899 name = bfd_section_name (output_section->owner, output_section);
2900
2901 if (strcmp (name, ".text") == 0)
2902 h->esym.asym.sc = scText;
2903 else if (strcmp (name, ".data") == 0)
2904 h->esym.asym.sc = scData;
2905 else if (strcmp (name, ".sdata") == 0)
2906 h->esym.asym.sc = scSData;
2907 else if (strcmp (name, ".rodata") == 0
2908 || strcmp (name, ".rdata") == 0)
2909 h->esym.asym.sc = scRData;
2910 else if (strcmp (name, ".bss") == 0)
2911 h->esym.asym.sc = scBss;
2912 else if (strcmp (name, ".sbss") == 0)
2913 h->esym.asym.sc = scSBss;
2914 else if (strcmp (name, ".init") == 0)
2915 h->esym.asym.sc = scInit;
2916 else if (strcmp (name, ".fini") == 0)
2917 h->esym.asym.sc = scFini;
2918 else
2919 h->esym.asym.sc = scAbs;
2920 }
2921 }
2922
2923 h->esym.asym.reserved = 0;
2924 h->esym.asym.index = indexNil;
2925 }
2926
2927 if (h->root.root.type == bfd_link_hash_common)
2928 h->esym.asym.value = h->root.root.u.c.size;
2929 else if (h->root.root.type == bfd_link_hash_defined
2930 || h->root.root.type == bfd_link_hash_defweak)
2931 {
2932 if (h->esym.asym.sc == scCommon)
2933 h->esym.asym.sc = scBss;
2934 else if (h->esym.asym.sc == scSCommon)
2935 h->esym.asym.sc = scSBss;
2936
2937 sec = h->root.root.u.def.section;
2938 output_section = sec->output_section;
2939 if (output_section != NULL)
2940 h->esym.asym.value = (h->root.root.u.def.value
2941 + sec->output_offset
2942 + output_section->vma);
2943 else
2944 h->esym.asym.value = 0;
2945 }
2946 else
2947 {
2948 struct mips_elf_link_hash_entry *hd = h;
2949
2950 while (hd->root.root.type == bfd_link_hash_indirect)
2951 hd = (struct mips_elf_link_hash_entry *)h->root.root.u.i.link;
2952
2953 if (hd->needs_lazy_stub)
2954 {
2955 BFD_ASSERT (hd->root.plt.plist != NULL);
2956 BFD_ASSERT (hd->root.plt.plist->stub_offset != MINUS_ONE);
2957 /* Set type and value for a symbol with a function stub. */
2958 h->esym.asym.st = stProc;
2959 sec = hd->root.root.u.def.section;
2960 if (sec == NULL)
2961 h->esym.asym.value = 0;
2962 else
2963 {
2964 output_section = sec->output_section;
2965 if (output_section != NULL)
2966 h->esym.asym.value = (hd->root.plt.plist->stub_offset
2967 + sec->output_offset
2968 + output_section->vma);
2969 else
2970 h->esym.asym.value = 0;
2971 }
2972 }
2973 }
2974
2975 if (! bfd_ecoff_debug_one_external (einfo->abfd, einfo->debug, einfo->swap,
2976 h->root.root.root.string,
2977 &h->esym))
2978 {
2979 einfo->failed = TRUE;
2980 return FALSE;
2981 }
2982
2983 return TRUE;
2984 }
2985
2986 /* A comparison routine used to sort .gptab entries. */
2987
2988 static int
2989 gptab_compare (const void *p1, const void *p2)
2990 {
2991 const Elf32_gptab *a1 = p1;
2992 const Elf32_gptab *a2 = p2;
2993
2994 return a1->gt_entry.gt_g_value - a2->gt_entry.gt_g_value;
2995 }
2996 \f
2997 /* Functions to manage the got entry hash table. */
2998
2999 /* Use all 64 bits of a bfd_vma for the computation of a 32-bit
3000 hash number. */
3001
3002 static INLINE hashval_t
3003 mips_elf_hash_bfd_vma (bfd_vma addr)
3004 {
3005 #ifdef BFD64
3006 return addr + (addr >> 32);
3007 #else
3008 return addr;
3009 #endif
3010 }
3011
3012 static hashval_t
3013 mips_elf_got_entry_hash (const void *entry_)
3014 {
3015 const struct mips_got_entry *entry = (struct mips_got_entry *)entry_;
3016
3017 return (entry->symndx
3018 + ((entry->tls_type == GOT_TLS_LDM) << 18)
3019 + (entry->tls_type == GOT_TLS_LDM ? 0
3020 : !entry->abfd ? mips_elf_hash_bfd_vma (entry->d.address)
3021 : entry->symndx >= 0 ? (entry->abfd->id
3022 + mips_elf_hash_bfd_vma (entry->d.addend))
3023 : entry->d.h->root.root.root.hash));
3024 }
3025
3026 static int
3027 mips_elf_got_entry_eq (const void *entry1, const void *entry2)
3028 {
3029 const struct mips_got_entry *e1 = (struct mips_got_entry *)entry1;
3030 const struct mips_got_entry *e2 = (struct mips_got_entry *)entry2;
3031
3032 return (e1->symndx == e2->symndx
3033 && e1->tls_type == e2->tls_type
3034 && (e1->tls_type == GOT_TLS_LDM ? TRUE
3035 : !e1->abfd ? !e2->abfd && e1->d.address == e2->d.address
3036 : e1->symndx >= 0 ? (e1->abfd == e2->abfd
3037 && e1->d.addend == e2->d.addend)
3038 : e2->abfd && e1->d.h == e2->d.h));
3039 }
3040
3041 static hashval_t
3042 mips_got_page_ref_hash (const void *ref_)
3043 {
3044 const struct mips_got_page_ref *ref;
3045
3046 ref = (const struct mips_got_page_ref *) ref_;
3047 return ((ref->symndx >= 0
3048 ? (hashval_t) (ref->u.abfd->id + ref->symndx)
3049 : ref->u.h->root.root.root.hash)
3050 + mips_elf_hash_bfd_vma (ref->addend));
3051 }
3052
3053 static int
3054 mips_got_page_ref_eq (const void *ref1_, const void *ref2_)
3055 {
3056 const struct mips_got_page_ref *ref1, *ref2;
3057
3058 ref1 = (const struct mips_got_page_ref *) ref1_;
3059 ref2 = (const struct mips_got_page_ref *) ref2_;
3060 return (ref1->symndx == ref2->symndx
3061 && (ref1->symndx < 0
3062 ? ref1->u.h == ref2->u.h
3063 : ref1->u.abfd == ref2->u.abfd)
3064 && ref1->addend == ref2->addend);
3065 }
3066
3067 static hashval_t
3068 mips_got_page_entry_hash (const void *entry_)
3069 {
3070 const struct mips_got_page_entry *entry;
3071
3072 entry = (const struct mips_got_page_entry *) entry_;
3073 return entry->sec->id;
3074 }
3075
3076 static int
3077 mips_got_page_entry_eq (const void *entry1_, const void *entry2_)
3078 {
3079 const struct mips_got_page_entry *entry1, *entry2;
3080
3081 entry1 = (const struct mips_got_page_entry *) entry1_;
3082 entry2 = (const struct mips_got_page_entry *) entry2_;
3083 return entry1->sec == entry2->sec;
3084 }
3085 \f
3086 /* Create and return a new mips_got_info structure. */
3087
3088 static struct mips_got_info *
3089 mips_elf_create_got_info (bfd *abfd)
3090 {
3091 struct mips_got_info *g;
3092
3093 g = bfd_zalloc (abfd, sizeof (struct mips_got_info));
3094 if (g == NULL)
3095 return NULL;
3096
3097 g->got_entries = htab_try_create (1, mips_elf_got_entry_hash,
3098 mips_elf_got_entry_eq, NULL);
3099 if (g->got_entries == NULL)
3100 return NULL;
3101
3102 g->got_page_refs = htab_try_create (1, mips_got_page_ref_hash,
3103 mips_got_page_ref_eq, NULL);
3104 if (g->got_page_refs == NULL)
3105 return NULL;
3106
3107 return g;
3108 }
3109
3110 /* Return the GOT info for input bfd ABFD, trying to create a new one if
3111 CREATE_P and if ABFD doesn't already have a GOT. */
3112
3113 static struct mips_got_info *
3114 mips_elf_bfd_got (bfd *abfd, bfd_boolean create_p)
3115 {
3116 struct mips_elf_obj_tdata *tdata;
3117
3118 if (!is_mips_elf (abfd))
3119 return NULL;
3120
3121 tdata = mips_elf_tdata (abfd);
3122 if (!tdata->got && create_p)
3123 tdata->got = mips_elf_create_got_info (abfd);
3124 return tdata->got;
3125 }
3126
3127 /* Record that ABFD should use output GOT G. */
3128
3129 static void
3130 mips_elf_replace_bfd_got (bfd *abfd, struct mips_got_info *g)
3131 {
3132 struct mips_elf_obj_tdata *tdata;
3133
3134 BFD_ASSERT (is_mips_elf (abfd));
3135 tdata = mips_elf_tdata (abfd);
3136 if (tdata->got)
3137 {
3138 /* The GOT structure itself and the hash table entries are
3139 allocated to a bfd, but the hash tables aren't. */
3140 htab_delete (tdata->got->got_entries);
3141 htab_delete (tdata->got->got_page_refs);
3142 if (tdata->got->got_page_entries)
3143 htab_delete (tdata->got->got_page_entries);
3144 }
3145 tdata->got = g;
3146 }
3147
3148 /* Return the dynamic relocation section. If it doesn't exist, try to
3149 create a new it if CREATE_P, otherwise return NULL. Also return NULL
3150 if creation fails. */
3151
3152 static asection *
3153 mips_elf_rel_dyn_section (struct bfd_link_info *info, bfd_boolean create_p)
3154 {
3155 const char *dname;
3156 asection *sreloc;
3157 bfd *dynobj;
3158
3159 dname = MIPS_ELF_REL_DYN_NAME (info);
3160 dynobj = elf_hash_table (info)->dynobj;
3161 sreloc = bfd_get_linker_section (dynobj, dname);
3162 if (sreloc == NULL && create_p)
3163 {
3164 sreloc = bfd_make_section_anyway_with_flags (dynobj, dname,
3165 (SEC_ALLOC
3166 | SEC_LOAD
3167 | SEC_HAS_CONTENTS
3168 | SEC_IN_MEMORY
3169 | SEC_LINKER_CREATED
3170 | SEC_READONLY));
3171 if (sreloc == NULL
3172 || ! bfd_set_section_alignment (dynobj, sreloc,
3173 MIPS_ELF_LOG_FILE_ALIGN (dynobj)))
3174 return NULL;
3175 }
3176 return sreloc;
3177 }
3178
3179 /* Return the GOT_TLS_* type required by relocation type R_TYPE. */
3180
3181 static int
3182 mips_elf_reloc_tls_type (unsigned int r_type)
3183 {
3184 if (tls_gd_reloc_p (r_type))
3185 return GOT_TLS_GD;
3186
3187 if (tls_ldm_reloc_p (r_type))
3188 return GOT_TLS_LDM;
3189
3190 if (tls_gottprel_reloc_p (r_type))
3191 return GOT_TLS_IE;
3192
3193 return GOT_TLS_NONE;
3194 }
3195
3196 /* Return the number of GOT slots needed for GOT TLS type TYPE. */
3197
3198 static int
3199 mips_tls_got_entries (unsigned int type)
3200 {
3201 switch (type)
3202 {
3203 case GOT_TLS_GD:
3204 case GOT_TLS_LDM:
3205 return 2;
3206
3207 case GOT_TLS_IE:
3208 return 1;
3209
3210 case GOT_TLS_NONE:
3211 return 0;
3212 }
3213 abort ();
3214 }
3215
3216 /* Count the number of relocations needed for a TLS GOT entry, with
3217 access types from TLS_TYPE, and symbol H (or a local symbol if H
3218 is NULL). */
3219
3220 static int
3221 mips_tls_got_relocs (struct bfd_link_info *info, unsigned char tls_type,
3222 struct elf_link_hash_entry *h)
3223 {
3224 int indx = 0;
3225 bfd_boolean need_relocs = FALSE;
3226 bfd_boolean dyn = elf_hash_table (info)->dynamic_sections_created;
3227
3228 if (h && WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h)
3229 && (!info->shared || !SYMBOL_REFERENCES_LOCAL (info, h)))
3230 indx = h->dynindx;
3231
3232 if ((info->shared || indx != 0)
3233 && (h == NULL
3234 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
3235 || h->root.type != bfd_link_hash_undefweak))
3236 need_relocs = TRUE;
3237
3238 if (!need_relocs)
3239 return 0;
3240
3241 switch (tls_type)
3242 {
3243 case GOT_TLS_GD:
3244 return indx != 0 ? 2 : 1;
3245
3246 case GOT_TLS_IE:
3247 return 1;
3248
3249 case GOT_TLS_LDM:
3250 return info->shared ? 1 : 0;
3251
3252 default:
3253 return 0;
3254 }
3255 }
3256
3257 /* Add the number of GOT entries and TLS relocations required by ENTRY
3258 to G. */
3259
3260 static void
3261 mips_elf_count_got_entry (struct bfd_link_info *info,
3262 struct mips_got_info *g,
3263 struct mips_got_entry *entry)
3264 {
3265 if (entry->tls_type)
3266 {
3267 g->tls_gotno += mips_tls_got_entries (entry->tls_type);
3268 g->relocs += mips_tls_got_relocs (info, entry->tls_type,
3269 entry->symndx < 0
3270 ? &entry->d.h->root : NULL);
3271 }
3272 else if (entry->symndx >= 0 || entry->d.h->global_got_area == GGA_NONE)
3273 g->local_gotno += 1;
3274 else
3275 g->global_gotno += 1;
3276 }
3277
3278 /* Output a simple dynamic relocation into SRELOC. */
3279
3280 static void
3281 mips_elf_output_dynamic_relocation (bfd *output_bfd,
3282 asection *sreloc,
3283 unsigned long reloc_index,
3284 unsigned long indx,
3285 int r_type,
3286 bfd_vma offset)
3287 {
3288 Elf_Internal_Rela rel[3];
3289
3290 memset (rel, 0, sizeof (rel));
3291
3292 rel[0].r_info = ELF_R_INFO (output_bfd, indx, r_type);
3293 rel[0].r_offset = rel[1].r_offset = rel[2].r_offset = offset;
3294
3295 if (ABI_64_P (output_bfd))
3296 {
3297 (*get_elf_backend_data (output_bfd)->s->swap_reloc_out)
3298 (output_bfd, &rel[0],
3299 (sreloc->contents
3300 + reloc_index * sizeof (Elf64_Mips_External_Rel)));
3301 }
3302 else
3303 bfd_elf32_swap_reloc_out
3304 (output_bfd, &rel[0],
3305 (sreloc->contents
3306 + reloc_index * sizeof (Elf32_External_Rel)));
3307 }
3308
3309 /* Initialize a set of TLS GOT entries for one symbol. */
3310
3311 static void
3312 mips_elf_initialize_tls_slots (bfd *abfd, struct bfd_link_info *info,
3313 struct mips_got_entry *entry,
3314 struct mips_elf_link_hash_entry *h,
3315 bfd_vma value)
3316 {
3317 struct mips_elf_link_hash_table *htab;
3318 int indx;
3319 asection *sreloc, *sgot;
3320 bfd_vma got_offset, got_offset2;
3321 bfd_boolean need_relocs = FALSE;
3322
3323 htab = mips_elf_hash_table (info);
3324 if (htab == NULL)
3325 return;
3326
3327 sgot = htab->sgot;
3328
3329 indx = 0;
3330 if (h != NULL)
3331 {
3332 bfd_boolean dyn = elf_hash_table (info)->dynamic_sections_created;
3333
3334 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, &h->root)
3335 && (!info->shared || !SYMBOL_REFERENCES_LOCAL (info, &h->root)))
3336 indx = h->root.dynindx;
3337 }
3338
3339 if (entry->tls_initialized)
3340 return;
3341
3342 if ((info->shared || indx != 0)
3343 && (h == NULL
3344 || ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT
3345 || h->root.type != bfd_link_hash_undefweak))
3346 need_relocs = TRUE;
3347
3348 /* MINUS_ONE means the symbol is not defined in this object. It may not
3349 be defined at all; assume that the value doesn't matter in that
3350 case. Otherwise complain if we would use the value. */
3351 BFD_ASSERT (value != MINUS_ONE || (indx != 0 && need_relocs)
3352 || h->root.root.type == bfd_link_hash_undefweak);
3353
3354 /* Emit necessary relocations. */
3355 sreloc = mips_elf_rel_dyn_section (info, FALSE);
3356 got_offset = entry->gotidx;
3357
3358 switch (entry->tls_type)
3359 {
3360 case GOT_TLS_GD:
3361 /* General Dynamic. */
3362 got_offset2 = got_offset + MIPS_ELF_GOT_SIZE (abfd);
3363
3364 if (need_relocs)
3365 {
3366 mips_elf_output_dynamic_relocation
3367 (abfd, sreloc, sreloc->reloc_count++, indx,
3368 ABI_64_P (abfd) ? R_MIPS_TLS_DTPMOD64 : R_MIPS_TLS_DTPMOD32,
3369 sgot->output_offset + sgot->output_section->vma + got_offset);
3370
3371 if (indx)
3372 mips_elf_output_dynamic_relocation
3373 (abfd, sreloc, sreloc->reloc_count++, indx,
3374 ABI_64_P (abfd) ? R_MIPS_TLS_DTPREL64 : R_MIPS_TLS_DTPREL32,
3375 sgot->output_offset + sgot->output_section->vma + got_offset2);
3376 else
3377 MIPS_ELF_PUT_WORD (abfd, value - dtprel_base (info),
3378 sgot->contents + got_offset2);
3379 }
3380 else
3381 {
3382 MIPS_ELF_PUT_WORD (abfd, 1,
3383 sgot->contents + got_offset);
3384 MIPS_ELF_PUT_WORD (abfd, value - dtprel_base (info),
3385 sgot->contents + got_offset2);
3386 }
3387 break;
3388
3389 case GOT_TLS_IE:
3390 /* Initial Exec model. */
3391 if (need_relocs)
3392 {
3393 if (indx == 0)
3394 MIPS_ELF_PUT_WORD (abfd, value - elf_hash_table (info)->tls_sec->vma,
3395 sgot->contents + got_offset);
3396 else
3397 MIPS_ELF_PUT_WORD (abfd, 0,
3398 sgot->contents + got_offset);
3399
3400 mips_elf_output_dynamic_relocation
3401 (abfd, sreloc, sreloc->reloc_count++, indx,
3402 ABI_64_P (abfd) ? R_MIPS_TLS_TPREL64 : R_MIPS_TLS_TPREL32,
3403 sgot->output_offset + sgot->output_section->vma + got_offset);
3404 }
3405 else
3406 MIPS_ELF_PUT_WORD (abfd, value - tprel_base (info),
3407 sgot->contents + got_offset);
3408 break;
3409
3410 case GOT_TLS_LDM:
3411 /* The initial offset is zero, and the LD offsets will include the
3412 bias by DTP_OFFSET. */
3413 MIPS_ELF_PUT_WORD (abfd, 0,
3414 sgot->contents + got_offset
3415 + MIPS_ELF_GOT_SIZE (abfd));
3416
3417 if (!info->shared)
3418 MIPS_ELF_PUT_WORD (abfd, 1,
3419 sgot->contents + got_offset);
3420 else
3421 mips_elf_output_dynamic_relocation
3422 (abfd, sreloc, sreloc->reloc_count++, indx,
3423 ABI_64_P (abfd) ? R_MIPS_TLS_DTPMOD64 : R_MIPS_TLS_DTPMOD32,
3424 sgot->output_offset + sgot->output_section->vma + got_offset);
3425 break;
3426
3427 default:
3428 abort ();
3429 }
3430
3431 entry->tls_initialized = TRUE;
3432 }
3433
3434 /* Return the offset from _GLOBAL_OFFSET_TABLE_ of the .got.plt entry
3435 for global symbol H. .got.plt comes before the GOT, so the offset
3436 will be negative. */
3437
3438 static bfd_vma
3439 mips_elf_gotplt_index (struct bfd_link_info *info,
3440 struct elf_link_hash_entry *h)
3441 {
3442 bfd_vma got_address, got_value;
3443 struct mips_elf_link_hash_table *htab;
3444
3445 htab = mips_elf_hash_table (info);
3446 BFD_ASSERT (htab != NULL);
3447
3448 BFD_ASSERT (h->plt.plist != NULL);
3449 BFD_ASSERT (h->plt.plist->gotplt_index != MINUS_ONE);
3450
3451 /* Calculate the address of the associated .got.plt entry. */
3452 got_address = (htab->sgotplt->output_section->vma
3453 + htab->sgotplt->output_offset
3454 + (h->plt.plist->gotplt_index
3455 * MIPS_ELF_GOT_SIZE (info->output_bfd)));
3456
3457 /* Calculate the value of _GLOBAL_OFFSET_TABLE_. */
3458 got_value = (htab->root.hgot->root.u.def.section->output_section->vma
3459 + htab->root.hgot->root.u.def.section->output_offset
3460 + htab->root.hgot->root.u.def.value);
3461
3462 return got_address - got_value;
3463 }
3464
3465 /* Return the GOT offset for address VALUE. If there is not yet a GOT
3466 entry for this value, create one. If R_SYMNDX refers to a TLS symbol,
3467 create a TLS GOT entry instead. Return -1 if no satisfactory GOT
3468 offset can be found. */
3469
3470 static bfd_vma
3471 mips_elf_local_got_index (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
3472 bfd_vma value, unsigned long r_symndx,
3473 struct mips_elf_link_hash_entry *h, int r_type)
3474 {
3475 struct mips_elf_link_hash_table *htab;
3476 struct mips_got_entry *entry;
3477
3478 htab = mips_elf_hash_table (info);
3479 BFD_ASSERT (htab != NULL);
3480
3481 entry = mips_elf_create_local_got_entry (abfd, info, ibfd, value,
3482 r_symndx, h, r_type);
3483 if (!entry)
3484 return MINUS_ONE;
3485
3486 if (entry->tls_type)
3487 mips_elf_initialize_tls_slots (abfd, info, entry, h, value);
3488 return entry->gotidx;
3489 }
3490
3491 /* Return the GOT index of global symbol H in the primary GOT. */
3492
3493 static bfd_vma
3494 mips_elf_primary_global_got_index (bfd *obfd, struct bfd_link_info *info,
3495 struct elf_link_hash_entry *h)
3496 {
3497 struct mips_elf_link_hash_table *htab;
3498 long global_got_dynindx;
3499 struct mips_got_info *g;
3500 bfd_vma got_index;
3501
3502 htab = mips_elf_hash_table (info);
3503 BFD_ASSERT (htab != NULL);
3504
3505 global_got_dynindx = 0;
3506 if (htab->global_gotsym != NULL)
3507 global_got_dynindx = htab->global_gotsym->dynindx;
3508
3509 /* Once we determine the global GOT entry with the lowest dynamic
3510 symbol table index, we must put all dynamic symbols with greater
3511 indices into the primary GOT. That makes it easy to calculate the
3512 GOT offset. */
3513 BFD_ASSERT (h->dynindx >= global_got_dynindx);
3514 g = mips_elf_bfd_got (obfd, FALSE);
3515 got_index = ((h->dynindx - global_got_dynindx + g->local_gotno)
3516 * MIPS_ELF_GOT_SIZE (obfd));
3517 BFD_ASSERT (got_index < htab->sgot->size);
3518
3519 return got_index;
3520 }
3521
3522 /* Return the GOT index for the global symbol indicated by H, which is
3523 referenced by a relocation of type R_TYPE in IBFD. */
3524
3525 static bfd_vma
3526 mips_elf_global_got_index (bfd *obfd, struct bfd_link_info *info, bfd *ibfd,
3527 struct elf_link_hash_entry *h, int r_type)
3528 {
3529 struct mips_elf_link_hash_table *htab;
3530 struct mips_got_info *g;
3531 struct mips_got_entry lookup, *entry;
3532 bfd_vma gotidx;
3533
3534 htab = mips_elf_hash_table (info);
3535 BFD_ASSERT (htab != NULL);
3536
3537 g = mips_elf_bfd_got (ibfd, FALSE);
3538 BFD_ASSERT (g);
3539
3540 lookup.tls_type = mips_elf_reloc_tls_type (r_type);
3541 if (!lookup.tls_type && g == mips_elf_bfd_got (obfd, FALSE))
3542 return mips_elf_primary_global_got_index (obfd, info, h);
3543
3544 lookup.abfd = ibfd;
3545 lookup.symndx = -1;
3546 lookup.d.h = (struct mips_elf_link_hash_entry *) h;
3547 entry = htab_find (g->got_entries, &lookup);
3548 BFD_ASSERT (entry);
3549
3550 gotidx = entry->gotidx;
3551 BFD_ASSERT (gotidx > 0 && gotidx < htab->sgot->size);
3552
3553 if (lookup.tls_type)
3554 {
3555 bfd_vma value = MINUS_ONE;
3556
3557 if ((h->root.type == bfd_link_hash_defined
3558 || h->root.type == bfd_link_hash_defweak)
3559 && h->root.u.def.section->output_section)
3560 value = (h->root.u.def.value
3561 + h->root.u.def.section->output_offset
3562 + h->root.u.def.section->output_section->vma);
3563
3564 mips_elf_initialize_tls_slots (obfd, info, entry, lookup.d.h, value);
3565 }
3566 return gotidx;
3567 }
3568
3569 /* Find a GOT page entry that points to within 32KB of VALUE. These
3570 entries are supposed to be placed at small offsets in the GOT, i.e.,
3571 within 32KB of GP. Return the index of the GOT entry, or -1 if no
3572 entry could be created. If OFFSETP is nonnull, use it to return the
3573 offset of the GOT entry from VALUE. */
3574
3575 static bfd_vma
3576 mips_elf_got_page (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
3577 bfd_vma value, bfd_vma *offsetp)
3578 {
3579 bfd_vma page, got_index;
3580 struct mips_got_entry *entry;
3581
3582 page = (value + 0x8000) & ~(bfd_vma) 0xffff;
3583 entry = mips_elf_create_local_got_entry (abfd, info, ibfd, page, 0,
3584 NULL, R_MIPS_GOT_PAGE);
3585
3586 if (!entry)
3587 return MINUS_ONE;
3588
3589 got_index = entry->gotidx;
3590
3591 if (offsetp)
3592 *offsetp = value - entry->d.address;
3593
3594 return got_index;
3595 }
3596
3597 /* Find a local GOT entry for an R_MIPS*_GOT16 relocation against VALUE.
3598 EXTERNAL is true if the relocation was originally against a global
3599 symbol that binds locally. */
3600
3601 static bfd_vma
3602 mips_elf_got16_entry (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
3603 bfd_vma value, bfd_boolean external)
3604 {
3605 struct mips_got_entry *entry;
3606
3607 /* GOT16 relocations against local symbols are followed by a LO16
3608 relocation; those against global symbols are not. Thus if the
3609 symbol was originally local, the GOT16 relocation should load the
3610 equivalent of %hi(VALUE), otherwise it should load VALUE itself. */
3611 if (! external)
3612 value = mips_elf_high (value) << 16;
3613
3614 /* It doesn't matter whether the original relocation was R_MIPS_GOT16,
3615 R_MIPS16_GOT16, R_MIPS_CALL16, etc. The format of the entry is the
3616 same in all cases. */
3617 entry = mips_elf_create_local_got_entry (abfd, info, ibfd, value, 0,
3618 NULL, R_MIPS_GOT16);
3619 if (entry)
3620 return entry->gotidx;
3621 else
3622 return MINUS_ONE;
3623 }
3624
3625 /* Returns the offset for the entry at the INDEXth position
3626 in the GOT. */
3627
3628 static bfd_vma
3629 mips_elf_got_offset_from_index (struct bfd_link_info *info, bfd *output_bfd,
3630 bfd *input_bfd, bfd_vma got_index)
3631 {
3632 struct mips_elf_link_hash_table *htab;
3633 asection *sgot;
3634 bfd_vma gp;
3635
3636 htab = mips_elf_hash_table (info);
3637 BFD_ASSERT (htab != NULL);
3638
3639 sgot = htab->sgot;
3640 gp = _bfd_get_gp_value (output_bfd)
3641 + mips_elf_adjust_gp (output_bfd, htab->got_info, input_bfd);
3642
3643 return sgot->output_section->vma + sgot->output_offset + got_index - gp;
3644 }
3645
3646 /* Create and return a local GOT entry for VALUE, which was calculated
3647 from a symbol belonging to INPUT_SECTON. Return NULL if it could not
3648 be created. If R_SYMNDX refers to a TLS symbol, create a TLS entry
3649 instead. */
3650
3651 static struct mips_got_entry *
3652 mips_elf_create_local_got_entry (bfd *abfd, struct bfd_link_info *info,
3653 bfd *ibfd, bfd_vma value,
3654 unsigned long r_symndx,
3655 struct mips_elf_link_hash_entry *h,
3656 int r_type)
3657 {
3658 struct mips_got_entry lookup, *entry;
3659 void **loc;
3660 struct mips_got_info *g;
3661 struct mips_elf_link_hash_table *htab;
3662 bfd_vma gotidx;
3663
3664 htab = mips_elf_hash_table (info);
3665 BFD_ASSERT (htab != NULL);
3666
3667 g = mips_elf_bfd_got (ibfd, FALSE);
3668 if (g == NULL)
3669 {
3670 g = mips_elf_bfd_got (abfd, FALSE);
3671 BFD_ASSERT (g != NULL);
3672 }
3673
3674 /* This function shouldn't be called for symbols that live in the global
3675 area of the GOT. */
3676 BFD_ASSERT (h == NULL || h->global_got_area == GGA_NONE);
3677
3678 lookup.tls_type = mips_elf_reloc_tls_type (r_type);
3679 if (lookup.tls_type)
3680 {
3681 lookup.abfd = ibfd;
3682 if (tls_ldm_reloc_p (r_type))
3683 {
3684 lookup.symndx = 0;
3685 lookup.d.addend = 0;
3686 }
3687 else if (h == NULL)
3688 {
3689 lookup.symndx = r_symndx;
3690 lookup.d.addend = 0;
3691 }
3692 else
3693 {
3694 lookup.symndx = -1;
3695 lookup.d.h = h;
3696 }
3697
3698 entry = (struct mips_got_entry *) htab_find (g->got_entries, &lookup);
3699 BFD_ASSERT (entry);
3700
3701 gotidx = entry->gotidx;
3702 BFD_ASSERT (gotidx > 0 && gotidx < htab->sgot->size);
3703
3704 return entry;
3705 }
3706
3707 lookup.abfd = NULL;
3708 lookup.symndx = -1;
3709 lookup.d.address = value;
3710 loc = htab_find_slot (g->got_entries, &lookup, INSERT);
3711 if (!loc)
3712 return NULL;
3713
3714 entry = (struct mips_got_entry *) *loc;
3715 if (entry)
3716 return entry;
3717
3718 if (g->assigned_low_gotno > g->assigned_high_gotno)
3719 {
3720 /* We didn't allocate enough space in the GOT. */
3721 (*_bfd_error_handler)
3722 (_("not enough GOT space for local GOT entries"));
3723 bfd_set_error (bfd_error_bad_value);
3724 return NULL;
3725 }
3726
3727 entry = (struct mips_got_entry *) bfd_alloc (abfd, sizeof (*entry));
3728 if (!entry)
3729 return NULL;
3730
3731 if (got16_reloc_p (r_type)
3732 || call16_reloc_p (r_type)
3733 || got_page_reloc_p (r_type)
3734 || got_disp_reloc_p (r_type))
3735 lookup.gotidx = MIPS_ELF_GOT_SIZE (abfd) * g->assigned_low_gotno++;
3736 else
3737 lookup.gotidx = MIPS_ELF_GOT_SIZE (abfd) * g->assigned_high_gotno--;
3738
3739 *entry = lookup;
3740 *loc = entry;
3741
3742 MIPS_ELF_PUT_WORD (abfd, value, htab->sgot->contents + entry->gotidx);
3743
3744 /* These GOT entries need a dynamic relocation on VxWorks. */
3745 if (htab->is_vxworks)
3746 {
3747 Elf_Internal_Rela outrel;
3748 asection *s;
3749 bfd_byte *rloc;
3750 bfd_vma got_address;
3751
3752 s = mips_elf_rel_dyn_section (info, FALSE);
3753 got_address = (htab->sgot->output_section->vma
3754 + htab->sgot->output_offset
3755 + entry->gotidx);
3756
3757 rloc = s->contents + (s->reloc_count++ * sizeof (Elf32_External_Rela));
3758 outrel.r_offset = got_address;
3759 outrel.r_info = ELF32_R_INFO (STN_UNDEF, R_MIPS_32);
3760 outrel.r_addend = value;
3761 bfd_elf32_swap_reloca_out (abfd, &outrel, rloc);
3762 }
3763
3764 return entry;
3765 }
3766
3767 /* Return the number of dynamic section symbols required by OUTPUT_BFD.
3768 The number might be exact or a worst-case estimate, depending on how
3769 much information is available to elf_backend_omit_section_dynsym at
3770 the current linking stage. */
3771
3772 static bfd_size_type
3773 count_section_dynsyms (bfd *output_bfd, struct bfd_link_info *info)
3774 {
3775 bfd_size_type count;
3776
3777 count = 0;
3778 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
3779 {
3780 asection *p;
3781 const struct elf_backend_data *bed;
3782
3783 bed = get_elf_backend_data (output_bfd);
3784 for (p = output_bfd->sections; p ; p = p->next)
3785 if ((p->flags & SEC_EXCLUDE) == 0
3786 && (p->flags & SEC_ALLOC) != 0
3787 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
3788 ++count;
3789 }
3790 return count;
3791 }
3792
3793 /* Sort the dynamic symbol table so that symbols that need GOT entries
3794 appear towards the end. */
3795
3796 static bfd_boolean
3797 mips_elf_sort_hash_table (bfd *abfd, struct bfd_link_info *info)
3798 {
3799 struct mips_elf_link_hash_table *htab;
3800 struct mips_elf_hash_sort_data hsd;
3801 struct mips_got_info *g;
3802
3803 if (elf_hash_table (info)->dynsymcount == 0)
3804 return TRUE;
3805
3806 htab = mips_elf_hash_table (info);
3807 BFD_ASSERT (htab != NULL);
3808
3809 g = htab->got_info;
3810 if (g == NULL)
3811 return TRUE;
3812
3813 hsd.low = NULL;
3814 hsd.max_unref_got_dynindx
3815 = hsd.min_got_dynindx
3816 = (elf_hash_table (info)->dynsymcount - g->reloc_only_gotno);
3817 hsd.max_non_got_dynindx = count_section_dynsyms (abfd, info) + 1;
3818 mips_elf_link_hash_traverse (((struct mips_elf_link_hash_table *)
3819 elf_hash_table (info)),
3820 mips_elf_sort_hash_table_f,
3821 &hsd);
3822
3823 /* There should have been enough room in the symbol table to
3824 accommodate both the GOT and non-GOT symbols. */
3825 BFD_ASSERT (hsd.max_non_got_dynindx <= hsd.min_got_dynindx);
3826 BFD_ASSERT ((unsigned long) hsd.max_unref_got_dynindx
3827 == elf_hash_table (info)->dynsymcount);
3828 BFD_ASSERT (elf_hash_table (info)->dynsymcount - hsd.min_got_dynindx
3829 == g->global_gotno);
3830
3831 /* Now we know which dynamic symbol has the lowest dynamic symbol
3832 table index in the GOT. */
3833 htab->global_gotsym = hsd.low;
3834
3835 return TRUE;
3836 }
3837
3838 /* If H needs a GOT entry, assign it the highest available dynamic
3839 index. Otherwise, assign it the lowest available dynamic
3840 index. */
3841
3842 static bfd_boolean
3843 mips_elf_sort_hash_table_f (struct mips_elf_link_hash_entry *h, void *data)
3844 {
3845 struct mips_elf_hash_sort_data *hsd = data;
3846
3847 /* Symbols without dynamic symbol table entries aren't interesting
3848 at all. */
3849 if (h->root.dynindx == -1)
3850 return TRUE;
3851
3852 switch (h->global_got_area)
3853 {
3854 case GGA_NONE:
3855 h->root.dynindx = hsd->max_non_got_dynindx++;
3856 break;
3857
3858 case GGA_NORMAL:
3859 h->root.dynindx = --hsd->min_got_dynindx;
3860 hsd->low = (struct elf_link_hash_entry *) h;
3861 break;
3862
3863 case GGA_RELOC_ONLY:
3864 if (hsd->max_unref_got_dynindx == hsd->min_got_dynindx)
3865 hsd->low = (struct elf_link_hash_entry *) h;
3866 h->root.dynindx = hsd->max_unref_got_dynindx++;
3867 break;
3868 }
3869
3870 return TRUE;
3871 }
3872
3873 /* Record that input bfd ABFD requires a GOT entry like *LOOKUP
3874 (which is owned by the caller and shouldn't be added to the
3875 hash table directly). */
3876
3877 static bfd_boolean
3878 mips_elf_record_got_entry (struct bfd_link_info *info, bfd *abfd,
3879 struct mips_got_entry *lookup)
3880 {
3881 struct mips_elf_link_hash_table *htab;
3882 struct mips_got_entry *entry;
3883 struct mips_got_info *g;
3884 void **loc, **bfd_loc;
3885
3886 /* Make sure there's a slot for this entry in the master GOT. */
3887 htab = mips_elf_hash_table (info);
3888 g = htab->got_info;
3889 loc = htab_find_slot (g->got_entries, lookup, INSERT);
3890 if (!loc)
3891 return FALSE;
3892
3893 /* Populate the entry if it isn't already. */
3894 entry = (struct mips_got_entry *) *loc;
3895 if (!entry)
3896 {
3897 entry = (struct mips_got_entry *) bfd_alloc (abfd, sizeof (*entry));
3898 if (!entry)
3899 return FALSE;
3900
3901 lookup->tls_initialized = FALSE;
3902 lookup->gotidx = -1;
3903 *entry = *lookup;
3904 *loc = entry;
3905 }
3906
3907 /* Reuse the same GOT entry for the BFD's GOT. */
3908 g = mips_elf_bfd_got (abfd, TRUE);
3909 if (!g)
3910 return FALSE;
3911
3912 bfd_loc = htab_find_slot (g->got_entries, lookup, INSERT);
3913 if (!bfd_loc)
3914 return FALSE;
3915
3916 if (!*bfd_loc)
3917 *bfd_loc = entry;
3918 return TRUE;
3919 }
3920
3921 /* ABFD has a GOT relocation of type R_TYPE against H. Reserve a GOT
3922 entry for it. FOR_CALL is true if the caller is only interested in
3923 using the GOT entry for calls. */
3924
3925 static bfd_boolean
3926 mips_elf_record_global_got_symbol (struct elf_link_hash_entry *h,
3927 bfd *abfd, struct bfd_link_info *info,
3928 bfd_boolean for_call, int r_type)
3929 {
3930 struct mips_elf_link_hash_table *htab;
3931 struct mips_elf_link_hash_entry *hmips;
3932 struct mips_got_entry entry;
3933 unsigned char tls_type;
3934
3935 htab = mips_elf_hash_table (info);
3936 BFD_ASSERT (htab != NULL);
3937
3938 hmips = (struct mips_elf_link_hash_entry *) h;
3939 if (!for_call)
3940 hmips->got_only_for_calls = FALSE;
3941
3942 /* A global symbol in the GOT must also be in the dynamic symbol
3943 table. */
3944 if (h->dynindx == -1)
3945 {
3946 switch (ELF_ST_VISIBILITY (h->other))
3947 {
3948 case STV_INTERNAL:
3949 case STV_HIDDEN:
3950 _bfd_elf_link_hash_hide_symbol (info, h, TRUE);
3951 break;
3952 }
3953 if (!bfd_elf_link_record_dynamic_symbol (info, h))
3954 return FALSE;
3955 }
3956
3957 tls_type = mips_elf_reloc_tls_type (r_type);
3958 if (tls_type == GOT_TLS_NONE && hmips->global_got_area > GGA_NORMAL)
3959 hmips->global_got_area = GGA_NORMAL;
3960
3961 entry.abfd = abfd;
3962 entry.symndx = -1;
3963 entry.d.h = (struct mips_elf_link_hash_entry *) h;
3964 entry.tls_type = tls_type;
3965 return mips_elf_record_got_entry (info, abfd, &entry);
3966 }
3967
3968 /* ABFD has a GOT relocation of type R_TYPE against symbol SYMNDX + ADDEND,
3969 where SYMNDX is a local symbol. Reserve a GOT entry for it. */
3970
3971 static bfd_boolean
3972 mips_elf_record_local_got_symbol (bfd *abfd, long symndx, bfd_vma addend,
3973 struct bfd_link_info *info, int r_type)
3974 {
3975 struct mips_elf_link_hash_table *htab;
3976 struct mips_got_info *g;
3977 struct mips_got_entry entry;
3978
3979 htab = mips_elf_hash_table (info);
3980 BFD_ASSERT (htab != NULL);
3981
3982 g = htab->got_info;
3983 BFD_ASSERT (g != NULL);
3984
3985 entry.abfd = abfd;
3986 entry.symndx = symndx;
3987 entry.d.addend = addend;
3988 entry.tls_type = mips_elf_reloc_tls_type (r_type);
3989 return mips_elf_record_got_entry (info, abfd, &entry);
3990 }
3991
3992 /* Record that ABFD has a page relocation against SYMNDX + ADDEND.
3993 H is the symbol's hash table entry, or null if SYMNDX is local
3994 to ABFD. */
3995
3996 static bfd_boolean
3997 mips_elf_record_got_page_ref (struct bfd_link_info *info, bfd *abfd,
3998 long symndx, struct elf_link_hash_entry *h,
3999 bfd_signed_vma addend)
4000 {
4001 struct mips_elf_link_hash_table *htab;
4002 struct mips_got_info *g1, *g2;
4003 struct mips_got_page_ref lookup, *entry;
4004 void **loc, **bfd_loc;
4005
4006 htab = mips_elf_hash_table (info);
4007 BFD_ASSERT (htab != NULL);
4008
4009 g1 = htab->got_info;
4010 BFD_ASSERT (g1 != NULL);
4011
4012 if (h)
4013 {
4014 lookup.symndx = -1;
4015 lookup.u.h = (struct mips_elf_link_hash_entry *) h;
4016 }
4017 else
4018 {
4019 lookup.symndx = symndx;
4020 lookup.u.abfd = abfd;
4021 }
4022 lookup.addend = addend;
4023 loc = htab_find_slot (g1->got_page_refs, &lookup, INSERT);
4024 if (loc == NULL)
4025 return FALSE;
4026
4027 entry = (struct mips_got_page_ref *) *loc;
4028 if (!entry)
4029 {
4030 entry = bfd_alloc (abfd, sizeof (*entry));
4031 if (!entry)
4032 return FALSE;
4033
4034 *entry = lookup;
4035 *loc = entry;
4036 }
4037
4038 /* Add the same entry to the BFD's GOT. */
4039 g2 = mips_elf_bfd_got (abfd, TRUE);
4040 if (!g2)
4041 return FALSE;
4042
4043 bfd_loc = htab_find_slot (g2->got_page_refs, &lookup, INSERT);
4044 if (!bfd_loc)
4045 return FALSE;
4046
4047 if (!*bfd_loc)
4048 *bfd_loc = entry;
4049
4050 return TRUE;
4051 }
4052
4053 /* Add room for N relocations to the .rel(a).dyn section in ABFD. */
4054
4055 static void
4056 mips_elf_allocate_dynamic_relocations (bfd *abfd, struct bfd_link_info *info,
4057 unsigned int n)
4058 {
4059 asection *s;
4060 struct mips_elf_link_hash_table *htab;
4061
4062 htab = mips_elf_hash_table (info);
4063 BFD_ASSERT (htab != NULL);
4064
4065 s = mips_elf_rel_dyn_section (info, FALSE);
4066 BFD_ASSERT (s != NULL);
4067
4068 if (htab->is_vxworks)
4069 s->size += n * MIPS_ELF_RELA_SIZE (abfd);
4070 else
4071 {
4072 if (s->size == 0)
4073 {
4074 /* Make room for a null element. */
4075 s->size += MIPS_ELF_REL_SIZE (abfd);
4076 ++s->reloc_count;
4077 }
4078 s->size += n * MIPS_ELF_REL_SIZE (abfd);
4079 }
4080 }
4081 \f
4082 /* A htab_traverse callback for GOT entries, with DATA pointing to a
4083 mips_elf_traverse_got_arg structure. Count the number of GOT
4084 entries and TLS relocs. Set DATA->value to true if we need
4085 to resolve indirect or warning symbols and then recreate the GOT. */
4086
4087 static int
4088 mips_elf_check_recreate_got (void **entryp, void *data)
4089 {
4090 struct mips_got_entry *entry;
4091 struct mips_elf_traverse_got_arg *arg;
4092
4093 entry = (struct mips_got_entry *) *entryp;
4094 arg = (struct mips_elf_traverse_got_arg *) data;
4095 if (entry->abfd != NULL && entry->symndx == -1)
4096 {
4097 struct mips_elf_link_hash_entry *h;
4098
4099 h = entry->d.h;
4100 if (h->root.root.type == bfd_link_hash_indirect
4101 || h->root.root.type == bfd_link_hash_warning)
4102 {
4103 arg->value = TRUE;
4104 return 0;
4105 }
4106 }
4107 mips_elf_count_got_entry (arg->info, arg->g, entry);
4108 return 1;
4109 }
4110
4111 /* A htab_traverse callback for GOT entries, with DATA pointing to a
4112 mips_elf_traverse_got_arg structure. Add all entries to DATA->g,
4113 converting entries for indirect and warning symbols into entries
4114 for the target symbol. Set DATA->g to null on error. */
4115
4116 static int
4117 mips_elf_recreate_got (void **entryp, void *data)
4118 {
4119 struct mips_got_entry new_entry, *entry;
4120 struct mips_elf_traverse_got_arg *arg;
4121 void **slot;
4122
4123 entry = (struct mips_got_entry *) *entryp;
4124 arg = (struct mips_elf_traverse_got_arg *) data;
4125 if (entry->abfd != NULL
4126 && entry->symndx == -1
4127 && (entry->d.h->root.root.type == bfd_link_hash_indirect
4128 || entry->d.h->root.root.type == bfd_link_hash_warning))
4129 {
4130 struct mips_elf_link_hash_entry *h;
4131
4132 new_entry = *entry;
4133 entry = &new_entry;
4134 h = entry->d.h;
4135 do
4136 {
4137 BFD_ASSERT (h->global_got_area == GGA_NONE);
4138 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
4139 }
4140 while (h->root.root.type == bfd_link_hash_indirect
4141 || h->root.root.type == bfd_link_hash_warning);
4142 entry->d.h = h;
4143 }
4144 slot = htab_find_slot (arg->g->got_entries, entry, INSERT);
4145 if (slot == NULL)
4146 {
4147 arg->g = NULL;
4148 return 0;
4149 }
4150 if (*slot == NULL)
4151 {
4152 if (entry == &new_entry)
4153 {
4154 entry = bfd_alloc (entry->abfd, sizeof (*entry));
4155 if (!entry)
4156 {
4157 arg->g = NULL;
4158 return 0;
4159 }
4160 *entry = new_entry;
4161 }
4162 *slot = entry;
4163 mips_elf_count_got_entry (arg->info, arg->g, entry);
4164 }
4165 return 1;
4166 }
4167
4168 /* Return the maximum number of GOT page entries required for RANGE. */
4169
4170 static bfd_vma
4171 mips_elf_pages_for_range (const struct mips_got_page_range *range)
4172 {
4173 return (range->max_addend - range->min_addend + 0x1ffff) >> 16;
4174 }
4175
4176 /* Record that G requires a page entry that can reach SEC + ADDEND. */
4177
4178 static bfd_boolean
4179 mips_elf_record_got_page_entry (struct mips_elf_traverse_got_arg *arg,
4180 asection *sec, bfd_signed_vma addend)
4181 {
4182 struct mips_got_info *g = arg->g;
4183 struct mips_got_page_entry lookup, *entry;
4184 struct mips_got_page_range **range_ptr, *range;
4185 bfd_vma old_pages, new_pages;
4186 void **loc;
4187
4188 /* Find the mips_got_page_entry hash table entry for this section. */
4189 lookup.sec = sec;
4190 loc = htab_find_slot (g->got_page_entries, &lookup, INSERT);
4191 if (loc == NULL)
4192 return FALSE;
4193
4194 /* Create a mips_got_page_entry if this is the first time we've
4195 seen the section. */
4196 entry = (struct mips_got_page_entry *) *loc;
4197 if (!entry)
4198 {
4199 entry = bfd_zalloc (arg->info->output_bfd, sizeof (*entry));
4200 if (!entry)
4201 return FALSE;
4202
4203 entry->sec = sec;
4204 *loc = entry;
4205 }
4206
4207 /* Skip over ranges whose maximum extent cannot share a page entry
4208 with ADDEND. */
4209 range_ptr = &entry->ranges;
4210 while (*range_ptr && addend > (*range_ptr)->max_addend + 0xffff)
4211 range_ptr = &(*range_ptr)->next;
4212
4213 /* If we scanned to the end of the list, or found a range whose
4214 minimum extent cannot share a page entry with ADDEND, create
4215 a new singleton range. */
4216 range = *range_ptr;
4217 if (!range || addend < range->min_addend - 0xffff)
4218 {
4219 range = bfd_zalloc (arg->info->output_bfd, sizeof (*range));
4220 if (!range)
4221 return FALSE;
4222
4223 range->next = *range_ptr;
4224 range->min_addend = addend;
4225 range->max_addend = addend;
4226
4227 *range_ptr = range;
4228 entry->num_pages++;
4229 g->page_gotno++;
4230 return TRUE;
4231 }
4232
4233 /* Remember how many pages the old range contributed. */
4234 old_pages = mips_elf_pages_for_range (range);
4235
4236 /* Update the ranges. */
4237 if (addend < range->min_addend)
4238 range->min_addend = addend;
4239 else if (addend > range->max_addend)
4240 {
4241 if (range->next && addend >= range->next->min_addend - 0xffff)
4242 {
4243 old_pages += mips_elf_pages_for_range (range->next);
4244 range->max_addend = range->next->max_addend;
4245 range->next = range->next->next;
4246 }
4247 else
4248 range->max_addend = addend;
4249 }
4250
4251 /* Record any change in the total estimate. */
4252 new_pages = mips_elf_pages_for_range (range);
4253 if (old_pages != new_pages)
4254 {
4255 entry->num_pages += new_pages - old_pages;
4256 g->page_gotno += new_pages - old_pages;
4257 }
4258
4259 return TRUE;
4260 }
4261
4262 /* A htab_traverse callback for which *REFP points to a mips_got_page_ref
4263 and for which DATA points to a mips_elf_traverse_got_arg. Work out
4264 whether the page reference described by *REFP needs a GOT page entry,
4265 and record that entry in DATA->g if so. Set DATA->g to null on failure. */
4266
4267 static bfd_boolean
4268 mips_elf_resolve_got_page_ref (void **refp, void *data)
4269 {
4270 struct mips_got_page_ref *ref;
4271 struct mips_elf_traverse_got_arg *arg;
4272 struct mips_elf_link_hash_table *htab;
4273 asection *sec;
4274 bfd_vma addend;
4275
4276 ref = (struct mips_got_page_ref *) *refp;
4277 arg = (struct mips_elf_traverse_got_arg *) data;
4278 htab = mips_elf_hash_table (arg->info);
4279
4280 if (ref->symndx < 0)
4281 {
4282 struct mips_elf_link_hash_entry *h;
4283
4284 /* Global GOT_PAGEs decay to GOT_DISP and so don't need page entries. */
4285 h = ref->u.h;
4286 if (!SYMBOL_REFERENCES_LOCAL (arg->info, &h->root))
4287 return 1;
4288
4289 /* Ignore undefined symbols; we'll issue an error later if
4290 appropriate. */
4291 if (!((h->root.root.type == bfd_link_hash_defined
4292 || h->root.root.type == bfd_link_hash_defweak)
4293 && h->root.root.u.def.section))
4294 return 1;
4295
4296 sec = h->root.root.u.def.section;
4297 addend = h->root.root.u.def.value + ref->addend;
4298 }
4299 else
4300 {
4301 Elf_Internal_Sym *isym;
4302
4303 /* Read in the symbol. */
4304 isym = bfd_sym_from_r_symndx (&htab->sym_cache, ref->u.abfd,
4305 ref->symndx);
4306 if (isym == NULL)
4307 {
4308 arg->g = NULL;
4309 return 0;
4310 }
4311
4312 /* Get the associated input section. */
4313 sec = bfd_section_from_elf_index (ref->u.abfd, isym->st_shndx);
4314 if (sec == NULL)
4315 {
4316 arg->g = NULL;
4317 return 0;
4318 }
4319
4320 /* If this is a mergable section, work out the section and offset
4321 of the merged data. For section symbols, the addend specifies
4322 of the offset _of_ the first byte in the data, otherwise it
4323 specifies the offset _from_ the first byte. */
4324 if (sec->flags & SEC_MERGE)
4325 {
4326 void *secinfo;
4327
4328 secinfo = elf_section_data (sec)->sec_info;
4329 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
4330 addend = _bfd_merged_section_offset (ref->u.abfd, &sec, secinfo,
4331 isym->st_value + ref->addend);
4332 else
4333 addend = _bfd_merged_section_offset (ref->u.abfd, &sec, secinfo,
4334 isym->st_value) + ref->addend;
4335 }
4336 else
4337 addend = isym->st_value + ref->addend;
4338 }
4339 if (!mips_elf_record_got_page_entry (arg, sec, addend))
4340 {
4341 arg->g = NULL;
4342 return 0;
4343 }
4344 return 1;
4345 }
4346
4347 /* If any entries in G->got_entries are for indirect or warning symbols,
4348 replace them with entries for the target symbol. Convert g->got_page_refs
4349 into got_page_entry structures and estimate the number of page entries
4350 that they require. */
4351
4352 static bfd_boolean
4353 mips_elf_resolve_final_got_entries (struct bfd_link_info *info,
4354 struct mips_got_info *g)
4355 {
4356 struct mips_elf_traverse_got_arg tga;
4357 struct mips_got_info oldg;
4358
4359 oldg = *g;
4360
4361 tga.info = info;
4362 tga.g = g;
4363 tga.value = FALSE;
4364 htab_traverse (g->got_entries, mips_elf_check_recreate_got, &tga);
4365 if (tga.value)
4366 {
4367 *g = oldg;
4368 g->got_entries = htab_create (htab_size (oldg.got_entries),
4369 mips_elf_got_entry_hash,
4370 mips_elf_got_entry_eq, NULL);
4371 if (!g->got_entries)
4372 return FALSE;
4373
4374 htab_traverse (oldg.got_entries, mips_elf_recreate_got, &tga);
4375 if (!tga.g)
4376 return FALSE;
4377
4378 htab_delete (oldg.got_entries);
4379 }
4380
4381 g->got_page_entries = htab_try_create (1, mips_got_page_entry_hash,
4382 mips_got_page_entry_eq, NULL);
4383 if (g->got_page_entries == NULL)
4384 return FALSE;
4385
4386 tga.info = info;
4387 tga.g = g;
4388 htab_traverse (g->got_page_refs, mips_elf_resolve_got_page_ref, &tga);
4389
4390 return TRUE;
4391 }
4392
4393 /* Return true if a GOT entry for H should live in the local rather than
4394 global GOT area. */
4395
4396 static bfd_boolean
4397 mips_use_local_got_p (struct bfd_link_info *info,
4398 struct mips_elf_link_hash_entry *h)
4399 {
4400 /* Symbols that aren't in the dynamic symbol table must live in the
4401 local GOT. This includes symbols that are completely undefined
4402 and which therefore don't bind locally. We'll report undefined
4403 symbols later if appropriate. */
4404 if (h->root.dynindx == -1)
4405 return TRUE;
4406
4407 /* Symbols that bind locally can (and in the case of forced-local
4408 symbols, must) live in the local GOT. */
4409 if (h->got_only_for_calls
4410 ? SYMBOL_CALLS_LOCAL (info, &h->root)
4411 : SYMBOL_REFERENCES_LOCAL (info, &h->root))
4412 return TRUE;
4413
4414 /* If this is an executable that must provide a definition of the symbol,
4415 either though PLTs or copy relocations, then that address should go in
4416 the local rather than global GOT. */
4417 if (info->executable && h->has_static_relocs)
4418 return TRUE;
4419
4420 return FALSE;
4421 }
4422
4423 /* A mips_elf_link_hash_traverse callback for which DATA points to the
4424 link_info structure. Decide whether the hash entry needs an entry in
4425 the global part of the primary GOT, setting global_got_area accordingly.
4426 Count the number of global symbols that are in the primary GOT only
4427 because they have relocations against them (reloc_only_gotno). */
4428
4429 static int
4430 mips_elf_count_got_symbols (struct mips_elf_link_hash_entry *h, void *data)
4431 {
4432 struct bfd_link_info *info;
4433 struct mips_elf_link_hash_table *htab;
4434 struct mips_got_info *g;
4435
4436 info = (struct bfd_link_info *) data;
4437 htab = mips_elf_hash_table (info);
4438 g = htab->got_info;
4439 if (h->global_got_area != GGA_NONE)
4440 {
4441 /* Make a final decision about whether the symbol belongs in the
4442 local or global GOT. */
4443 if (mips_use_local_got_p (info, h))
4444 /* The symbol belongs in the local GOT. We no longer need this
4445 entry if it was only used for relocations; those relocations
4446 will be against the null or section symbol instead of H. */
4447 h->global_got_area = GGA_NONE;
4448 else if (htab->is_vxworks
4449 && h->got_only_for_calls
4450 && h->root.plt.plist->mips_offset != MINUS_ONE)
4451 /* On VxWorks, calls can refer directly to the .got.plt entry;
4452 they don't need entries in the regular GOT. .got.plt entries
4453 will be allocated by _bfd_mips_elf_adjust_dynamic_symbol. */
4454 h->global_got_area = GGA_NONE;
4455 else if (h->global_got_area == GGA_RELOC_ONLY)
4456 {
4457 g->reloc_only_gotno++;
4458 g->global_gotno++;
4459 }
4460 }
4461 return 1;
4462 }
4463 \f
4464 /* A htab_traverse callback for GOT entries. Add each one to the GOT
4465 given in mips_elf_traverse_got_arg DATA. Clear DATA->G on error. */
4466
4467 static int
4468 mips_elf_add_got_entry (void **entryp, void *data)
4469 {
4470 struct mips_got_entry *entry;
4471 struct mips_elf_traverse_got_arg *arg;
4472 void **slot;
4473
4474 entry = (struct mips_got_entry *) *entryp;
4475 arg = (struct mips_elf_traverse_got_arg *) data;
4476 slot = htab_find_slot (arg->g->got_entries, entry, INSERT);
4477 if (!slot)
4478 {
4479 arg->g = NULL;
4480 return 0;
4481 }
4482 if (!*slot)
4483 {
4484 *slot = entry;
4485 mips_elf_count_got_entry (arg->info, arg->g, entry);
4486 }
4487 return 1;
4488 }
4489
4490 /* A htab_traverse callback for GOT page entries. Add each one to the GOT
4491 given in mips_elf_traverse_got_arg DATA. Clear DATA->G on error. */
4492
4493 static int
4494 mips_elf_add_got_page_entry (void **entryp, void *data)
4495 {
4496 struct mips_got_page_entry *entry;
4497 struct mips_elf_traverse_got_arg *arg;
4498 void **slot;
4499
4500 entry = (struct mips_got_page_entry *) *entryp;
4501 arg = (struct mips_elf_traverse_got_arg *) data;
4502 slot = htab_find_slot (arg->g->got_page_entries, entry, INSERT);
4503 if (!slot)
4504 {
4505 arg->g = NULL;
4506 return 0;
4507 }
4508 if (!*slot)
4509 {
4510 *slot = entry;
4511 arg->g->page_gotno += entry->num_pages;
4512 }
4513 return 1;
4514 }
4515
4516 /* Consider merging FROM, which is ABFD's GOT, into TO. Return -1 if
4517 this would lead to overflow, 1 if they were merged successfully,
4518 and 0 if a merge failed due to lack of memory. (These values are chosen
4519 so that nonnegative return values can be returned by a htab_traverse
4520 callback.) */
4521
4522 static int
4523 mips_elf_merge_got_with (bfd *abfd, struct mips_got_info *from,
4524 struct mips_got_info *to,
4525 struct mips_elf_got_per_bfd_arg *arg)
4526 {
4527 struct mips_elf_traverse_got_arg tga;
4528 unsigned int estimate;
4529
4530 /* Work out how many page entries we would need for the combined GOT. */
4531 estimate = arg->max_pages;
4532 if (estimate >= from->page_gotno + to->page_gotno)
4533 estimate = from->page_gotno + to->page_gotno;
4534
4535 /* And conservatively estimate how many local and TLS entries
4536 would be needed. */
4537 estimate += from->local_gotno + to->local_gotno;
4538 estimate += from->tls_gotno + to->tls_gotno;
4539
4540 /* If we're merging with the primary got, any TLS relocations will
4541 come after the full set of global entries. Otherwise estimate those
4542 conservatively as well. */
4543 if (to == arg->primary && from->tls_gotno + to->tls_gotno)
4544 estimate += arg->global_count;
4545 else
4546 estimate += from->global_gotno + to->global_gotno;
4547
4548 /* Bail out if the combined GOT might be too big. */
4549 if (estimate > arg->max_count)
4550 return -1;
4551
4552 /* Transfer the bfd's got information from FROM to TO. */
4553 tga.info = arg->info;
4554 tga.g = to;
4555 htab_traverse (from->got_entries, mips_elf_add_got_entry, &tga);
4556 if (!tga.g)
4557 return 0;
4558
4559 htab_traverse (from->got_page_entries, mips_elf_add_got_page_entry, &tga);
4560 if (!tga.g)
4561 return 0;
4562
4563 mips_elf_replace_bfd_got (abfd, to);
4564 return 1;
4565 }
4566
4567 /* Attempt to merge GOT G, which belongs to ABFD. Try to use as much
4568 as possible of the primary got, since it doesn't require explicit
4569 dynamic relocations, but don't use bfds that would reference global
4570 symbols out of the addressable range. Failing the primary got,
4571 attempt to merge with the current got, or finish the current got
4572 and then make make the new got current. */
4573
4574 static bfd_boolean
4575 mips_elf_merge_got (bfd *abfd, struct mips_got_info *g,
4576 struct mips_elf_got_per_bfd_arg *arg)
4577 {
4578 unsigned int estimate;
4579 int result;
4580
4581 if (!mips_elf_resolve_final_got_entries (arg->info, g))
4582 return FALSE;
4583
4584 /* Work out the number of page, local and TLS entries. */
4585 estimate = arg->max_pages;
4586 if (estimate > g->page_gotno)
4587 estimate = g->page_gotno;
4588 estimate += g->local_gotno + g->tls_gotno;
4589
4590 /* We place TLS GOT entries after both locals and globals. The globals
4591 for the primary GOT may overflow the normal GOT size limit, so be
4592 sure not to merge a GOT which requires TLS with the primary GOT in that
4593 case. This doesn't affect non-primary GOTs. */
4594 estimate += (g->tls_gotno > 0 ? arg->global_count : g->global_gotno);
4595
4596 if (estimate <= arg->max_count)
4597 {
4598 /* If we don't have a primary GOT, use it as
4599 a starting point for the primary GOT. */
4600 if (!arg->primary)
4601 {
4602 arg->primary = g;
4603 return TRUE;
4604 }
4605
4606 /* Try merging with the primary GOT. */
4607 result = mips_elf_merge_got_with (abfd, g, arg->primary, arg);
4608 if (result >= 0)
4609 return result;
4610 }
4611
4612 /* If we can merge with the last-created got, do it. */
4613 if (arg->current)
4614 {
4615 result = mips_elf_merge_got_with (abfd, g, arg->current, arg);
4616 if (result >= 0)
4617 return result;
4618 }
4619
4620 /* Well, we couldn't merge, so create a new GOT. Don't check if it
4621 fits; if it turns out that it doesn't, we'll get relocation
4622 overflows anyway. */
4623 g->next = arg->current;
4624 arg->current = g;
4625
4626 return TRUE;
4627 }
4628
4629 /* ENTRYP is a hash table entry for a mips_got_entry. Set its gotidx
4630 to GOTIDX, duplicating the entry if it has already been assigned
4631 an index in a different GOT. */
4632
4633 static bfd_boolean
4634 mips_elf_set_gotidx (void **entryp, long gotidx)
4635 {
4636 struct mips_got_entry *entry;
4637
4638 entry = (struct mips_got_entry *) *entryp;
4639 if (entry->gotidx > 0)
4640 {
4641 struct mips_got_entry *new_entry;
4642
4643 new_entry = bfd_alloc (entry->abfd, sizeof (*entry));
4644 if (!new_entry)
4645 return FALSE;
4646
4647 *new_entry = *entry;
4648 *entryp = new_entry;
4649 entry = new_entry;
4650 }
4651 entry->gotidx = gotidx;
4652 return TRUE;
4653 }
4654
4655 /* Set the TLS GOT index for the GOT entry in ENTRYP. DATA points to a
4656 mips_elf_traverse_got_arg in which DATA->value is the size of one
4657 GOT entry. Set DATA->g to null on failure. */
4658
4659 static int
4660 mips_elf_initialize_tls_index (void **entryp, void *data)
4661 {
4662 struct mips_got_entry *entry;
4663 struct mips_elf_traverse_got_arg *arg;
4664
4665 /* We're only interested in TLS symbols. */
4666 entry = (struct mips_got_entry *) *entryp;
4667 if (entry->tls_type == GOT_TLS_NONE)
4668 return 1;
4669
4670 arg = (struct mips_elf_traverse_got_arg *) data;
4671 if (!mips_elf_set_gotidx (entryp, arg->value * arg->g->tls_assigned_gotno))
4672 {
4673 arg->g = NULL;
4674 return 0;
4675 }
4676
4677 /* Account for the entries we've just allocated. */
4678 arg->g->tls_assigned_gotno += mips_tls_got_entries (entry->tls_type);
4679 return 1;
4680 }
4681
4682 /* A htab_traverse callback for GOT entries, where DATA points to a
4683 mips_elf_traverse_got_arg. Set the global_got_area of each global
4684 symbol to DATA->value. */
4685
4686 static int
4687 mips_elf_set_global_got_area (void **entryp, void *data)
4688 {
4689 struct mips_got_entry *entry;
4690 struct mips_elf_traverse_got_arg *arg;
4691
4692 entry = (struct mips_got_entry *) *entryp;
4693 arg = (struct mips_elf_traverse_got_arg *) data;
4694 if (entry->abfd != NULL
4695 && entry->symndx == -1
4696 && entry->d.h->global_got_area != GGA_NONE)
4697 entry->d.h->global_got_area = arg->value;
4698 return 1;
4699 }
4700
4701 /* A htab_traverse callback for secondary GOT entries, where DATA points
4702 to a mips_elf_traverse_got_arg. Assign GOT indices to global entries
4703 and record the number of relocations they require. DATA->value is
4704 the size of one GOT entry. Set DATA->g to null on failure. */
4705
4706 static int
4707 mips_elf_set_global_gotidx (void **entryp, void *data)
4708 {
4709 struct mips_got_entry *entry;
4710 struct mips_elf_traverse_got_arg *arg;
4711
4712 entry = (struct mips_got_entry *) *entryp;
4713 arg = (struct mips_elf_traverse_got_arg *) data;
4714 if (entry->abfd != NULL
4715 && entry->symndx == -1
4716 && entry->d.h->global_got_area != GGA_NONE)
4717 {
4718 if (!mips_elf_set_gotidx (entryp, arg->value * arg->g->assigned_low_gotno))
4719 {
4720 arg->g = NULL;
4721 return 0;
4722 }
4723 arg->g->assigned_low_gotno += 1;
4724
4725 if (arg->info->shared
4726 || (elf_hash_table (arg->info)->dynamic_sections_created
4727 && entry->d.h->root.def_dynamic
4728 && !entry->d.h->root.def_regular))
4729 arg->g->relocs += 1;
4730 }
4731
4732 return 1;
4733 }
4734
4735 /* A htab_traverse callback for GOT entries for which DATA is the
4736 bfd_link_info. Forbid any global symbols from having traditional
4737 lazy-binding stubs. */
4738
4739 static int
4740 mips_elf_forbid_lazy_stubs (void **entryp, void *data)
4741 {
4742 struct bfd_link_info *info;
4743 struct mips_elf_link_hash_table *htab;
4744 struct mips_got_entry *entry;
4745
4746 entry = (struct mips_got_entry *) *entryp;
4747 info = (struct bfd_link_info *) data;
4748 htab = mips_elf_hash_table (info);
4749 BFD_ASSERT (htab != NULL);
4750
4751 if (entry->abfd != NULL
4752 && entry->symndx == -1
4753 && entry->d.h->needs_lazy_stub)
4754 {
4755 entry->d.h->needs_lazy_stub = FALSE;
4756 htab->lazy_stub_count--;
4757 }
4758
4759 return 1;
4760 }
4761
4762 /* Return the offset of an input bfd IBFD's GOT from the beginning of
4763 the primary GOT. */
4764 static bfd_vma
4765 mips_elf_adjust_gp (bfd *abfd, struct mips_got_info *g, bfd *ibfd)
4766 {
4767 if (!g->next)
4768 return 0;
4769
4770 g = mips_elf_bfd_got (ibfd, FALSE);
4771 if (! g)
4772 return 0;
4773
4774 BFD_ASSERT (g->next);
4775
4776 g = g->next;
4777
4778 return (g->local_gotno + g->global_gotno + g->tls_gotno)
4779 * MIPS_ELF_GOT_SIZE (abfd);
4780 }
4781
4782 /* Turn a single GOT that is too big for 16-bit addressing into
4783 a sequence of GOTs, each one 16-bit addressable. */
4784
4785 static bfd_boolean
4786 mips_elf_multi_got (bfd *abfd, struct bfd_link_info *info,
4787 asection *got, bfd_size_type pages)
4788 {
4789 struct mips_elf_link_hash_table *htab;
4790 struct mips_elf_got_per_bfd_arg got_per_bfd_arg;
4791 struct mips_elf_traverse_got_arg tga;
4792 struct mips_got_info *g, *gg;
4793 unsigned int assign, needed_relocs;
4794 bfd *dynobj, *ibfd;
4795
4796 dynobj = elf_hash_table (info)->dynobj;
4797 htab = mips_elf_hash_table (info);
4798 BFD_ASSERT (htab != NULL);
4799
4800 g = htab->got_info;
4801
4802 got_per_bfd_arg.obfd = abfd;
4803 got_per_bfd_arg.info = info;
4804 got_per_bfd_arg.current = NULL;
4805 got_per_bfd_arg.primary = NULL;
4806 got_per_bfd_arg.max_count = ((MIPS_ELF_GOT_MAX_SIZE (info)
4807 / MIPS_ELF_GOT_SIZE (abfd))
4808 - htab->reserved_gotno);
4809 got_per_bfd_arg.max_pages = pages;
4810 /* The number of globals that will be included in the primary GOT.
4811 See the calls to mips_elf_set_global_got_area below for more
4812 information. */
4813 got_per_bfd_arg.global_count = g->global_gotno;
4814
4815 /* Try to merge the GOTs of input bfds together, as long as they
4816 don't seem to exceed the maximum GOT size, choosing one of them
4817 to be the primary GOT. */
4818 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
4819 {
4820 gg = mips_elf_bfd_got (ibfd, FALSE);
4821 if (gg && !mips_elf_merge_got (ibfd, gg, &got_per_bfd_arg))
4822 return FALSE;
4823 }
4824
4825 /* If we do not find any suitable primary GOT, create an empty one. */
4826 if (got_per_bfd_arg.primary == NULL)
4827 g->next = mips_elf_create_got_info (abfd);
4828 else
4829 g->next = got_per_bfd_arg.primary;
4830 g->next->next = got_per_bfd_arg.current;
4831
4832 /* GG is now the master GOT, and G is the primary GOT. */
4833 gg = g;
4834 g = g->next;
4835
4836 /* Map the output bfd to the primary got. That's what we're going
4837 to use for bfds that use GOT16 or GOT_PAGE relocations that we
4838 didn't mark in check_relocs, and we want a quick way to find it.
4839 We can't just use gg->next because we're going to reverse the
4840 list. */
4841 mips_elf_replace_bfd_got (abfd, g);
4842
4843 /* Every symbol that is referenced in a dynamic relocation must be
4844 present in the primary GOT, so arrange for them to appear after
4845 those that are actually referenced. */
4846 gg->reloc_only_gotno = gg->global_gotno - g->global_gotno;
4847 g->global_gotno = gg->global_gotno;
4848
4849 tga.info = info;
4850 tga.value = GGA_RELOC_ONLY;
4851 htab_traverse (gg->got_entries, mips_elf_set_global_got_area, &tga);
4852 tga.value = GGA_NORMAL;
4853 htab_traverse (g->got_entries, mips_elf_set_global_got_area, &tga);
4854
4855 /* Now go through the GOTs assigning them offset ranges.
4856 [assigned_low_gotno, local_gotno[ will be set to the range of local
4857 entries in each GOT. We can then compute the end of a GOT by
4858 adding local_gotno to global_gotno. We reverse the list and make
4859 it circular since then we'll be able to quickly compute the
4860 beginning of a GOT, by computing the end of its predecessor. To
4861 avoid special cases for the primary GOT, while still preserving
4862 assertions that are valid for both single- and multi-got links,
4863 we arrange for the main got struct to have the right number of
4864 global entries, but set its local_gotno such that the initial
4865 offset of the primary GOT is zero. Remember that the primary GOT
4866 will become the last item in the circular linked list, so it
4867 points back to the master GOT. */
4868 gg->local_gotno = -g->global_gotno;
4869 gg->global_gotno = g->global_gotno;
4870 gg->tls_gotno = 0;
4871 assign = 0;
4872 gg->next = gg;
4873
4874 do
4875 {
4876 struct mips_got_info *gn;
4877
4878 assign += htab->reserved_gotno;
4879 g->assigned_low_gotno = assign;
4880 g->local_gotno += assign;
4881 g->local_gotno += (pages < g->page_gotno ? pages : g->page_gotno);
4882 g->assigned_high_gotno = g->local_gotno - 1;
4883 assign = g->local_gotno + g->global_gotno + g->tls_gotno;
4884
4885 /* Take g out of the direct list, and push it onto the reversed
4886 list that gg points to. g->next is guaranteed to be nonnull after
4887 this operation, as required by mips_elf_initialize_tls_index. */
4888 gn = g->next;
4889 g->next = gg->next;
4890 gg->next = g;
4891
4892 /* Set up any TLS entries. We always place the TLS entries after
4893 all non-TLS entries. */
4894 g->tls_assigned_gotno = g->local_gotno + g->global_gotno;
4895 tga.g = g;
4896 tga.value = MIPS_ELF_GOT_SIZE (abfd);
4897 htab_traverse (g->got_entries, mips_elf_initialize_tls_index, &tga);
4898 if (!tga.g)
4899 return FALSE;
4900 BFD_ASSERT (g->tls_assigned_gotno == assign);
4901
4902 /* Move onto the next GOT. It will be a secondary GOT if nonull. */
4903 g = gn;
4904
4905 /* Forbid global symbols in every non-primary GOT from having
4906 lazy-binding stubs. */
4907 if (g)
4908 htab_traverse (g->got_entries, mips_elf_forbid_lazy_stubs, info);
4909 }
4910 while (g);
4911
4912 got->size = assign * MIPS_ELF_GOT_SIZE (abfd);
4913
4914 needed_relocs = 0;
4915 for (g = gg->next; g && g->next != gg; g = g->next)
4916 {
4917 unsigned int save_assign;
4918
4919 /* Assign offsets to global GOT entries and count how many
4920 relocations they need. */
4921 save_assign = g->assigned_low_gotno;
4922 g->assigned_low_gotno = g->local_gotno;
4923 tga.info = info;
4924 tga.value = MIPS_ELF_GOT_SIZE (abfd);
4925 tga.g = g;
4926 htab_traverse (g->got_entries, mips_elf_set_global_gotidx, &tga);
4927 if (!tga.g)
4928 return FALSE;
4929 BFD_ASSERT (g->assigned_low_gotno == g->local_gotno + g->global_gotno);
4930 g->assigned_low_gotno = save_assign;
4931
4932 if (info->shared)
4933 {
4934 g->relocs += g->local_gotno - g->assigned_low_gotno;
4935 BFD_ASSERT (g->assigned_low_gotno == g->next->local_gotno
4936 + g->next->global_gotno
4937 + g->next->tls_gotno
4938 + htab->reserved_gotno);
4939 }
4940 needed_relocs += g->relocs;
4941 }
4942 needed_relocs += g->relocs;
4943
4944 if (needed_relocs)
4945 mips_elf_allocate_dynamic_relocations (dynobj, info,
4946 needed_relocs);
4947
4948 return TRUE;
4949 }
4950
4951 \f
4952 /* Returns the first relocation of type r_type found, beginning with
4953 RELOCATION. RELEND is one-past-the-end of the relocation table. */
4954
4955 static const Elf_Internal_Rela *
4956 mips_elf_next_relocation (bfd *abfd ATTRIBUTE_UNUSED, unsigned int r_type,
4957 const Elf_Internal_Rela *relocation,
4958 const Elf_Internal_Rela *relend)
4959 {
4960 unsigned long r_symndx = ELF_R_SYM (abfd, relocation->r_info);
4961
4962 while (relocation < relend)
4963 {
4964 if (ELF_R_TYPE (abfd, relocation->r_info) == r_type
4965 && ELF_R_SYM (abfd, relocation->r_info) == r_symndx)
4966 return relocation;
4967
4968 ++relocation;
4969 }
4970
4971 /* We didn't find it. */
4972 return NULL;
4973 }
4974
4975 /* Return whether an input relocation is against a local symbol. */
4976
4977 static bfd_boolean
4978 mips_elf_local_relocation_p (bfd *input_bfd,
4979 const Elf_Internal_Rela *relocation,
4980 asection **local_sections)
4981 {
4982 unsigned long r_symndx;
4983 Elf_Internal_Shdr *symtab_hdr;
4984 size_t extsymoff;
4985
4986 r_symndx = ELF_R_SYM (input_bfd, relocation->r_info);
4987 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
4988 extsymoff = (elf_bad_symtab (input_bfd)) ? 0 : symtab_hdr->sh_info;
4989
4990 if (r_symndx < extsymoff)
4991 return TRUE;
4992 if (elf_bad_symtab (input_bfd) && local_sections[r_symndx] != NULL)
4993 return TRUE;
4994
4995 return FALSE;
4996 }
4997 \f
4998 /* Sign-extend VALUE, which has the indicated number of BITS. */
4999
5000 bfd_vma
5001 _bfd_mips_elf_sign_extend (bfd_vma value, int bits)
5002 {
5003 if (value & ((bfd_vma) 1 << (bits - 1)))
5004 /* VALUE is negative. */
5005 value |= ((bfd_vma) - 1) << bits;
5006
5007 return value;
5008 }
5009
5010 /* Return non-zero if the indicated VALUE has overflowed the maximum
5011 range expressible by a signed number with the indicated number of
5012 BITS. */
5013
5014 static bfd_boolean
5015 mips_elf_overflow_p (bfd_vma value, int bits)
5016 {
5017 bfd_signed_vma svalue = (bfd_signed_vma) value;
5018
5019 if (svalue > (1 << (bits - 1)) - 1)
5020 /* The value is too big. */
5021 return TRUE;
5022 else if (svalue < -(1 << (bits - 1)))
5023 /* The value is too small. */
5024 return TRUE;
5025
5026 /* All is well. */
5027 return FALSE;
5028 }
5029
5030 /* Calculate the %high function. */
5031
5032 static bfd_vma
5033 mips_elf_high (bfd_vma value)
5034 {
5035 return ((value + (bfd_vma) 0x8000) >> 16) & 0xffff;
5036 }
5037
5038 /* Calculate the %higher function. */
5039
5040 static bfd_vma
5041 mips_elf_higher (bfd_vma value ATTRIBUTE_UNUSED)
5042 {
5043 #ifdef BFD64
5044 return ((value + (bfd_vma) 0x80008000) >> 32) & 0xffff;
5045 #else
5046 abort ();
5047 return MINUS_ONE;
5048 #endif
5049 }
5050
5051 /* Calculate the %highest function. */
5052
5053 static bfd_vma
5054 mips_elf_highest (bfd_vma value ATTRIBUTE_UNUSED)
5055 {
5056 #ifdef BFD64
5057 return ((value + (((bfd_vma) 0x8000 << 32) | 0x80008000)) >> 48) & 0xffff;
5058 #else
5059 abort ();
5060 return MINUS_ONE;
5061 #endif
5062 }
5063 \f
5064 /* Create the .compact_rel section. */
5065
5066 static bfd_boolean
5067 mips_elf_create_compact_rel_section
5068 (bfd *abfd, struct bfd_link_info *info ATTRIBUTE_UNUSED)
5069 {
5070 flagword flags;
5071 register asection *s;
5072
5073 if (bfd_get_linker_section (abfd, ".compact_rel") == NULL)
5074 {
5075 flags = (SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED
5076 | SEC_READONLY);
5077
5078 s = bfd_make_section_anyway_with_flags (abfd, ".compact_rel", flags);
5079 if (s == NULL
5080 || ! bfd_set_section_alignment (abfd, s,
5081 MIPS_ELF_LOG_FILE_ALIGN (abfd)))
5082 return FALSE;
5083
5084 s->size = sizeof (Elf32_External_compact_rel);
5085 }
5086
5087 return TRUE;
5088 }
5089
5090 /* Create the .got section to hold the global offset table. */
5091
5092 static bfd_boolean
5093 mips_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
5094 {
5095 flagword flags;
5096 register asection *s;
5097 struct elf_link_hash_entry *h;
5098 struct bfd_link_hash_entry *bh;
5099 struct mips_elf_link_hash_table *htab;
5100
5101 htab = mips_elf_hash_table (info);
5102 BFD_ASSERT (htab != NULL);
5103
5104 /* This function may be called more than once. */
5105 if (htab->sgot)
5106 return TRUE;
5107
5108 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
5109 | SEC_LINKER_CREATED);
5110
5111 /* We have to use an alignment of 2**4 here because this is hardcoded
5112 in the function stub generation and in the linker script. */
5113 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
5114 if (s == NULL
5115 || ! bfd_set_section_alignment (abfd, s, 4))
5116 return FALSE;
5117 htab->sgot = s;
5118
5119 /* Define the symbol _GLOBAL_OFFSET_TABLE_. We don't do this in the
5120 linker script because we don't want to define the symbol if we
5121 are not creating a global offset table. */
5122 bh = NULL;
5123 if (! (_bfd_generic_link_add_one_symbol
5124 (info, abfd, "_GLOBAL_OFFSET_TABLE_", BSF_GLOBAL, s,
5125 0, NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
5126 return FALSE;
5127
5128 h = (struct elf_link_hash_entry *) bh;
5129 h->non_elf = 0;
5130 h->def_regular = 1;
5131 h->type = STT_OBJECT;
5132 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
5133 elf_hash_table (info)->hgot = h;
5134
5135 if (info->shared
5136 && ! bfd_elf_link_record_dynamic_symbol (info, h))
5137 return FALSE;
5138
5139 htab->got_info = mips_elf_create_got_info (abfd);
5140 mips_elf_section_data (s)->elf.this_hdr.sh_flags
5141 |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL;
5142
5143 /* We also need a .got.plt section when generating PLTs. */
5144 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt",
5145 SEC_ALLOC | SEC_LOAD
5146 | SEC_HAS_CONTENTS
5147 | SEC_IN_MEMORY
5148 | SEC_LINKER_CREATED);
5149 if (s == NULL)
5150 return FALSE;
5151 htab->sgotplt = s;
5152
5153 return TRUE;
5154 }
5155 \f
5156 /* Return true if H refers to the special VxWorks __GOTT_BASE__ or
5157 __GOTT_INDEX__ symbols. These symbols are only special for
5158 shared objects; they are not used in executables. */
5159
5160 static bfd_boolean
5161 is_gott_symbol (struct bfd_link_info *info, struct elf_link_hash_entry *h)
5162 {
5163 return (mips_elf_hash_table (info)->is_vxworks
5164 && info->shared
5165 && (strcmp (h->root.root.string, "__GOTT_BASE__") == 0
5166 || strcmp (h->root.root.string, "__GOTT_INDEX__") == 0));
5167 }
5168
5169 /* Return TRUE if a relocation of type R_TYPE from INPUT_BFD might
5170 require an la25 stub. See also mips_elf_local_pic_function_p,
5171 which determines whether the destination function ever requires a
5172 stub. */
5173
5174 static bfd_boolean
5175 mips_elf_relocation_needs_la25_stub (bfd *input_bfd, int r_type,
5176 bfd_boolean target_is_16_bit_code_p)
5177 {
5178 /* We specifically ignore branches and jumps from EF_PIC objects,
5179 where the onus is on the compiler or programmer to perform any
5180 necessary initialization of $25. Sometimes such initialization
5181 is unnecessary; for example, -mno-shared functions do not use
5182 the incoming value of $25, and may therefore be called directly. */
5183 if (PIC_OBJECT_P (input_bfd))
5184 return FALSE;
5185
5186 switch (r_type)
5187 {
5188 case R_MIPS_26:
5189 case R_MIPS_PC16:
5190 case R_MIPS_PC21_S2:
5191 case R_MIPS_PC26_S2:
5192 case R_MICROMIPS_26_S1:
5193 case R_MICROMIPS_PC7_S1:
5194 case R_MICROMIPS_PC10_S1:
5195 case R_MICROMIPS_PC16_S1:
5196 case R_MICROMIPS_PC23_S2:
5197 return TRUE;
5198
5199 case R_MIPS16_26:
5200 return !target_is_16_bit_code_p;
5201
5202 default:
5203 return FALSE;
5204 }
5205 }
5206 \f
5207 /* Calculate the value produced by the RELOCATION (which comes from
5208 the INPUT_BFD). The ADDEND is the addend to use for this
5209 RELOCATION; RELOCATION->R_ADDEND is ignored.
5210
5211 The result of the relocation calculation is stored in VALUEP.
5212 On exit, set *CROSS_MODE_JUMP_P to true if the relocation field
5213 is a MIPS16 or microMIPS jump to standard MIPS code, or vice versa.
5214
5215 This function returns bfd_reloc_continue if the caller need take no
5216 further action regarding this relocation, bfd_reloc_notsupported if
5217 something goes dramatically wrong, bfd_reloc_overflow if an
5218 overflow occurs, and bfd_reloc_ok to indicate success. */
5219
5220 static bfd_reloc_status_type
5221 mips_elf_calculate_relocation (bfd *abfd, bfd *input_bfd,
5222 asection *input_section,
5223 struct bfd_link_info *info,
5224 const Elf_Internal_Rela *relocation,
5225 bfd_vma addend, reloc_howto_type *howto,
5226 Elf_Internal_Sym *local_syms,
5227 asection **local_sections, bfd_vma *valuep,
5228 const char **namep,
5229 bfd_boolean *cross_mode_jump_p,
5230 bfd_boolean save_addend)
5231 {
5232 /* The eventual value we will return. */
5233 bfd_vma value;
5234 /* The address of the symbol against which the relocation is
5235 occurring. */
5236 bfd_vma symbol = 0;
5237 /* The final GP value to be used for the relocatable, executable, or
5238 shared object file being produced. */
5239 bfd_vma gp;
5240 /* The place (section offset or address) of the storage unit being
5241 relocated. */
5242 bfd_vma p;
5243 /* The value of GP used to create the relocatable object. */
5244 bfd_vma gp0;
5245 /* The offset into the global offset table at which the address of
5246 the relocation entry symbol, adjusted by the addend, resides
5247 during execution. */
5248 bfd_vma g = MINUS_ONE;
5249 /* The section in which the symbol referenced by the relocation is
5250 located. */
5251 asection *sec = NULL;
5252 struct mips_elf_link_hash_entry *h = NULL;
5253 /* TRUE if the symbol referred to by this relocation is a local
5254 symbol. */
5255 bfd_boolean local_p, was_local_p;
5256 /* TRUE if the symbol referred to by this relocation is "_gp_disp". */
5257 bfd_boolean gp_disp_p = FALSE;
5258 /* TRUE if the symbol referred to by this relocation is
5259 "__gnu_local_gp". */
5260 bfd_boolean gnu_local_gp_p = FALSE;
5261 Elf_Internal_Shdr *symtab_hdr;
5262 size_t extsymoff;
5263 unsigned long r_symndx;
5264 int r_type;
5265 /* TRUE if overflow occurred during the calculation of the
5266 relocation value. */
5267 bfd_boolean overflowed_p;
5268 /* TRUE if this relocation refers to a MIPS16 function. */
5269 bfd_boolean target_is_16_bit_code_p = FALSE;
5270 bfd_boolean target_is_micromips_code_p = FALSE;
5271 struct mips_elf_link_hash_table *htab;
5272 bfd *dynobj;
5273
5274 dynobj = elf_hash_table (info)->dynobj;
5275 htab = mips_elf_hash_table (info);
5276 BFD_ASSERT (htab != NULL);
5277
5278 /* Parse the relocation. */
5279 r_symndx = ELF_R_SYM (input_bfd, relocation->r_info);
5280 r_type = ELF_R_TYPE (input_bfd, relocation->r_info);
5281 p = (input_section->output_section->vma
5282 + input_section->output_offset
5283 + relocation->r_offset);
5284
5285 /* Assume that there will be no overflow. */
5286 overflowed_p = FALSE;
5287
5288 /* Figure out whether or not the symbol is local, and get the offset
5289 used in the array of hash table entries. */
5290 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
5291 local_p = mips_elf_local_relocation_p (input_bfd, relocation,
5292 local_sections);
5293 was_local_p = local_p;
5294 if (! elf_bad_symtab (input_bfd))
5295 extsymoff = symtab_hdr->sh_info;
5296 else
5297 {
5298 /* The symbol table does not follow the rule that local symbols
5299 must come before globals. */
5300 extsymoff = 0;
5301 }
5302
5303 /* Figure out the value of the symbol. */
5304 if (local_p)
5305 {
5306 Elf_Internal_Sym *sym;
5307
5308 sym = local_syms + r_symndx;
5309 sec = local_sections[r_symndx];
5310
5311 symbol = sec->output_section->vma + sec->output_offset;
5312 if (ELF_ST_TYPE (sym->st_info) != STT_SECTION
5313 || (sec->flags & SEC_MERGE))
5314 symbol += sym->st_value;
5315 if ((sec->flags & SEC_MERGE)
5316 && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
5317 {
5318 addend = _bfd_elf_rel_local_sym (abfd, sym, &sec, addend);
5319 addend -= symbol;
5320 addend += sec->output_section->vma + sec->output_offset;
5321 }
5322
5323 /* MIPS16/microMIPS text labels should be treated as odd. */
5324 if (ELF_ST_IS_COMPRESSED (sym->st_other))
5325 ++symbol;
5326
5327 /* Record the name of this symbol, for our caller. */
5328 *namep = bfd_elf_string_from_elf_section (input_bfd,
5329 symtab_hdr->sh_link,
5330 sym->st_name);
5331 if (*namep == '\0')
5332 *namep = bfd_section_name (input_bfd, sec);
5333
5334 target_is_16_bit_code_p = ELF_ST_IS_MIPS16 (sym->st_other);
5335 target_is_micromips_code_p = ELF_ST_IS_MICROMIPS (sym->st_other);
5336 }
5337 else
5338 {
5339 /* ??? Could we use RELOC_FOR_GLOBAL_SYMBOL here ? */
5340
5341 /* For global symbols we look up the symbol in the hash-table. */
5342 h = ((struct mips_elf_link_hash_entry *)
5343 elf_sym_hashes (input_bfd) [r_symndx - extsymoff]);
5344 /* Find the real hash-table entry for this symbol. */
5345 while (h->root.root.type == bfd_link_hash_indirect
5346 || h->root.root.type == bfd_link_hash_warning)
5347 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
5348
5349 /* Record the name of this symbol, for our caller. */
5350 *namep = h->root.root.root.string;
5351
5352 /* See if this is the special _gp_disp symbol. Note that such a
5353 symbol must always be a global symbol. */
5354 if (strcmp (*namep, "_gp_disp") == 0
5355 && ! NEWABI_P (input_bfd))
5356 {
5357 /* Relocations against _gp_disp are permitted only with
5358 R_MIPS_HI16 and R_MIPS_LO16 relocations. */
5359 if (!hi16_reloc_p (r_type) && !lo16_reloc_p (r_type))
5360 return bfd_reloc_notsupported;
5361
5362 gp_disp_p = TRUE;
5363 }
5364 /* See if this is the special _gp symbol. Note that such a
5365 symbol must always be a global symbol. */
5366 else if (strcmp (*namep, "__gnu_local_gp") == 0)
5367 gnu_local_gp_p = TRUE;
5368
5369
5370 /* If this symbol is defined, calculate its address. Note that
5371 _gp_disp is a magic symbol, always implicitly defined by the
5372 linker, so it's inappropriate to check to see whether or not
5373 its defined. */
5374 else if ((h->root.root.type == bfd_link_hash_defined
5375 || h->root.root.type == bfd_link_hash_defweak)
5376 && h->root.root.u.def.section)
5377 {
5378 sec = h->root.root.u.def.section;
5379 if (sec->output_section)
5380 symbol = (h->root.root.u.def.value
5381 + sec->output_section->vma
5382 + sec->output_offset);
5383 else
5384 symbol = h->root.root.u.def.value;
5385 }
5386 else if (h->root.root.type == bfd_link_hash_undefweak)
5387 /* We allow relocations against undefined weak symbols, giving
5388 it the value zero, so that you can undefined weak functions
5389 and check to see if they exist by looking at their
5390 addresses. */
5391 symbol = 0;
5392 else if (info->unresolved_syms_in_objects == RM_IGNORE
5393 && ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT)
5394 symbol = 0;
5395 else if (strcmp (*namep, SGI_COMPAT (input_bfd)
5396 ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING") == 0)
5397 {
5398 /* If this is a dynamic link, we should have created a
5399 _DYNAMIC_LINK symbol or _DYNAMIC_LINKING(for normal mips) symbol
5400 in in _bfd_mips_elf_create_dynamic_sections.
5401 Otherwise, we should define the symbol with a value of 0.
5402 FIXME: It should probably get into the symbol table
5403 somehow as well. */
5404 BFD_ASSERT (! info->shared);
5405 BFD_ASSERT (bfd_get_section_by_name (abfd, ".dynamic") == NULL);
5406 symbol = 0;
5407 }
5408 else if (ELF_MIPS_IS_OPTIONAL (h->root.other))
5409 {
5410 /* This is an optional symbol - an Irix specific extension to the
5411 ELF spec. Ignore it for now.
5412 XXX - FIXME - there is more to the spec for OPTIONAL symbols
5413 than simply ignoring them, but we do not handle this for now.
5414 For information see the "64-bit ELF Object File Specification"
5415 which is available from here:
5416 http://techpubs.sgi.com/library/manuals/4000/007-4658-001/pdf/007-4658-001.pdf */
5417 symbol = 0;
5418 }
5419 else if ((*info->callbacks->undefined_symbol)
5420 (info, h->root.root.root.string, input_bfd,
5421 input_section, relocation->r_offset,
5422 (info->unresolved_syms_in_objects == RM_GENERATE_ERROR)
5423 || ELF_ST_VISIBILITY (h->root.other)))
5424 {
5425 return bfd_reloc_undefined;
5426 }
5427 else
5428 {
5429 return bfd_reloc_notsupported;
5430 }
5431
5432 target_is_16_bit_code_p = ELF_ST_IS_MIPS16 (h->root.other);
5433 target_is_micromips_code_p = ELF_ST_IS_MICROMIPS (h->root.other);
5434 }
5435
5436 /* If this is a reference to a 16-bit function with a stub, we need
5437 to redirect the relocation to the stub unless:
5438
5439 (a) the relocation is for a MIPS16 JAL;
5440
5441 (b) the relocation is for a MIPS16 PIC call, and there are no
5442 non-MIPS16 uses of the GOT slot; or
5443
5444 (c) the section allows direct references to MIPS16 functions. */
5445 if (r_type != R_MIPS16_26
5446 && !info->relocatable
5447 && ((h != NULL
5448 && h->fn_stub != NULL
5449 && (r_type != R_MIPS16_CALL16 || h->need_fn_stub))
5450 || (local_p
5451 && mips_elf_tdata (input_bfd)->local_stubs != NULL
5452 && mips_elf_tdata (input_bfd)->local_stubs[r_symndx] != NULL))
5453 && !section_allows_mips16_refs_p (input_section))
5454 {
5455 /* This is a 32- or 64-bit call to a 16-bit function. We should
5456 have already noticed that we were going to need the
5457 stub. */
5458 if (local_p)
5459 {
5460 sec = mips_elf_tdata (input_bfd)->local_stubs[r_symndx];
5461 value = 0;
5462 }
5463 else
5464 {
5465 BFD_ASSERT (h->need_fn_stub);
5466 if (h->la25_stub)
5467 {
5468 /* If a LA25 header for the stub itself exists, point to the
5469 prepended LUI/ADDIU sequence. */
5470 sec = h->la25_stub->stub_section;
5471 value = h->la25_stub->offset;
5472 }
5473 else
5474 {
5475 sec = h->fn_stub;
5476 value = 0;
5477 }
5478 }
5479
5480 symbol = sec->output_section->vma + sec->output_offset + value;
5481 /* The target is 16-bit, but the stub isn't. */
5482 target_is_16_bit_code_p = FALSE;
5483 }
5484 /* If this is a MIPS16 call with a stub, that is made through the PLT or
5485 to a standard MIPS function, we need to redirect the call to the stub.
5486 Note that we specifically exclude R_MIPS16_CALL16 from this behavior;
5487 indirect calls should use an indirect stub instead. */
5488 else if (r_type == R_MIPS16_26 && !info->relocatable
5489 && ((h != NULL && (h->call_stub != NULL || h->call_fp_stub != NULL))
5490 || (local_p
5491 && mips_elf_tdata (input_bfd)->local_call_stubs != NULL
5492 && mips_elf_tdata (input_bfd)->local_call_stubs[r_symndx] != NULL))
5493 && ((h != NULL && h->use_plt_entry) || !target_is_16_bit_code_p))
5494 {
5495 if (local_p)
5496 sec = mips_elf_tdata (input_bfd)->local_call_stubs[r_symndx];
5497 else
5498 {
5499 /* If both call_stub and call_fp_stub are defined, we can figure
5500 out which one to use by checking which one appears in the input
5501 file. */
5502 if (h->call_stub != NULL && h->call_fp_stub != NULL)
5503 {
5504 asection *o;
5505
5506 sec = NULL;
5507 for (o = input_bfd->sections; o != NULL; o = o->next)
5508 {
5509 if (CALL_FP_STUB_P (bfd_get_section_name (input_bfd, o)))
5510 {
5511 sec = h->call_fp_stub;
5512 break;
5513 }
5514 }
5515 if (sec == NULL)
5516 sec = h->call_stub;
5517 }
5518 else if (h->call_stub != NULL)
5519 sec = h->call_stub;
5520 else
5521 sec = h->call_fp_stub;
5522 }
5523
5524 BFD_ASSERT (sec->size > 0);
5525 symbol = sec->output_section->vma + sec->output_offset;
5526 }
5527 /* If this is a direct call to a PIC function, redirect to the
5528 non-PIC stub. */
5529 else if (h != NULL && h->la25_stub
5530 && mips_elf_relocation_needs_la25_stub (input_bfd, r_type,
5531 target_is_16_bit_code_p))
5532 symbol = (h->la25_stub->stub_section->output_section->vma
5533 + h->la25_stub->stub_section->output_offset
5534 + h->la25_stub->offset);
5535 /* For direct MIPS16 and microMIPS calls make sure the compressed PLT
5536 entry is used if a standard PLT entry has also been made. In this
5537 case the symbol will have been set by mips_elf_set_plt_sym_value
5538 to point to the standard PLT entry, so redirect to the compressed
5539 one. */
5540 else if ((r_type == R_MIPS16_26 || r_type == R_MICROMIPS_26_S1)
5541 && !info->relocatable
5542 && h != NULL
5543 && h->use_plt_entry
5544 && h->root.plt.plist->comp_offset != MINUS_ONE
5545 && h->root.plt.plist->mips_offset != MINUS_ONE)
5546 {
5547 bfd_boolean micromips_p = MICROMIPS_P (abfd);
5548
5549 sec = htab->splt;
5550 symbol = (sec->output_section->vma
5551 + sec->output_offset
5552 + htab->plt_header_size
5553 + htab->plt_mips_offset
5554 + h->root.plt.plist->comp_offset
5555 + 1);
5556
5557 target_is_16_bit_code_p = !micromips_p;
5558 target_is_micromips_code_p = micromips_p;
5559 }
5560
5561 /* Make sure MIPS16 and microMIPS are not used together. */
5562 if ((r_type == R_MIPS16_26 && target_is_micromips_code_p)
5563 || (micromips_branch_reloc_p (r_type) && target_is_16_bit_code_p))
5564 {
5565 (*_bfd_error_handler)
5566 (_("MIPS16 and microMIPS functions cannot call each other"));
5567 return bfd_reloc_notsupported;
5568 }
5569
5570 /* Calls from 16-bit code to 32-bit code and vice versa require the
5571 mode change. However, we can ignore calls to undefined weak symbols,
5572 which should never be executed at runtime. This exception is important
5573 because the assembly writer may have "known" that any definition of the
5574 symbol would be 16-bit code, and that direct jumps were therefore
5575 acceptable. */
5576 *cross_mode_jump_p = (!info->relocatable
5577 && !(h && h->root.root.type == bfd_link_hash_undefweak)
5578 && ((r_type == R_MIPS16_26 && !target_is_16_bit_code_p)
5579 || (r_type == R_MICROMIPS_26_S1
5580 && !target_is_micromips_code_p)
5581 || ((r_type == R_MIPS_26 || r_type == R_MIPS_JALR)
5582 && (target_is_16_bit_code_p
5583 || target_is_micromips_code_p))));
5584
5585 local_p = (h == NULL || mips_use_local_got_p (info, h));
5586
5587 gp0 = _bfd_get_gp_value (input_bfd);
5588 gp = _bfd_get_gp_value (abfd);
5589 if (htab->got_info)
5590 gp += mips_elf_adjust_gp (abfd, htab->got_info, input_bfd);
5591
5592 if (gnu_local_gp_p)
5593 symbol = gp;
5594
5595 /* Global R_MIPS_GOT_PAGE/R_MICROMIPS_GOT_PAGE relocations are equivalent
5596 to R_MIPS_GOT_DISP/R_MICROMIPS_GOT_DISP. The addend is applied by the
5597 corresponding R_MIPS_GOT_OFST/R_MICROMIPS_GOT_OFST. */
5598 if (got_page_reloc_p (r_type) && !local_p)
5599 {
5600 r_type = (micromips_reloc_p (r_type)
5601 ? R_MICROMIPS_GOT_DISP : R_MIPS_GOT_DISP);
5602 addend = 0;
5603 }
5604
5605 /* If we haven't already determined the GOT offset, and we're going
5606 to need it, get it now. */
5607 switch (r_type)
5608 {
5609 case R_MIPS16_CALL16:
5610 case R_MIPS16_GOT16:
5611 case R_MIPS_CALL16:
5612 case R_MIPS_GOT16:
5613 case R_MIPS_GOT_DISP:
5614 case R_MIPS_GOT_HI16:
5615 case R_MIPS_CALL_HI16:
5616 case R_MIPS_GOT_LO16:
5617 case R_MIPS_CALL_LO16:
5618 case R_MICROMIPS_CALL16:
5619 case R_MICROMIPS_GOT16:
5620 case R_MICROMIPS_GOT_DISP:
5621 case R_MICROMIPS_GOT_HI16:
5622 case R_MICROMIPS_CALL_HI16:
5623 case R_MICROMIPS_GOT_LO16:
5624 case R_MICROMIPS_CALL_LO16:
5625 case R_MIPS_TLS_GD:
5626 case R_MIPS_TLS_GOTTPREL:
5627 case R_MIPS_TLS_LDM:
5628 case R_MIPS16_TLS_GD:
5629 case R_MIPS16_TLS_GOTTPREL:
5630 case R_MIPS16_TLS_LDM:
5631 case R_MICROMIPS_TLS_GD:
5632 case R_MICROMIPS_TLS_GOTTPREL:
5633 case R_MICROMIPS_TLS_LDM:
5634 /* Find the index into the GOT where this value is located. */
5635 if (tls_ldm_reloc_p (r_type))
5636 {
5637 g = mips_elf_local_got_index (abfd, input_bfd, info,
5638 0, 0, NULL, r_type);
5639 if (g == MINUS_ONE)
5640 return bfd_reloc_outofrange;
5641 }
5642 else if (!local_p)
5643 {
5644 /* On VxWorks, CALL relocations should refer to the .got.plt
5645 entry, which is initialized to point at the PLT stub. */
5646 if (htab->is_vxworks
5647 && (call_hi16_reloc_p (r_type)
5648 || call_lo16_reloc_p (r_type)
5649 || call16_reloc_p (r_type)))
5650 {
5651 BFD_ASSERT (addend == 0);
5652 BFD_ASSERT (h->root.needs_plt);
5653 g = mips_elf_gotplt_index (info, &h->root);
5654 }
5655 else
5656 {
5657 BFD_ASSERT (addend == 0);
5658 g = mips_elf_global_got_index (abfd, info, input_bfd,
5659 &h->root, r_type);
5660 if (!TLS_RELOC_P (r_type)
5661 && !elf_hash_table (info)->dynamic_sections_created)
5662 /* This is a static link. We must initialize the GOT entry. */
5663 MIPS_ELF_PUT_WORD (dynobj, symbol, htab->sgot->contents + g);
5664 }
5665 }
5666 else if (!htab->is_vxworks
5667 && (call16_reloc_p (r_type) || got16_reloc_p (r_type)))
5668 /* The calculation below does not involve "g". */
5669 break;
5670 else
5671 {
5672 g = mips_elf_local_got_index (abfd, input_bfd, info,
5673 symbol + addend, r_symndx, h, r_type);
5674 if (g == MINUS_ONE)
5675 return bfd_reloc_outofrange;
5676 }
5677
5678 /* Convert GOT indices to actual offsets. */
5679 g = mips_elf_got_offset_from_index (info, abfd, input_bfd, g);
5680 break;
5681 }
5682
5683 /* Relocations against the VxWorks __GOTT_BASE__ and __GOTT_INDEX__
5684 symbols are resolved by the loader. Add them to .rela.dyn. */
5685 if (h != NULL && is_gott_symbol (info, &h->root))
5686 {
5687 Elf_Internal_Rela outrel;
5688 bfd_byte *loc;
5689 asection *s;
5690
5691 s = mips_elf_rel_dyn_section (info, FALSE);
5692 loc = s->contents + s->reloc_count++ * sizeof (Elf32_External_Rela);
5693
5694 outrel.r_offset = (input_section->output_section->vma
5695 + input_section->output_offset
5696 + relocation->r_offset);
5697 outrel.r_info = ELF32_R_INFO (h->root.dynindx, r_type);
5698 outrel.r_addend = addend;
5699 bfd_elf32_swap_reloca_out (abfd, &outrel, loc);
5700
5701 /* If we've written this relocation for a readonly section,
5702 we need to set DF_TEXTREL again, so that we do not delete the
5703 DT_TEXTREL tag. */
5704 if (MIPS_ELF_READONLY_SECTION (input_section))
5705 info->flags |= DF_TEXTREL;
5706
5707 *valuep = 0;
5708 return bfd_reloc_ok;
5709 }
5710
5711 /* Figure out what kind of relocation is being performed. */
5712 switch (r_type)
5713 {
5714 case R_MIPS_NONE:
5715 return bfd_reloc_continue;
5716
5717 case R_MIPS_16:
5718 if (howto->partial_inplace)
5719 addend = _bfd_mips_elf_sign_extend (addend, 16);
5720 value = symbol + addend;
5721 overflowed_p = mips_elf_overflow_p (value, 16);
5722 break;
5723
5724 case R_MIPS_32:
5725 case R_MIPS_REL32:
5726 case R_MIPS_64:
5727 if ((info->shared
5728 || (htab->root.dynamic_sections_created
5729 && h != NULL
5730 && h->root.def_dynamic
5731 && !h->root.def_regular
5732 && !h->has_static_relocs))
5733 && r_symndx != STN_UNDEF
5734 && (h == NULL
5735 || h->root.root.type != bfd_link_hash_undefweak
5736 || ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT)
5737 && (input_section->flags & SEC_ALLOC) != 0)
5738 {
5739 /* If we're creating a shared library, then we can't know
5740 where the symbol will end up. So, we create a relocation
5741 record in the output, and leave the job up to the dynamic
5742 linker. We must do the same for executable references to
5743 shared library symbols, unless we've decided to use copy
5744 relocs or PLTs instead. */
5745 value = addend;
5746 if (!mips_elf_create_dynamic_relocation (abfd,
5747 info,
5748 relocation,
5749 h,
5750 sec,
5751 symbol,
5752 &value,
5753 input_section))
5754 return bfd_reloc_undefined;
5755 }
5756 else
5757 {
5758 if (r_type != R_MIPS_REL32)
5759 value = symbol + addend;
5760 else
5761 value = addend;
5762 }
5763 value &= howto->dst_mask;
5764 break;
5765
5766 case R_MIPS_PC32:
5767 value = symbol + addend - p;
5768 value &= howto->dst_mask;
5769 break;
5770
5771 case R_MIPS16_26:
5772 /* The calculation for R_MIPS16_26 is just the same as for an
5773 R_MIPS_26. It's only the storage of the relocated field into
5774 the output file that's different. That's handled in
5775 mips_elf_perform_relocation. So, we just fall through to the
5776 R_MIPS_26 case here. */
5777 case R_MIPS_26:
5778 case R_MICROMIPS_26_S1:
5779 {
5780 unsigned int shift;
5781
5782 /* Make sure the target of JALX is word-aligned. Bit 0 must be
5783 the correct ISA mode selector and bit 1 must be 0. */
5784 if (*cross_mode_jump_p && (symbol & 3) != (r_type == R_MIPS_26))
5785 return bfd_reloc_outofrange;
5786
5787 /* Shift is 2, unusually, for microMIPS JALX. */
5788 shift = (!*cross_mode_jump_p && r_type == R_MICROMIPS_26_S1) ? 1 : 2;
5789
5790 if (was_local_p)
5791 value = addend | ((p + 4) & (0xfc000000 << shift));
5792 else if (howto->partial_inplace)
5793 value = _bfd_mips_elf_sign_extend (addend, 26 + shift);
5794 else
5795 value = addend;
5796 value = (value + symbol) >> shift;
5797 if (!was_local_p && h->root.root.type != bfd_link_hash_undefweak)
5798 overflowed_p = (value >> 26) != ((p + 4) >> (26 + shift));
5799 value &= howto->dst_mask;
5800 }
5801 break;
5802
5803 case R_MIPS_TLS_DTPREL_HI16:
5804 case R_MIPS16_TLS_DTPREL_HI16:
5805 case R_MICROMIPS_TLS_DTPREL_HI16:
5806 value = (mips_elf_high (addend + symbol - dtprel_base (info))
5807 & howto->dst_mask);
5808 break;
5809
5810 case R_MIPS_TLS_DTPREL_LO16:
5811 case R_MIPS_TLS_DTPREL32:
5812 case R_MIPS_TLS_DTPREL64:
5813 case R_MIPS16_TLS_DTPREL_LO16:
5814 case R_MICROMIPS_TLS_DTPREL_LO16:
5815 value = (symbol + addend - dtprel_base (info)) & howto->dst_mask;
5816 break;
5817
5818 case R_MIPS_TLS_TPREL_HI16:
5819 case R_MIPS16_TLS_TPREL_HI16:
5820 case R_MICROMIPS_TLS_TPREL_HI16:
5821 value = (mips_elf_high (addend + symbol - tprel_base (info))
5822 & howto->dst_mask);
5823 break;
5824
5825 case R_MIPS_TLS_TPREL_LO16:
5826 case R_MIPS_TLS_TPREL32:
5827 case R_MIPS_TLS_TPREL64:
5828 case R_MIPS16_TLS_TPREL_LO16:
5829 case R_MICROMIPS_TLS_TPREL_LO16:
5830 value = (symbol + addend - tprel_base (info)) & howto->dst_mask;
5831 break;
5832
5833 case R_MIPS_HI16:
5834 case R_MIPS16_HI16:
5835 case R_MICROMIPS_HI16:
5836 if (!gp_disp_p)
5837 {
5838 value = mips_elf_high (addend + symbol);
5839 value &= howto->dst_mask;
5840 }
5841 else
5842 {
5843 /* For MIPS16 ABI code we generate this sequence
5844 0: li $v0,%hi(_gp_disp)
5845 4: addiupc $v1,%lo(_gp_disp)
5846 8: sll $v0,16
5847 12: addu $v0,$v1
5848 14: move $gp,$v0
5849 So the offsets of hi and lo relocs are the same, but the
5850 base $pc is that used by the ADDIUPC instruction at $t9 + 4.
5851 ADDIUPC clears the low two bits of the instruction address,
5852 so the base is ($t9 + 4) & ~3. */
5853 if (r_type == R_MIPS16_HI16)
5854 value = mips_elf_high (addend + gp - ((p + 4) & ~(bfd_vma) 0x3));
5855 /* The microMIPS .cpload sequence uses the same assembly
5856 instructions as the traditional psABI version, but the
5857 incoming $t9 has the low bit set. */
5858 else if (r_type == R_MICROMIPS_HI16)
5859 value = mips_elf_high (addend + gp - p - 1);
5860 else
5861 value = mips_elf_high (addend + gp - p);
5862 overflowed_p = mips_elf_overflow_p (value, 16);
5863 }
5864 break;
5865
5866 case R_MIPS_LO16:
5867 case R_MIPS16_LO16:
5868 case R_MICROMIPS_LO16:
5869 case R_MICROMIPS_HI0_LO16:
5870 if (!gp_disp_p)
5871 value = (symbol + addend) & howto->dst_mask;
5872 else
5873 {
5874 /* See the comment for R_MIPS16_HI16 above for the reason
5875 for this conditional. */
5876 if (r_type == R_MIPS16_LO16)
5877 value = addend + gp - (p & ~(bfd_vma) 0x3);
5878 else if (r_type == R_MICROMIPS_LO16
5879 || r_type == R_MICROMIPS_HI0_LO16)
5880 value = addend + gp - p + 3;
5881 else
5882 value = addend + gp - p + 4;
5883 /* The MIPS ABI requires checking the R_MIPS_LO16 relocation
5884 for overflow. But, on, say, IRIX5, relocations against
5885 _gp_disp are normally generated from the .cpload
5886 pseudo-op. It generates code that normally looks like
5887 this:
5888
5889 lui $gp,%hi(_gp_disp)
5890 addiu $gp,$gp,%lo(_gp_disp)
5891 addu $gp,$gp,$t9
5892
5893 Here $t9 holds the address of the function being called,
5894 as required by the MIPS ELF ABI. The R_MIPS_LO16
5895 relocation can easily overflow in this situation, but the
5896 R_MIPS_HI16 relocation will handle the overflow.
5897 Therefore, we consider this a bug in the MIPS ABI, and do
5898 not check for overflow here. */
5899 }
5900 break;
5901
5902 case R_MIPS_LITERAL:
5903 case R_MICROMIPS_LITERAL:
5904 /* Because we don't merge literal sections, we can handle this
5905 just like R_MIPS_GPREL16. In the long run, we should merge
5906 shared literals, and then we will need to additional work
5907 here. */
5908
5909 /* Fall through. */
5910
5911 case R_MIPS16_GPREL:
5912 /* The R_MIPS16_GPREL performs the same calculation as
5913 R_MIPS_GPREL16, but stores the relocated bits in a different
5914 order. We don't need to do anything special here; the
5915 differences are handled in mips_elf_perform_relocation. */
5916 case R_MIPS_GPREL16:
5917 case R_MICROMIPS_GPREL7_S2:
5918 case R_MICROMIPS_GPREL16:
5919 /* Only sign-extend the addend if it was extracted from the
5920 instruction. If the addend was separate, leave it alone,
5921 otherwise we may lose significant bits. */
5922 if (howto->partial_inplace)
5923 addend = _bfd_mips_elf_sign_extend (addend, 16);
5924 value = symbol + addend - gp;
5925 /* If the symbol was local, any earlier relocatable links will
5926 have adjusted its addend with the gp offset, so compensate
5927 for that now. Don't do it for symbols forced local in this
5928 link, though, since they won't have had the gp offset applied
5929 to them before. */
5930 if (was_local_p)
5931 value += gp0;
5932 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
5933 overflowed_p = mips_elf_overflow_p (value, 16);
5934 break;
5935
5936 case R_MIPS16_GOT16:
5937 case R_MIPS16_CALL16:
5938 case R_MIPS_GOT16:
5939 case R_MIPS_CALL16:
5940 case R_MICROMIPS_GOT16:
5941 case R_MICROMIPS_CALL16:
5942 /* VxWorks does not have separate local and global semantics for
5943 R_MIPS*_GOT16; every relocation evaluates to "G". */
5944 if (!htab->is_vxworks && local_p)
5945 {
5946 value = mips_elf_got16_entry (abfd, input_bfd, info,
5947 symbol + addend, !was_local_p);
5948 if (value == MINUS_ONE)
5949 return bfd_reloc_outofrange;
5950 value
5951 = mips_elf_got_offset_from_index (info, abfd, input_bfd, value);
5952 overflowed_p = mips_elf_overflow_p (value, 16);
5953 break;
5954 }
5955
5956 /* Fall through. */
5957
5958 case R_MIPS_TLS_GD:
5959 case R_MIPS_TLS_GOTTPREL:
5960 case R_MIPS_TLS_LDM:
5961 case R_MIPS_GOT_DISP:
5962 case R_MIPS16_TLS_GD:
5963 case R_MIPS16_TLS_GOTTPREL:
5964 case R_MIPS16_TLS_LDM:
5965 case R_MICROMIPS_TLS_GD:
5966 case R_MICROMIPS_TLS_GOTTPREL:
5967 case R_MICROMIPS_TLS_LDM:
5968 case R_MICROMIPS_GOT_DISP:
5969 value = g;
5970 overflowed_p = mips_elf_overflow_p (value, 16);
5971 break;
5972
5973 case R_MIPS_GPREL32:
5974 value = (addend + symbol + gp0 - gp);
5975 if (!save_addend)
5976 value &= howto->dst_mask;
5977 break;
5978
5979 case R_MIPS_PC16:
5980 case R_MIPS_GNU_REL16_S2:
5981 if (howto->partial_inplace)
5982 addend = _bfd_mips_elf_sign_extend (addend, 18);
5983
5984 if ((symbol + addend) & 3)
5985 return bfd_reloc_outofrange;
5986
5987 value = symbol + addend - p;
5988 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
5989 overflowed_p = mips_elf_overflow_p (value, 18);
5990 value >>= howto->rightshift;
5991 value &= howto->dst_mask;
5992 break;
5993
5994 case R_MIPS_PC21_S2:
5995 if (howto->partial_inplace)
5996 addend = _bfd_mips_elf_sign_extend (addend, 23);
5997
5998 if ((symbol + addend) & 3)
5999 return bfd_reloc_outofrange;
6000
6001 value = symbol + addend - p;
6002 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6003 overflowed_p = mips_elf_overflow_p (value, 23);
6004 value >>= howto->rightshift;
6005 value &= howto->dst_mask;
6006 break;
6007
6008 case R_MIPS_PC26_S2:
6009 if (howto->partial_inplace)
6010 addend = _bfd_mips_elf_sign_extend (addend, 28);
6011
6012 if ((symbol + addend) & 3)
6013 return bfd_reloc_outofrange;
6014
6015 value = symbol + addend - p;
6016 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6017 overflowed_p = mips_elf_overflow_p (value, 28);
6018 value >>= howto->rightshift;
6019 value &= howto->dst_mask;
6020 break;
6021
6022 case R_MIPS_PC18_S3:
6023 if (howto->partial_inplace)
6024 addend = _bfd_mips_elf_sign_extend (addend, 21);
6025
6026 if ((symbol + addend) & 7)
6027 return bfd_reloc_outofrange;
6028
6029 value = symbol + addend - ((p | 7) ^ 7);
6030 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6031 overflowed_p = mips_elf_overflow_p (value, 21);
6032 value >>= howto->rightshift;
6033 value &= howto->dst_mask;
6034 break;
6035
6036 case R_MIPS_PC19_S2:
6037 if (howto->partial_inplace)
6038 addend = _bfd_mips_elf_sign_extend (addend, 21);
6039
6040 if ((symbol + addend) & 3)
6041 return bfd_reloc_outofrange;
6042
6043 value = symbol + addend - p;
6044 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6045 overflowed_p = mips_elf_overflow_p (value, 21);
6046 value >>= howto->rightshift;
6047 value &= howto->dst_mask;
6048 break;
6049
6050 case R_MIPS_PCHI16:
6051 value = mips_elf_high (symbol + addend - p);
6052 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6053 overflowed_p = mips_elf_overflow_p (value, 16);
6054 value &= howto->dst_mask;
6055 break;
6056
6057 case R_MIPS_PCLO16:
6058 if (howto->partial_inplace)
6059 addend = _bfd_mips_elf_sign_extend (addend, 16);
6060 value = symbol + addend - p;
6061 value &= howto->dst_mask;
6062 break;
6063
6064 case R_MICROMIPS_PC7_S1:
6065 if (howto->partial_inplace)
6066 addend = _bfd_mips_elf_sign_extend (addend, 8);
6067 value = symbol + addend - p;
6068 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6069 overflowed_p = mips_elf_overflow_p (value, 8);
6070 value >>= howto->rightshift;
6071 value &= howto->dst_mask;
6072 break;
6073
6074 case R_MICROMIPS_PC10_S1:
6075 if (howto->partial_inplace)
6076 addend = _bfd_mips_elf_sign_extend (addend, 11);
6077 value = symbol + addend - p;
6078 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6079 overflowed_p = mips_elf_overflow_p (value, 11);
6080 value >>= howto->rightshift;
6081 value &= howto->dst_mask;
6082 break;
6083
6084 case R_MICROMIPS_PC16_S1:
6085 if (howto->partial_inplace)
6086 addend = _bfd_mips_elf_sign_extend (addend, 17);
6087 value = symbol + addend - p;
6088 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6089 overflowed_p = mips_elf_overflow_p (value, 17);
6090 value >>= howto->rightshift;
6091 value &= howto->dst_mask;
6092 break;
6093
6094 case R_MICROMIPS_PC23_S2:
6095 if (howto->partial_inplace)
6096 addend = _bfd_mips_elf_sign_extend (addend, 25);
6097 value = symbol + addend - ((p | 3) ^ 3);
6098 if (was_local_p || h->root.root.type != bfd_link_hash_undefweak)
6099 overflowed_p = mips_elf_overflow_p (value, 25);
6100 value >>= howto->rightshift;
6101 value &= howto->dst_mask;
6102 break;
6103
6104 case R_MIPS_GOT_HI16:
6105 case R_MIPS_CALL_HI16:
6106 case R_MICROMIPS_GOT_HI16:
6107 case R_MICROMIPS_CALL_HI16:
6108 /* We're allowed to handle these two relocations identically.
6109 The dynamic linker is allowed to handle the CALL relocations
6110 differently by creating a lazy evaluation stub. */
6111 value = g;
6112 value = mips_elf_high (value);
6113 value &= howto->dst_mask;
6114 break;
6115
6116 case R_MIPS_GOT_LO16:
6117 case R_MIPS_CALL_LO16:
6118 case R_MICROMIPS_GOT_LO16:
6119 case R_MICROMIPS_CALL_LO16:
6120 value = g & howto->dst_mask;
6121 break;
6122
6123 case R_MIPS_GOT_PAGE:
6124 case R_MICROMIPS_GOT_PAGE:
6125 value = mips_elf_got_page (abfd, input_bfd, info, symbol + addend, NULL);
6126 if (value == MINUS_ONE)
6127 return bfd_reloc_outofrange;
6128 value = mips_elf_got_offset_from_index (info, abfd, input_bfd, value);
6129 overflowed_p = mips_elf_overflow_p (value, 16);
6130 break;
6131
6132 case R_MIPS_GOT_OFST:
6133 case R_MICROMIPS_GOT_OFST:
6134 if (local_p)
6135 mips_elf_got_page (abfd, input_bfd, info, symbol + addend, &value);
6136 else
6137 value = addend;
6138 overflowed_p = mips_elf_overflow_p (value, 16);
6139 break;
6140
6141 case R_MIPS_SUB:
6142 case R_MICROMIPS_SUB:
6143 value = symbol - addend;
6144 value &= howto->dst_mask;
6145 break;
6146
6147 case R_MIPS_HIGHER:
6148 case R_MICROMIPS_HIGHER:
6149 value = mips_elf_higher (addend + symbol);
6150 value &= howto->dst_mask;
6151 break;
6152
6153 case R_MIPS_HIGHEST:
6154 case R_MICROMIPS_HIGHEST:
6155 value = mips_elf_highest (addend + symbol);
6156 value &= howto->dst_mask;
6157 break;
6158
6159 case R_MIPS_SCN_DISP:
6160 case R_MICROMIPS_SCN_DISP:
6161 value = symbol + addend - sec->output_offset;
6162 value &= howto->dst_mask;
6163 break;
6164
6165 case R_MIPS_JALR:
6166 case R_MICROMIPS_JALR:
6167 /* This relocation is only a hint. In some cases, we optimize
6168 it into a bal instruction. But we don't try to optimize
6169 when the symbol does not resolve locally. */
6170 if (h != NULL && !SYMBOL_CALLS_LOCAL (info, &h->root))
6171 return bfd_reloc_continue;
6172 value = symbol + addend;
6173 break;
6174
6175 case R_MIPS_PJUMP:
6176 case R_MIPS_GNU_VTINHERIT:
6177 case R_MIPS_GNU_VTENTRY:
6178 /* We don't do anything with these at present. */
6179 return bfd_reloc_continue;
6180
6181 default:
6182 /* An unrecognized relocation type. */
6183 return bfd_reloc_notsupported;
6184 }
6185
6186 /* Store the VALUE for our caller. */
6187 *valuep = value;
6188 return overflowed_p ? bfd_reloc_overflow : bfd_reloc_ok;
6189 }
6190
6191 /* Obtain the field relocated by RELOCATION. */
6192
6193 static bfd_vma
6194 mips_elf_obtain_contents (reloc_howto_type *howto,
6195 const Elf_Internal_Rela *relocation,
6196 bfd *input_bfd, bfd_byte *contents)
6197 {
6198 bfd_vma x = 0;
6199 bfd_byte *location = contents + relocation->r_offset;
6200 unsigned int size = bfd_get_reloc_size (howto);
6201
6202 /* Obtain the bytes. */
6203 if (size != 0)
6204 x = bfd_get (8 * size, input_bfd, location);
6205
6206 return x;
6207 }
6208
6209 /* It has been determined that the result of the RELOCATION is the
6210 VALUE. Use HOWTO to place VALUE into the output file at the
6211 appropriate position. The SECTION is the section to which the
6212 relocation applies.
6213 CROSS_MODE_JUMP_P is true if the relocation field
6214 is a MIPS16 or microMIPS jump to standard MIPS code, or vice versa.
6215
6216 Returns FALSE if anything goes wrong. */
6217
6218 static bfd_boolean
6219 mips_elf_perform_relocation (struct bfd_link_info *info,
6220 reloc_howto_type *howto,
6221 const Elf_Internal_Rela *relocation,
6222 bfd_vma value, bfd *input_bfd,
6223 asection *input_section, bfd_byte *contents,
6224 bfd_boolean cross_mode_jump_p)
6225 {
6226 bfd_vma x;
6227 bfd_byte *location;
6228 int r_type = ELF_R_TYPE (input_bfd, relocation->r_info);
6229 unsigned int size;
6230
6231 /* Figure out where the relocation is occurring. */
6232 location = contents + relocation->r_offset;
6233
6234 _bfd_mips_elf_reloc_unshuffle (input_bfd, r_type, FALSE, location);
6235
6236 /* Obtain the current value. */
6237 x = mips_elf_obtain_contents (howto, relocation, input_bfd, contents);
6238
6239 /* Clear the field we are setting. */
6240 x &= ~howto->dst_mask;
6241
6242 /* Set the field. */
6243 x |= (value & howto->dst_mask);
6244
6245 /* If required, turn JAL into JALX. */
6246 if (cross_mode_jump_p && jal_reloc_p (r_type))
6247 {
6248 bfd_boolean ok;
6249 bfd_vma opcode = x >> 26;
6250 bfd_vma jalx_opcode;
6251
6252 /* Check to see if the opcode is already JAL or JALX. */
6253 if (r_type == R_MIPS16_26)
6254 {
6255 ok = ((opcode == 0x6) || (opcode == 0x7));
6256 jalx_opcode = 0x7;
6257 }
6258 else if (r_type == R_MICROMIPS_26_S1)
6259 {
6260 ok = ((opcode == 0x3d) || (opcode == 0x3c));
6261 jalx_opcode = 0x3c;
6262 }
6263 else
6264 {
6265 ok = ((opcode == 0x3) || (opcode == 0x1d));
6266 jalx_opcode = 0x1d;
6267 }
6268
6269 /* If the opcode is not JAL or JALX, there's a problem. We cannot
6270 convert J or JALS to JALX. */
6271 if (!ok)
6272 {
6273 (*_bfd_error_handler)
6274 (_("%B: %A+0x%lx: Unsupported jump between ISA modes; consider recompiling with interlinking enabled."),
6275 input_bfd,
6276 input_section,
6277 (unsigned long) relocation->r_offset);
6278 bfd_set_error (bfd_error_bad_value);
6279 return FALSE;
6280 }
6281
6282 /* Make this the JALX opcode. */
6283 x = (x & ~(0x3f << 26)) | (jalx_opcode << 26);
6284 }
6285
6286 /* Try converting JAL to BAL and J(AL)R to B(AL), if the target is in
6287 range. */
6288 if (!info->relocatable
6289 && !cross_mode_jump_p
6290 && ((JAL_TO_BAL_P (input_bfd)
6291 && r_type == R_MIPS_26
6292 && (x >> 26) == 0x3) /* jal addr */
6293 || (JALR_TO_BAL_P (input_bfd)
6294 && r_type == R_MIPS_JALR
6295 && x == 0x0320f809) /* jalr t9 */
6296 || (JR_TO_B_P (input_bfd)
6297 && r_type == R_MIPS_JALR
6298 && x == 0x03200008))) /* jr t9 */
6299 {
6300 bfd_vma addr;
6301 bfd_vma dest;
6302 bfd_signed_vma off;
6303
6304 addr = (input_section->output_section->vma
6305 + input_section->output_offset
6306 + relocation->r_offset
6307 + 4);
6308 if (r_type == R_MIPS_26)
6309 dest = (value << 2) | ((addr >> 28) << 28);
6310 else
6311 dest = value;
6312 off = dest - addr;
6313 if (off <= 0x1ffff && off >= -0x20000)
6314 {
6315 if (x == 0x03200008) /* jr t9 */
6316 x = 0x10000000 | (((bfd_vma) off >> 2) & 0xffff); /* b addr */
6317 else
6318 x = 0x04110000 | (((bfd_vma) off >> 2) & 0xffff); /* bal addr */
6319 }
6320 }
6321
6322 /* Put the value into the output. */
6323 size = bfd_get_reloc_size (howto);
6324 if (size != 0)
6325 bfd_put (8 * size, input_bfd, x, location);
6326
6327 _bfd_mips_elf_reloc_shuffle (input_bfd, r_type, !info->relocatable,
6328 location);
6329
6330 return TRUE;
6331 }
6332 \f
6333 /* Create a rel.dyn relocation for the dynamic linker to resolve. REL
6334 is the original relocation, which is now being transformed into a
6335 dynamic relocation. The ADDENDP is adjusted if necessary; the
6336 caller should store the result in place of the original addend. */
6337
6338 static bfd_boolean
6339 mips_elf_create_dynamic_relocation (bfd *output_bfd,
6340 struct bfd_link_info *info,
6341 const Elf_Internal_Rela *rel,
6342 struct mips_elf_link_hash_entry *h,
6343 asection *sec, bfd_vma symbol,
6344 bfd_vma *addendp, asection *input_section)
6345 {
6346 Elf_Internal_Rela outrel[3];
6347 asection *sreloc;
6348 bfd *dynobj;
6349 int r_type;
6350 long indx;
6351 bfd_boolean defined_p;
6352 struct mips_elf_link_hash_table *htab;
6353
6354 htab = mips_elf_hash_table (info);
6355 BFD_ASSERT (htab != NULL);
6356
6357 r_type = ELF_R_TYPE (output_bfd, rel->r_info);
6358 dynobj = elf_hash_table (info)->dynobj;
6359 sreloc = mips_elf_rel_dyn_section (info, FALSE);
6360 BFD_ASSERT (sreloc != NULL);
6361 BFD_ASSERT (sreloc->contents != NULL);
6362 BFD_ASSERT (sreloc->reloc_count * MIPS_ELF_REL_SIZE (output_bfd)
6363 < sreloc->size);
6364
6365 outrel[0].r_offset =
6366 _bfd_elf_section_offset (output_bfd, info, input_section, rel[0].r_offset);
6367 if (ABI_64_P (output_bfd))
6368 {
6369 outrel[1].r_offset =
6370 _bfd_elf_section_offset (output_bfd, info, input_section, rel[1].r_offset);
6371 outrel[2].r_offset =
6372 _bfd_elf_section_offset (output_bfd, info, input_section, rel[2].r_offset);
6373 }
6374
6375 if (outrel[0].r_offset == MINUS_ONE)
6376 /* The relocation field has been deleted. */
6377 return TRUE;
6378
6379 if (outrel[0].r_offset == MINUS_TWO)
6380 {
6381 /* The relocation field has been converted into a relative value of
6382 some sort. Functions like _bfd_elf_write_section_eh_frame expect
6383 the field to be fully relocated, so add in the symbol's value. */
6384 *addendp += symbol;
6385 return TRUE;
6386 }
6387
6388 /* We must now calculate the dynamic symbol table index to use
6389 in the relocation. */
6390 if (h != NULL && ! SYMBOL_REFERENCES_LOCAL (info, &h->root))
6391 {
6392 BFD_ASSERT (htab->is_vxworks || h->global_got_area != GGA_NONE);
6393 indx = h->root.dynindx;
6394 if (SGI_COMPAT (output_bfd))
6395 defined_p = h->root.def_regular;
6396 else
6397 /* ??? glibc's ld.so just adds the final GOT entry to the
6398 relocation field. It therefore treats relocs against
6399 defined symbols in the same way as relocs against
6400 undefined symbols. */
6401 defined_p = FALSE;
6402 }
6403 else
6404 {
6405 if (sec != NULL && bfd_is_abs_section (sec))
6406 indx = 0;
6407 else if (sec == NULL || sec->owner == NULL)
6408 {
6409 bfd_set_error (bfd_error_bad_value);
6410 return FALSE;
6411 }
6412 else
6413 {
6414 indx = elf_section_data (sec->output_section)->dynindx;
6415 if (indx == 0)
6416 {
6417 asection *osec = htab->root.text_index_section;
6418 indx = elf_section_data (osec)->dynindx;
6419 }
6420 if (indx == 0)
6421 abort ();
6422 }
6423
6424 /* Instead of generating a relocation using the section
6425 symbol, we may as well make it a fully relative
6426 relocation. We want to avoid generating relocations to
6427 local symbols because we used to generate them
6428 incorrectly, without adding the original symbol value,
6429 which is mandated by the ABI for section symbols. In
6430 order to give dynamic loaders and applications time to
6431 phase out the incorrect use, we refrain from emitting
6432 section-relative relocations. It's not like they're
6433 useful, after all. This should be a bit more efficient
6434 as well. */
6435 /* ??? Although this behavior is compatible with glibc's ld.so,
6436 the ABI says that relocations against STN_UNDEF should have
6437 a symbol value of 0. Irix rld honors this, so relocations
6438 against STN_UNDEF have no effect. */
6439 if (!SGI_COMPAT (output_bfd))
6440 indx = 0;
6441 defined_p = TRUE;
6442 }
6443
6444 /* If the relocation was previously an absolute relocation and
6445 this symbol will not be referred to by the relocation, we must
6446 adjust it by the value we give it in the dynamic symbol table.
6447 Otherwise leave the job up to the dynamic linker. */
6448 if (defined_p && r_type != R_MIPS_REL32)
6449 *addendp += symbol;
6450
6451 if (htab->is_vxworks)
6452 /* VxWorks uses non-relative relocations for this. */
6453 outrel[0].r_info = ELF32_R_INFO (indx, R_MIPS_32);
6454 else
6455 /* The relocation is always an REL32 relocation because we don't
6456 know where the shared library will wind up at load-time. */
6457 outrel[0].r_info = ELF_R_INFO (output_bfd, (unsigned long) indx,
6458 R_MIPS_REL32);
6459
6460 /* For strict adherence to the ABI specification, we should
6461 generate a R_MIPS_64 relocation record by itself before the
6462 _REL32/_64 record as well, such that the addend is read in as
6463 a 64-bit value (REL32 is a 32-bit relocation, after all).
6464 However, since none of the existing ELF64 MIPS dynamic
6465 loaders seems to care, we don't waste space with these
6466 artificial relocations. If this turns out to not be true,
6467 mips_elf_allocate_dynamic_relocation() should be tweaked so
6468 as to make room for a pair of dynamic relocations per
6469 invocation if ABI_64_P, and here we should generate an
6470 additional relocation record with R_MIPS_64 by itself for a
6471 NULL symbol before this relocation record. */
6472 outrel[1].r_info = ELF_R_INFO (output_bfd, 0,
6473 ABI_64_P (output_bfd)
6474 ? R_MIPS_64
6475 : R_MIPS_NONE);
6476 outrel[2].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_NONE);
6477
6478 /* Adjust the output offset of the relocation to reference the
6479 correct location in the output file. */
6480 outrel[0].r_offset += (input_section->output_section->vma
6481 + input_section->output_offset);
6482 outrel[1].r_offset += (input_section->output_section->vma
6483 + input_section->output_offset);
6484 outrel[2].r_offset += (input_section->output_section->vma
6485 + input_section->output_offset);
6486
6487 /* Put the relocation back out. We have to use the special
6488 relocation outputter in the 64-bit case since the 64-bit
6489 relocation format is non-standard. */
6490 if (ABI_64_P (output_bfd))
6491 {
6492 (*get_elf_backend_data (output_bfd)->s->swap_reloc_out)
6493 (output_bfd, &outrel[0],
6494 (sreloc->contents
6495 + sreloc->reloc_count * sizeof (Elf64_Mips_External_Rel)));
6496 }
6497 else if (htab->is_vxworks)
6498 {
6499 /* VxWorks uses RELA rather than REL dynamic relocations. */
6500 outrel[0].r_addend = *addendp;
6501 bfd_elf32_swap_reloca_out
6502 (output_bfd, &outrel[0],
6503 (sreloc->contents
6504 + sreloc->reloc_count * sizeof (Elf32_External_Rela)));
6505 }
6506 else
6507 bfd_elf32_swap_reloc_out
6508 (output_bfd, &outrel[0],
6509 (sreloc->contents + sreloc->reloc_count * sizeof (Elf32_External_Rel)));
6510
6511 /* We've now added another relocation. */
6512 ++sreloc->reloc_count;
6513
6514 /* Make sure the output section is writable. The dynamic linker
6515 will be writing to it. */
6516 elf_section_data (input_section->output_section)->this_hdr.sh_flags
6517 |= SHF_WRITE;
6518
6519 /* On IRIX5, make an entry of compact relocation info. */
6520 if (IRIX_COMPAT (output_bfd) == ict_irix5)
6521 {
6522 asection *scpt = bfd_get_linker_section (dynobj, ".compact_rel");
6523 bfd_byte *cr;
6524
6525 if (scpt)
6526 {
6527 Elf32_crinfo cptrel;
6528
6529 mips_elf_set_cr_format (cptrel, CRF_MIPS_LONG);
6530 cptrel.vaddr = (rel->r_offset
6531 + input_section->output_section->vma
6532 + input_section->output_offset);
6533 if (r_type == R_MIPS_REL32)
6534 mips_elf_set_cr_type (cptrel, CRT_MIPS_REL32);
6535 else
6536 mips_elf_set_cr_type (cptrel, CRT_MIPS_WORD);
6537 mips_elf_set_cr_dist2to (cptrel, 0);
6538 cptrel.konst = *addendp;
6539
6540 cr = (scpt->contents
6541 + sizeof (Elf32_External_compact_rel));
6542 mips_elf_set_cr_relvaddr (cptrel, 0);
6543 bfd_elf32_swap_crinfo_out (output_bfd, &cptrel,
6544 ((Elf32_External_crinfo *) cr
6545 + scpt->reloc_count));
6546 ++scpt->reloc_count;
6547 }
6548 }
6549
6550 /* If we've written this relocation for a readonly section,
6551 we need to set DF_TEXTREL again, so that we do not delete the
6552 DT_TEXTREL tag. */
6553 if (MIPS_ELF_READONLY_SECTION (input_section))
6554 info->flags |= DF_TEXTREL;
6555
6556 return TRUE;
6557 }
6558 \f
6559 /* Return the MACH for a MIPS e_flags value. */
6560
6561 unsigned long
6562 _bfd_elf_mips_mach (flagword flags)
6563 {
6564 switch (flags & EF_MIPS_MACH)
6565 {
6566 case E_MIPS_MACH_3900:
6567 return bfd_mach_mips3900;
6568
6569 case E_MIPS_MACH_4010:
6570 return bfd_mach_mips4010;
6571
6572 case E_MIPS_MACH_4100:
6573 return bfd_mach_mips4100;
6574
6575 case E_MIPS_MACH_4111:
6576 return bfd_mach_mips4111;
6577
6578 case E_MIPS_MACH_4120:
6579 return bfd_mach_mips4120;
6580
6581 case E_MIPS_MACH_4650:
6582 return bfd_mach_mips4650;
6583
6584 case E_MIPS_MACH_5400:
6585 return bfd_mach_mips5400;
6586
6587 case E_MIPS_MACH_5500:
6588 return bfd_mach_mips5500;
6589
6590 case E_MIPS_MACH_5900:
6591 return bfd_mach_mips5900;
6592
6593 case E_MIPS_MACH_9000:
6594 return bfd_mach_mips9000;
6595
6596 case E_MIPS_MACH_SB1:
6597 return bfd_mach_mips_sb1;
6598
6599 case E_MIPS_MACH_LS2E:
6600 return bfd_mach_mips_loongson_2e;
6601
6602 case E_MIPS_MACH_LS2F:
6603 return bfd_mach_mips_loongson_2f;
6604
6605 case E_MIPS_MACH_LS3A:
6606 return bfd_mach_mips_loongson_3a;
6607
6608 case E_MIPS_MACH_OCTEON3:
6609 return bfd_mach_mips_octeon3;
6610
6611 case E_MIPS_MACH_OCTEON2:
6612 return bfd_mach_mips_octeon2;
6613
6614 case E_MIPS_MACH_OCTEON:
6615 return bfd_mach_mips_octeon;
6616
6617 case E_MIPS_MACH_XLR:
6618 return bfd_mach_mips_xlr;
6619
6620 default:
6621 switch (flags & EF_MIPS_ARCH)
6622 {
6623 default:
6624 case E_MIPS_ARCH_1:
6625 return bfd_mach_mips3000;
6626
6627 case E_MIPS_ARCH_2:
6628 return bfd_mach_mips6000;
6629
6630 case E_MIPS_ARCH_3:
6631 return bfd_mach_mips4000;
6632
6633 case E_MIPS_ARCH_4:
6634 return bfd_mach_mips8000;
6635
6636 case E_MIPS_ARCH_5:
6637 return bfd_mach_mips5;
6638
6639 case E_MIPS_ARCH_32:
6640 return bfd_mach_mipsisa32;
6641
6642 case E_MIPS_ARCH_64:
6643 return bfd_mach_mipsisa64;
6644
6645 case E_MIPS_ARCH_32R2:
6646 return bfd_mach_mipsisa32r2;
6647
6648 case E_MIPS_ARCH_64R2:
6649 return bfd_mach_mipsisa64r2;
6650
6651 case E_MIPS_ARCH_32R6:
6652 return bfd_mach_mipsisa32r6;
6653
6654 case E_MIPS_ARCH_64R6:
6655 return bfd_mach_mipsisa64r6;
6656 }
6657 }
6658
6659 return 0;
6660 }
6661
6662 /* Return printable name for ABI. */
6663
6664 static INLINE char *
6665 elf_mips_abi_name (bfd *abfd)
6666 {
6667 flagword flags;
6668
6669 flags = elf_elfheader (abfd)->e_flags;
6670 switch (flags & EF_MIPS_ABI)
6671 {
6672 case 0:
6673 if (ABI_N32_P (abfd))
6674 return "N32";
6675 else if (ABI_64_P (abfd))
6676 return "64";
6677 else
6678 return "none";
6679 case E_MIPS_ABI_O32:
6680 return "O32";
6681 case E_MIPS_ABI_O64:
6682 return "O64";
6683 case E_MIPS_ABI_EABI32:
6684 return "EABI32";
6685 case E_MIPS_ABI_EABI64:
6686 return "EABI64";
6687 default:
6688 return "unknown abi";
6689 }
6690 }
6691 \f
6692 /* MIPS ELF uses two common sections. One is the usual one, and the
6693 other is for small objects. All the small objects are kept
6694 together, and then referenced via the gp pointer, which yields
6695 faster assembler code. This is what we use for the small common
6696 section. This approach is copied from ecoff.c. */
6697 static asection mips_elf_scom_section;
6698 static asymbol mips_elf_scom_symbol;
6699 static asymbol *mips_elf_scom_symbol_ptr;
6700
6701 /* MIPS ELF also uses an acommon section, which represents an
6702 allocated common symbol which may be overridden by a
6703 definition in a shared library. */
6704 static asection mips_elf_acom_section;
6705 static asymbol mips_elf_acom_symbol;
6706 static asymbol *mips_elf_acom_symbol_ptr;
6707
6708 /* This is used for both the 32-bit and the 64-bit ABI. */
6709
6710 void
6711 _bfd_mips_elf_symbol_processing (bfd *abfd, asymbol *asym)
6712 {
6713 elf_symbol_type *elfsym;
6714
6715 /* Handle the special MIPS section numbers that a symbol may use. */
6716 elfsym = (elf_symbol_type *) asym;
6717 switch (elfsym->internal_elf_sym.st_shndx)
6718 {
6719 case SHN_MIPS_ACOMMON:
6720 /* This section is used in a dynamically linked executable file.
6721 It is an allocated common section. The dynamic linker can
6722 either resolve these symbols to something in a shared
6723 library, or it can just leave them here. For our purposes,
6724 we can consider these symbols to be in a new section. */
6725 if (mips_elf_acom_section.name == NULL)
6726 {
6727 /* Initialize the acommon section. */
6728 mips_elf_acom_section.name = ".acommon";
6729 mips_elf_acom_section.flags = SEC_ALLOC;
6730 mips_elf_acom_section.output_section = &mips_elf_acom_section;
6731 mips_elf_acom_section.symbol = &mips_elf_acom_symbol;
6732 mips_elf_acom_section.symbol_ptr_ptr = &mips_elf_acom_symbol_ptr;
6733 mips_elf_acom_symbol.name = ".acommon";
6734 mips_elf_acom_symbol.flags = BSF_SECTION_SYM;
6735 mips_elf_acom_symbol.section = &mips_elf_acom_section;
6736 mips_elf_acom_symbol_ptr = &mips_elf_acom_symbol;
6737 }
6738 asym->section = &mips_elf_acom_section;
6739 break;
6740
6741 case SHN_COMMON:
6742 /* Common symbols less than the GP size are automatically
6743 treated as SHN_MIPS_SCOMMON symbols on IRIX5. */
6744 if (asym->value > elf_gp_size (abfd)
6745 || ELF_ST_TYPE (elfsym->internal_elf_sym.st_info) == STT_TLS
6746 || IRIX_COMPAT (abfd) == ict_irix6)
6747 break;
6748 /* Fall through. */
6749 case SHN_MIPS_SCOMMON:
6750 if (mips_elf_scom_section.name == NULL)
6751 {
6752 /* Initialize the small common section. */
6753 mips_elf_scom_section.name = ".scommon";
6754 mips_elf_scom_section.flags = SEC_IS_COMMON;
6755 mips_elf_scom_section.output_section = &mips_elf_scom_section;
6756 mips_elf_scom_section.symbol = &mips_elf_scom_symbol;
6757 mips_elf_scom_section.symbol_ptr_ptr = &mips_elf_scom_symbol_ptr;
6758 mips_elf_scom_symbol.name = ".scommon";
6759 mips_elf_scom_symbol.flags = BSF_SECTION_SYM;
6760 mips_elf_scom_symbol.section = &mips_elf_scom_section;
6761 mips_elf_scom_symbol_ptr = &mips_elf_scom_symbol;
6762 }
6763 asym->section = &mips_elf_scom_section;
6764 asym->value = elfsym->internal_elf_sym.st_size;
6765 break;
6766
6767 case SHN_MIPS_SUNDEFINED:
6768 asym->section = bfd_und_section_ptr;
6769 break;
6770
6771 case SHN_MIPS_TEXT:
6772 {
6773 asection *section = bfd_get_section_by_name (abfd, ".text");
6774
6775 if (section != NULL)
6776 {
6777 asym->section = section;
6778 /* MIPS_TEXT is a bit special, the address is not an offset
6779 to the base of the .text section. So substract the section
6780 base address to make it an offset. */
6781 asym->value -= section->vma;
6782 }
6783 }
6784 break;
6785
6786 case SHN_MIPS_DATA:
6787 {
6788 asection *section = bfd_get_section_by_name (abfd, ".data");
6789
6790 if (section != NULL)
6791 {
6792 asym->section = section;
6793 /* MIPS_DATA is a bit special, the address is not an offset
6794 to the base of the .data section. So substract the section
6795 base address to make it an offset. */
6796 asym->value -= section->vma;
6797 }
6798 }
6799 break;
6800 }
6801
6802 /* If this is an odd-valued function symbol, assume it's a MIPS16
6803 or microMIPS one. */
6804 if (ELF_ST_TYPE (elfsym->internal_elf_sym.st_info) == STT_FUNC
6805 && (asym->value & 1) != 0)
6806 {
6807 asym->value--;
6808 if (MICROMIPS_P (abfd))
6809 elfsym->internal_elf_sym.st_other
6810 = ELF_ST_SET_MICROMIPS (elfsym->internal_elf_sym.st_other);
6811 else
6812 elfsym->internal_elf_sym.st_other
6813 = ELF_ST_SET_MIPS16 (elfsym->internal_elf_sym.st_other);
6814 }
6815 }
6816 \f
6817 /* Implement elf_backend_eh_frame_address_size. This differs from
6818 the default in the way it handles EABI64.
6819
6820 EABI64 was originally specified as an LP64 ABI, and that is what
6821 -mabi=eabi normally gives on a 64-bit target. However, gcc has
6822 historically accepted the combination of -mabi=eabi and -mlong32,
6823 and this ILP32 variation has become semi-official over time.
6824 Both forms use elf32 and have pointer-sized FDE addresses.
6825
6826 If an EABI object was generated by GCC 4.0 or above, it will have
6827 an empty .gcc_compiled_longXX section, where XX is the size of longs
6828 in bits. Unfortunately, ILP32 objects generated by earlier compilers
6829 have no special marking to distinguish them from LP64 objects.
6830
6831 We don't want users of the official LP64 ABI to be punished for the
6832 existence of the ILP32 variant, but at the same time, we don't want
6833 to mistakenly interpret pre-4.0 ILP32 objects as being LP64 objects.
6834 We therefore take the following approach:
6835
6836 - If ABFD contains a .gcc_compiled_longXX section, use it to
6837 determine the pointer size.
6838
6839 - Otherwise check the type of the first relocation. Assume that
6840 the LP64 ABI is being used if the relocation is of type R_MIPS_64.
6841
6842 - Otherwise punt.
6843
6844 The second check is enough to detect LP64 objects generated by pre-4.0
6845 compilers because, in the kind of output generated by those compilers,
6846 the first relocation will be associated with either a CIE personality
6847 routine or an FDE start address. Furthermore, the compilers never
6848 used a special (non-pointer) encoding for this ABI.
6849
6850 Checking the relocation type should also be safe because there is no
6851 reason to use R_MIPS_64 in an ILP32 object. Pre-4.0 compilers never
6852 did so. */
6853
6854 unsigned int
6855 _bfd_mips_elf_eh_frame_address_size (bfd *abfd, asection *sec)
6856 {
6857 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
6858 return 8;
6859 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64)
6860 {
6861 bfd_boolean long32_p, long64_p;
6862
6863 long32_p = bfd_get_section_by_name (abfd, ".gcc_compiled_long32") != 0;
6864 long64_p = bfd_get_section_by_name (abfd, ".gcc_compiled_long64") != 0;
6865 if (long32_p && long64_p)
6866 return 0;
6867 if (long32_p)
6868 return 4;
6869 if (long64_p)
6870 return 8;
6871
6872 if (sec->reloc_count > 0
6873 && elf_section_data (sec)->relocs != NULL
6874 && (ELF32_R_TYPE (elf_section_data (sec)->relocs[0].r_info)
6875 == R_MIPS_64))
6876 return 8;
6877
6878 return 0;
6879 }
6880 return 4;
6881 }
6882 \f
6883 /* There appears to be a bug in the MIPSpro linker that causes GOT_DISP
6884 relocations against two unnamed section symbols to resolve to the
6885 same address. For example, if we have code like:
6886
6887 lw $4,%got_disp(.data)($gp)
6888 lw $25,%got_disp(.text)($gp)
6889 jalr $25
6890
6891 then the linker will resolve both relocations to .data and the program
6892 will jump there rather than to .text.
6893
6894 We can work around this problem by giving names to local section symbols.
6895 This is also what the MIPSpro tools do. */
6896
6897 bfd_boolean
6898 _bfd_mips_elf_name_local_section_symbols (bfd *abfd)
6899 {
6900 return SGI_COMPAT (abfd);
6901 }
6902 \f
6903 /* Work over a section just before writing it out. This routine is
6904 used by both the 32-bit and the 64-bit ABI. FIXME: We recognize
6905 sections that need the SHF_MIPS_GPREL flag by name; there has to be
6906 a better way. */
6907
6908 bfd_boolean
6909 _bfd_mips_elf_section_processing (bfd *abfd, Elf_Internal_Shdr *hdr)
6910 {
6911 if (hdr->sh_type == SHT_MIPS_REGINFO
6912 && hdr->sh_size > 0)
6913 {
6914 bfd_byte buf[4];
6915
6916 BFD_ASSERT (hdr->sh_size == sizeof (Elf32_External_RegInfo));
6917 BFD_ASSERT (hdr->contents == NULL);
6918
6919 if (bfd_seek (abfd,
6920 hdr->sh_offset + sizeof (Elf32_External_RegInfo) - 4,
6921 SEEK_SET) != 0)
6922 return FALSE;
6923 H_PUT_32 (abfd, elf_gp (abfd), buf);
6924 if (bfd_bwrite (buf, 4, abfd) != 4)
6925 return FALSE;
6926 }
6927
6928 if (hdr->sh_type == SHT_MIPS_OPTIONS
6929 && hdr->bfd_section != NULL
6930 && mips_elf_section_data (hdr->bfd_section) != NULL
6931 && mips_elf_section_data (hdr->bfd_section)->u.tdata != NULL)
6932 {
6933 bfd_byte *contents, *l, *lend;
6934
6935 /* We stored the section contents in the tdata field in the
6936 set_section_contents routine. We save the section contents
6937 so that we don't have to read them again.
6938 At this point we know that elf_gp is set, so we can look
6939 through the section contents to see if there is an
6940 ODK_REGINFO structure. */
6941
6942 contents = mips_elf_section_data (hdr->bfd_section)->u.tdata;
6943 l = contents;
6944 lend = contents + hdr->sh_size;
6945 while (l + sizeof (Elf_External_Options) <= lend)
6946 {
6947 Elf_Internal_Options intopt;
6948
6949 bfd_mips_elf_swap_options_in (abfd, (Elf_External_Options *) l,
6950 &intopt);
6951 if (intopt.size < sizeof (Elf_External_Options))
6952 {
6953 (*_bfd_error_handler)
6954 (_("%B: Warning: bad `%s' option size %u smaller than its header"),
6955 abfd, MIPS_ELF_OPTIONS_SECTION_NAME (abfd), intopt.size);
6956 break;
6957 }
6958 if (ABI_64_P (abfd) && intopt.kind == ODK_REGINFO)
6959 {
6960 bfd_byte buf[8];
6961
6962 if (bfd_seek (abfd,
6963 (hdr->sh_offset
6964 + (l - contents)
6965 + sizeof (Elf_External_Options)
6966 + (sizeof (Elf64_External_RegInfo) - 8)),
6967 SEEK_SET) != 0)
6968 return FALSE;
6969 H_PUT_64 (abfd, elf_gp (abfd), buf);
6970 if (bfd_bwrite (buf, 8, abfd) != 8)
6971 return FALSE;
6972 }
6973 else if (intopt.kind == ODK_REGINFO)
6974 {
6975 bfd_byte buf[4];
6976
6977 if (bfd_seek (abfd,
6978 (hdr->sh_offset
6979 + (l - contents)
6980 + sizeof (Elf_External_Options)
6981 + (sizeof (Elf32_External_RegInfo) - 4)),
6982 SEEK_SET) != 0)
6983 return FALSE;
6984 H_PUT_32 (abfd, elf_gp (abfd), buf);
6985 if (bfd_bwrite (buf, 4, abfd) != 4)
6986 return FALSE;
6987 }
6988 l += intopt.size;
6989 }
6990 }
6991
6992 if (hdr->bfd_section != NULL)
6993 {
6994 const char *name = bfd_get_section_name (abfd, hdr->bfd_section);
6995
6996 /* .sbss is not handled specially here because the GNU/Linux
6997 prelinker can convert .sbss from NOBITS to PROGBITS and
6998 changing it back to NOBITS breaks the binary. The entry in
6999 _bfd_mips_elf_special_sections will ensure the correct flags
7000 are set on .sbss if BFD creates it without reading it from an
7001 input file, and without special handling here the flags set
7002 on it in an input file will be followed. */
7003 if (strcmp (name, ".sdata") == 0
7004 || strcmp (name, ".lit8") == 0
7005 || strcmp (name, ".lit4") == 0)
7006 hdr->sh_flags |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL;
7007 else if (strcmp (name, ".srdata") == 0)
7008 hdr->sh_flags |= SHF_ALLOC | SHF_MIPS_GPREL;
7009 else if (strcmp (name, ".compact_rel") == 0)
7010 hdr->sh_flags = 0;
7011 else if (strcmp (name, ".rtproc") == 0)
7012 {
7013 if (hdr->sh_addralign != 0 && hdr->sh_entsize == 0)
7014 {
7015 unsigned int adjust;
7016
7017 adjust = hdr->sh_size % hdr->sh_addralign;
7018 if (adjust != 0)
7019 hdr->sh_size += hdr->sh_addralign - adjust;
7020 }
7021 }
7022 }
7023
7024 return TRUE;
7025 }
7026
7027 /* Handle a MIPS specific section when reading an object file. This
7028 is called when elfcode.h finds a section with an unknown type.
7029 This routine supports both the 32-bit and 64-bit ELF ABI.
7030
7031 FIXME: We need to handle the SHF_MIPS_GPREL flag, but I'm not sure
7032 how to. */
7033
7034 bfd_boolean
7035 _bfd_mips_elf_section_from_shdr (bfd *abfd,
7036 Elf_Internal_Shdr *hdr,
7037 const char *name,
7038 int shindex)
7039 {
7040 flagword flags = 0;
7041
7042 /* There ought to be a place to keep ELF backend specific flags, but
7043 at the moment there isn't one. We just keep track of the
7044 sections by their name, instead. Fortunately, the ABI gives
7045 suggested names for all the MIPS specific sections, so we will
7046 probably get away with this. */
7047 switch (hdr->sh_type)
7048 {
7049 case SHT_MIPS_LIBLIST:
7050 if (strcmp (name, ".liblist") != 0)
7051 return FALSE;
7052 break;
7053 case SHT_MIPS_MSYM:
7054 if (strcmp (name, ".msym") != 0)
7055 return FALSE;
7056 break;
7057 case SHT_MIPS_CONFLICT:
7058 if (strcmp (name, ".conflict") != 0)
7059 return FALSE;
7060 break;
7061 case SHT_MIPS_GPTAB:
7062 if (! CONST_STRNEQ (name, ".gptab."))
7063 return FALSE;
7064 break;
7065 case SHT_MIPS_UCODE:
7066 if (strcmp (name, ".ucode") != 0)
7067 return FALSE;
7068 break;
7069 case SHT_MIPS_DEBUG:
7070 if (strcmp (name, ".mdebug") != 0)
7071 return FALSE;
7072 flags = SEC_DEBUGGING;
7073 break;
7074 case SHT_MIPS_REGINFO:
7075 if (strcmp (name, ".reginfo") != 0
7076 || hdr->sh_size != sizeof (Elf32_External_RegInfo))
7077 return FALSE;
7078 flags = (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_SAME_SIZE);
7079 break;
7080 case SHT_MIPS_IFACE:
7081 if (strcmp (name, ".MIPS.interfaces") != 0)
7082 return FALSE;
7083 break;
7084 case SHT_MIPS_CONTENT:
7085 if (! CONST_STRNEQ (name, ".MIPS.content"))
7086 return FALSE;
7087 break;
7088 case SHT_MIPS_OPTIONS:
7089 if (!MIPS_ELF_OPTIONS_SECTION_NAME_P (name))
7090 return FALSE;
7091 break;
7092 case SHT_MIPS_ABIFLAGS:
7093 if (!MIPS_ELF_ABIFLAGS_SECTION_NAME_P (name))
7094 return FALSE;
7095 flags = (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_SAME_SIZE);
7096 break;
7097 case SHT_MIPS_DWARF:
7098 if (! CONST_STRNEQ (name, ".debug_")
7099 && ! CONST_STRNEQ (name, ".zdebug_"))
7100 return FALSE;
7101 break;
7102 case SHT_MIPS_SYMBOL_LIB:
7103 if (strcmp (name, ".MIPS.symlib") != 0)
7104 return FALSE;
7105 break;
7106 case SHT_MIPS_EVENTS:
7107 if (! CONST_STRNEQ (name, ".MIPS.events")
7108 && ! CONST_STRNEQ (name, ".MIPS.post_rel"))
7109 return FALSE;
7110 break;
7111 default:
7112 break;
7113 }
7114
7115 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
7116 return FALSE;
7117
7118 if (flags)
7119 {
7120 if (! bfd_set_section_flags (abfd, hdr->bfd_section,
7121 (bfd_get_section_flags (abfd,
7122 hdr->bfd_section)
7123 | flags)))
7124 return FALSE;
7125 }
7126
7127 if (hdr->sh_type == SHT_MIPS_ABIFLAGS)
7128 {
7129 Elf_External_ABIFlags_v0 ext;
7130
7131 if (! bfd_get_section_contents (abfd, hdr->bfd_section,
7132 &ext, 0, sizeof ext))
7133 return FALSE;
7134 bfd_mips_elf_swap_abiflags_v0_in (abfd, &ext,
7135 &mips_elf_tdata (abfd)->abiflags);
7136 if (mips_elf_tdata (abfd)->abiflags.version != 0)
7137 return FALSE;
7138 mips_elf_tdata (abfd)->abiflags_valid = TRUE;
7139 }
7140
7141 /* FIXME: We should record sh_info for a .gptab section. */
7142
7143 /* For a .reginfo section, set the gp value in the tdata information
7144 from the contents of this section. We need the gp value while
7145 processing relocs, so we just get it now. The .reginfo section
7146 is not used in the 64-bit MIPS ELF ABI. */
7147 if (hdr->sh_type == SHT_MIPS_REGINFO)
7148 {
7149 Elf32_External_RegInfo ext;
7150 Elf32_RegInfo s;
7151
7152 if (! bfd_get_section_contents (abfd, hdr->bfd_section,
7153 &ext, 0, sizeof ext))
7154 return FALSE;
7155 bfd_mips_elf32_swap_reginfo_in (abfd, &ext, &s);
7156 elf_gp (abfd) = s.ri_gp_value;
7157 }
7158
7159 /* For a SHT_MIPS_OPTIONS section, look for a ODK_REGINFO entry, and
7160 set the gp value based on what we find. We may see both
7161 SHT_MIPS_REGINFO and SHT_MIPS_OPTIONS/ODK_REGINFO; in that case,
7162 they should agree. */
7163 if (hdr->sh_type == SHT_MIPS_OPTIONS)
7164 {
7165 bfd_byte *contents, *l, *lend;
7166
7167 contents = bfd_malloc (hdr->sh_size);
7168 if (contents == NULL)
7169 return FALSE;
7170 if (! bfd_get_section_contents (abfd, hdr->bfd_section, contents,
7171 0, hdr->sh_size))
7172 {
7173 free (contents);
7174 return FALSE;
7175 }
7176 l = contents;
7177 lend = contents + hdr->sh_size;
7178 while (l + sizeof (Elf_External_Options) <= lend)
7179 {
7180 Elf_Internal_Options intopt;
7181
7182 bfd_mips_elf_swap_options_in (abfd, (Elf_External_Options *) l,
7183 &intopt);
7184 if (intopt.size < sizeof (Elf_External_Options))
7185 {
7186 (*_bfd_error_handler)
7187 (_("%B: Warning: bad `%s' option size %u smaller than its header"),
7188 abfd, MIPS_ELF_OPTIONS_SECTION_NAME (abfd), intopt.size);
7189 break;
7190 }
7191 if (ABI_64_P (abfd) && intopt.kind == ODK_REGINFO)
7192 {
7193 Elf64_Internal_RegInfo intreg;
7194
7195 bfd_mips_elf64_swap_reginfo_in
7196 (abfd,
7197 ((Elf64_External_RegInfo *)
7198 (l + sizeof (Elf_External_Options))),
7199 &intreg);
7200 elf_gp (abfd) = intreg.ri_gp_value;
7201 }
7202 else if (intopt.kind == ODK_REGINFO)
7203 {
7204 Elf32_RegInfo intreg;
7205
7206 bfd_mips_elf32_swap_reginfo_in
7207 (abfd,
7208 ((Elf32_External_RegInfo *)
7209 (l + sizeof (Elf_External_Options))),
7210 &intreg);
7211 elf_gp (abfd) = intreg.ri_gp_value;
7212 }
7213 l += intopt.size;
7214 }
7215 free (contents);
7216 }
7217
7218 return TRUE;
7219 }
7220
7221 /* Set the correct type for a MIPS ELF section. We do this by the
7222 section name, which is a hack, but ought to work. This routine is
7223 used by both the 32-bit and the 64-bit ABI. */
7224
7225 bfd_boolean
7226 _bfd_mips_elf_fake_sections (bfd *abfd, Elf_Internal_Shdr *hdr, asection *sec)
7227 {
7228 const char *name = bfd_get_section_name (abfd, sec);
7229
7230 if (strcmp (name, ".liblist") == 0)
7231 {
7232 hdr->sh_type = SHT_MIPS_LIBLIST;
7233 hdr->sh_info = sec->size / sizeof (Elf32_Lib);
7234 /* The sh_link field is set in final_write_processing. */
7235 }
7236 else if (strcmp (name, ".conflict") == 0)
7237 hdr->sh_type = SHT_MIPS_CONFLICT;
7238 else if (CONST_STRNEQ (name, ".gptab."))
7239 {
7240 hdr->sh_type = SHT_MIPS_GPTAB;
7241 hdr->sh_entsize = sizeof (Elf32_External_gptab);
7242 /* The sh_info field is set in final_write_processing. */
7243 }
7244 else if (strcmp (name, ".ucode") == 0)
7245 hdr->sh_type = SHT_MIPS_UCODE;
7246 else if (strcmp (name, ".mdebug") == 0)
7247 {
7248 hdr->sh_type = SHT_MIPS_DEBUG;
7249 /* In a shared object on IRIX 5.3, the .mdebug section has an
7250 entsize of 0. FIXME: Does this matter? */
7251 if (SGI_COMPAT (abfd) && (abfd->flags & DYNAMIC) != 0)
7252 hdr->sh_entsize = 0;
7253 else
7254 hdr->sh_entsize = 1;
7255 }
7256 else if (strcmp (name, ".reginfo") == 0)
7257 {
7258 hdr->sh_type = SHT_MIPS_REGINFO;
7259 /* In a shared object on IRIX 5.3, the .reginfo section has an
7260 entsize of 0x18. FIXME: Does this matter? */
7261 if (SGI_COMPAT (abfd))
7262 {
7263 if ((abfd->flags & DYNAMIC) != 0)
7264 hdr->sh_entsize = sizeof (Elf32_External_RegInfo);
7265 else
7266 hdr->sh_entsize = 1;
7267 }
7268 else
7269 hdr->sh_entsize = sizeof (Elf32_External_RegInfo);
7270 }
7271 else if (SGI_COMPAT (abfd)
7272 && (strcmp (name, ".hash") == 0
7273 || strcmp (name, ".dynamic") == 0
7274 || strcmp (name, ".dynstr") == 0))
7275 {
7276 if (SGI_COMPAT (abfd))
7277 hdr->sh_entsize = 0;
7278 #if 0
7279 /* This isn't how the IRIX6 linker behaves. */
7280 hdr->sh_info = SIZEOF_MIPS_DYNSYM_SECNAMES;
7281 #endif
7282 }
7283 else if (strcmp (name, ".got") == 0
7284 || strcmp (name, ".srdata") == 0
7285 || strcmp (name, ".sdata") == 0
7286 || strcmp (name, ".sbss") == 0
7287 || strcmp (name, ".lit4") == 0
7288 || strcmp (name, ".lit8") == 0)
7289 hdr->sh_flags |= SHF_MIPS_GPREL;
7290 else if (strcmp (name, ".MIPS.interfaces") == 0)
7291 {
7292 hdr->sh_type = SHT_MIPS_IFACE;
7293 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7294 }
7295 else if (CONST_STRNEQ (name, ".MIPS.content"))
7296 {
7297 hdr->sh_type = SHT_MIPS_CONTENT;
7298 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7299 /* The sh_info field is set in final_write_processing. */
7300 }
7301 else if (MIPS_ELF_OPTIONS_SECTION_NAME_P (name))
7302 {
7303 hdr->sh_type = SHT_MIPS_OPTIONS;
7304 hdr->sh_entsize = 1;
7305 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7306 }
7307 else if (CONST_STRNEQ (name, ".MIPS.abiflags"))
7308 {
7309 hdr->sh_type = SHT_MIPS_ABIFLAGS;
7310 hdr->sh_entsize = sizeof (Elf_External_ABIFlags_v0);
7311 }
7312 else if (CONST_STRNEQ (name, ".debug_")
7313 || CONST_STRNEQ (name, ".zdebug_"))
7314 {
7315 hdr->sh_type = SHT_MIPS_DWARF;
7316
7317 /* Irix facilities such as libexc expect a single .debug_frame
7318 per executable, the system ones have NOSTRIP set and the linker
7319 doesn't merge sections with different flags so ... */
7320 if (SGI_COMPAT (abfd) && CONST_STRNEQ (name, ".debug_frame"))
7321 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7322 }
7323 else if (strcmp (name, ".MIPS.symlib") == 0)
7324 {
7325 hdr->sh_type = SHT_MIPS_SYMBOL_LIB;
7326 /* The sh_link and sh_info fields are set in
7327 final_write_processing. */
7328 }
7329 else if (CONST_STRNEQ (name, ".MIPS.events")
7330 || CONST_STRNEQ (name, ".MIPS.post_rel"))
7331 {
7332 hdr->sh_type = SHT_MIPS_EVENTS;
7333 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7334 /* The sh_link field is set in final_write_processing. */
7335 }
7336 else if (strcmp (name, ".msym") == 0)
7337 {
7338 hdr->sh_type = SHT_MIPS_MSYM;
7339 hdr->sh_flags |= SHF_ALLOC;
7340 hdr->sh_entsize = 8;
7341 }
7342
7343 /* The generic elf_fake_sections will set up REL_HDR using the default
7344 kind of relocations. We used to set up a second header for the
7345 non-default kind of relocations here, but only NewABI would use
7346 these, and the IRIX ld doesn't like resulting empty RELA sections.
7347 Thus we create those header only on demand now. */
7348
7349 return TRUE;
7350 }
7351
7352 /* Given a BFD section, try to locate the corresponding ELF section
7353 index. This is used by both the 32-bit and the 64-bit ABI.
7354 Actually, it's not clear to me that the 64-bit ABI supports these,
7355 but for non-PIC objects we will certainly want support for at least
7356 the .scommon section. */
7357
7358 bfd_boolean
7359 _bfd_mips_elf_section_from_bfd_section (bfd *abfd ATTRIBUTE_UNUSED,
7360 asection *sec, int *retval)
7361 {
7362 if (strcmp (bfd_get_section_name (abfd, sec), ".scommon") == 0)
7363 {
7364 *retval = SHN_MIPS_SCOMMON;
7365 return TRUE;
7366 }
7367 if (strcmp (bfd_get_section_name (abfd, sec), ".acommon") == 0)
7368 {
7369 *retval = SHN_MIPS_ACOMMON;
7370 return TRUE;
7371 }
7372 return FALSE;
7373 }
7374 \f
7375 /* Hook called by the linker routine which adds symbols from an object
7376 file. We must handle the special MIPS section numbers here. */
7377
7378 bfd_boolean
7379 _bfd_mips_elf_add_symbol_hook (bfd *abfd, struct bfd_link_info *info,
7380 Elf_Internal_Sym *sym, const char **namep,
7381 flagword *flagsp ATTRIBUTE_UNUSED,
7382 asection **secp, bfd_vma *valp)
7383 {
7384 if (SGI_COMPAT (abfd)
7385 && (abfd->flags & DYNAMIC) != 0
7386 && strcmp (*namep, "_rld_new_interface") == 0)
7387 {
7388 /* Skip IRIX5 rld entry name. */
7389 *namep = NULL;
7390 return TRUE;
7391 }
7392
7393 /* Shared objects may have a dynamic symbol '_gp_disp' defined as
7394 a SECTION *ABS*. This causes ld to think it can resolve _gp_disp
7395 by setting a DT_NEEDED for the shared object. Since _gp_disp is
7396 a magic symbol resolved by the linker, we ignore this bogus definition
7397 of _gp_disp. New ABI objects do not suffer from this problem so this
7398 is not done for them. */
7399 if (!NEWABI_P(abfd)
7400 && (sym->st_shndx == SHN_ABS)
7401 && (strcmp (*namep, "_gp_disp") == 0))
7402 {
7403 *namep = NULL;
7404 return TRUE;
7405 }
7406
7407 switch (sym->st_shndx)
7408 {
7409 case SHN_COMMON:
7410 /* Common symbols less than the GP size are automatically
7411 treated as SHN_MIPS_SCOMMON symbols. */
7412 if (sym->st_size > elf_gp_size (abfd)
7413 || ELF_ST_TYPE (sym->st_info) == STT_TLS
7414 || IRIX_COMPAT (abfd) == ict_irix6)
7415 break;
7416 /* Fall through. */
7417 case SHN_MIPS_SCOMMON:
7418 *secp = bfd_make_section_old_way (abfd, ".scommon");
7419 (*secp)->flags |= SEC_IS_COMMON;
7420 *valp = sym->st_size;
7421 break;
7422
7423 case SHN_MIPS_TEXT:
7424 /* This section is used in a shared object. */
7425 if (mips_elf_tdata (abfd)->elf_text_section == NULL)
7426 {
7427 asymbol *elf_text_symbol;
7428 asection *elf_text_section;
7429 bfd_size_type amt = sizeof (asection);
7430
7431 elf_text_section = bfd_zalloc (abfd, amt);
7432 if (elf_text_section == NULL)
7433 return FALSE;
7434
7435 amt = sizeof (asymbol);
7436 elf_text_symbol = bfd_zalloc (abfd, amt);
7437 if (elf_text_symbol == NULL)
7438 return FALSE;
7439
7440 /* Initialize the section. */
7441
7442 mips_elf_tdata (abfd)->elf_text_section = elf_text_section;
7443 mips_elf_tdata (abfd)->elf_text_symbol = elf_text_symbol;
7444
7445 elf_text_section->symbol = elf_text_symbol;
7446 elf_text_section->symbol_ptr_ptr = &mips_elf_tdata (abfd)->elf_text_symbol;
7447
7448 elf_text_section->name = ".text";
7449 elf_text_section->flags = SEC_NO_FLAGS;
7450 elf_text_section->output_section = NULL;
7451 elf_text_section->owner = abfd;
7452 elf_text_symbol->name = ".text";
7453 elf_text_symbol->flags = BSF_SECTION_SYM | BSF_DYNAMIC;
7454 elf_text_symbol->section = elf_text_section;
7455 }
7456 /* This code used to do *secp = bfd_und_section_ptr if
7457 info->shared. I don't know why, and that doesn't make sense,
7458 so I took it out. */
7459 *secp = mips_elf_tdata (abfd)->elf_text_section;
7460 break;
7461
7462 case SHN_MIPS_ACOMMON:
7463 /* Fall through. XXX Can we treat this as allocated data? */
7464 case SHN_MIPS_DATA:
7465 /* This section is used in a shared object. */
7466 if (mips_elf_tdata (abfd)->elf_data_section == NULL)
7467 {
7468 asymbol *elf_data_symbol;
7469 asection *elf_data_section;
7470 bfd_size_type amt = sizeof (asection);
7471
7472 elf_data_section = bfd_zalloc (abfd, amt);
7473 if (elf_data_section == NULL)
7474 return FALSE;
7475
7476 amt = sizeof (asymbol);
7477 elf_data_symbol = bfd_zalloc (abfd, amt);
7478 if (elf_data_symbol == NULL)
7479 return FALSE;
7480
7481 /* Initialize the section. */
7482
7483 mips_elf_tdata (abfd)->elf_data_section = elf_data_section;
7484 mips_elf_tdata (abfd)->elf_data_symbol = elf_data_symbol;
7485
7486 elf_data_section->symbol = elf_data_symbol;
7487 elf_data_section->symbol_ptr_ptr = &mips_elf_tdata (abfd)->elf_data_symbol;
7488
7489 elf_data_section->name = ".data";
7490 elf_data_section->flags = SEC_NO_FLAGS;
7491 elf_data_section->output_section = NULL;
7492 elf_data_section->owner = abfd;
7493 elf_data_symbol->name = ".data";
7494 elf_data_symbol->flags = BSF_SECTION_SYM | BSF_DYNAMIC;
7495 elf_data_symbol->section = elf_data_section;
7496 }
7497 /* This code used to do *secp = bfd_und_section_ptr if
7498 info->shared. I don't know why, and that doesn't make sense,
7499 so I took it out. */
7500 *secp = mips_elf_tdata (abfd)->elf_data_section;
7501 break;
7502
7503 case SHN_MIPS_SUNDEFINED:
7504 *secp = bfd_und_section_ptr;
7505 break;
7506 }
7507
7508 if (SGI_COMPAT (abfd)
7509 && ! info->shared
7510 && info->output_bfd->xvec == abfd->xvec
7511 && strcmp (*namep, "__rld_obj_head") == 0)
7512 {
7513 struct elf_link_hash_entry *h;
7514 struct bfd_link_hash_entry *bh;
7515
7516 /* Mark __rld_obj_head as dynamic. */
7517 bh = NULL;
7518 if (! (_bfd_generic_link_add_one_symbol
7519 (info, abfd, *namep, BSF_GLOBAL, *secp, *valp, NULL, FALSE,
7520 get_elf_backend_data (abfd)->collect, &bh)))
7521 return FALSE;
7522
7523 h = (struct elf_link_hash_entry *) bh;
7524 h->non_elf = 0;
7525 h->def_regular = 1;
7526 h->type = STT_OBJECT;
7527
7528 if (! bfd_elf_link_record_dynamic_symbol (info, h))
7529 return FALSE;
7530
7531 mips_elf_hash_table (info)->use_rld_obj_head = TRUE;
7532 mips_elf_hash_table (info)->rld_symbol = h;
7533 }
7534
7535 /* If this is a mips16 text symbol, add 1 to the value to make it
7536 odd. This will cause something like .word SYM to come up with
7537 the right value when it is loaded into the PC. */
7538 if (ELF_ST_IS_COMPRESSED (sym->st_other))
7539 ++*valp;
7540
7541 return TRUE;
7542 }
7543
7544 /* This hook function is called before the linker writes out a global
7545 symbol. We mark symbols as small common if appropriate. This is
7546 also where we undo the increment of the value for a mips16 symbol. */
7547
7548 int
7549 _bfd_mips_elf_link_output_symbol_hook
7550 (struct bfd_link_info *info ATTRIBUTE_UNUSED,
7551 const char *name ATTRIBUTE_UNUSED, Elf_Internal_Sym *sym,
7552 asection *input_sec, struct elf_link_hash_entry *h ATTRIBUTE_UNUSED)
7553 {
7554 /* If we see a common symbol, which implies a relocatable link, then
7555 if a symbol was small common in an input file, mark it as small
7556 common in the output file. */
7557 if (sym->st_shndx == SHN_COMMON
7558 && strcmp (input_sec->name, ".scommon") == 0)
7559 sym->st_shndx = SHN_MIPS_SCOMMON;
7560
7561 if (ELF_ST_IS_COMPRESSED (sym->st_other))
7562 sym->st_value &= ~1;
7563
7564 return 1;
7565 }
7566 \f
7567 /* Functions for the dynamic linker. */
7568
7569 /* Create dynamic sections when linking against a dynamic object. */
7570
7571 bfd_boolean
7572 _bfd_mips_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
7573 {
7574 struct elf_link_hash_entry *h;
7575 struct bfd_link_hash_entry *bh;
7576 flagword flags;
7577 register asection *s;
7578 const char * const *namep;
7579 struct mips_elf_link_hash_table *htab;
7580
7581 htab = mips_elf_hash_table (info);
7582 BFD_ASSERT (htab != NULL);
7583
7584 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
7585 | SEC_LINKER_CREATED | SEC_READONLY);
7586
7587 /* The psABI requires a read-only .dynamic section, but the VxWorks
7588 EABI doesn't. */
7589 if (!htab->is_vxworks)
7590 {
7591 s = bfd_get_linker_section (abfd, ".dynamic");
7592 if (s != NULL)
7593 {
7594 if (! bfd_set_section_flags (abfd, s, flags))
7595 return FALSE;
7596 }
7597 }
7598
7599 /* We need to create .got section. */
7600 if (!mips_elf_create_got_section (abfd, info))
7601 return FALSE;
7602
7603 if (! mips_elf_rel_dyn_section (info, TRUE))
7604 return FALSE;
7605
7606 /* Create .stub section. */
7607 s = bfd_make_section_anyway_with_flags (abfd,
7608 MIPS_ELF_STUB_SECTION_NAME (abfd),
7609 flags | SEC_CODE);
7610 if (s == NULL
7611 || ! bfd_set_section_alignment (abfd, s,
7612 MIPS_ELF_LOG_FILE_ALIGN (abfd)))
7613 return FALSE;
7614 htab->sstubs = s;
7615
7616 if (!mips_elf_hash_table (info)->use_rld_obj_head
7617 && !info->shared
7618 && bfd_get_linker_section (abfd, ".rld_map") == NULL)
7619 {
7620 s = bfd_make_section_anyway_with_flags (abfd, ".rld_map",
7621 flags &~ (flagword) SEC_READONLY);
7622 if (s == NULL
7623 || ! bfd_set_section_alignment (abfd, s,
7624 MIPS_ELF_LOG_FILE_ALIGN (abfd)))
7625 return FALSE;
7626 }
7627
7628 /* On IRIX5, we adjust add some additional symbols and change the
7629 alignments of several sections. There is no ABI documentation
7630 indicating that this is necessary on IRIX6, nor any evidence that
7631 the linker takes such action. */
7632 if (IRIX_COMPAT (abfd) == ict_irix5)
7633 {
7634 for (namep = mips_elf_dynsym_rtproc_names; *namep != NULL; namep++)
7635 {
7636 bh = NULL;
7637 if (! (_bfd_generic_link_add_one_symbol
7638 (info, abfd, *namep, BSF_GLOBAL, bfd_und_section_ptr, 0,
7639 NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
7640 return FALSE;
7641
7642 h = (struct elf_link_hash_entry *) bh;
7643 h->non_elf = 0;
7644 h->def_regular = 1;
7645 h->type = STT_SECTION;
7646
7647 if (! bfd_elf_link_record_dynamic_symbol (info, h))
7648 return FALSE;
7649 }
7650
7651 /* We need to create a .compact_rel section. */
7652 if (SGI_COMPAT (abfd))
7653 {
7654 if (!mips_elf_create_compact_rel_section (abfd, info))
7655 return FALSE;
7656 }
7657
7658 /* Change alignments of some sections. */
7659 s = bfd_get_linker_section (abfd, ".hash");
7660 if (s != NULL)
7661 (void) bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
7662
7663 s = bfd_get_linker_section (abfd, ".dynsym");
7664 if (s != NULL)
7665 (void) bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
7666
7667 s = bfd_get_linker_section (abfd, ".dynstr");
7668 if (s != NULL)
7669 (void) bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
7670
7671 /* ??? */
7672 s = bfd_get_section_by_name (abfd, ".reginfo");
7673 if (s != NULL)
7674 (void) bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
7675
7676 s = bfd_get_linker_section (abfd, ".dynamic");
7677 if (s != NULL)
7678 (void) bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
7679 }
7680
7681 if (!info->shared)
7682 {
7683 const char *name;
7684
7685 name = SGI_COMPAT (abfd) ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING";
7686 bh = NULL;
7687 if (!(_bfd_generic_link_add_one_symbol
7688 (info, abfd, name, BSF_GLOBAL, bfd_abs_section_ptr, 0,
7689 NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
7690 return FALSE;
7691
7692 h = (struct elf_link_hash_entry *) bh;
7693 h->non_elf = 0;
7694 h->def_regular = 1;
7695 h->type = STT_SECTION;
7696
7697 if (! bfd_elf_link_record_dynamic_symbol (info, h))
7698 return FALSE;
7699
7700 if (! mips_elf_hash_table (info)->use_rld_obj_head)
7701 {
7702 /* __rld_map is a four byte word located in the .data section
7703 and is filled in by the rtld to contain a pointer to
7704 the _r_debug structure. Its symbol value will be set in
7705 _bfd_mips_elf_finish_dynamic_symbol. */
7706 s = bfd_get_linker_section (abfd, ".rld_map");
7707 BFD_ASSERT (s != NULL);
7708
7709 name = SGI_COMPAT (abfd) ? "__rld_map" : "__RLD_MAP";
7710 bh = NULL;
7711 if (!(_bfd_generic_link_add_one_symbol
7712 (info, abfd, name, BSF_GLOBAL, s, 0, NULL, FALSE,
7713 get_elf_backend_data (abfd)->collect, &bh)))
7714 return FALSE;
7715
7716 h = (struct elf_link_hash_entry *) bh;
7717 h->non_elf = 0;
7718 h->def_regular = 1;
7719 h->type = STT_OBJECT;
7720
7721 if (! bfd_elf_link_record_dynamic_symbol (info, h))
7722 return FALSE;
7723 mips_elf_hash_table (info)->rld_symbol = h;
7724 }
7725 }
7726
7727 /* Create the .plt, .rel(a).plt, .dynbss and .rel(a).bss sections.
7728 Also, on VxWorks, create the _PROCEDURE_LINKAGE_TABLE_ symbol. */
7729 if (!_bfd_elf_create_dynamic_sections (abfd, info))
7730 return FALSE;
7731
7732 /* Cache the sections created above. */
7733 htab->splt = bfd_get_linker_section (abfd, ".plt");
7734 htab->sdynbss = bfd_get_linker_section (abfd, ".dynbss");
7735 if (htab->is_vxworks)
7736 {
7737 htab->srelbss = bfd_get_linker_section (abfd, ".rela.bss");
7738 htab->srelplt = bfd_get_linker_section (abfd, ".rela.plt");
7739 }
7740 else
7741 htab->srelplt = bfd_get_linker_section (abfd, ".rel.plt");
7742 if (!htab->sdynbss
7743 || (htab->is_vxworks && !htab->srelbss && !info->shared)
7744 || !htab->srelplt
7745 || !htab->splt)
7746 abort ();
7747
7748 /* Do the usual VxWorks handling. */
7749 if (htab->is_vxworks
7750 && !elf_vxworks_create_dynamic_sections (abfd, info, &htab->srelplt2))
7751 return FALSE;
7752
7753 return TRUE;
7754 }
7755 \f
7756 /* Return true if relocation REL against section SEC is a REL rather than
7757 RELA relocation. RELOCS is the first relocation in the section and
7758 ABFD is the bfd that contains SEC. */
7759
7760 static bfd_boolean
7761 mips_elf_rel_relocation_p (bfd *abfd, asection *sec,
7762 const Elf_Internal_Rela *relocs,
7763 const Elf_Internal_Rela *rel)
7764 {
7765 Elf_Internal_Shdr *rel_hdr;
7766 const struct elf_backend_data *bed;
7767
7768 /* To determine which flavor of relocation this is, we depend on the
7769 fact that the INPUT_SECTION's REL_HDR is read before RELA_HDR. */
7770 rel_hdr = elf_section_data (sec)->rel.hdr;
7771 if (rel_hdr == NULL)
7772 return FALSE;
7773 bed = get_elf_backend_data (abfd);
7774 return ((size_t) (rel - relocs)
7775 < NUM_SHDR_ENTRIES (rel_hdr) * bed->s->int_rels_per_ext_rel);
7776 }
7777
7778 /* Read the addend for REL relocation REL, which belongs to bfd ABFD.
7779 HOWTO is the relocation's howto and CONTENTS points to the contents
7780 of the section that REL is against. */
7781
7782 static bfd_vma
7783 mips_elf_read_rel_addend (bfd *abfd, const Elf_Internal_Rela *rel,
7784 reloc_howto_type *howto, bfd_byte *contents)
7785 {
7786 bfd_byte *location;
7787 unsigned int r_type;
7788 bfd_vma addend;
7789
7790 r_type = ELF_R_TYPE (abfd, rel->r_info);
7791 location = contents + rel->r_offset;
7792
7793 /* Get the addend, which is stored in the input file. */
7794 _bfd_mips_elf_reloc_unshuffle (abfd, r_type, FALSE, location);
7795 addend = mips_elf_obtain_contents (howto, rel, abfd, contents);
7796 _bfd_mips_elf_reloc_shuffle (abfd, r_type, FALSE, location);
7797
7798 return addend & howto->src_mask;
7799 }
7800
7801 /* REL is a relocation in ABFD that needs a partnering LO16 relocation
7802 and *ADDEND is the addend for REL itself. Look for the LO16 relocation
7803 and update *ADDEND with the final addend. Return true on success
7804 or false if the LO16 could not be found. RELEND is the exclusive
7805 upper bound on the relocations for REL's section. */
7806
7807 static bfd_boolean
7808 mips_elf_add_lo16_rel_addend (bfd *abfd,
7809 const Elf_Internal_Rela *rel,
7810 const Elf_Internal_Rela *relend,
7811 bfd_byte *contents, bfd_vma *addend)
7812 {
7813 unsigned int r_type, lo16_type;
7814 const Elf_Internal_Rela *lo16_relocation;
7815 reloc_howto_type *lo16_howto;
7816 bfd_vma l;
7817
7818 r_type = ELF_R_TYPE (abfd, rel->r_info);
7819 if (mips16_reloc_p (r_type))
7820 lo16_type = R_MIPS16_LO16;
7821 else if (micromips_reloc_p (r_type))
7822 lo16_type = R_MICROMIPS_LO16;
7823 else if (r_type == R_MIPS_PCHI16)
7824 lo16_type = R_MIPS_PCLO16;
7825 else
7826 lo16_type = R_MIPS_LO16;
7827
7828 /* The combined value is the sum of the HI16 addend, left-shifted by
7829 sixteen bits, and the LO16 addend, sign extended. (Usually, the
7830 code does a `lui' of the HI16 value, and then an `addiu' of the
7831 LO16 value.)
7832
7833 Scan ahead to find a matching LO16 relocation.
7834
7835 According to the MIPS ELF ABI, the R_MIPS_LO16 relocation must
7836 be immediately following. However, for the IRIX6 ABI, the next
7837 relocation may be a composed relocation consisting of several
7838 relocations for the same address. In that case, the R_MIPS_LO16
7839 relocation may occur as one of these. We permit a similar
7840 extension in general, as that is useful for GCC.
7841
7842 In some cases GCC dead code elimination removes the LO16 but keeps
7843 the corresponding HI16. This is strictly speaking a violation of
7844 the ABI but not immediately harmful. */
7845 lo16_relocation = mips_elf_next_relocation (abfd, lo16_type, rel, relend);
7846 if (lo16_relocation == NULL)
7847 return FALSE;
7848
7849 /* Obtain the addend kept there. */
7850 lo16_howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, lo16_type, FALSE);
7851 l = mips_elf_read_rel_addend (abfd, lo16_relocation, lo16_howto, contents);
7852
7853 l <<= lo16_howto->rightshift;
7854 l = _bfd_mips_elf_sign_extend (l, 16);
7855
7856 *addend <<= 16;
7857 *addend += l;
7858 return TRUE;
7859 }
7860
7861 /* Try to read the contents of section SEC in bfd ABFD. Return true and
7862 store the contents in *CONTENTS on success. Assume that *CONTENTS
7863 already holds the contents if it is nonull on entry. */
7864
7865 static bfd_boolean
7866 mips_elf_get_section_contents (bfd *abfd, asection *sec, bfd_byte **contents)
7867 {
7868 if (*contents)
7869 return TRUE;
7870
7871 /* Get cached copy if it exists. */
7872 if (elf_section_data (sec)->this_hdr.contents != NULL)
7873 {
7874 *contents = elf_section_data (sec)->this_hdr.contents;
7875 return TRUE;
7876 }
7877
7878 return bfd_malloc_and_get_section (abfd, sec, contents);
7879 }
7880
7881 /* Make a new PLT record to keep internal data. */
7882
7883 static struct plt_entry *
7884 mips_elf_make_plt_record (bfd *abfd)
7885 {
7886 struct plt_entry *entry;
7887
7888 entry = bfd_zalloc (abfd, sizeof (*entry));
7889 if (entry == NULL)
7890 return NULL;
7891
7892 entry->stub_offset = MINUS_ONE;
7893 entry->mips_offset = MINUS_ONE;
7894 entry->comp_offset = MINUS_ONE;
7895 entry->gotplt_index = MINUS_ONE;
7896 return entry;
7897 }
7898
7899 /* Look through the relocs for a section during the first phase, and
7900 allocate space in the global offset table and record the need for
7901 standard MIPS and compressed procedure linkage table entries. */
7902
7903 bfd_boolean
7904 _bfd_mips_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
7905 asection *sec, const Elf_Internal_Rela *relocs)
7906 {
7907 const char *name;
7908 bfd *dynobj;
7909 Elf_Internal_Shdr *symtab_hdr;
7910 struct elf_link_hash_entry **sym_hashes;
7911 size_t extsymoff;
7912 const Elf_Internal_Rela *rel;
7913 const Elf_Internal_Rela *rel_end;
7914 asection *sreloc;
7915 const struct elf_backend_data *bed;
7916 struct mips_elf_link_hash_table *htab;
7917 bfd_byte *contents;
7918 bfd_vma addend;
7919 reloc_howto_type *howto;
7920
7921 if (info->relocatable)
7922 return TRUE;
7923
7924 htab = mips_elf_hash_table (info);
7925 BFD_ASSERT (htab != NULL);
7926
7927 dynobj = elf_hash_table (info)->dynobj;
7928 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
7929 sym_hashes = elf_sym_hashes (abfd);
7930 extsymoff = (elf_bad_symtab (abfd)) ? 0 : symtab_hdr->sh_info;
7931
7932 bed = get_elf_backend_data (abfd);
7933 rel_end = relocs + sec->reloc_count * bed->s->int_rels_per_ext_rel;
7934
7935 /* Check for the mips16 stub sections. */
7936
7937 name = bfd_get_section_name (abfd, sec);
7938 if (FN_STUB_P (name))
7939 {
7940 unsigned long r_symndx;
7941
7942 /* Look at the relocation information to figure out which symbol
7943 this is for. */
7944
7945 r_symndx = mips16_stub_symndx (bed, sec, relocs, rel_end);
7946 if (r_symndx == 0)
7947 {
7948 (*_bfd_error_handler)
7949 (_("%B: Warning: cannot determine the target function for"
7950 " stub section `%s'"),
7951 abfd, name);
7952 bfd_set_error (bfd_error_bad_value);
7953 return FALSE;
7954 }
7955
7956 if (r_symndx < extsymoff
7957 || sym_hashes[r_symndx - extsymoff] == NULL)
7958 {
7959 asection *o;
7960
7961 /* This stub is for a local symbol. This stub will only be
7962 needed if there is some relocation in this BFD, other
7963 than a 16 bit function call, which refers to this symbol. */
7964 for (o = abfd->sections; o != NULL; o = o->next)
7965 {
7966 Elf_Internal_Rela *sec_relocs;
7967 const Elf_Internal_Rela *r, *rend;
7968
7969 /* We can ignore stub sections when looking for relocs. */
7970 if ((o->flags & SEC_RELOC) == 0
7971 || o->reloc_count == 0
7972 || section_allows_mips16_refs_p (o))
7973 continue;
7974
7975 sec_relocs
7976 = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
7977 info->keep_memory);
7978 if (sec_relocs == NULL)
7979 return FALSE;
7980
7981 rend = sec_relocs + o->reloc_count;
7982 for (r = sec_relocs; r < rend; r++)
7983 if (ELF_R_SYM (abfd, r->r_info) == r_symndx
7984 && !mips16_call_reloc_p (ELF_R_TYPE (abfd, r->r_info)))
7985 break;
7986
7987 if (elf_section_data (o)->relocs != sec_relocs)
7988 free (sec_relocs);
7989
7990 if (r < rend)
7991 break;
7992 }
7993
7994 if (o == NULL)
7995 {
7996 /* There is no non-call reloc for this stub, so we do
7997 not need it. Since this function is called before
7998 the linker maps input sections to output sections, we
7999 can easily discard it by setting the SEC_EXCLUDE
8000 flag. */
8001 sec->flags |= SEC_EXCLUDE;
8002 return TRUE;
8003 }
8004
8005 /* Record this stub in an array of local symbol stubs for
8006 this BFD. */
8007 if (mips_elf_tdata (abfd)->local_stubs == NULL)
8008 {
8009 unsigned long symcount;
8010 asection **n;
8011 bfd_size_type amt;
8012
8013 if (elf_bad_symtab (abfd))
8014 symcount = NUM_SHDR_ENTRIES (symtab_hdr);
8015 else
8016 symcount = symtab_hdr->sh_info;
8017 amt = symcount * sizeof (asection *);
8018 n = bfd_zalloc (abfd, amt);
8019 if (n == NULL)
8020 return FALSE;
8021 mips_elf_tdata (abfd)->local_stubs = n;
8022 }
8023
8024 sec->flags |= SEC_KEEP;
8025 mips_elf_tdata (abfd)->local_stubs[r_symndx] = sec;
8026
8027 /* We don't need to set mips16_stubs_seen in this case.
8028 That flag is used to see whether we need to look through
8029 the global symbol table for stubs. We don't need to set
8030 it here, because we just have a local stub. */
8031 }
8032 else
8033 {
8034 struct mips_elf_link_hash_entry *h;
8035
8036 h = ((struct mips_elf_link_hash_entry *)
8037 sym_hashes[r_symndx - extsymoff]);
8038
8039 while (h->root.root.type == bfd_link_hash_indirect
8040 || h->root.root.type == bfd_link_hash_warning)
8041 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
8042
8043 /* H is the symbol this stub is for. */
8044
8045 /* If we already have an appropriate stub for this function, we
8046 don't need another one, so we can discard this one. Since
8047 this function is called before the linker maps input sections
8048 to output sections, we can easily discard it by setting the
8049 SEC_EXCLUDE flag. */
8050 if (h->fn_stub != NULL)
8051 {
8052 sec->flags |= SEC_EXCLUDE;
8053 return TRUE;
8054 }
8055
8056 sec->flags |= SEC_KEEP;
8057 h->fn_stub = sec;
8058 mips_elf_hash_table (info)->mips16_stubs_seen = TRUE;
8059 }
8060 }
8061 else if (CALL_STUB_P (name) || CALL_FP_STUB_P (name))
8062 {
8063 unsigned long r_symndx;
8064 struct mips_elf_link_hash_entry *h;
8065 asection **loc;
8066
8067 /* Look at the relocation information to figure out which symbol
8068 this is for. */
8069
8070 r_symndx = mips16_stub_symndx (bed, sec, relocs, rel_end);
8071 if (r_symndx == 0)
8072 {
8073 (*_bfd_error_handler)
8074 (_("%B: Warning: cannot determine the target function for"
8075 " stub section `%s'"),
8076 abfd, name);
8077 bfd_set_error (bfd_error_bad_value);
8078 return FALSE;
8079 }
8080
8081 if (r_symndx < extsymoff
8082 || sym_hashes[r_symndx - extsymoff] == NULL)
8083 {
8084 asection *o;
8085
8086 /* This stub is for a local symbol. This stub will only be
8087 needed if there is some relocation (R_MIPS16_26) in this BFD
8088 that refers to this symbol. */
8089 for (o = abfd->sections; o != NULL; o = o->next)
8090 {
8091 Elf_Internal_Rela *sec_relocs;
8092 const Elf_Internal_Rela *r, *rend;
8093
8094 /* We can ignore stub sections when looking for relocs. */
8095 if ((o->flags & SEC_RELOC) == 0
8096 || o->reloc_count == 0
8097 || section_allows_mips16_refs_p (o))
8098 continue;
8099
8100 sec_relocs
8101 = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
8102 info->keep_memory);
8103 if (sec_relocs == NULL)
8104 return FALSE;
8105
8106 rend = sec_relocs + o->reloc_count;
8107 for (r = sec_relocs; r < rend; r++)
8108 if (ELF_R_SYM (abfd, r->r_info) == r_symndx
8109 && ELF_R_TYPE (abfd, r->r_info) == R_MIPS16_26)
8110 break;
8111
8112 if (elf_section_data (o)->relocs != sec_relocs)
8113 free (sec_relocs);
8114
8115 if (r < rend)
8116 break;
8117 }
8118
8119 if (o == NULL)
8120 {
8121 /* There is no non-call reloc for this stub, so we do
8122 not need it. Since this function is called before
8123 the linker maps input sections to output sections, we
8124 can easily discard it by setting the SEC_EXCLUDE
8125 flag. */
8126 sec->flags |= SEC_EXCLUDE;
8127 return TRUE;
8128 }
8129
8130 /* Record this stub in an array of local symbol call_stubs for
8131 this BFD. */
8132 if (mips_elf_tdata (abfd)->local_call_stubs == NULL)
8133 {
8134 unsigned long symcount;
8135 asection **n;
8136 bfd_size_type amt;
8137
8138 if (elf_bad_symtab (abfd))
8139 symcount = NUM_SHDR_ENTRIES (symtab_hdr);
8140 else
8141 symcount = symtab_hdr->sh_info;
8142 amt = symcount * sizeof (asection *);
8143 n = bfd_zalloc (abfd, amt);
8144 if (n == NULL)
8145 return FALSE;
8146 mips_elf_tdata (abfd)->local_call_stubs = n;
8147 }
8148
8149 sec->flags |= SEC_KEEP;
8150 mips_elf_tdata (abfd)->local_call_stubs[r_symndx] = sec;
8151
8152 /* We don't need to set mips16_stubs_seen in this case.
8153 That flag is used to see whether we need to look through
8154 the global symbol table for stubs. We don't need to set
8155 it here, because we just have a local stub. */
8156 }
8157 else
8158 {
8159 h = ((struct mips_elf_link_hash_entry *)
8160 sym_hashes[r_symndx - extsymoff]);
8161
8162 /* H is the symbol this stub is for. */
8163
8164 if (CALL_FP_STUB_P (name))
8165 loc = &h->call_fp_stub;
8166 else
8167 loc = &h->call_stub;
8168
8169 /* If we already have an appropriate stub for this function, we
8170 don't need another one, so we can discard this one. Since
8171 this function is called before the linker maps input sections
8172 to output sections, we can easily discard it by setting the
8173 SEC_EXCLUDE flag. */
8174 if (*loc != NULL)
8175 {
8176 sec->flags |= SEC_EXCLUDE;
8177 return TRUE;
8178 }
8179
8180 sec->flags |= SEC_KEEP;
8181 *loc = sec;
8182 mips_elf_hash_table (info)->mips16_stubs_seen = TRUE;
8183 }
8184 }
8185
8186 sreloc = NULL;
8187 contents = NULL;
8188 for (rel = relocs; rel < rel_end; ++rel)
8189 {
8190 unsigned long r_symndx;
8191 unsigned int r_type;
8192 struct elf_link_hash_entry *h;
8193 bfd_boolean can_make_dynamic_p;
8194 bfd_boolean call_reloc_p;
8195 bfd_boolean constrain_symbol_p;
8196
8197 r_symndx = ELF_R_SYM (abfd, rel->r_info);
8198 r_type = ELF_R_TYPE (abfd, rel->r_info);
8199
8200 if (r_symndx < extsymoff)
8201 h = NULL;
8202 else if (r_symndx >= extsymoff + NUM_SHDR_ENTRIES (symtab_hdr))
8203 {
8204 (*_bfd_error_handler)
8205 (_("%B: Malformed reloc detected for section %s"),
8206 abfd, name);
8207 bfd_set_error (bfd_error_bad_value);
8208 return FALSE;
8209 }
8210 else
8211 {
8212 h = sym_hashes[r_symndx - extsymoff];
8213 if (h != NULL)
8214 {
8215 while (h->root.type == bfd_link_hash_indirect
8216 || h->root.type == bfd_link_hash_warning)
8217 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8218
8219 /* PR15323, ref flags aren't set for references in the
8220 same object. */
8221 h->root.non_ir_ref = 1;
8222 }
8223 }
8224
8225 /* Set CAN_MAKE_DYNAMIC_P to true if we can convert this
8226 relocation into a dynamic one. */
8227 can_make_dynamic_p = FALSE;
8228
8229 /* Set CALL_RELOC_P to true if the relocation is for a call,
8230 and if pointer equality therefore doesn't matter. */
8231 call_reloc_p = FALSE;
8232
8233 /* Set CONSTRAIN_SYMBOL_P if we need to take the relocation
8234 into account when deciding how to define the symbol.
8235 Relocations in nonallocatable sections such as .pdr and
8236 .debug* should have no effect. */
8237 constrain_symbol_p = ((sec->flags & SEC_ALLOC) != 0);
8238
8239 switch (r_type)
8240 {
8241 case R_MIPS_CALL16:
8242 case R_MIPS_CALL_HI16:
8243 case R_MIPS_CALL_LO16:
8244 case R_MIPS16_CALL16:
8245 case R_MICROMIPS_CALL16:
8246 case R_MICROMIPS_CALL_HI16:
8247 case R_MICROMIPS_CALL_LO16:
8248 call_reloc_p = TRUE;
8249 /* Fall through. */
8250
8251 case R_MIPS_GOT16:
8252 case R_MIPS_GOT_HI16:
8253 case R_MIPS_GOT_LO16:
8254 case R_MIPS_GOT_PAGE:
8255 case R_MIPS_GOT_OFST:
8256 case R_MIPS_GOT_DISP:
8257 case R_MIPS_TLS_GOTTPREL:
8258 case R_MIPS_TLS_GD:
8259 case R_MIPS_TLS_LDM:
8260 case R_MIPS16_GOT16:
8261 case R_MIPS16_TLS_GOTTPREL:
8262 case R_MIPS16_TLS_GD:
8263 case R_MIPS16_TLS_LDM:
8264 case R_MICROMIPS_GOT16:
8265 case R_MICROMIPS_GOT_HI16:
8266 case R_MICROMIPS_GOT_LO16:
8267 case R_MICROMIPS_GOT_PAGE:
8268 case R_MICROMIPS_GOT_OFST:
8269 case R_MICROMIPS_GOT_DISP:
8270 case R_MICROMIPS_TLS_GOTTPREL:
8271 case R_MICROMIPS_TLS_GD:
8272 case R_MICROMIPS_TLS_LDM:
8273 if (dynobj == NULL)
8274 elf_hash_table (info)->dynobj = dynobj = abfd;
8275 if (!mips_elf_create_got_section (dynobj, info))
8276 return FALSE;
8277 if (htab->is_vxworks && !info->shared)
8278 {
8279 (*_bfd_error_handler)
8280 (_("%B: GOT reloc at 0x%lx not expected in executables"),
8281 abfd, (unsigned long) rel->r_offset);
8282 bfd_set_error (bfd_error_bad_value);
8283 return FALSE;
8284 }
8285 can_make_dynamic_p = TRUE;
8286 break;
8287
8288 case R_MIPS_NONE:
8289 case R_MIPS_JALR:
8290 case R_MICROMIPS_JALR:
8291 /* These relocations have empty fields and are purely there to
8292 provide link information. The symbol value doesn't matter. */
8293 constrain_symbol_p = FALSE;
8294 break;
8295
8296 case R_MIPS_GPREL16:
8297 case R_MIPS_GPREL32:
8298 case R_MIPS16_GPREL:
8299 case R_MICROMIPS_GPREL16:
8300 /* GP-relative relocations always resolve to a definition in a
8301 regular input file, ignoring the one-definition rule. This is
8302 important for the GP setup sequence in NewABI code, which
8303 always resolves to a local function even if other relocations
8304 against the symbol wouldn't. */
8305 constrain_symbol_p = FALSE;
8306 break;
8307
8308 case R_MIPS_32:
8309 case R_MIPS_REL32:
8310 case R_MIPS_64:
8311 /* In VxWorks executables, references to external symbols
8312 must be handled using copy relocs or PLT entries; it is not
8313 possible to convert this relocation into a dynamic one.
8314
8315 For executables that use PLTs and copy-relocs, we have a
8316 choice between converting the relocation into a dynamic
8317 one or using copy relocations or PLT entries. It is
8318 usually better to do the former, unless the relocation is
8319 against a read-only section. */
8320 if ((info->shared
8321 || (h != NULL
8322 && !htab->is_vxworks
8323 && strcmp (h->root.root.string, "__gnu_local_gp") != 0
8324 && !(!info->nocopyreloc
8325 && !PIC_OBJECT_P (abfd)
8326 && MIPS_ELF_READONLY_SECTION (sec))))
8327 && (sec->flags & SEC_ALLOC) != 0)
8328 {
8329 can_make_dynamic_p = TRUE;
8330 if (dynobj == NULL)
8331 elf_hash_table (info)->dynobj = dynobj = abfd;
8332 }
8333 break;
8334
8335 case R_MIPS_26:
8336 case R_MIPS_PC16:
8337 case R_MIPS_PC21_S2:
8338 case R_MIPS_PC26_S2:
8339 case R_MIPS16_26:
8340 case R_MICROMIPS_26_S1:
8341 case R_MICROMIPS_PC7_S1:
8342 case R_MICROMIPS_PC10_S1:
8343 case R_MICROMIPS_PC16_S1:
8344 case R_MICROMIPS_PC23_S2:
8345 call_reloc_p = TRUE;
8346 break;
8347 }
8348
8349 if (h)
8350 {
8351 if (constrain_symbol_p)
8352 {
8353 if (!can_make_dynamic_p)
8354 ((struct mips_elf_link_hash_entry *) h)->has_static_relocs = 1;
8355
8356 if (!call_reloc_p)
8357 h->pointer_equality_needed = 1;
8358
8359 /* We must not create a stub for a symbol that has
8360 relocations related to taking the function's address.
8361 This doesn't apply to VxWorks, where CALL relocs refer
8362 to a .got.plt entry instead of a normal .got entry. */
8363 if (!htab->is_vxworks && (!can_make_dynamic_p || !call_reloc_p))
8364 ((struct mips_elf_link_hash_entry *) h)->no_fn_stub = TRUE;
8365 }
8366
8367 /* Relocations against the special VxWorks __GOTT_BASE__ and
8368 __GOTT_INDEX__ symbols must be left to the loader. Allocate
8369 room for them in .rela.dyn. */
8370 if (is_gott_symbol (info, h))
8371 {
8372 if (sreloc == NULL)
8373 {
8374 sreloc = mips_elf_rel_dyn_section (info, TRUE);
8375 if (sreloc == NULL)
8376 return FALSE;
8377 }
8378 mips_elf_allocate_dynamic_relocations (dynobj, info, 1);
8379 if (MIPS_ELF_READONLY_SECTION (sec))
8380 /* We tell the dynamic linker that there are
8381 relocations against the text segment. */
8382 info->flags |= DF_TEXTREL;
8383 }
8384 }
8385 else if (call_lo16_reloc_p (r_type)
8386 || got_lo16_reloc_p (r_type)
8387 || got_disp_reloc_p (r_type)
8388 || (got16_reloc_p (r_type) && htab->is_vxworks))
8389 {
8390 /* We may need a local GOT entry for this relocation. We
8391 don't count R_MIPS_GOT_PAGE because we can estimate the
8392 maximum number of pages needed by looking at the size of
8393 the segment. Similar comments apply to R_MIPS*_GOT16 and
8394 R_MIPS*_CALL16, except on VxWorks, where GOT relocations
8395 always evaluate to "G". We don't count R_MIPS_GOT_HI16, or
8396 R_MIPS_CALL_HI16 because these are always followed by an
8397 R_MIPS_GOT_LO16 or R_MIPS_CALL_LO16. */
8398 if (!mips_elf_record_local_got_symbol (abfd, r_symndx,
8399 rel->r_addend, info, r_type))
8400 return FALSE;
8401 }
8402
8403 if (h != NULL
8404 && mips_elf_relocation_needs_la25_stub (abfd, r_type,
8405 ELF_ST_IS_MIPS16 (h->other)))
8406 ((struct mips_elf_link_hash_entry *) h)->has_nonpic_branches = TRUE;
8407
8408 switch (r_type)
8409 {
8410 case R_MIPS_CALL16:
8411 case R_MIPS16_CALL16:
8412 case R_MICROMIPS_CALL16:
8413 if (h == NULL)
8414 {
8415 (*_bfd_error_handler)
8416 (_("%B: CALL16 reloc at 0x%lx not against global symbol"),
8417 abfd, (unsigned long) rel->r_offset);
8418 bfd_set_error (bfd_error_bad_value);
8419 return FALSE;
8420 }
8421 /* Fall through. */
8422
8423 case R_MIPS_CALL_HI16:
8424 case R_MIPS_CALL_LO16:
8425 case R_MICROMIPS_CALL_HI16:
8426 case R_MICROMIPS_CALL_LO16:
8427 if (h != NULL)
8428 {
8429 /* Make sure there is room in the regular GOT to hold the
8430 function's address. We may eliminate it in favour of
8431 a .got.plt entry later; see mips_elf_count_got_symbols. */
8432 if (!mips_elf_record_global_got_symbol (h, abfd, info, TRUE,
8433 r_type))
8434 return FALSE;
8435
8436 /* We need a stub, not a plt entry for the undefined
8437 function. But we record it as if it needs plt. See
8438 _bfd_elf_adjust_dynamic_symbol. */
8439 h->needs_plt = 1;
8440 h->type = STT_FUNC;
8441 }
8442 break;
8443
8444 case R_MIPS_GOT_PAGE:
8445 case R_MICROMIPS_GOT_PAGE:
8446 case R_MIPS16_GOT16:
8447 case R_MIPS_GOT16:
8448 case R_MIPS_GOT_HI16:
8449 case R_MIPS_GOT_LO16:
8450 case R_MICROMIPS_GOT16:
8451 case R_MICROMIPS_GOT_HI16:
8452 case R_MICROMIPS_GOT_LO16:
8453 if (!h || got_page_reloc_p (r_type))
8454 {
8455 /* This relocation needs (or may need, if h != NULL) a
8456 page entry in the GOT. For R_MIPS_GOT_PAGE we do not
8457 know for sure until we know whether the symbol is
8458 preemptible. */
8459 if (mips_elf_rel_relocation_p (abfd, sec, relocs, rel))
8460 {
8461 if (!mips_elf_get_section_contents (abfd, sec, &contents))
8462 return FALSE;
8463 howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, r_type, FALSE);
8464 addend = mips_elf_read_rel_addend (abfd, rel,
8465 howto, contents);
8466 if (got16_reloc_p (r_type))
8467 mips_elf_add_lo16_rel_addend (abfd, rel, rel_end,
8468 contents, &addend);
8469 else
8470 addend <<= howto->rightshift;
8471 }
8472 else
8473 addend = rel->r_addend;
8474 if (!mips_elf_record_got_page_ref (info, abfd, r_symndx,
8475 h, addend))
8476 return FALSE;
8477
8478 if (h)
8479 {
8480 struct mips_elf_link_hash_entry *hmips =
8481 (struct mips_elf_link_hash_entry *) h;
8482
8483 /* This symbol is definitely not overridable. */
8484 if (hmips->root.def_regular
8485 && ! (info->shared && ! info->symbolic
8486 && ! hmips->root.forced_local))
8487 h = NULL;
8488 }
8489 }
8490 /* If this is a global, overridable symbol, GOT_PAGE will
8491 decay to GOT_DISP, so we'll need a GOT entry for it. */
8492 /* Fall through. */
8493
8494 case R_MIPS_GOT_DISP:
8495 case R_MICROMIPS_GOT_DISP:
8496 if (h && !mips_elf_record_global_got_symbol (h, abfd, info,
8497 FALSE, r_type))
8498 return FALSE;
8499 break;
8500
8501 case R_MIPS_TLS_GOTTPREL:
8502 case R_MIPS16_TLS_GOTTPREL:
8503 case R_MICROMIPS_TLS_GOTTPREL:
8504 if (info->shared)
8505 info->flags |= DF_STATIC_TLS;
8506 /* Fall through */
8507
8508 case R_MIPS_TLS_LDM:
8509 case R_MIPS16_TLS_LDM:
8510 case R_MICROMIPS_TLS_LDM:
8511 if (tls_ldm_reloc_p (r_type))
8512 {
8513 r_symndx = STN_UNDEF;
8514 h = NULL;
8515 }
8516 /* Fall through */
8517
8518 case R_MIPS_TLS_GD:
8519 case R_MIPS16_TLS_GD:
8520 case R_MICROMIPS_TLS_GD:
8521 /* This symbol requires a global offset table entry, or two
8522 for TLS GD relocations. */
8523 if (h != NULL)
8524 {
8525 if (!mips_elf_record_global_got_symbol (h, abfd, info,
8526 FALSE, r_type))
8527 return FALSE;
8528 }
8529 else
8530 {
8531 if (!mips_elf_record_local_got_symbol (abfd, r_symndx,
8532 rel->r_addend,
8533 info, r_type))
8534 return FALSE;
8535 }
8536 break;
8537
8538 case R_MIPS_32:
8539 case R_MIPS_REL32:
8540 case R_MIPS_64:
8541 /* In VxWorks executables, references to external symbols
8542 are handled using copy relocs or PLT stubs, so there's
8543 no need to add a .rela.dyn entry for this relocation. */
8544 if (can_make_dynamic_p)
8545 {
8546 if (sreloc == NULL)
8547 {
8548 sreloc = mips_elf_rel_dyn_section (info, TRUE);
8549 if (sreloc == NULL)
8550 return FALSE;
8551 }
8552 if (info->shared && h == NULL)
8553 {
8554 /* When creating a shared object, we must copy these
8555 reloc types into the output file as R_MIPS_REL32
8556 relocs. Make room for this reloc in .rel(a).dyn. */
8557 mips_elf_allocate_dynamic_relocations (dynobj, info, 1);
8558 if (MIPS_ELF_READONLY_SECTION (sec))
8559 /* We tell the dynamic linker that there are
8560 relocations against the text segment. */
8561 info->flags |= DF_TEXTREL;
8562 }
8563 else
8564 {
8565 struct mips_elf_link_hash_entry *hmips;
8566
8567 /* For a shared object, we must copy this relocation
8568 unless the symbol turns out to be undefined and
8569 weak with non-default visibility, in which case
8570 it will be left as zero.
8571
8572 We could elide R_MIPS_REL32 for locally binding symbols
8573 in shared libraries, but do not yet do so.
8574
8575 For an executable, we only need to copy this
8576 reloc if the symbol is defined in a dynamic
8577 object. */
8578 hmips = (struct mips_elf_link_hash_entry *) h;
8579 ++hmips->possibly_dynamic_relocs;
8580 if (MIPS_ELF_READONLY_SECTION (sec))
8581 /* We need it to tell the dynamic linker if there
8582 are relocations against the text segment. */
8583 hmips->readonly_reloc = TRUE;
8584 }
8585 }
8586
8587 if (SGI_COMPAT (abfd))
8588 mips_elf_hash_table (info)->compact_rel_size +=
8589 sizeof (Elf32_External_crinfo);
8590 break;
8591
8592 case R_MIPS_26:
8593 case R_MIPS_GPREL16:
8594 case R_MIPS_LITERAL:
8595 case R_MIPS_GPREL32:
8596 case R_MICROMIPS_26_S1:
8597 case R_MICROMIPS_GPREL16:
8598 case R_MICROMIPS_LITERAL:
8599 case R_MICROMIPS_GPREL7_S2:
8600 if (SGI_COMPAT (abfd))
8601 mips_elf_hash_table (info)->compact_rel_size +=
8602 sizeof (Elf32_External_crinfo);
8603 break;
8604
8605 /* This relocation describes the C++ object vtable hierarchy.
8606 Reconstruct it for later use during GC. */
8607 case R_MIPS_GNU_VTINHERIT:
8608 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
8609 return FALSE;
8610 break;
8611
8612 /* This relocation describes which C++ vtable entries are actually
8613 used. Record for later use during GC. */
8614 case R_MIPS_GNU_VTENTRY:
8615 BFD_ASSERT (h != NULL);
8616 if (h != NULL
8617 && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset))
8618 return FALSE;
8619 break;
8620
8621 default:
8622 break;
8623 }
8624
8625 /* Record the need for a PLT entry. At this point we don't know
8626 yet if we are going to create a PLT in the first place, but
8627 we only record whether the relocation requires a standard MIPS
8628 or a compressed code entry anyway. If we don't make a PLT after
8629 all, then we'll just ignore these arrangements. Likewise if
8630 a PLT entry is not created because the symbol is satisfied
8631 locally. */
8632 if (h != NULL
8633 && jal_reloc_p (r_type)
8634 && !SYMBOL_CALLS_LOCAL (info, h))
8635 {
8636 if (h->plt.plist == NULL)
8637 h->plt.plist = mips_elf_make_plt_record (abfd);
8638 if (h->plt.plist == NULL)
8639 return FALSE;
8640
8641 if (r_type == R_MIPS_26)
8642 h->plt.plist->need_mips = TRUE;
8643 else
8644 h->plt.plist->need_comp = TRUE;
8645 }
8646
8647 /* See if this reloc would need to refer to a MIPS16 hard-float stub,
8648 if there is one. We only need to handle global symbols here;
8649 we decide whether to keep or delete stubs for local symbols
8650 when processing the stub's relocations. */
8651 if (h != NULL
8652 && !mips16_call_reloc_p (r_type)
8653 && !section_allows_mips16_refs_p (sec))
8654 {
8655 struct mips_elf_link_hash_entry *mh;
8656
8657 mh = (struct mips_elf_link_hash_entry *) h;
8658 mh->need_fn_stub = TRUE;
8659 }
8660
8661 /* Refuse some position-dependent relocations when creating a
8662 shared library. Do not refuse R_MIPS_32 / R_MIPS_64; they're
8663 not PIC, but we can create dynamic relocations and the result
8664 will be fine. Also do not refuse R_MIPS_LO16, which can be
8665 combined with R_MIPS_GOT16. */
8666 if (info->shared)
8667 {
8668 switch (r_type)
8669 {
8670 case R_MIPS16_HI16:
8671 case R_MIPS_HI16:
8672 case R_MIPS_HIGHER:
8673 case R_MIPS_HIGHEST:
8674 case R_MICROMIPS_HI16:
8675 case R_MICROMIPS_HIGHER:
8676 case R_MICROMIPS_HIGHEST:
8677 /* Don't refuse a high part relocation if it's against
8678 no symbol (e.g. part of a compound relocation). */
8679 if (r_symndx == STN_UNDEF)
8680 break;
8681
8682 /* R_MIPS_HI16 against _gp_disp is used for $gp setup,
8683 and has a special meaning. */
8684 if (!NEWABI_P (abfd) && h != NULL
8685 && strcmp (h->root.root.string, "_gp_disp") == 0)
8686 break;
8687
8688 /* Likewise __GOTT_BASE__ and __GOTT_INDEX__ on VxWorks. */
8689 if (is_gott_symbol (info, h))
8690 break;
8691
8692 /* FALLTHROUGH */
8693
8694 case R_MIPS16_26:
8695 case R_MIPS_26:
8696 case R_MICROMIPS_26_S1:
8697 howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, r_type, FALSE);
8698 (*_bfd_error_handler)
8699 (_("%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
8700 abfd, howto->name,
8701 (h) ? h->root.root.string : "a local symbol");
8702 bfd_set_error (bfd_error_bad_value);
8703 return FALSE;
8704 default:
8705 break;
8706 }
8707 }
8708 }
8709
8710 return TRUE;
8711 }
8712 \f
8713 bfd_boolean
8714 _bfd_mips_relax_section (bfd *abfd, asection *sec,
8715 struct bfd_link_info *link_info,
8716 bfd_boolean *again)
8717 {
8718 Elf_Internal_Rela *internal_relocs;
8719 Elf_Internal_Rela *irel, *irelend;
8720 Elf_Internal_Shdr *symtab_hdr;
8721 bfd_byte *contents = NULL;
8722 size_t extsymoff;
8723 bfd_boolean changed_contents = FALSE;
8724 bfd_vma sec_start = sec->output_section->vma + sec->output_offset;
8725 Elf_Internal_Sym *isymbuf = NULL;
8726
8727 /* We are not currently changing any sizes, so only one pass. */
8728 *again = FALSE;
8729
8730 if (link_info->relocatable)
8731 return TRUE;
8732
8733 internal_relocs = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
8734 link_info->keep_memory);
8735 if (internal_relocs == NULL)
8736 return TRUE;
8737
8738 irelend = internal_relocs + sec->reloc_count
8739 * get_elf_backend_data (abfd)->s->int_rels_per_ext_rel;
8740 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
8741 extsymoff = (elf_bad_symtab (abfd)) ? 0 : symtab_hdr->sh_info;
8742
8743 for (irel = internal_relocs; irel < irelend; irel++)
8744 {
8745 bfd_vma symval;
8746 bfd_signed_vma sym_offset;
8747 unsigned int r_type;
8748 unsigned long r_symndx;
8749 asection *sym_sec;
8750 unsigned long instruction;
8751
8752 /* Turn jalr into bgezal, and jr into beq, if they're marked
8753 with a JALR relocation, that indicate where they jump to.
8754 This saves some pipeline bubbles. */
8755 r_type = ELF_R_TYPE (abfd, irel->r_info);
8756 if (r_type != R_MIPS_JALR)
8757 continue;
8758
8759 r_symndx = ELF_R_SYM (abfd, irel->r_info);
8760 /* Compute the address of the jump target. */
8761 if (r_symndx >= extsymoff)
8762 {
8763 struct mips_elf_link_hash_entry *h
8764 = ((struct mips_elf_link_hash_entry *)
8765 elf_sym_hashes (abfd) [r_symndx - extsymoff]);
8766
8767 while (h->root.root.type == bfd_link_hash_indirect
8768 || h->root.root.type == bfd_link_hash_warning)
8769 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
8770
8771 /* If a symbol is undefined, or if it may be overridden,
8772 skip it. */
8773 if (! ((h->root.root.type == bfd_link_hash_defined
8774 || h->root.root.type == bfd_link_hash_defweak)
8775 && h->root.root.u.def.section)
8776 || (link_info->shared && ! link_info->symbolic
8777 && !h->root.forced_local))
8778 continue;
8779
8780 sym_sec = h->root.root.u.def.section;
8781 if (sym_sec->output_section)
8782 symval = (h->root.root.u.def.value
8783 + sym_sec->output_section->vma
8784 + sym_sec->output_offset);
8785 else
8786 symval = h->root.root.u.def.value;
8787 }
8788 else
8789 {
8790 Elf_Internal_Sym *isym;
8791
8792 /* Read this BFD's symbols if we haven't done so already. */
8793 if (isymbuf == NULL && symtab_hdr->sh_info != 0)
8794 {
8795 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
8796 if (isymbuf == NULL)
8797 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
8798 symtab_hdr->sh_info, 0,
8799 NULL, NULL, NULL);
8800 if (isymbuf == NULL)
8801 goto relax_return;
8802 }
8803
8804 isym = isymbuf + r_symndx;
8805 if (isym->st_shndx == SHN_UNDEF)
8806 continue;
8807 else if (isym->st_shndx == SHN_ABS)
8808 sym_sec = bfd_abs_section_ptr;
8809 else if (isym->st_shndx == SHN_COMMON)
8810 sym_sec = bfd_com_section_ptr;
8811 else
8812 sym_sec
8813 = bfd_section_from_elf_index (abfd, isym->st_shndx);
8814 symval = isym->st_value
8815 + sym_sec->output_section->vma
8816 + sym_sec->output_offset;
8817 }
8818
8819 /* Compute branch offset, from delay slot of the jump to the
8820 branch target. */
8821 sym_offset = (symval + irel->r_addend)
8822 - (sec_start + irel->r_offset + 4);
8823
8824 /* Branch offset must be properly aligned. */
8825 if ((sym_offset & 3) != 0)
8826 continue;
8827
8828 sym_offset >>= 2;
8829
8830 /* Check that it's in range. */
8831 if (sym_offset < -0x8000 || sym_offset >= 0x8000)
8832 continue;
8833
8834 /* Get the section contents if we haven't done so already. */
8835 if (!mips_elf_get_section_contents (abfd, sec, &contents))
8836 goto relax_return;
8837
8838 instruction = bfd_get_32 (abfd, contents + irel->r_offset);
8839
8840 /* If it was jalr <reg>, turn it into bgezal $zero, <target>. */
8841 if ((instruction & 0xfc1fffff) == 0x0000f809)
8842 instruction = 0x04110000;
8843 /* If it was jr <reg>, turn it into b <target>. */
8844 else if ((instruction & 0xfc1fffff) == 0x00000008)
8845 instruction = 0x10000000;
8846 else
8847 continue;
8848
8849 instruction |= (sym_offset & 0xffff);
8850 bfd_put_32 (abfd, instruction, contents + irel->r_offset);
8851 changed_contents = TRUE;
8852 }
8853
8854 if (contents != NULL
8855 && elf_section_data (sec)->this_hdr.contents != contents)
8856 {
8857 if (!changed_contents && !link_info->keep_memory)
8858 free (contents);
8859 else
8860 {
8861 /* Cache the section contents for elf_link_input_bfd. */
8862 elf_section_data (sec)->this_hdr.contents = contents;
8863 }
8864 }
8865 return TRUE;
8866
8867 relax_return:
8868 if (contents != NULL
8869 && elf_section_data (sec)->this_hdr.contents != contents)
8870 free (contents);
8871 return FALSE;
8872 }
8873 \f
8874 /* Allocate space for global sym dynamic relocs. */
8875
8876 static bfd_boolean
8877 allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
8878 {
8879 struct bfd_link_info *info = inf;
8880 bfd *dynobj;
8881 struct mips_elf_link_hash_entry *hmips;
8882 struct mips_elf_link_hash_table *htab;
8883
8884 htab = mips_elf_hash_table (info);
8885 BFD_ASSERT (htab != NULL);
8886
8887 dynobj = elf_hash_table (info)->dynobj;
8888 hmips = (struct mips_elf_link_hash_entry *) h;
8889
8890 /* VxWorks executables are handled elsewhere; we only need to
8891 allocate relocations in shared objects. */
8892 if (htab->is_vxworks && !info->shared)
8893 return TRUE;
8894
8895 /* Ignore indirect symbols. All relocations against such symbols
8896 will be redirected to the target symbol. */
8897 if (h->root.type == bfd_link_hash_indirect)
8898 return TRUE;
8899
8900 /* If this symbol is defined in a dynamic object, or we are creating
8901 a shared library, we will need to copy any R_MIPS_32 or
8902 R_MIPS_REL32 relocs against it into the output file. */
8903 if (! info->relocatable
8904 && hmips->possibly_dynamic_relocs != 0
8905 && (h->root.type == bfd_link_hash_defweak
8906 || (!h->def_regular && !ELF_COMMON_DEF_P (h))
8907 || info->shared))
8908 {
8909 bfd_boolean do_copy = TRUE;
8910
8911 if (h->root.type == bfd_link_hash_undefweak)
8912 {
8913 /* Do not copy relocations for undefined weak symbols with
8914 non-default visibility. */
8915 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
8916 do_copy = FALSE;
8917
8918 /* Make sure undefined weak symbols are output as a dynamic
8919 symbol in PIEs. */
8920 else if (h->dynindx == -1 && !h->forced_local)
8921 {
8922 if (! bfd_elf_link_record_dynamic_symbol (info, h))
8923 return FALSE;
8924 }
8925 }
8926
8927 if (do_copy)
8928 {
8929 /* Even though we don't directly need a GOT entry for this symbol,
8930 the SVR4 psABI requires it to have a dynamic symbol table
8931 index greater that DT_MIPS_GOTSYM if there are dynamic
8932 relocations against it.
8933
8934 VxWorks does not enforce the same mapping between the GOT
8935 and the symbol table, so the same requirement does not
8936 apply there. */
8937 if (!htab->is_vxworks)
8938 {
8939 if (hmips->global_got_area > GGA_RELOC_ONLY)
8940 hmips->global_got_area = GGA_RELOC_ONLY;
8941 hmips->got_only_for_calls = FALSE;
8942 }
8943
8944 mips_elf_allocate_dynamic_relocations
8945 (dynobj, info, hmips->possibly_dynamic_relocs);
8946 if (hmips->readonly_reloc)
8947 /* We tell the dynamic linker that there are relocations
8948 against the text segment. */
8949 info->flags |= DF_TEXTREL;
8950 }
8951 }
8952
8953 return TRUE;
8954 }
8955
8956 /* Adjust a symbol defined by a dynamic object and referenced by a
8957 regular object. The current definition is in some section of the
8958 dynamic object, but we're not including those sections. We have to
8959 change the definition to something the rest of the link can
8960 understand. */
8961
8962 bfd_boolean
8963 _bfd_mips_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
8964 struct elf_link_hash_entry *h)
8965 {
8966 bfd *dynobj;
8967 struct mips_elf_link_hash_entry *hmips;
8968 struct mips_elf_link_hash_table *htab;
8969
8970 htab = mips_elf_hash_table (info);
8971 BFD_ASSERT (htab != NULL);
8972
8973 dynobj = elf_hash_table (info)->dynobj;
8974 hmips = (struct mips_elf_link_hash_entry *) h;
8975
8976 /* Make sure we know what is going on here. */
8977 BFD_ASSERT (dynobj != NULL
8978 && (h->needs_plt
8979 || h->u.weakdef != NULL
8980 || (h->def_dynamic
8981 && h->ref_regular
8982 && !h->def_regular)));
8983
8984 hmips = (struct mips_elf_link_hash_entry *) h;
8985
8986 /* If there are call relocations against an externally-defined symbol,
8987 see whether we can create a MIPS lazy-binding stub for it. We can
8988 only do this if all references to the function are through call
8989 relocations, and in that case, the traditional lazy-binding stubs
8990 are much more efficient than PLT entries.
8991
8992 Traditional stubs are only available on SVR4 psABI-based systems;
8993 VxWorks always uses PLTs instead. */
8994 if (!htab->is_vxworks && h->needs_plt && !hmips->no_fn_stub)
8995 {
8996 if (! elf_hash_table (info)->dynamic_sections_created)
8997 return TRUE;
8998
8999 /* If this symbol is not defined in a regular file, then set
9000 the symbol to the stub location. This is required to make
9001 function pointers compare as equal between the normal
9002 executable and the shared library. */
9003 if (!h->def_regular)
9004 {
9005 hmips->needs_lazy_stub = TRUE;
9006 htab->lazy_stub_count++;
9007 return TRUE;
9008 }
9009 }
9010 /* As above, VxWorks requires PLT entries for externally-defined
9011 functions that are only accessed through call relocations.
9012
9013 Both VxWorks and non-VxWorks targets also need PLT entries if there
9014 are static-only relocations against an externally-defined function.
9015 This can technically occur for shared libraries if there are
9016 branches to the symbol, although it is unlikely that this will be
9017 used in practice due to the short ranges involved. It can occur
9018 for any relative or absolute relocation in executables; in that
9019 case, the PLT entry becomes the function's canonical address. */
9020 else if (((h->needs_plt && !hmips->no_fn_stub)
9021 || (h->type == STT_FUNC && hmips->has_static_relocs))
9022 && htab->use_plts_and_copy_relocs
9023 && !SYMBOL_CALLS_LOCAL (info, h)
9024 && !(ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
9025 && h->root.type == bfd_link_hash_undefweak))
9026 {
9027 bfd_boolean micromips_p = MICROMIPS_P (info->output_bfd);
9028 bfd_boolean newabi_p = NEWABI_P (info->output_bfd);
9029
9030 /* If this is the first symbol to need a PLT entry, then make some
9031 basic setup. Also work out PLT entry sizes. We'll need them
9032 for PLT offset calculations. */
9033 if (htab->plt_mips_offset + htab->plt_comp_offset == 0)
9034 {
9035 BFD_ASSERT (htab->sgotplt->size == 0);
9036 BFD_ASSERT (htab->plt_got_index == 0);
9037
9038 /* If we're using the PLT additions to the psABI, each PLT
9039 entry is 16 bytes and the PLT0 entry is 32 bytes.
9040 Encourage better cache usage by aligning. We do this
9041 lazily to avoid pessimizing traditional objects. */
9042 if (!htab->is_vxworks
9043 && !bfd_set_section_alignment (dynobj, htab->splt, 5))
9044 return FALSE;
9045
9046 /* Make sure that .got.plt is word-aligned. We do this lazily
9047 for the same reason as above. */
9048 if (!bfd_set_section_alignment (dynobj, htab->sgotplt,
9049 MIPS_ELF_LOG_FILE_ALIGN (dynobj)))
9050 return FALSE;
9051
9052 /* On non-VxWorks targets, the first two entries in .got.plt
9053 are reserved. */
9054 if (!htab->is_vxworks)
9055 htab->plt_got_index
9056 += (get_elf_backend_data (dynobj)->got_header_size
9057 / MIPS_ELF_GOT_SIZE (dynobj));
9058
9059 /* On VxWorks, also allocate room for the header's
9060 .rela.plt.unloaded entries. */
9061 if (htab->is_vxworks && !info->shared)
9062 htab->srelplt2->size += 2 * sizeof (Elf32_External_Rela);
9063
9064 /* Now work out the sizes of individual PLT entries. */
9065 if (htab->is_vxworks && info->shared)
9066 htab->plt_mips_entry_size
9067 = 4 * ARRAY_SIZE (mips_vxworks_shared_plt_entry);
9068 else if (htab->is_vxworks)
9069 htab->plt_mips_entry_size
9070 = 4 * ARRAY_SIZE (mips_vxworks_exec_plt_entry);
9071 else if (newabi_p)
9072 htab->plt_mips_entry_size
9073 = 4 * ARRAY_SIZE (mips_exec_plt_entry);
9074 else if (!micromips_p)
9075 {
9076 htab->plt_mips_entry_size
9077 = 4 * ARRAY_SIZE (mips_exec_plt_entry);
9078 htab->plt_comp_entry_size
9079 = 2 * ARRAY_SIZE (mips16_o32_exec_plt_entry);
9080 }
9081 else if (htab->insn32)
9082 {
9083 htab->plt_mips_entry_size
9084 = 4 * ARRAY_SIZE (mips_exec_plt_entry);
9085 htab->plt_comp_entry_size
9086 = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt_entry);
9087 }
9088 else
9089 {
9090 htab->plt_mips_entry_size
9091 = 4 * ARRAY_SIZE (mips_exec_plt_entry);
9092 htab->plt_comp_entry_size
9093 = 2 * ARRAY_SIZE (micromips_o32_exec_plt_entry);
9094 }
9095 }
9096
9097 if (h->plt.plist == NULL)
9098 h->plt.plist = mips_elf_make_plt_record (dynobj);
9099 if (h->plt.plist == NULL)
9100 return FALSE;
9101
9102 /* There are no defined MIPS16 or microMIPS PLT entries for VxWorks,
9103 n32 or n64, so always use a standard entry there.
9104
9105 If the symbol has a MIPS16 call stub and gets a PLT entry, then
9106 all MIPS16 calls will go via that stub, and there is no benefit
9107 to having a MIPS16 entry. And in the case of call_stub a
9108 standard entry actually has to be used as the stub ends with a J
9109 instruction. */
9110 if (newabi_p
9111 || htab->is_vxworks
9112 || hmips->call_stub
9113 || hmips->call_fp_stub)
9114 {
9115 h->plt.plist->need_mips = TRUE;
9116 h->plt.plist->need_comp = FALSE;
9117 }
9118
9119 /* Otherwise, if there are no direct calls to the function, we
9120 have a free choice of whether to use standard or compressed
9121 entries. Prefer microMIPS entries if the object is known to
9122 contain microMIPS code, so that it becomes possible to create
9123 pure microMIPS binaries. Prefer standard entries otherwise,
9124 because MIPS16 ones are no smaller and are usually slower. */
9125 if (!h->plt.plist->need_mips && !h->plt.plist->need_comp)
9126 {
9127 if (micromips_p)
9128 h->plt.plist->need_comp = TRUE;
9129 else
9130 h->plt.plist->need_mips = TRUE;
9131 }
9132
9133 if (h->plt.plist->need_mips)
9134 {
9135 h->plt.plist->mips_offset = htab->plt_mips_offset;
9136 htab->plt_mips_offset += htab->plt_mips_entry_size;
9137 }
9138 if (h->plt.plist->need_comp)
9139 {
9140 h->plt.plist->comp_offset = htab->plt_comp_offset;
9141 htab->plt_comp_offset += htab->plt_comp_entry_size;
9142 }
9143
9144 /* Reserve the corresponding .got.plt entry now too. */
9145 h->plt.plist->gotplt_index = htab->plt_got_index++;
9146
9147 /* If the output file has no definition of the symbol, set the
9148 symbol's value to the address of the stub. */
9149 if (!info->shared && !h->def_regular)
9150 hmips->use_plt_entry = TRUE;
9151
9152 /* Make room for the R_MIPS_JUMP_SLOT relocation. */
9153 htab->srelplt->size += (htab->is_vxworks
9154 ? MIPS_ELF_RELA_SIZE (dynobj)
9155 : MIPS_ELF_REL_SIZE (dynobj));
9156
9157 /* Make room for the .rela.plt.unloaded relocations. */
9158 if (htab->is_vxworks && !info->shared)
9159 htab->srelplt2->size += 3 * sizeof (Elf32_External_Rela);
9160
9161 /* All relocations against this symbol that could have been made
9162 dynamic will now refer to the PLT entry instead. */
9163 hmips->possibly_dynamic_relocs = 0;
9164
9165 return TRUE;
9166 }
9167
9168 /* If this is a weak symbol, and there is a real definition, the
9169 processor independent code will have arranged for us to see the
9170 real definition first, and we can just use the same value. */
9171 if (h->u.weakdef != NULL)
9172 {
9173 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
9174 || h->u.weakdef->root.type == bfd_link_hash_defweak);
9175 h->root.u.def.section = h->u.weakdef->root.u.def.section;
9176 h->root.u.def.value = h->u.weakdef->root.u.def.value;
9177 return TRUE;
9178 }
9179
9180 /* Otherwise, there is nothing further to do for symbols defined
9181 in regular objects. */
9182 if (h->def_regular)
9183 return TRUE;
9184
9185 /* There's also nothing more to do if we'll convert all relocations
9186 against this symbol into dynamic relocations. */
9187 if (!hmips->has_static_relocs)
9188 return TRUE;
9189
9190 /* We're now relying on copy relocations. Complain if we have
9191 some that we can't convert. */
9192 if (!htab->use_plts_and_copy_relocs || info->shared)
9193 {
9194 (*_bfd_error_handler) (_("non-dynamic relocations refer to "
9195 "dynamic symbol %s"),
9196 h->root.root.string);
9197 bfd_set_error (bfd_error_bad_value);
9198 return FALSE;
9199 }
9200
9201 /* We must allocate the symbol in our .dynbss section, which will
9202 become part of the .bss section of the executable. There will be
9203 an entry for this symbol in the .dynsym section. The dynamic
9204 object will contain position independent code, so all references
9205 from the dynamic object to this symbol will go through the global
9206 offset table. The dynamic linker will use the .dynsym entry to
9207 determine the address it must put in the global offset table, so
9208 both the dynamic object and the regular object will refer to the
9209 same memory location for the variable. */
9210
9211 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
9212 {
9213 if (htab->is_vxworks)
9214 htab->srelbss->size += sizeof (Elf32_External_Rela);
9215 else
9216 mips_elf_allocate_dynamic_relocations (dynobj, info, 1);
9217 h->needs_copy = 1;
9218 }
9219
9220 /* All relocations against this symbol that could have been made
9221 dynamic will now refer to the local copy instead. */
9222 hmips->possibly_dynamic_relocs = 0;
9223
9224 return _bfd_elf_adjust_dynamic_copy (info, h, htab->sdynbss);
9225 }
9226 \f
9227 /* This function is called after all the input files have been read,
9228 and the input sections have been assigned to output sections. We
9229 check for any mips16 stub sections that we can discard. */
9230
9231 bfd_boolean
9232 _bfd_mips_elf_always_size_sections (bfd *output_bfd,
9233 struct bfd_link_info *info)
9234 {
9235 asection *sect;
9236 struct mips_elf_link_hash_table *htab;
9237 struct mips_htab_traverse_info hti;
9238
9239 htab = mips_elf_hash_table (info);
9240 BFD_ASSERT (htab != NULL);
9241
9242 /* The .reginfo section has a fixed size. */
9243 sect = bfd_get_section_by_name (output_bfd, ".reginfo");
9244 if (sect != NULL)
9245 bfd_set_section_size (output_bfd, sect, sizeof (Elf32_External_RegInfo));
9246
9247 /* The .MIPS.abiflags section has a fixed size. */
9248 sect = bfd_get_section_by_name (output_bfd, ".MIPS.abiflags");
9249 if (sect != NULL)
9250 bfd_set_section_size (output_bfd, sect, sizeof (Elf_External_ABIFlags_v0));
9251
9252 hti.info = info;
9253 hti.output_bfd = output_bfd;
9254 hti.error = FALSE;
9255 mips_elf_link_hash_traverse (mips_elf_hash_table (info),
9256 mips_elf_check_symbols, &hti);
9257 if (hti.error)
9258 return FALSE;
9259
9260 return TRUE;
9261 }
9262
9263 /* If the link uses a GOT, lay it out and work out its size. */
9264
9265 static bfd_boolean
9266 mips_elf_lay_out_got (bfd *output_bfd, struct bfd_link_info *info)
9267 {
9268 bfd *dynobj;
9269 asection *s;
9270 struct mips_got_info *g;
9271 bfd_size_type loadable_size = 0;
9272 bfd_size_type page_gotno;
9273 bfd *ibfd;
9274 struct mips_elf_traverse_got_arg tga;
9275 struct mips_elf_link_hash_table *htab;
9276
9277 htab = mips_elf_hash_table (info);
9278 BFD_ASSERT (htab != NULL);
9279
9280 s = htab->sgot;
9281 if (s == NULL)
9282 return TRUE;
9283
9284 dynobj = elf_hash_table (info)->dynobj;
9285 g = htab->got_info;
9286
9287 /* Allocate room for the reserved entries. VxWorks always reserves
9288 3 entries; other objects only reserve 2 entries. */
9289 BFD_ASSERT (g->assigned_low_gotno == 0);
9290 if (htab->is_vxworks)
9291 htab->reserved_gotno = 3;
9292 else
9293 htab->reserved_gotno = 2;
9294 g->local_gotno += htab->reserved_gotno;
9295 g->assigned_low_gotno = htab->reserved_gotno;
9296
9297 /* Decide which symbols need to go in the global part of the GOT and
9298 count the number of reloc-only GOT symbols. */
9299 mips_elf_link_hash_traverse (htab, mips_elf_count_got_symbols, info);
9300
9301 if (!mips_elf_resolve_final_got_entries (info, g))
9302 return FALSE;
9303
9304 /* Calculate the total loadable size of the output. That
9305 will give us the maximum number of GOT_PAGE entries
9306 required. */
9307 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
9308 {
9309 asection *subsection;
9310
9311 for (subsection = ibfd->sections;
9312 subsection;
9313 subsection = subsection->next)
9314 {
9315 if ((subsection->flags & SEC_ALLOC) == 0)
9316 continue;
9317 loadable_size += ((subsection->size + 0xf)
9318 &~ (bfd_size_type) 0xf);
9319 }
9320 }
9321
9322 if (htab->is_vxworks)
9323 /* There's no need to allocate page entries for VxWorks; R_MIPS*_GOT16
9324 relocations against local symbols evaluate to "G", and the EABI does
9325 not include R_MIPS_GOT_PAGE. */
9326 page_gotno = 0;
9327 else
9328 /* Assume there are two loadable segments consisting of contiguous
9329 sections. Is 5 enough? */
9330 page_gotno = (loadable_size >> 16) + 5;
9331
9332 /* Choose the smaller of the two page estimates; both are intended to be
9333 conservative. */
9334 if (page_gotno > g->page_gotno)
9335 page_gotno = g->page_gotno;
9336
9337 g->local_gotno += page_gotno;
9338 g->assigned_high_gotno = g->local_gotno - 1;
9339
9340 s->size += g->local_gotno * MIPS_ELF_GOT_SIZE (output_bfd);
9341 s->size += g->global_gotno * MIPS_ELF_GOT_SIZE (output_bfd);
9342 s->size += g->tls_gotno * MIPS_ELF_GOT_SIZE (output_bfd);
9343
9344 /* VxWorks does not support multiple GOTs. It initializes $gp to
9345 __GOTT_BASE__[__GOTT_INDEX__], the value of which is set by the
9346 dynamic loader. */
9347 if (!htab->is_vxworks && s->size > MIPS_ELF_GOT_MAX_SIZE (info))
9348 {
9349 if (!mips_elf_multi_got (output_bfd, info, s, page_gotno))
9350 return FALSE;
9351 }
9352 else
9353 {
9354 /* Record that all bfds use G. This also has the effect of freeing
9355 the per-bfd GOTs, which we no longer need. */
9356 for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
9357 if (mips_elf_bfd_got (ibfd, FALSE))
9358 mips_elf_replace_bfd_got (ibfd, g);
9359 mips_elf_replace_bfd_got (output_bfd, g);
9360
9361 /* Set up TLS entries. */
9362 g->tls_assigned_gotno = g->global_gotno + g->local_gotno;
9363 tga.info = info;
9364 tga.g = g;
9365 tga.value = MIPS_ELF_GOT_SIZE (output_bfd);
9366 htab_traverse (g->got_entries, mips_elf_initialize_tls_index, &tga);
9367 if (!tga.g)
9368 return FALSE;
9369 BFD_ASSERT (g->tls_assigned_gotno
9370 == g->global_gotno + g->local_gotno + g->tls_gotno);
9371
9372 /* Each VxWorks GOT entry needs an explicit relocation. */
9373 if (htab->is_vxworks && info->shared)
9374 g->relocs += g->global_gotno + g->local_gotno - htab->reserved_gotno;
9375
9376 /* Allocate room for the TLS relocations. */
9377 if (g->relocs)
9378 mips_elf_allocate_dynamic_relocations (dynobj, info, g->relocs);
9379 }
9380
9381 return TRUE;
9382 }
9383
9384 /* Estimate the size of the .MIPS.stubs section. */
9385
9386 static void
9387 mips_elf_estimate_stub_size (bfd *output_bfd, struct bfd_link_info *info)
9388 {
9389 struct mips_elf_link_hash_table *htab;
9390 bfd_size_type dynsymcount;
9391
9392 htab = mips_elf_hash_table (info);
9393 BFD_ASSERT (htab != NULL);
9394
9395 if (htab->lazy_stub_count == 0)
9396 return;
9397
9398 /* IRIX rld assumes that a function stub isn't at the end of the .text
9399 section, so add a dummy entry to the end. */
9400 htab->lazy_stub_count++;
9401
9402 /* Get a worst-case estimate of the number of dynamic symbols needed.
9403 At this point, dynsymcount does not account for section symbols
9404 and count_section_dynsyms may overestimate the number that will
9405 be needed. */
9406 dynsymcount = (elf_hash_table (info)->dynsymcount
9407 + count_section_dynsyms (output_bfd, info));
9408
9409 /* Determine the size of one stub entry. There's no disadvantage
9410 from using microMIPS code here, so for the sake of pure-microMIPS
9411 binaries we prefer it whenever there's any microMIPS code in
9412 output produced at all. This has a benefit of stubs being
9413 shorter by 4 bytes each too, unless in the insn32 mode. */
9414 if (!MICROMIPS_P (output_bfd))
9415 htab->function_stub_size = (dynsymcount > 0x10000
9416 ? MIPS_FUNCTION_STUB_BIG_SIZE
9417 : MIPS_FUNCTION_STUB_NORMAL_SIZE);
9418 else if (htab->insn32)
9419 htab->function_stub_size = (dynsymcount > 0x10000
9420 ? MICROMIPS_INSN32_FUNCTION_STUB_BIG_SIZE
9421 : MICROMIPS_INSN32_FUNCTION_STUB_NORMAL_SIZE);
9422 else
9423 htab->function_stub_size = (dynsymcount > 0x10000
9424 ? MICROMIPS_FUNCTION_STUB_BIG_SIZE
9425 : MICROMIPS_FUNCTION_STUB_NORMAL_SIZE);
9426
9427 htab->sstubs->size = htab->lazy_stub_count * htab->function_stub_size;
9428 }
9429
9430 /* A mips_elf_link_hash_traverse callback for which DATA points to a
9431 mips_htab_traverse_info. If H needs a traditional MIPS lazy-binding
9432 stub, allocate an entry in the stubs section. */
9433
9434 static bfd_boolean
9435 mips_elf_allocate_lazy_stub (struct mips_elf_link_hash_entry *h, void *data)
9436 {
9437 struct mips_htab_traverse_info *hti = data;
9438 struct mips_elf_link_hash_table *htab;
9439 struct bfd_link_info *info;
9440 bfd *output_bfd;
9441
9442 info = hti->info;
9443 output_bfd = hti->output_bfd;
9444 htab = mips_elf_hash_table (info);
9445 BFD_ASSERT (htab != NULL);
9446
9447 if (h->needs_lazy_stub)
9448 {
9449 bfd_boolean micromips_p = MICROMIPS_P (output_bfd);
9450 unsigned int other = micromips_p ? STO_MICROMIPS : 0;
9451 bfd_vma isa_bit = micromips_p;
9452
9453 BFD_ASSERT (htab->root.dynobj != NULL);
9454 if (h->root.plt.plist == NULL)
9455 h->root.plt.plist = mips_elf_make_plt_record (htab->sstubs->owner);
9456 if (h->root.plt.plist == NULL)
9457 {
9458 hti->error = TRUE;
9459 return FALSE;
9460 }
9461 h->root.root.u.def.section = htab->sstubs;
9462 h->root.root.u.def.value = htab->sstubs->size + isa_bit;
9463 h->root.plt.plist->stub_offset = htab->sstubs->size;
9464 h->root.other = other;
9465 htab->sstubs->size += htab->function_stub_size;
9466 }
9467 return TRUE;
9468 }
9469
9470 /* Allocate offsets in the stubs section to each symbol that needs one.
9471 Set the final size of the .MIPS.stub section. */
9472
9473 static bfd_boolean
9474 mips_elf_lay_out_lazy_stubs (struct bfd_link_info *info)
9475 {
9476 bfd *output_bfd = info->output_bfd;
9477 bfd_boolean micromips_p = MICROMIPS_P (output_bfd);
9478 unsigned int other = micromips_p ? STO_MICROMIPS : 0;
9479 bfd_vma isa_bit = micromips_p;
9480 struct mips_elf_link_hash_table *htab;
9481 struct mips_htab_traverse_info hti;
9482 struct elf_link_hash_entry *h;
9483 bfd *dynobj;
9484
9485 htab = mips_elf_hash_table (info);
9486 BFD_ASSERT (htab != NULL);
9487
9488 if (htab->lazy_stub_count == 0)
9489 return TRUE;
9490
9491 htab->sstubs->size = 0;
9492 hti.info = info;
9493 hti.output_bfd = output_bfd;
9494 hti.error = FALSE;
9495 mips_elf_link_hash_traverse (htab, mips_elf_allocate_lazy_stub, &hti);
9496 if (hti.error)
9497 return FALSE;
9498 htab->sstubs->size += htab->function_stub_size;
9499 BFD_ASSERT (htab->sstubs->size
9500 == htab->lazy_stub_count * htab->function_stub_size);
9501
9502 dynobj = elf_hash_table (info)->dynobj;
9503 BFD_ASSERT (dynobj != NULL);
9504 h = _bfd_elf_define_linkage_sym (dynobj, info, htab->sstubs, "_MIPS_STUBS_");
9505 if (h == NULL)
9506 return FALSE;
9507 h->root.u.def.value = isa_bit;
9508 h->other = other;
9509 h->type = STT_FUNC;
9510
9511 return TRUE;
9512 }
9513
9514 /* A mips_elf_link_hash_traverse callback for which DATA points to a
9515 bfd_link_info. If H uses the address of a PLT entry as the value
9516 of the symbol, then set the entry in the symbol table now. Prefer
9517 a standard MIPS PLT entry. */
9518
9519 static bfd_boolean
9520 mips_elf_set_plt_sym_value (struct mips_elf_link_hash_entry *h, void *data)
9521 {
9522 struct bfd_link_info *info = data;
9523 bfd_boolean micromips_p = MICROMIPS_P (info->output_bfd);
9524 struct mips_elf_link_hash_table *htab;
9525 unsigned int other;
9526 bfd_vma isa_bit;
9527 bfd_vma val;
9528
9529 htab = mips_elf_hash_table (info);
9530 BFD_ASSERT (htab != NULL);
9531
9532 if (h->use_plt_entry)
9533 {
9534 BFD_ASSERT (h->root.plt.plist != NULL);
9535 BFD_ASSERT (h->root.plt.plist->mips_offset != MINUS_ONE
9536 || h->root.plt.plist->comp_offset != MINUS_ONE);
9537
9538 val = htab->plt_header_size;
9539 if (h->root.plt.plist->mips_offset != MINUS_ONE)
9540 {
9541 isa_bit = 0;
9542 val += h->root.plt.plist->mips_offset;
9543 other = 0;
9544 }
9545 else
9546 {
9547 isa_bit = 1;
9548 val += htab->plt_mips_offset + h->root.plt.plist->comp_offset;
9549 other = micromips_p ? STO_MICROMIPS : STO_MIPS16;
9550 }
9551 val += isa_bit;
9552 /* For VxWorks, point at the PLT load stub rather than the lazy
9553 resolution stub; this stub will become the canonical function
9554 address. */
9555 if (htab->is_vxworks)
9556 val += 8;
9557
9558 h->root.root.u.def.section = htab->splt;
9559 h->root.root.u.def.value = val;
9560 h->root.other = other;
9561 }
9562
9563 return TRUE;
9564 }
9565
9566 /* Set the sizes of the dynamic sections. */
9567
9568 bfd_boolean
9569 _bfd_mips_elf_size_dynamic_sections (bfd *output_bfd,
9570 struct bfd_link_info *info)
9571 {
9572 bfd *dynobj;
9573 asection *s, *sreldyn;
9574 bfd_boolean reltext;
9575 struct mips_elf_link_hash_table *htab;
9576
9577 htab = mips_elf_hash_table (info);
9578 BFD_ASSERT (htab != NULL);
9579 dynobj = elf_hash_table (info)->dynobj;
9580 BFD_ASSERT (dynobj != NULL);
9581
9582 if (elf_hash_table (info)->dynamic_sections_created)
9583 {
9584 /* Set the contents of the .interp section to the interpreter. */
9585 if (info->executable)
9586 {
9587 s = bfd_get_linker_section (dynobj, ".interp");
9588 BFD_ASSERT (s != NULL);
9589 s->size
9590 = strlen (ELF_DYNAMIC_INTERPRETER (output_bfd)) + 1;
9591 s->contents
9592 = (bfd_byte *) ELF_DYNAMIC_INTERPRETER (output_bfd);
9593 }
9594
9595 /* Figure out the size of the PLT header if we know that we
9596 are using it. For the sake of cache alignment always use
9597 a standard header whenever any standard entries are present
9598 even if microMIPS entries are present as well. This also
9599 lets the microMIPS header rely on the value of $v0 only set
9600 by microMIPS entries, for a small size reduction.
9601
9602 Set symbol table entry values for symbols that use the
9603 address of their PLT entry now that we can calculate it.
9604
9605 Also create the _PROCEDURE_LINKAGE_TABLE_ symbol if we
9606 haven't already in _bfd_elf_create_dynamic_sections. */
9607 if (htab->splt && htab->plt_mips_offset + htab->plt_comp_offset != 0)
9608 {
9609 bfd_boolean micromips_p = (MICROMIPS_P (output_bfd)
9610 && !htab->plt_mips_offset);
9611 unsigned int other = micromips_p ? STO_MICROMIPS : 0;
9612 bfd_vma isa_bit = micromips_p;
9613 struct elf_link_hash_entry *h;
9614 bfd_vma size;
9615
9616 BFD_ASSERT (htab->use_plts_and_copy_relocs);
9617 BFD_ASSERT (htab->sgotplt->size == 0);
9618 BFD_ASSERT (htab->splt->size == 0);
9619
9620 if (htab->is_vxworks && info->shared)
9621 size = 4 * ARRAY_SIZE (mips_vxworks_shared_plt0_entry);
9622 else if (htab->is_vxworks)
9623 size = 4 * ARRAY_SIZE (mips_vxworks_exec_plt0_entry);
9624 else if (ABI_64_P (output_bfd))
9625 size = 4 * ARRAY_SIZE (mips_n64_exec_plt0_entry);
9626 else if (ABI_N32_P (output_bfd))
9627 size = 4 * ARRAY_SIZE (mips_n32_exec_plt0_entry);
9628 else if (!micromips_p)
9629 size = 4 * ARRAY_SIZE (mips_o32_exec_plt0_entry);
9630 else if (htab->insn32)
9631 size = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt0_entry);
9632 else
9633 size = 2 * ARRAY_SIZE (micromips_o32_exec_plt0_entry);
9634
9635 htab->plt_header_is_comp = micromips_p;
9636 htab->plt_header_size = size;
9637 htab->splt->size = (size
9638 + htab->plt_mips_offset
9639 + htab->plt_comp_offset);
9640 htab->sgotplt->size = (htab->plt_got_index
9641 * MIPS_ELF_GOT_SIZE (dynobj));
9642
9643 mips_elf_link_hash_traverse (htab, mips_elf_set_plt_sym_value, info);
9644
9645 if (htab->root.hplt == NULL)
9646 {
9647 h = _bfd_elf_define_linkage_sym (dynobj, info, htab->splt,
9648 "_PROCEDURE_LINKAGE_TABLE_");
9649 htab->root.hplt = h;
9650 if (h == NULL)
9651 return FALSE;
9652 }
9653
9654 h = htab->root.hplt;
9655 h->root.u.def.value = isa_bit;
9656 h->other = other;
9657 h->type = STT_FUNC;
9658 }
9659 }
9660
9661 /* Allocate space for global sym dynamic relocs. */
9662 elf_link_hash_traverse (&htab->root, allocate_dynrelocs, info);
9663
9664 mips_elf_estimate_stub_size (output_bfd, info);
9665
9666 if (!mips_elf_lay_out_got (output_bfd, info))
9667 return FALSE;
9668
9669 mips_elf_lay_out_lazy_stubs (info);
9670
9671 /* The check_relocs and adjust_dynamic_symbol entry points have
9672 determined the sizes of the various dynamic sections. Allocate
9673 memory for them. */
9674 reltext = FALSE;
9675 for (s = dynobj->sections; s != NULL; s = s->next)
9676 {
9677 const char *name;
9678
9679 /* It's OK to base decisions on the section name, because none
9680 of the dynobj section names depend upon the input files. */
9681 name = bfd_get_section_name (dynobj, s);
9682
9683 if ((s->flags & SEC_LINKER_CREATED) == 0)
9684 continue;
9685
9686 if (CONST_STRNEQ (name, ".rel"))
9687 {
9688 if (s->size != 0)
9689 {
9690 const char *outname;
9691 asection *target;
9692
9693 /* If this relocation section applies to a read only
9694 section, then we probably need a DT_TEXTREL entry.
9695 If the relocation section is .rel(a).dyn, we always
9696 assert a DT_TEXTREL entry rather than testing whether
9697 there exists a relocation to a read only section or
9698 not. */
9699 outname = bfd_get_section_name (output_bfd,
9700 s->output_section);
9701 target = bfd_get_section_by_name (output_bfd, outname + 4);
9702 if ((target != NULL
9703 && (target->flags & SEC_READONLY) != 0
9704 && (target->flags & SEC_ALLOC) != 0)
9705 || strcmp (outname, MIPS_ELF_REL_DYN_NAME (info)) == 0)
9706 reltext = TRUE;
9707
9708 /* We use the reloc_count field as a counter if we need
9709 to copy relocs into the output file. */
9710 if (strcmp (name, MIPS_ELF_REL_DYN_NAME (info)) != 0)
9711 s->reloc_count = 0;
9712
9713 /* If combreloc is enabled, elf_link_sort_relocs() will
9714 sort relocations, but in a different way than we do,
9715 and before we're done creating relocations. Also, it
9716 will move them around between input sections'
9717 relocation's contents, so our sorting would be
9718 broken, so don't let it run. */
9719 info->combreloc = 0;
9720 }
9721 }
9722 else if (! info->shared
9723 && ! mips_elf_hash_table (info)->use_rld_obj_head
9724 && CONST_STRNEQ (name, ".rld_map"))
9725 {
9726 /* We add a room for __rld_map. It will be filled in by the
9727 rtld to contain a pointer to the _r_debug structure. */
9728 s->size += MIPS_ELF_RLD_MAP_SIZE (output_bfd);
9729 }
9730 else if (SGI_COMPAT (output_bfd)
9731 && CONST_STRNEQ (name, ".compact_rel"))
9732 s->size += mips_elf_hash_table (info)->compact_rel_size;
9733 else if (s == htab->splt)
9734 {
9735 /* If the last PLT entry has a branch delay slot, allocate
9736 room for an extra nop to fill the delay slot. This is
9737 for CPUs without load interlocking. */
9738 if (! LOAD_INTERLOCKS_P (output_bfd)
9739 && ! htab->is_vxworks && s->size > 0)
9740 s->size += 4;
9741 }
9742 else if (! CONST_STRNEQ (name, ".init")
9743 && s != htab->sgot
9744 && s != htab->sgotplt
9745 && s != htab->sstubs
9746 && s != htab->sdynbss)
9747 {
9748 /* It's not one of our sections, so don't allocate space. */
9749 continue;
9750 }
9751
9752 if (s->size == 0)
9753 {
9754 s->flags |= SEC_EXCLUDE;
9755 continue;
9756 }
9757
9758 if ((s->flags & SEC_HAS_CONTENTS) == 0)
9759 continue;
9760
9761 /* Allocate memory for the section contents. */
9762 s->contents = bfd_zalloc (dynobj, s->size);
9763 if (s->contents == NULL)
9764 {
9765 bfd_set_error (bfd_error_no_memory);
9766 return FALSE;
9767 }
9768 }
9769
9770 if (elf_hash_table (info)->dynamic_sections_created)
9771 {
9772 /* Add some entries to the .dynamic section. We fill in the
9773 values later, in _bfd_mips_elf_finish_dynamic_sections, but we
9774 must add the entries now so that we get the correct size for
9775 the .dynamic section. */
9776
9777 /* SGI object has the equivalence of DT_DEBUG in the
9778 DT_MIPS_RLD_MAP entry. This must come first because glibc
9779 only fills in DT_MIPS_RLD_MAP (not DT_DEBUG) and some tools
9780 may only look at the first one they see. */
9781 if (!info->shared
9782 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_RLD_MAP, 0))
9783 return FALSE;
9784
9785 /* The DT_DEBUG entry may be filled in by the dynamic linker and
9786 used by the debugger. */
9787 if (info->executable
9788 && !SGI_COMPAT (output_bfd)
9789 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_DEBUG, 0))
9790 return FALSE;
9791
9792 if (reltext && (SGI_COMPAT (output_bfd) || htab->is_vxworks))
9793 info->flags |= DF_TEXTREL;
9794
9795 if ((info->flags & DF_TEXTREL) != 0)
9796 {
9797 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_TEXTREL, 0))
9798 return FALSE;
9799
9800 /* Clear the DF_TEXTREL flag. It will be set again if we
9801 write out an actual text relocation; we may not, because
9802 at this point we do not know whether e.g. any .eh_frame
9803 absolute relocations have been converted to PC-relative. */
9804 info->flags &= ~DF_TEXTREL;
9805 }
9806
9807 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTGOT, 0))
9808 return FALSE;
9809
9810 sreldyn = mips_elf_rel_dyn_section (info, FALSE);
9811 if (htab->is_vxworks)
9812 {
9813 /* VxWorks uses .rela.dyn instead of .rel.dyn. It does not
9814 use any of the DT_MIPS_* tags. */
9815 if (sreldyn && sreldyn->size > 0)
9816 {
9817 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELA, 0))
9818 return FALSE;
9819
9820 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELASZ, 0))
9821 return FALSE;
9822
9823 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELAENT, 0))
9824 return FALSE;
9825 }
9826 }
9827 else
9828 {
9829 if (sreldyn && sreldyn->size > 0)
9830 {
9831 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_REL, 0))
9832 return FALSE;
9833
9834 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELSZ, 0))
9835 return FALSE;
9836
9837 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELENT, 0))
9838 return FALSE;
9839 }
9840
9841 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_RLD_VERSION, 0))
9842 return FALSE;
9843
9844 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_FLAGS, 0))
9845 return FALSE;
9846
9847 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_BASE_ADDRESS, 0))
9848 return FALSE;
9849
9850 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_LOCAL_GOTNO, 0))
9851 return FALSE;
9852
9853 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_SYMTABNO, 0))
9854 return FALSE;
9855
9856 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_UNREFEXTNO, 0))
9857 return FALSE;
9858
9859 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_GOTSYM, 0))
9860 return FALSE;
9861
9862 if (IRIX_COMPAT (dynobj) == ict_irix5
9863 && ! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_HIPAGENO, 0))
9864 return FALSE;
9865
9866 if (IRIX_COMPAT (dynobj) == ict_irix6
9867 && (bfd_get_section_by_name
9868 (output_bfd, MIPS_ELF_OPTIONS_SECTION_NAME (dynobj)))
9869 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_OPTIONS, 0))
9870 return FALSE;
9871 }
9872 if (htab->splt->size > 0)
9873 {
9874 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTREL, 0))
9875 return FALSE;
9876
9877 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_JMPREL, 0))
9878 return FALSE;
9879
9880 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTRELSZ, 0))
9881 return FALSE;
9882
9883 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_PLTGOT, 0))
9884 return FALSE;
9885 }
9886 if (htab->is_vxworks
9887 && !elf_vxworks_add_dynamic_entries (output_bfd, info))
9888 return FALSE;
9889 }
9890
9891 return TRUE;
9892 }
9893 \f
9894 /* REL is a relocation in INPUT_BFD that is being copied to OUTPUT_BFD.
9895 Adjust its R_ADDEND field so that it is correct for the output file.
9896 LOCAL_SYMS and LOCAL_SECTIONS are arrays of INPUT_BFD's local symbols
9897 and sections respectively; both use symbol indexes. */
9898
9899 static void
9900 mips_elf_adjust_addend (bfd *output_bfd, struct bfd_link_info *info,
9901 bfd *input_bfd, Elf_Internal_Sym *local_syms,
9902 asection **local_sections, Elf_Internal_Rela *rel)
9903 {
9904 unsigned int r_type, r_symndx;
9905 Elf_Internal_Sym *sym;
9906 asection *sec;
9907
9908 if (mips_elf_local_relocation_p (input_bfd, rel, local_sections))
9909 {
9910 r_type = ELF_R_TYPE (output_bfd, rel->r_info);
9911 if (gprel16_reloc_p (r_type)
9912 || r_type == R_MIPS_GPREL32
9913 || literal_reloc_p (r_type))
9914 {
9915 rel->r_addend += _bfd_get_gp_value (input_bfd);
9916 rel->r_addend -= _bfd_get_gp_value (output_bfd);
9917 }
9918
9919 r_symndx = ELF_R_SYM (output_bfd, rel->r_info);
9920 sym = local_syms + r_symndx;
9921
9922 /* Adjust REL's addend to account for section merging. */
9923 if (!info->relocatable)
9924 {
9925 sec = local_sections[r_symndx];
9926 _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
9927 }
9928
9929 /* This would normally be done by the rela_normal code in elflink.c. */
9930 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
9931 rel->r_addend += local_sections[r_symndx]->output_offset;
9932 }
9933 }
9934
9935 /* Handle relocations against symbols from removed linkonce sections,
9936 or sections discarded by a linker script. We use this wrapper around
9937 RELOC_AGAINST_DISCARDED_SECTION to handle triplets of compound relocs
9938 on 64-bit ELF targets. In this case for any relocation handled, which
9939 always be the first in a triplet, the remaining two have to be processed
9940 together with the first, even if they are R_MIPS_NONE. It is the symbol
9941 index referred by the first reloc that applies to all the three and the
9942 remaining two never refer to an object symbol. And it is the final
9943 relocation (the last non-null one) that determines the output field of
9944 the whole relocation so retrieve the corresponding howto structure for
9945 the relocatable field to be cleared by RELOC_AGAINST_DISCARDED_SECTION.
9946
9947 Note that RELOC_AGAINST_DISCARDED_SECTION is a macro that uses "continue"
9948 and therefore requires to be pasted in a loop. It also defines a block
9949 and does not protect any of its arguments, hence the extra brackets. */
9950
9951 static void
9952 mips_reloc_against_discarded_section (bfd *output_bfd,
9953 struct bfd_link_info *info,
9954 bfd *input_bfd, asection *input_section,
9955 Elf_Internal_Rela **rel,
9956 const Elf_Internal_Rela **relend,
9957 bfd_boolean rel_reloc,
9958 reloc_howto_type *howto,
9959 bfd_byte *contents)
9960 {
9961 const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
9962 int count = bed->s->int_rels_per_ext_rel;
9963 unsigned int r_type;
9964 int i;
9965
9966 for (i = count - 1; i > 0; i--)
9967 {
9968 r_type = ELF_R_TYPE (output_bfd, (*rel)[i].r_info);
9969 if (r_type != R_MIPS_NONE)
9970 {
9971 howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, r_type, !rel_reloc);
9972 break;
9973 }
9974 }
9975 do
9976 {
9977 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
9978 (*rel), count, (*relend),
9979 howto, i, contents);
9980 }
9981 while (0);
9982 }
9983
9984 /* Relocate a MIPS ELF section. */
9985
9986 bfd_boolean
9987 _bfd_mips_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
9988 bfd *input_bfd, asection *input_section,
9989 bfd_byte *contents, Elf_Internal_Rela *relocs,
9990 Elf_Internal_Sym *local_syms,
9991 asection **local_sections)
9992 {
9993 Elf_Internal_Rela *rel;
9994 const Elf_Internal_Rela *relend;
9995 bfd_vma addend = 0;
9996 bfd_boolean use_saved_addend_p = FALSE;
9997 const struct elf_backend_data *bed;
9998
9999 bed = get_elf_backend_data (output_bfd);
10000 relend = relocs + input_section->reloc_count * bed->s->int_rels_per_ext_rel;
10001 for (rel = relocs; rel < relend; ++rel)
10002 {
10003 const char *name;
10004 bfd_vma value = 0;
10005 reloc_howto_type *howto;
10006 bfd_boolean cross_mode_jump_p = FALSE;
10007 /* TRUE if the relocation is a RELA relocation, rather than a
10008 REL relocation. */
10009 bfd_boolean rela_relocation_p = TRUE;
10010 unsigned int r_type = ELF_R_TYPE (output_bfd, rel->r_info);
10011 const char *msg;
10012 unsigned long r_symndx;
10013 asection *sec;
10014 Elf_Internal_Shdr *symtab_hdr;
10015 struct elf_link_hash_entry *h;
10016 bfd_boolean rel_reloc;
10017
10018 rel_reloc = (NEWABI_P (input_bfd)
10019 && mips_elf_rel_relocation_p (input_bfd, input_section,
10020 relocs, rel));
10021 /* Find the relocation howto for this relocation. */
10022 howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, r_type, !rel_reloc);
10023
10024 r_symndx = ELF_R_SYM (input_bfd, rel->r_info);
10025 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
10026 if (mips_elf_local_relocation_p (input_bfd, rel, local_sections))
10027 {
10028 sec = local_sections[r_symndx];
10029 h = NULL;
10030 }
10031 else
10032 {
10033 unsigned long extsymoff;
10034
10035 extsymoff = 0;
10036 if (!elf_bad_symtab (input_bfd))
10037 extsymoff = symtab_hdr->sh_info;
10038 h = elf_sym_hashes (input_bfd) [r_symndx - extsymoff];
10039 while (h->root.type == bfd_link_hash_indirect
10040 || h->root.type == bfd_link_hash_warning)
10041 h = (struct elf_link_hash_entry *) h->root.u.i.link;
10042
10043 sec = NULL;
10044 if (h->root.type == bfd_link_hash_defined
10045 || h->root.type == bfd_link_hash_defweak)
10046 sec = h->root.u.def.section;
10047 }
10048
10049 if (sec != NULL && discarded_section (sec))
10050 {
10051 mips_reloc_against_discarded_section (output_bfd, info, input_bfd,
10052 input_section, &rel, &relend,
10053 rel_reloc, howto, contents);
10054 continue;
10055 }
10056
10057 if (r_type == R_MIPS_64 && ! NEWABI_P (input_bfd))
10058 {
10059 /* Some 32-bit code uses R_MIPS_64. In particular, people use
10060 64-bit code, but make sure all their addresses are in the
10061 lowermost or uppermost 32-bit section of the 64-bit address
10062 space. Thus, when they use an R_MIPS_64 they mean what is
10063 usually meant by R_MIPS_32, with the exception that the
10064 stored value is sign-extended to 64 bits. */
10065 howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, R_MIPS_32, FALSE);
10066
10067 /* On big-endian systems, we need to lie about the position
10068 of the reloc. */
10069 if (bfd_big_endian (input_bfd))
10070 rel->r_offset += 4;
10071 }
10072
10073 if (!use_saved_addend_p)
10074 {
10075 /* If these relocations were originally of the REL variety,
10076 we must pull the addend out of the field that will be
10077 relocated. Otherwise, we simply use the contents of the
10078 RELA relocation. */
10079 if (mips_elf_rel_relocation_p (input_bfd, input_section,
10080 relocs, rel))
10081 {
10082 rela_relocation_p = FALSE;
10083 addend = mips_elf_read_rel_addend (input_bfd, rel,
10084 howto, contents);
10085 if (hi16_reloc_p (r_type)
10086 || (got16_reloc_p (r_type)
10087 && mips_elf_local_relocation_p (input_bfd, rel,
10088 local_sections)))
10089 {
10090 if (!mips_elf_add_lo16_rel_addend (input_bfd, rel, relend,
10091 contents, &addend))
10092 {
10093 if (h)
10094 name = h->root.root.string;
10095 else
10096 name = bfd_elf_sym_name (input_bfd, symtab_hdr,
10097 local_syms + r_symndx,
10098 sec);
10099 (*_bfd_error_handler)
10100 (_("%B: Can't find matching LO16 reloc against `%s' for %s at 0x%lx in section `%A'"),
10101 input_bfd, input_section, name, howto->name,
10102 rel->r_offset);
10103 }
10104 }
10105 else
10106 addend <<= howto->rightshift;
10107 }
10108 else
10109 addend = rel->r_addend;
10110 mips_elf_adjust_addend (output_bfd, info, input_bfd,
10111 local_syms, local_sections, rel);
10112 }
10113
10114 if (info->relocatable)
10115 {
10116 if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd)
10117 && bfd_big_endian (input_bfd))
10118 rel->r_offset -= 4;
10119
10120 if (!rela_relocation_p && rel->r_addend)
10121 {
10122 addend += rel->r_addend;
10123 if (hi16_reloc_p (r_type) || got16_reloc_p (r_type))
10124 addend = mips_elf_high (addend);
10125 else if (r_type == R_MIPS_HIGHER)
10126 addend = mips_elf_higher (addend);
10127 else if (r_type == R_MIPS_HIGHEST)
10128 addend = mips_elf_highest (addend);
10129 else
10130 addend >>= howto->rightshift;
10131
10132 /* We use the source mask, rather than the destination
10133 mask because the place to which we are writing will be
10134 source of the addend in the final link. */
10135 addend &= howto->src_mask;
10136
10137 if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd))
10138 /* See the comment above about using R_MIPS_64 in the 32-bit
10139 ABI. Here, we need to update the addend. It would be
10140 possible to get away with just using the R_MIPS_32 reloc
10141 but for endianness. */
10142 {
10143 bfd_vma sign_bits;
10144 bfd_vma low_bits;
10145 bfd_vma high_bits;
10146
10147 if (addend & ((bfd_vma) 1 << 31))
10148 #ifdef BFD64
10149 sign_bits = ((bfd_vma) 1 << 32) - 1;
10150 #else
10151 sign_bits = -1;
10152 #endif
10153 else
10154 sign_bits = 0;
10155
10156 /* If we don't know that we have a 64-bit type,
10157 do two separate stores. */
10158 if (bfd_big_endian (input_bfd))
10159 {
10160 /* Store the sign-bits (which are most significant)
10161 first. */
10162 low_bits = sign_bits;
10163 high_bits = addend;
10164 }
10165 else
10166 {
10167 low_bits = addend;
10168 high_bits = sign_bits;
10169 }
10170 bfd_put_32 (input_bfd, low_bits,
10171 contents + rel->r_offset);
10172 bfd_put_32 (input_bfd, high_bits,
10173 contents + rel->r_offset + 4);
10174 continue;
10175 }
10176
10177 if (! mips_elf_perform_relocation (info, howto, rel, addend,
10178 input_bfd, input_section,
10179 contents, FALSE))
10180 return FALSE;
10181 }
10182
10183 /* Go on to the next relocation. */
10184 continue;
10185 }
10186
10187 /* In the N32 and 64-bit ABIs there may be multiple consecutive
10188 relocations for the same offset. In that case we are
10189 supposed to treat the output of each relocation as the addend
10190 for the next. */
10191 if (rel + 1 < relend
10192 && rel->r_offset == rel[1].r_offset
10193 && ELF_R_TYPE (input_bfd, rel[1].r_info) != R_MIPS_NONE)
10194 use_saved_addend_p = TRUE;
10195 else
10196 use_saved_addend_p = FALSE;
10197
10198 /* Figure out what value we are supposed to relocate. */
10199 switch (mips_elf_calculate_relocation (output_bfd, input_bfd,
10200 input_section, info, rel,
10201 addend, howto, local_syms,
10202 local_sections, &value,
10203 &name, &cross_mode_jump_p,
10204 use_saved_addend_p))
10205 {
10206 case bfd_reloc_continue:
10207 /* There's nothing to do. */
10208 continue;
10209
10210 case bfd_reloc_undefined:
10211 /* mips_elf_calculate_relocation already called the
10212 undefined_symbol callback. There's no real point in
10213 trying to perform the relocation at this point, so we
10214 just skip ahead to the next relocation. */
10215 continue;
10216
10217 case bfd_reloc_notsupported:
10218 msg = _("internal error: unsupported relocation error");
10219 info->callbacks->warning
10220 (info, msg, name, input_bfd, input_section, rel->r_offset);
10221 return FALSE;
10222
10223 case bfd_reloc_overflow:
10224 if (use_saved_addend_p)
10225 /* Ignore overflow until we reach the last relocation for
10226 a given location. */
10227 ;
10228 else
10229 {
10230 struct mips_elf_link_hash_table *htab;
10231
10232 htab = mips_elf_hash_table (info);
10233 BFD_ASSERT (htab != NULL);
10234 BFD_ASSERT (name != NULL);
10235 if (!htab->small_data_overflow_reported
10236 && (gprel16_reloc_p (howto->type)
10237 || literal_reloc_p (howto->type)))
10238 {
10239 msg = _("small-data section exceeds 64KB;"
10240 " lower small-data size limit (see option -G)");
10241
10242 htab->small_data_overflow_reported = TRUE;
10243 (*info->callbacks->einfo) ("%P: %s\n", msg);
10244 }
10245 if (! ((*info->callbacks->reloc_overflow)
10246 (info, NULL, name, howto->name, (bfd_vma) 0,
10247 input_bfd, input_section, rel->r_offset)))
10248 return FALSE;
10249 }
10250 break;
10251
10252 case bfd_reloc_ok:
10253 break;
10254
10255 case bfd_reloc_outofrange:
10256 if (jal_reloc_p (howto->type))
10257 {
10258 msg = _("JALX to a non-word-aligned address");
10259 info->callbacks->warning
10260 (info, msg, name, input_bfd, input_section, rel->r_offset);
10261 return FALSE;
10262 }
10263 if (aligned_pcrel_reloc_p (howto->type))
10264 {
10265 msg = _("PC-relative load from unaligned address");
10266 info->callbacks->warning
10267 (info, msg, name, input_bfd, input_section, rel->r_offset);
10268 return FALSE;
10269 }
10270 /* Fall through. */
10271
10272 default:
10273 abort ();
10274 break;
10275 }
10276
10277 /* If we've got another relocation for the address, keep going
10278 until we reach the last one. */
10279 if (use_saved_addend_p)
10280 {
10281 addend = value;
10282 continue;
10283 }
10284
10285 if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd))
10286 /* See the comment above about using R_MIPS_64 in the 32-bit
10287 ABI. Until now, we've been using the HOWTO for R_MIPS_32;
10288 that calculated the right value. Now, however, we
10289 sign-extend the 32-bit result to 64-bits, and store it as a
10290 64-bit value. We are especially generous here in that we
10291 go to extreme lengths to support this usage on systems with
10292 only a 32-bit VMA. */
10293 {
10294 bfd_vma sign_bits;
10295 bfd_vma low_bits;
10296 bfd_vma high_bits;
10297
10298 if (value & ((bfd_vma) 1 << 31))
10299 #ifdef BFD64
10300 sign_bits = ((bfd_vma) 1 << 32) - 1;
10301 #else
10302 sign_bits = -1;
10303 #endif
10304 else
10305 sign_bits = 0;
10306
10307 /* If we don't know that we have a 64-bit type,
10308 do two separate stores. */
10309 if (bfd_big_endian (input_bfd))
10310 {
10311 /* Undo what we did above. */
10312 rel->r_offset -= 4;
10313 /* Store the sign-bits (which are most significant)
10314 first. */
10315 low_bits = sign_bits;
10316 high_bits = value;
10317 }
10318 else
10319 {
10320 low_bits = value;
10321 high_bits = sign_bits;
10322 }
10323 bfd_put_32 (input_bfd, low_bits,
10324 contents + rel->r_offset);
10325 bfd_put_32 (input_bfd, high_bits,
10326 contents + rel->r_offset + 4);
10327 continue;
10328 }
10329
10330 /* Actually perform the relocation. */
10331 if (! mips_elf_perform_relocation (info, howto, rel, value,
10332 input_bfd, input_section,
10333 contents, cross_mode_jump_p))
10334 return FALSE;
10335 }
10336
10337 return TRUE;
10338 }
10339 \f
10340 /* A function that iterates over each entry in la25_stubs and fills
10341 in the code for each one. DATA points to a mips_htab_traverse_info. */
10342
10343 static int
10344 mips_elf_create_la25_stub (void **slot, void *data)
10345 {
10346 struct mips_htab_traverse_info *hti;
10347 struct mips_elf_link_hash_table *htab;
10348 struct mips_elf_la25_stub *stub;
10349 asection *s;
10350 bfd_byte *loc;
10351 bfd_vma offset, target, target_high, target_low;
10352
10353 stub = (struct mips_elf_la25_stub *) *slot;
10354 hti = (struct mips_htab_traverse_info *) data;
10355 htab = mips_elf_hash_table (hti->info);
10356 BFD_ASSERT (htab != NULL);
10357
10358 /* Create the section contents, if we haven't already. */
10359 s = stub->stub_section;
10360 loc = s->contents;
10361 if (loc == NULL)
10362 {
10363 loc = bfd_malloc (s->size);
10364 if (loc == NULL)
10365 {
10366 hti->error = TRUE;
10367 return FALSE;
10368 }
10369 s->contents = loc;
10370 }
10371
10372 /* Work out where in the section this stub should go. */
10373 offset = stub->offset;
10374
10375 /* Work out the target address. */
10376 target = mips_elf_get_la25_target (stub, &s);
10377 target += s->output_section->vma + s->output_offset;
10378
10379 target_high = ((target + 0x8000) >> 16) & 0xffff;
10380 target_low = (target & 0xffff);
10381
10382 if (stub->stub_section != htab->strampoline)
10383 {
10384 /* This is a simple LUI/ADDIU stub. Zero out the beginning
10385 of the section and write the two instructions at the end. */
10386 memset (loc, 0, offset);
10387 loc += offset;
10388 if (ELF_ST_IS_MICROMIPS (stub->h->root.other))
10389 {
10390 bfd_put_micromips_32 (hti->output_bfd,
10391 LA25_LUI_MICROMIPS (target_high),
10392 loc);
10393 bfd_put_micromips_32 (hti->output_bfd,
10394 LA25_ADDIU_MICROMIPS (target_low),
10395 loc + 4);
10396 }
10397 else
10398 {
10399 bfd_put_32 (hti->output_bfd, LA25_LUI (target_high), loc);
10400 bfd_put_32 (hti->output_bfd, LA25_ADDIU (target_low), loc + 4);
10401 }
10402 }
10403 else
10404 {
10405 /* This is trampoline. */
10406 loc += offset;
10407 if (ELF_ST_IS_MICROMIPS (stub->h->root.other))
10408 {
10409 bfd_put_micromips_32 (hti->output_bfd,
10410 LA25_LUI_MICROMIPS (target_high), loc);
10411 bfd_put_micromips_32 (hti->output_bfd,
10412 LA25_J_MICROMIPS (target), loc + 4);
10413 bfd_put_micromips_32 (hti->output_bfd,
10414 LA25_ADDIU_MICROMIPS (target_low), loc + 8);
10415 bfd_put_32 (hti->output_bfd, 0, loc + 12);
10416 }
10417 else
10418 {
10419 bfd_put_32 (hti->output_bfd, LA25_LUI (target_high), loc);
10420 bfd_put_32 (hti->output_bfd, LA25_J (target), loc + 4);
10421 bfd_put_32 (hti->output_bfd, LA25_ADDIU (target_low), loc + 8);
10422 bfd_put_32 (hti->output_bfd, 0, loc + 12);
10423 }
10424 }
10425 return TRUE;
10426 }
10427
10428 /* If NAME is one of the special IRIX6 symbols defined by the linker,
10429 adjust it appropriately now. */
10430
10431 static void
10432 mips_elf_irix6_finish_dynamic_symbol (bfd *abfd ATTRIBUTE_UNUSED,
10433 const char *name, Elf_Internal_Sym *sym)
10434 {
10435 /* The linker script takes care of providing names and values for
10436 these, but we must place them into the right sections. */
10437 static const char* const text_section_symbols[] = {
10438 "_ftext",
10439 "_etext",
10440 "__dso_displacement",
10441 "__elf_header",
10442 "__program_header_table",
10443 NULL
10444 };
10445
10446 static const char* const data_section_symbols[] = {
10447 "_fdata",
10448 "_edata",
10449 "_end",
10450 "_fbss",
10451 NULL
10452 };
10453
10454 const char* const *p;
10455 int i;
10456
10457 for (i = 0; i < 2; ++i)
10458 for (p = (i == 0) ? text_section_symbols : data_section_symbols;
10459 *p;
10460 ++p)
10461 if (strcmp (*p, name) == 0)
10462 {
10463 /* All of these symbols are given type STT_SECTION by the
10464 IRIX6 linker. */
10465 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
10466 sym->st_other = STO_PROTECTED;
10467
10468 /* The IRIX linker puts these symbols in special sections. */
10469 if (i == 0)
10470 sym->st_shndx = SHN_MIPS_TEXT;
10471 else
10472 sym->st_shndx = SHN_MIPS_DATA;
10473
10474 break;
10475 }
10476 }
10477
10478 /* Finish up dynamic symbol handling. We set the contents of various
10479 dynamic sections here. */
10480
10481 bfd_boolean
10482 _bfd_mips_elf_finish_dynamic_symbol (bfd *output_bfd,
10483 struct bfd_link_info *info,
10484 struct elf_link_hash_entry *h,
10485 Elf_Internal_Sym *sym)
10486 {
10487 bfd *dynobj;
10488 asection *sgot;
10489 struct mips_got_info *g, *gg;
10490 const char *name;
10491 int idx;
10492 struct mips_elf_link_hash_table *htab;
10493 struct mips_elf_link_hash_entry *hmips;
10494
10495 htab = mips_elf_hash_table (info);
10496 BFD_ASSERT (htab != NULL);
10497 dynobj = elf_hash_table (info)->dynobj;
10498 hmips = (struct mips_elf_link_hash_entry *) h;
10499
10500 BFD_ASSERT (!htab->is_vxworks);
10501
10502 if (h->plt.plist != NULL
10503 && (h->plt.plist->mips_offset != MINUS_ONE
10504 || h->plt.plist->comp_offset != MINUS_ONE))
10505 {
10506 /* We've decided to create a PLT entry for this symbol. */
10507 bfd_byte *loc;
10508 bfd_vma header_address, got_address;
10509 bfd_vma got_address_high, got_address_low, load;
10510 bfd_vma got_index;
10511 bfd_vma isa_bit;
10512
10513 got_index = h->plt.plist->gotplt_index;
10514
10515 BFD_ASSERT (htab->use_plts_and_copy_relocs);
10516 BFD_ASSERT (h->dynindx != -1);
10517 BFD_ASSERT (htab->splt != NULL);
10518 BFD_ASSERT (got_index != MINUS_ONE);
10519 BFD_ASSERT (!h->def_regular);
10520
10521 /* Calculate the address of the PLT header. */
10522 isa_bit = htab->plt_header_is_comp;
10523 header_address = (htab->splt->output_section->vma
10524 + htab->splt->output_offset + isa_bit);
10525
10526 /* Calculate the address of the .got.plt entry. */
10527 got_address = (htab->sgotplt->output_section->vma
10528 + htab->sgotplt->output_offset
10529 + got_index * MIPS_ELF_GOT_SIZE (dynobj));
10530
10531 got_address_high = ((got_address + 0x8000) >> 16) & 0xffff;
10532 got_address_low = got_address & 0xffff;
10533
10534 /* Initially point the .got.plt entry at the PLT header. */
10535 loc = (htab->sgotplt->contents + got_index * MIPS_ELF_GOT_SIZE (dynobj));
10536 if (ABI_64_P (output_bfd))
10537 bfd_put_64 (output_bfd, header_address, loc);
10538 else
10539 bfd_put_32 (output_bfd, header_address, loc);
10540
10541 /* Now handle the PLT itself. First the standard entry (the order
10542 does not matter, we just have to pick one). */
10543 if (h->plt.plist->mips_offset != MINUS_ONE)
10544 {
10545 const bfd_vma *plt_entry;
10546 bfd_vma plt_offset;
10547
10548 plt_offset = htab->plt_header_size + h->plt.plist->mips_offset;
10549
10550 BFD_ASSERT (plt_offset <= htab->splt->size);
10551
10552 /* Find out where the .plt entry should go. */
10553 loc = htab->splt->contents + plt_offset;
10554
10555 /* Pick the load opcode. */
10556 load = MIPS_ELF_LOAD_WORD (output_bfd);
10557
10558 /* Fill in the PLT entry itself. */
10559
10560 if (MIPSR6_P (output_bfd))
10561 plt_entry = mipsr6_exec_plt_entry;
10562 else
10563 plt_entry = mips_exec_plt_entry;
10564 bfd_put_32 (output_bfd, plt_entry[0] | got_address_high, loc);
10565 bfd_put_32 (output_bfd, plt_entry[1] | got_address_low | load,
10566 loc + 4);
10567
10568 if (! LOAD_INTERLOCKS_P (output_bfd))
10569 {
10570 bfd_put_32 (output_bfd, plt_entry[2] | got_address_low, loc + 8);
10571 bfd_put_32 (output_bfd, plt_entry[3], loc + 12);
10572 }
10573 else
10574 {
10575 bfd_put_32 (output_bfd, plt_entry[3], loc + 8);
10576 bfd_put_32 (output_bfd, plt_entry[2] | got_address_low,
10577 loc + 12);
10578 }
10579 }
10580
10581 /* Now the compressed entry. They come after any standard ones. */
10582 if (h->plt.plist->comp_offset != MINUS_ONE)
10583 {
10584 bfd_vma plt_offset;
10585
10586 plt_offset = (htab->plt_header_size + htab->plt_mips_offset
10587 + h->plt.plist->comp_offset);
10588
10589 BFD_ASSERT (plt_offset <= htab->splt->size);
10590
10591 /* Find out where the .plt entry should go. */
10592 loc = htab->splt->contents + plt_offset;
10593
10594 /* Fill in the PLT entry itself. */
10595 if (!MICROMIPS_P (output_bfd))
10596 {
10597 const bfd_vma *plt_entry = mips16_o32_exec_plt_entry;
10598
10599 bfd_put_16 (output_bfd, plt_entry[0], loc);
10600 bfd_put_16 (output_bfd, plt_entry[1], loc + 2);
10601 bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
10602 bfd_put_16 (output_bfd, plt_entry[3], loc + 6);
10603 bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
10604 bfd_put_16 (output_bfd, plt_entry[5], loc + 10);
10605 bfd_put_32 (output_bfd, got_address, loc + 12);
10606 }
10607 else if (htab->insn32)
10608 {
10609 const bfd_vma *plt_entry = micromips_insn32_o32_exec_plt_entry;
10610
10611 bfd_put_16 (output_bfd, plt_entry[0], loc);
10612 bfd_put_16 (output_bfd, got_address_high, loc + 2);
10613 bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
10614 bfd_put_16 (output_bfd, got_address_low, loc + 6);
10615 bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
10616 bfd_put_16 (output_bfd, plt_entry[5], loc + 10);
10617 bfd_put_16 (output_bfd, plt_entry[6], loc + 12);
10618 bfd_put_16 (output_bfd, got_address_low, loc + 14);
10619 }
10620 else
10621 {
10622 const bfd_vma *plt_entry = micromips_o32_exec_plt_entry;
10623 bfd_signed_vma gotpc_offset;
10624 bfd_vma loc_address;
10625
10626 BFD_ASSERT (got_address % 4 == 0);
10627
10628 loc_address = (htab->splt->output_section->vma
10629 + htab->splt->output_offset + plt_offset);
10630 gotpc_offset = got_address - ((loc_address | 3) ^ 3);
10631
10632 /* ADDIUPC has a span of +/-16MB, check we're in range. */
10633 if (gotpc_offset + 0x1000000 >= 0x2000000)
10634 {
10635 (*_bfd_error_handler)
10636 (_("%B: `%A' offset of %ld from `%A' "
10637 "beyond the range of ADDIUPC"),
10638 output_bfd,
10639 htab->sgotplt->output_section,
10640 htab->splt->output_section,
10641 (long) gotpc_offset);
10642 bfd_set_error (bfd_error_no_error);
10643 return FALSE;
10644 }
10645 bfd_put_16 (output_bfd,
10646 plt_entry[0] | ((gotpc_offset >> 18) & 0x7f), loc);
10647 bfd_put_16 (output_bfd, (gotpc_offset >> 2) & 0xffff, loc + 2);
10648 bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
10649 bfd_put_16 (output_bfd, plt_entry[3], loc + 6);
10650 bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
10651 bfd_put_16 (output_bfd, plt_entry[5], loc + 10);
10652 }
10653 }
10654
10655 /* Emit an R_MIPS_JUMP_SLOT relocation against the .got.plt entry. */
10656 mips_elf_output_dynamic_relocation (output_bfd, htab->srelplt,
10657 got_index - 2, h->dynindx,
10658 R_MIPS_JUMP_SLOT, got_address);
10659
10660 /* We distinguish between PLT entries and lazy-binding stubs by
10661 giving the former an st_other value of STO_MIPS_PLT. Set the
10662 flag and leave the value if there are any relocations in the
10663 binary where pointer equality matters. */
10664 sym->st_shndx = SHN_UNDEF;
10665 if (h->pointer_equality_needed)
10666 sym->st_other = ELF_ST_SET_MIPS_PLT (sym->st_other);
10667 else
10668 {
10669 sym->st_value = 0;
10670 sym->st_other = 0;
10671 }
10672 }
10673
10674 if (h->plt.plist != NULL && h->plt.plist->stub_offset != MINUS_ONE)
10675 {
10676 /* We've decided to create a lazy-binding stub. */
10677 bfd_boolean micromips_p = MICROMIPS_P (output_bfd);
10678 unsigned int other = micromips_p ? STO_MICROMIPS : 0;
10679 bfd_vma stub_size = htab->function_stub_size;
10680 bfd_byte stub[MIPS_FUNCTION_STUB_BIG_SIZE];
10681 bfd_vma isa_bit = micromips_p;
10682 bfd_vma stub_big_size;
10683
10684 if (!micromips_p)
10685 stub_big_size = MIPS_FUNCTION_STUB_BIG_SIZE;
10686 else if (htab->insn32)
10687 stub_big_size = MICROMIPS_INSN32_FUNCTION_STUB_BIG_SIZE;
10688 else
10689 stub_big_size = MICROMIPS_FUNCTION_STUB_BIG_SIZE;
10690
10691 /* This symbol has a stub. Set it up. */
10692
10693 BFD_ASSERT (h->dynindx != -1);
10694
10695 BFD_ASSERT (stub_size == stub_big_size || h->dynindx <= 0xffff);
10696
10697 /* Values up to 2^31 - 1 are allowed. Larger values would cause
10698 sign extension at runtime in the stub, resulting in a negative
10699 index value. */
10700 if (h->dynindx & ~0x7fffffff)
10701 return FALSE;
10702
10703 /* Fill the stub. */
10704 if (micromips_p)
10705 {
10706 idx = 0;
10707 bfd_put_micromips_32 (output_bfd, STUB_LW_MICROMIPS (output_bfd),
10708 stub + idx);
10709 idx += 4;
10710 if (htab->insn32)
10711 {
10712 bfd_put_micromips_32 (output_bfd,
10713 STUB_MOVE32_MICROMIPS (output_bfd),
10714 stub + idx);
10715 idx += 4;
10716 }
10717 else
10718 {
10719 bfd_put_16 (output_bfd, STUB_MOVE_MICROMIPS, stub + idx);
10720 idx += 2;
10721 }
10722 if (stub_size == stub_big_size)
10723 {
10724 long dynindx_hi = (h->dynindx >> 16) & 0x7fff;
10725
10726 bfd_put_micromips_32 (output_bfd,
10727 STUB_LUI_MICROMIPS (dynindx_hi),
10728 stub + idx);
10729 idx += 4;
10730 }
10731 if (htab->insn32)
10732 {
10733 bfd_put_micromips_32 (output_bfd, STUB_JALR32_MICROMIPS,
10734 stub + idx);
10735 idx += 4;
10736 }
10737 else
10738 {
10739 bfd_put_16 (output_bfd, STUB_JALR_MICROMIPS, stub + idx);
10740 idx += 2;
10741 }
10742
10743 /* If a large stub is not required and sign extension is not a
10744 problem, then use legacy code in the stub. */
10745 if (stub_size == stub_big_size)
10746 bfd_put_micromips_32 (output_bfd,
10747 STUB_ORI_MICROMIPS (h->dynindx & 0xffff),
10748 stub + idx);
10749 else if (h->dynindx & ~0x7fff)
10750 bfd_put_micromips_32 (output_bfd,
10751 STUB_LI16U_MICROMIPS (h->dynindx & 0xffff),
10752 stub + idx);
10753 else
10754 bfd_put_micromips_32 (output_bfd,
10755 STUB_LI16S_MICROMIPS (output_bfd,
10756 h->dynindx),
10757 stub + idx);
10758 }
10759 else
10760 {
10761 idx = 0;
10762 bfd_put_32 (output_bfd, STUB_LW (output_bfd), stub + idx);
10763 idx += 4;
10764 bfd_put_32 (output_bfd, STUB_MOVE (output_bfd), stub + idx);
10765 idx += 4;
10766 if (stub_size == stub_big_size)
10767 {
10768 bfd_put_32 (output_bfd, STUB_LUI ((h->dynindx >> 16) & 0x7fff),
10769 stub + idx);
10770 idx += 4;
10771 }
10772 bfd_put_32 (output_bfd, STUB_JALR, stub + idx);
10773 idx += 4;
10774
10775 /* If a large stub is not required and sign extension is not a
10776 problem, then use legacy code in the stub. */
10777 if (stub_size == stub_big_size)
10778 bfd_put_32 (output_bfd, STUB_ORI (h->dynindx & 0xffff),
10779 stub + idx);
10780 else if (h->dynindx & ~0x7fff)
10781 bfd_put_32 (output_bfd, STUB_LI16U (h->dynindx & 0xffff),
10782 stub + idx);
10783 else
10784 bfd_put_32 (output_bfd, STUB_LI16S (output_bfd, h->dynindx),
10785 stub + idx);
10786 }
10787
10788 BFD_ASSERT (h->plt.plist->stub_offset <= htab->sstubs->size);
10789 memcpy (htab->sstubs->contents + h->plt.plist->stub_offset,
10790 stub, stub_size);
10791
10792 /* Mark the symbol as undefined. stub_offset != -1 occurs
10793 only for the referenced symbol. */
10794 sym->st_shndx = SHN_UNDEF;
10795
10796 /* The run-time linker uses the st_value field of the symbol
10797 to reset the global offset table entry for this external
10798 to its stub address when unlinking a shared object. */
10799 sym->st_value = (htab->sstubs->output_section->vma
10800 + htab->sstubs->output_offset
10801 + h->plt.plist->stub_offset
10802 + isa_bit);
10803 sym->st_other = other;
10804 }
10805
10806 /* If we have a MIPS16 function with a stub, the dynamic symbol must
10807 refer to the stub, since only the stub uses the standard calling
10808 conventions. */
10809 if (h->dynindx != -1 && hmips->fn_stub != NULL)
10810 {
10811 BFD_ASSERT (hmips->need_fn_stub);
10812 sym->st_value = (hmips->fn_stub->output_section->vma
10813 + hmips->fn_stub->output_offset);
10814 sym->st_size = hmips->fn_stub->size;
10815 sym->st_other = ELF_ST_VISIBILITY (sym->st_other);
10816 }
10817
10818 BFD_ASSERT (h->dynindx != -1
10819 || h->forced_local);
10820
10821 sgot = htab->sgot;
10822 g = htab->got_info;
10823 BFD_ASSERT (g != NULL);
10824
10825 /* Run through the global symbol table, creating GOT entries for all
10826 the symbols that need them. */
10827 if (hmips->global_got_area != GGA_NONE)
10828 {
10829 bfd_vma offset;
10830 bfd_vma value;
10831
10832 value = sym->st_value;
10833 offset = mips_elf_primary_global_got_index (output_bfd, info, h);
10834 MIPS_ELF_PUT_WORD (output_bfd, value, sgot->contents + offset);
10835 }
10836
10837 if (hmips->global_got_area != GGA_NONE && g->next)
10838 {
10839 struct mips_got_entry e, *p;
10840 bfd_vma entry;
10841 bfd_vma offset;
10842
10843 gg = g;
10844
10845 e.abfd = output_bfd;
10846 e.symndx = -1;
10847 e.d.h = hmips;
10848 e.tls_type = GOT_TLS_NONE;
10849
10850 for (g = g->next; g->next != gg; g = g->next)
10851 {
10852 if (g->got_entries
10853 && (p = (struct mips_got_entry *) htab_find (g->got_entries,
10854 &e)))
10855 {
10856 offset = p->gotidx;
10857 BFD_ASSERT (offset > 0 && offset < htab->sgot->size);
10858 if (info->shared
10859 || (elf_hash_table (info)->dynamic_sections_created
10860 && p->d.h != NULL
10861 && p->d.h->root.def_dynamic
10862 && !p->d.h->root.def_regular))
10863 {
10864 /* Create an R_MIPS_REL32 relocation for this entry. Due to
10865 the various compatibility problems, it's easier to mock
10866 up an R_MIPS_32 or R_MIPS_64 relocation and leave
10867 mips_elf_create_dynamic_relocation to calculate the
10868 appropriate addend. */
10869 Elf_Internal_Rela rel[3];
10870
10871 memset (rel, 0, sizeof (rel));
10872 if (ABI_64_P (output_bfd))
10873 rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_64);
10874 else
10875 rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_32);
10876 rel[0].r_offset = rel[1].r_offset = rel[2].r_offset = offset;
10877
10878 entry = 0;
10879 if (! (mips_elf_create_dynamic_relocation
10880 (output_bfd, info, rel,
10881 e.d.h, NULL, sym->st_value, &entry, sgot)))
10882 return FALSE;
10883 }
10884 else
10885 entry = sym->st_value;
10886 MIPS_ELF_PUT_WORD (output_bfd, entry, sgot->contents + offset);
10887 }
10888 }
10889 }
10890
10891 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
10892 name = h->root.root.string;
10893 if (h == elf_hash_table (info)->hdynamic
10894 || h == elf_hash_table (info)->hgot)
10895 sym->st_shndx = SHN_ABS;
10896 else if (strcmp (name, "_DYNAMIC_LINK") == 0
10897 || strcmp (name, "_DYNAMIC_LINKING") == 0)
10898 {
10899 sym->st_shndx = SHN_ABS;
10900 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
10901 sym->st_value = 1;
10902 }
10903 else if (strcmp (name, "_gp_disp") == 0 && ! NEWABI_P (output_bfd))
10904 {
10905 sym->st_shndx = SHN_ABS;
10906 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
10907 sym->st_value = elf_gp (output_bfd);
10908 }
10909 else if (SGI_COMPAT (output_bfd))
10910 {
10911 if (strcmp (name, mips_elf_dynsym_rtproc_names[0]) == 0
10912 || strcmp (name, mips_elf_dynsym_rtproc_names[1]) == 0)
10913 {
10914 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
10915 sym->st_other = STO_PROTECTED;
10916 sym->st_value = 0;
10917 sym->st_shndx = SHN_MIPS_DATA;
10918 }
10919 else if (strcmp (name, mips_elf_dynsym_rtproc_names[2]) == 0)
10920 {
10921 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
10922 sym->st_other = STO_PROTECTED;
10923 sym->st_value = mips_elf_hash_table (info)->procedure_count;
10924 sym->st_shndx = SHN_ABS;
10925 }
10926 else if (sym->st_shndx != SHN_UNDEF && sym->st_shndx != SHN_ABS)
10927 {
10928 if (h->type == STT_FUNC)
10929 sym->st_shndx = SHN_MIPS_TEXT;
10930 else if (h->type == STT_OBJECT)
10931 sym->st_shndx = SHN_MIPS_DATA;
10932 }
10933 }
10934
10935 /* Emit a copy reloc, if needed. */
10936 if (h->needs_copy)
10937 {
10938 asection *s;
10939 bfd_vma symval;
10940
10941 BFD_ASSERT (h->dynindx != -1);
10942 BFD_ASSERT (htab->use_plts_and_copy_relocs);
10943
10944 s = mips_elf_rel_dyn_section (info, FALSE);
10945 symval = (h->root.u.def.section->output_section->vma
10946 + h->root.u.def.section->output_offset
10947 + h->root.u.def.value);
10948 mips_elf_output_dynamic_relocation (output_bfd, s, s->reloc_count++,
10949 h->dynindx, R_MIPS_COPY, symval);
10950 }
10951
10952 /* Handle the IRIX6-specific symbols. */
10953 if (IRIX_COMPAT (output_bfd) == ict_irix6)
10954 mips_elf_irix6_finish_dynamic_symbol (output_bfd, name, sym);
10955
10956 /* Keep dynamic compressed symbols odd. This allows the dynamic linker
10957 to treat compressed symbols like any other. */
10958 if (ELF_ST_IS_MIPS16 (sym->st_other))
10959 {
10960 BFD_ASSERT (sym->st_value & 1);
10961 sym->st_other -= STO_MIPS16;
10962 }
10963 else if (ELF_ST_IS_MICROMIPS (sym->st_other))
10964 {
10965 BFD_ASSERT (sym->st_value & 1);
10966 sym->st_other -= STO_MICROMIPS;
10967 }
10968
10969 return TRUE;
10970 }
10971
10972 /* Likewise, for VxWorks. */
10973
10974 bfd_boolean
10975 _bfd_mips_vxworks_finish_dynamic_symbol (bfd *output_bfd,
10976 struct bfd_link_info *info,
10977 struct elf_link_hash_entry *h,
10978 Elf_Internal_Sym *sym)
10979 {
10980 bfd *dynobj;
10981 asection *sgot;
10982 struct mips_got_info *g;
10983 struct mips_elf_link_hash_table *htab;
10984 struct mips_elf_link_hash_entry *hmips;
10985
10986 htab = mips_elf_hash_table (info);
10987 BFD_ASSERT (htab != NULL);
10988 dynobj = elf_hash_table (info)->dynobj;
10989 hmips = (struct mips_elf_link_hash_entry *) h;
10990
10991 if (h->plt.plist != NULL && h->plt.plist->mips_offset != MINUS_ONE)
10992 {
10993 bfd_byte *loc;
10994 bfd_vma plt_address, got_address, got_offset, branch_offset;
10995 Elf_Internal_Rela rel;
10996 static const bfd_vma *plt_entry;
10997 bfd_vma gotplt_index;
10998 bfd_vma plt_offset;
10999
11000 plt_offset = htab->plt_header_size + h->plt.plist->mips_offset;
11001 gotplt_index = h->plt.plist->gotplt_index;
11002
11003 BFD_ASSERT (h->dynindx != -1);
11004 BFD_ASSERT (htab->splt != NULL);
11005 BFD_ASSERT (gotplt_index != MINUS_ONE);
11006 BFD_ASSERT (plt_offset <= htab->splt->size);
11007
11008 /* Calculate the address of the .plt entry. */
11009 plt_address = (htab->splt->output_section->vma
11010 + htab->splt->output_offset
11011 + plt_offset);
11012
11013 /* Calculate the address of the .got.plt entry. */
11014 got_address = (htab->sgotplt->output_section->vma
11015 + htab->sgotplt->output_offset
11016 + gotplt_index * MIPS_ELF_GOT_SIZE (output_bfd));
11017
11018 /* Calculate the offset of the .got.plt entry from
11019 _GLOBAL_OFFSET_TABLE_. */
11020 got_offset = mips_elf_gotplt_index (info, h);
11021
11022 /* Calculate the offset for the branch at the start of the PLT
11023 entry. The branch jumps to the beginning of .plt. */
11024 branch_offset = -(plt_offset / 4 + 1) & 0xffff;
11025
11026 /* Fill in the initial value of the .got.plt entry. */
11027 bfd_put_32 (output_bfd, plt_address,
11028 (htab->sgotplt->contents
11029 + gotplt_index * MIPS_ELF_GOT_SIZE (output_bfd)));
11030
11031 /* Find out where the .plt entry should go. */
11032 loc = htab->splt->contents + plt_offset;
11033
11034 if (info->shared)
11035 {
11036 plt_entry = mips_vxworks_shared_plt_entry;
11037 bfd_put_32 (output_bfd, plt_entry[0] | branch_offset, loc);
11038 bfd_put_32 (output_bfd, plt_entry[1] | gotplt_index, loc + 4);
11039 }
11040 else
11041 {
11042 bfd_vma got_address_high, got_address_low;
11043
11044 plt_entry = mips_vxworks_exec_plt_entry;
11045 got_address_high = ((got_address + 0x8000) >> 16) & 0xffff;
11046 got_address_low = got_address & 0xffff;
11047
11048 bfd_put_32 (output_bfd, plt_entry[0] | branch_offset, loc);
11049 bfd_put_32 (output_bfd, plt_entry[1] | gotplt_index, loc + 4);
11050 bfd_put_32 (output_bfd, plt_entry[2] | got_address_high, loc + 8);
11051 bfd_put_32 (output_bfd, plt_entry[3] | got_address_low, loc + 12);
11052 bfd_put_32 (output_bfd, plt_entry[4], loc + 16);
11053 bfd_put_32 (output_bfd, plt_entry[5], loc + 20);
11054 bfd_put_32 (output_bfd, plt_entry[6], loc + 24);
11055 bfd_put_32 (output_bfd, plt_entry[7], loc + 28);
11056
11057 loc = (htab->srelplt2->contents
11058 + (gotplt_index * 3 + 2) * sizeof (Elf32_External_Rela));
11059
11060 /* Emit a relocation for the .got.plt entry. */
11061 rel.r_offset = got_address;
11062 rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_MIPS_32);
11063 rel.r_addend = plt_offset;
11064 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11065
11066 /* Emit a relocation for the lui of %hi(<.got.plt slot>). */
11067 loc += sizeof (Elf32_External_Rela);
11068 rel.r_offset = plt_address + 8;
11069 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
11070 rel.r_addend = got_offset;
11071 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11072
11073 /* Emit a relocation for the addiu of %lo(<.got.plt slot>). */
11074 loc += sizeof (Elf32_External_Rela);
11075 rel.r_offset += 4;
11076 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
11077 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11078 }
11079
11080 /* Emit an R_MIPS_JUMP_SLOT relocation against the .got.plt entry. */
11081 loc = (htab->srelplt->contents
11082 + gotplt_index * sizeof (Elf32_External_Rela));
11083 rel.r_offset = got_address;
11084 rel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_JUMP_SLOT);
11085 rel.r_addend = 0;
11086 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11087
11088 if (!h->def_regular)
11089 sym->st_shndx = SHN_UNDEF;
11090 }
11091
11092 BFD_ASSERT (h->dynindx != -1 || h->forced_local);
11093
11094 sgot = htab->sgot;
11095 g = htab->got_info;
11096 BFD_ASSERT (g != NULL);
11097
11098 /* See if this symbol has an entry in the GOT. */
11099 if (hmips->global_got_area != GGA_NONE)
11100 {
11101 bfd_vma offset;
11102 Elf_Internal_Rela outrel;
11103 bfd_byte *loc;
11104 asection *s;
11105
11106 /* Install the symbol value in the GOT. */
11107 offset = mips_elf_primary_global_got_index (output_bfd, info, h);
11108 MIPS_ELF_PUT_WORD (output_bfd, sym->st_value, sgot->contents + offset);
11109
11110 /* Add a dynamic relocation for it. */
11111 s = mips_elf_rel_dyn_section (info, FALSE);
11112 loc = s->contents + (s->reloc_count++ * sizeof (Elf32_External_Rela));
11113 outrel.r_offset = (sgot->output_section->vma
11114 + sgot->output_offset
11115 + offset);
11116 outrel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_32);
11117 outrel.r_addend = 0;
11118 bfd_elf32_swap_reloca_out (dynobj, &outrel, loc);
11119 }
11120
11121 /* Emit a copy reloc, if needed. */
11122 if (h->needs_copy)
11123 {
11124 Elf_Internal_Rela rel;
11125
11126 BFD_ASSERT (h->dynindx != -1);
11127
11128 rel.r_offset = (h->root.u.def.section->output_section->vma
11129 + h->root.u.def.section->output_offset
11130 + h->root.u.def.value);
11131 rel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_COPY);
11132 rel.r_addend = 0;
11133 bfd_elf32_swap_reloca_out (output_bfd, &rel,
11134 htab->srelbss->contents
11135 + (htab->srelbss->reloc_count
11136 * sizeof (Elf32_External_Rela)));
11137 ++htab->srelbss->reloc_count;
11138 }
11139
11140 /* If this is a mips16/microMIPS symbol, force the value to be even. */
11141 if (ELF_ST_IS_COMPRESSED (sym->st_other))
11142 sym->st_value &= ~1;
11143
11144 return TRUE;
11145 }
11146
11147 /* Write out a plt0 entry to the beginning of .plt. */
11148
11149 static bfd_boolean
11150 mips_finish_exec_plt (bfd *output_bfd, struct bfd_link_info *info)
11151 {
11152 bfd_byte *loc;
11153 bfd_vma gotplt_value, gotplt_value_high, gotplt_value_low;
11154 static const bfd_vma *plt_entry;
11155 struct mips_elf_link_hash_table *htab;
11156
11157 htab = mips_elf_hash_table (info);
11158 BFD_ASSERT (htab != NULL);
11159
11160 if (ABI_64_P (output_bfd))
11161 plt_entry = mips_n64_exec_plt0_entry;
11162 else if (ABI_N32_P (output_bfd))
11163 plt_entry = mips_n32_exec_plt0_entry;
11164 else if (!htab->plt_header_is_comp)
11165 plt_entry = mips_o32_exec_plt0_entry;
11166 else if (htab->insn32)
11167 plt_entry = micromips_insn32_o32_exec_plt0_entry;
11168 else
11169 plt_entry = micromips_o32_exec_plt0_entry;
11170
11171 /* Calculate the value of .got.plt. */
11172 gotplt_value = (htab->sgotplt->output_section->vma
11173 + htab->sgotplt->output_offset);
11174 gotplt_value_high = ((gotplt_value + 0x8000) >> 16) & 0xffff;
11175 gotplt_value_low = gotplt_value & 0xffff;
11176
11177 /* The PLT sequence is not safe for N64 if .got.plt's address can
11178 not be loaded in two instructions. */
11179 BFD_ASSERT ((gotplt_value & ~(bfd_vma) 0x7fffffff) == 0
11180 || ~(gotplt_value | 0x7fffffff) == 0);
11181
11182 /* Install the PLT header. */
11183 loc = htab->splt->contents;
11184 if (plt_entry == micromips_o32_exec_plt0_entry)
11185 {
11186 bfd_vma gotpc_offset;
11187 bfd_vma loc_address;
11188 size_t i;
11189
11190 BFD_ASSERT (gotplt_value % 4 == 0);
11191
11192 loc_address = (htab->splt->output_section->vma
11193 + htab->splt->output_offset);
11194 gotpc_offset = gotplt_value - ((loc_address | 3) ^ 3);
11195
11196 /* ADDIUPC has a span of +/-16MB, check we're in range. */
11197 if (gotpc_offset + 0x1000000 >= 0x2000000)
11198 {
11199 (*_bfd_error_handler)
11200 (_("%B: `%A' offset of %ld from `%A' beyond the range of ADDIUPC"),
11201 output_bfd,
11202 htab->sgotplt->output_section,
11203 htab->splt->output_section,
11204 (long) gotpc_offset);
11205 bfd_set_error (bfd_error_no_error);
11206 return FALSE;
11207 }
11208 bfd_put_16 (output_bfd,
11209 plt_entry[0] | ((gotpc_offset >> 18) & 0x7f), loc);
11210 bfd_put_16 (output_bfd, (gotpc_offset >> 2) & 0xffff, loc + 2);
11211 for (i = 2; i < ARRAY_SIZE (micromips_o32_exec_plt0_entry); i++)
11212 bfd_put_16 (output_bfd, plt_entry[i], loc + (i * 2));
11213 }
11214 else if (plt_entry == micromips_insn32_o32_exec_plt0_entry)
11215 {
11216 size_t i;
11217
11218 bfd_put_16 (output_bfd, plt_entry[0], loc);
11219 bfd_put_16 (output_bfd, gotplt_value_high, loc + 2);
11220 bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
11221 bfd_put_16 (output_bfd, gotplt_value_low, loc + 6);
11222 bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
11223 bfd_put_16 (output_bfd, gotplt_value_low, loc + 10);
11224 for (i = 6; i < ARRAY_SIZE (micromips_insn32_o32_exec_plt0_entry); i++)
11225 bfd_put_16 (output_bfd, plt_entry[i], loc + (i * 2));
11226 }
11227 else
11228 {
11229 bfd_put_32 (output_bfd, plt_entry[0] | gotplt_value_high, loc);
11230 bfd_put_32 (output_bfd, plt_entry[1] | gotplt_value_low, loc + 4);
11231 bfd_put_32 (output_bfd, plt_entry[2] | gotplt_value_low, loc + 8);
11232 bfd_put_32 (output_bfd, plt_entry[3], loc + 12);
11233 bfd_put_32 (output_bfd, plt_entry[4], loc + 16);
11234 bfd_put_32 (output_bfd, plt_entry[5], loc + 20);
11235 bfd_put_32 (output_bfd, plt_entry[6], loc + 24);
11236 bfd_put_32 (output_bfd, plt_entry[7], loc + 28);
11237 }
11238
11239 return TRUE;
11240 }
11241
11242 /* Install the PLT header for a VxWorks executable and finalize the
11243 contents of .rela.plt.unloaded. */
11244
11245 static void
11246 mips_vxworks_finish_exec_plt (bfd *output_bfd, struct bfd_link_info *info)
11247 {
11248 Elf_Internal_Rela rela;
11249 bfd_byte *loc;
11250 bfd_vma got_value, got_value_high, got_value_low, plt_address;
11251 static const bfd_vma *plt_entry;
11252 struct mips_elf_link_hash_table *htab;
11253
11254 htab = mips_elf_hash_table (info);
11255 BFD_ASSERT (htab != NULL);
11256
11257 plt_entry = mips_vxworks_exec_plt0_entry;
11258
11259 /* Calculate the value of _GLOBAL_OFFSET_TABLE_. */
11260 got_value = (htab->root.hgot->root.u.def.section->output_section->vma
11261 + htab->root.hgot->root.u.def.section->output_offset
11262 + htab->root.hgot->root.u.def.value);
11263
11264 got_value_high = ((got_value + 0x8000) >> 16) & 0xffff;
11265 got_value_low = got_value & 0xffff;
11266
11267 /* Calculate the address of the PLT header. */
11268 plt_address = htab->splt->output_section->vma + htab->splt->output_offset;
11269
11270 /* Install the PLT header. */
11271 loc = htab->splt->contents;
11272 bfd_put_32 (output_bfd, plt_entry[0] | got_value_high, loc);
11273 bfd_put_32 (output_bfd, plt_entry[1] | got_value_low, loc + 4);
11274 bfd_put_32 (output_bfd, plt_entry[2], loc + 8);
11275 bfd_put_32 (output_bfd, plt_entry[3], loc + 12);
11276 bfd_put_32 (output_bfd, plt_entry[4], loc + 16);
11277 bfd_put_32 (output_bfd, plt_entry[5], loc + 20);
11278
11279 /* Output the relocation for the lui of %hi(_GLOBAL_OFFSET_TABLE_). */
11280 loc = htab->srelplt2->contents;
11281 rela.r_offset = plt_address;
11282 rela.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
11283 rela.r_addend = 0;
11284 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
11285 loc += sizeof (Elf32_External_Rela);
11286
11287 /* Output the relocation for the following addiu of
11288 %lo(_GLOBAL_OFFSET_TABLE_). */
11289 rela.r_offset += 4;
11290 rela.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
11291 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
11292 loc += sizeof (Elf32_External_Rela);
11293
11294 /* Fix up the remaining relocations. They may have the wrong
11295 symbol index for _G_O_T_ or _P_L_T_ depending on the order
11296 in which symbols were output. */
11297 while (loc < htab->srelplt2->contents + htab->srelplt2->size)
11298 {
11299 Elf_Internal_Rela rel;
11300
11301 bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
11302 rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_MIPS_32);
11303 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11304 loc += sizeof (Elf32_External_Rela);
11305
11306 bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
11307 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
11308 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11309 loc += sizeof (Elf32_External_Rela);
11310
11311 bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
11312 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
11313 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11314 loc += sizeof (Elf32_External_Rela);
11315 }
11316 }
11317
11318 /* Install the PLT header for a VxWorks shared library. */
11319
11320 static void
11321 mips_vxworks_finish_shared_plt (bfd *output_bfd, struct bfd_link_info *info)
11322 {
11323 unsigned int i;
11324 struct mips_elf_link_hash_table *htab;
11325
11326 htab = mips_elf_hash_table (info);
11327 BFD_ASSERT (htab != NULL);
11328
11329 /* We just need to copy the entry byte-by-byte. */
11330 for (i = 0; i < ARRAY_SIZE (mips_vxworks_shared_plt0_entry); i++)
11331 bfd_put_32 (output_bfd, mips_vxworks_shared_plt0_entry[i],
11332 htab->splt->contents + i * 4);
11333 }
11334
11335 /* Finish up the dynamic sections. */
11336
11337 bfd_boolean
11338 _bfd_mips_elf_finish_dynamic_sections (bfd *output_bfd,
11339 struct bfd_link_info *info)
11340 {
11341 bfd *dynobj;
11342 asection *sdyn;
11343 asection *sgot;
11344 struct mips_got_info *gg, *g;
11345 struct mips_elf_link_hash_table *htab;
11346
11347 htab = mips_elf_hash_table (info);
11348 BFD_ASSERT (htab != NULL);
11349
11350 dynobj = elf_hash_table (info)->dynobj;
11351
11352 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
11353
11354 sgot = htab->sgot;
11355 gg = htab->got_info;
11356
11357 if (elf_hash_table (info)->dynamic_sections_created)
11358 {
11359 bfd_byte *b;
11360 int dyn_to_skip = 0, dyn_skipped = 0;
11361
11362 BFD_ASSERT (sdyn != NULL);
11363 BFD_ASSERT (gg != NULL);
11364
11365 g = mips_elf_bfd_got (output_bfd, FALSE);
11366 BFD_ASSERT (g != NULL);
11367
11368 for (b = sdyn->contents;
11369 b < sdyn->contents + sdyn->size;
11370 b += MIPS_ELF_DYN_SIZE (dynobj))
11371 {
11372 Elf_Internal_Dyn dyn;
11373 const char *name;
11374 size_t elemsize;
11375 asection *s;
11376 bfd_boolean swap_out_p;
11377
11378 /* Read in the current dynamic entry. */
11379 (*get_elf_backend_data (dynobj)->s->swap_dyn_in) (dynobj, b, &dyn);
11380
11381 /* Assume that we're going to modify it and write it out. */
11382 swap_out_p = TRUE;
11383
11384 switch (dyn.d_tag)
11385 {
11386 case DT_RELENT:
11387 dyn.d_un.d_val = MIPS_ELF_REL_SIZE (dynobj);
11388 break;
11389
11390 case DT_RELAENT:
11391 BFD_ASSERT (htab->is_vxworks);
11392 dyn.d_un.d_val = MIPS_ELF_RELA_SIZE (dynobj);
11393 break;
11394
11395 case DT_STRSZ:
11396 /* Rewrite DT_STRSZ. */
11397 dyn.d_un.d_val =
11398 _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
11399 break;
11400
11401 case DT_PLTGOT:
11402 s = htab->sgot;
11403 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
11404 break;
11405
11406 case DT_MIPS_PLTGOT:
11407 s = htab->sgotplt;
11408 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
11409 break;
11410
11411 case DT_MIPS_RLD_VERSION:
11412 dyn.d_un.d_val = 1; /* XXX */
11413 break;
11414
11415 case DT_MIPS_FLAGS:
11416 dyn.d_un.d_val = RHF_NOTPOT; /* XXX */
11417 break;
11418
11419 case DT_MIPS_TIME_STAMP:
11420 {
11421 time_t t;
11422 time (&t);
11423 dyn.d_un.d_val = t;
11424 }
11425 break;
11426
11427 case DT_MIPS_ICHECKSUM:
11428 /* XXX FIXME: */
11429 swap_out_p = FALSE;
11430 break;
11431
11432 case DT_MIPS_IVERSION:
11433 /* XXX FIXME: */
11434 swap_out_p = FALSE;
11435 break;
11436
11437 case DT_MIPS_BASE_ADDRESS:
11438 s = output_bfd->sections;
11439 BFD_ASSERT (s != NULL);
11440 dyn.d_un.d_ptr = s->vma & ~(bfd_vma) 0xffff;
11441 break;
11442
11443 case DT_MIPS_LOCAL_GOTNO:
11444 dyn.d_un.d_val = g->local_gotno;
11445 break;
11446
11447 case DT_MIPS_UNREFEXTNO:
11448 /* The index into the dynamic symbol table which is the
11449 entry of the first external symbol that is not
11450 referenced within the same object. */
11451 dyn.d_un.d_val = bfd_count_sections (output_bfd) + 1;
11452 break;
11453
11454 case DT_MIPS_GOTSYM:
11455 if (htab->global_gotsym)
11456 {
11457 dyn.d_un.d_val = htab->global_gotsym->dynindx;
11458 break;
11459 }
11460 /* In case if we don't have global got symbols we default
11461 to setting DT_MIPS_GOTSYM to the same value as
11462 DT_MIPS_SYMTABNO, so we just fall through. */
11463
11464 case DT_MIPS_SYMTABNO:
11465 name = ".dynsym";
11466 elemsize = MIPS_ELF_SYM_SIZE (output_bfd);
11467 s = bfd_get_section_by_name (output_bfd, name);
11468
11469 if (s != NULL)
11470 dyn.d_un.d_val = s->size / elemsize;
11471 else
11472 dyn.d_un.d_val = 0;
11473 break;
11474
11475 case DT_MIPS_HIPAGENO:
11476 dyn.d_un.d_val = g->local_gotno - htab->reserved_gotno;
11477 break;
11478
11479 case DT_MIPS_RLD_MAP:
11480 {
11481 struct elf_link_hash_entry *h;
11482 h = mips_elf_hash_table (info)->rld_symbol;
11483 if (!h)
11484 {
11485 dyn_to_skip = MIPS_ELF_DYN_SIZE (dynobj);
11486 swap_out_p = FALSE;
11487 break;
11488 }
11489 s = h->root.u.def.section;
11490 dyn.d_un.d_ptr = (s->output_section->vma + s->output_offset
11491 + h->root.u.def.value);
11492 }
11493 break;
11494
11495 case DT_MIPS_OPTIONS:
11496 s = (bfd_get_section_by_name
11497 (output_bfd, MIPS_ELF_OPTIONS_SECTION_NAME (output_bfd)));
11498 dyn.d_un.d_ptr = s->vma;
11499 break;
11500
11501 case DT_RELASZ:
11502 BFD_ASSERT (htab->is_vxworks);
11503 /* The count does not include the JUMP_SLOT relocations. */
11504 if (htab->srelplt)
11505 dyn.d_un.d_val -= htab->srelplt->size;
11506 break;
11507
11508 case DT_PLTREL:
11509 BFD_ASSERT (htab->use_plts_and_copy_relocs);
11510 if (htab->is_vxworks)
11511 dyn.d_un.d_val = DT_RELA;
11512 else
11513 dyn.d_un.d_val = DT_REL;
11514 break;
11515
11516 case DT_PLTRELSZ:
11517 BFD_ASSERT (htab->use_plts_and_copy_relocs);
11518 dyn.d_un.d_val = htab->srelplt->size;
11519 break;
11520
11521 case DT_JMPREL:
11522 BFD_ASSERT (htab->use_plts_and_copy_relocs);
11523 dyn.d_un.d_ptr = (htab->srelplt->output_section->vma
11524 + htab->srelplt->output_offset);
11525 break;
11526
11527 case DT_TEXTREL:
11528 /* If we didn't need any text relocations after all, delete
11529 the dynamic tag. */
11530 if (!(info->flags & DF_TEXTREL))
11531 {
11532 dyn_to_skip = MIPS_ELF_DYN_SIZE (dynobj);
11533 swap_out_p = FALSE;
11534 }
11535 break;
11536
11537 case DT_FLAGS:
11538 /* If we didn't need any text relocations after all, clear
11539 DF_TEXTREL from DT_FLAGS. */
11540 if (!(info->flags & DF_TEXTREL))
11541 dyn.d_un.d_val &= ~DF_TEXTREL;
11542 else
11543 swap_out_p = FALSE;
11544 break;
11545
11546 default:
11547 swap_out_p = FALSE;
11548 if (htab->is_vxworks
11549 && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
11550 swap_out_p = TRUE;
11551 break;
11552 }
11553
11554 if (swap_out_p || dyn_skipped)
11555 (*get_elf_backend_data (dynobj)->s->swap_dyn_out)
11556 (dynobj, &dyn, b - dyn_skipped);
11557
11558 if (dyn_to_skip)
11559 {
11560 dyn_skipped += dyn_to_skip;
11561 dyn_to_skip = 0;
11562 }
11563 }
11564
11565 /* Wipe out any trailing entries if we shifted down a dynamic tag. */
11566 if (dyn_skipped > 0)
11567 memset (b - dyn_skipped, 0, dyn_skipped);
11568 }
11569
11570 if (sgot != NULL && sgot->size > 0
11571 && !bfd_is_abs_section (sgot->output_section))
11572 {
11573 if (htab->is_vxworks)
11574 {
11575 /* The first entry of the global offset table points to the
11576 ".dynamic" section. The second is initialized by the
11577 loader and contains the shared library identifier.
11578 The third is also initialized by the loader and points
11579 to the lazy resolution stub. */
11580 MIPS_ELF_PUT_WORD (output_bfd,
11581 sdyn->output_offset + sdyn->output_section->vma,
11582 sgot->contents);
11583 MIPS_ELF_PUT_WORD (output_bfd, 0,
11584 sgot->contents + MIPS_ELF_GOT_SIZE (output_bfd));
11585 MIPS_ELF_PUT_WORD (output_bfd, 0,
11586 sgot->contents
11587 + 2 * MIPS_ELF_GOT_SIZE (output_bfd));
11588 }
11589 else
11590 {
11591 /* The first entry of the global offset table will be filled at
11592 runtime. The second entry will be used by some runtime loaders.
11593 This isn't the case of IRIX rld. */
11594 MIPS_ELF_PUT_WORD (output_bfd, (bfd_vma) 0, sgot->contents);
11595 MIPS_ELF_PUT_WORD (output_bfd, MIPS_ELF_GNU_GOT1_MASK (output_bfd),
11596 sgot->contents + MIPS_ELF_GOT_SIZE (output_bfd));
11597 }
11598
11599 elf_section_data (sgot->output_section)->this_hdr.sh_entsize
11600 = MIPS_ELF_GOT_SIZE (output_bfd);
11601 }
11602
11603 /* Generate dynamic relocations for the non-primary gots. */
11604 if (gg != NULL && gg->next)
11605 {
11606 Elf_Internal_Rela rel[3];
11607 bfd_vma addend = 0;
11608
11609 memset (rel, 0, sizeof (rel));
11610 rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_REL32);
11611
11612 for (g = gg->next; g->next != gg; g = g->next)
11613 {
11614 bfd_vma got_index = g->next->local_gotno + g->next->global_gotno
11615 + g->next->tls_gotno;
11616
11617 MIPS_ELF_PUT_WORD (output_bfd, 0, sgot->contents
11618 + got_index++ * MIPS_ELF_GOT_SIZE (output_bfd));
11619 MIPS_ELF_PUT_WORD (output_bfd, MIPS_ELF_GNU_GOT1_MASK (output_bfd),
11620 sgot->contents
11621 + got_index++ * MIPS_ELF_GOT_SIZE (output_bfd));
11622
11623 if (! info->shared)
11624 continue;
11625
11626 for (; got_index < g->local_gotno; got_index++)
11627 {
11628 if (got_index >= g->assigned_low_gotno
11629 && got_index <= g->assigned_high_gotno)
11630 continue;
11631
11632 rel[0].r_offset = rel[1].r_offset = rel[2].r_offset
11633 = got_index * MIPS_ELF_GOT_SIZE (output_bfd);
11634 if (!(mips_elf_create_dynamic_relocation
11635 (output_bfd, info, rel, NULL,
11636 bfd_abs_section_ptr,
11637 0, &addend, sgot)))
11638 return FALSE;
11639 BFD_ASSERT (addend == 0);
11640 }
11641 }
11642 }
11643
11644 /* The generation of dynamic relocations for the non-primary gots
11645 adds more dynamic relocations. We cannot count them until
11646 here. */
11647
11648 if (elf_hash_table (info)->dynamic_sections_created)
11649 {
11650 bfd_byte *b;
11651 bfd_boolean swap_out_p;
11652
11653 BFD_ASSERT (sdyn != NULL);
11654
11655 for (b = sdyn->contents;
11656 b < sdyn->contents + sdyn->size;
11657 b += MIPS_ELF_DYN_SIZE (dynobj))
11658 {
11659 Elf_Internal_Dyn dyn;
11660 asection *s;
11661
11662 /* Read in the current dynamic entry. */
11663 (*get_elf_backend_data (dynobj)->s->swap_dyn_in) (dynobj, b, &dyn);
11664
11665 /* Assume that we're going to modify it and write it out. */
11666 swap_out_p = TRUE;
11667
11668 switch (dyn.d_tag)
11669 {
11670 case DT_RELSZ:
11671 /* Reduce DT_RELSZ to account for any relocations we
11672 decided not to make. This is for the n64 irix rld,
11673 which doesn't seem to apply any relocations if there
11674 are trailing null entries. */
11675 s = mips_elf_rel_dyn_section (info, FALSE);
11676 dyn.d_un.d_val = (s->reloc_count
11677 * (ABI_64_P (output_bfd)
11678 ? sizeof (Elf64_Mips_External_Rel)
11679 : sizeof (Elf32_External_Rel)));
11680 /* Adjust the section size too. Tools like the prelinker
11681 can reasonably expect the values to the same. */
11682 elf_section_data (s->output_section)->this_hdr.sh_size
11683 = dyn.d_un.d_val;
11684 break;
11685
11686 default:
11687 swap_out_p = FALSE;
11688 break;
11689 }
11690
11691 if (swap_out_p)
11692 (*get_elf_backend_data (dynobj)->s->swap_dyn_out)
11693 (dynobj, &dyn, b);
11694 }
11695 }
11696
11697 {
11698 asection *s;
11699 Elf32_compact_rel cpt;
11700
11701 if (SGI_COMPAT (output_bfd))
11702 {
11703 /* Write .compact_rel section out. */
11704 s = bfd_get_linker_section (dynobj, ".compact_rel");
11705 if (s != NULL)
11706 {
11707 cpt.id1 = 1;
11708 cpt.num = s->reloc_count;
11709 cpt.id2 = 2;
11710 cpt.offset = (s->output_section->filepos
11711 + sizeof (Elf32_External_compact_rel));
11712 cpt.reserved0 = 0;
11713 cpt.reserved1 = 0;
11714 bfd_elf32_swap_compact_rel_out (output_bfd, &cpt,
11715 ((Elf32_External_compact_rel *)
11716 s->contents));
11717
11718 /* Clean up a dummy stub function entry in .text. */
11719 if (htab->sstubs != NULL)
11720 {
11721 file_ptr dummy_offset;
11722
11723 BFD_ASSERT (htab->sstubs->size >= htab->function_stub_size);
11724 dummy_offset = htab->sstubs->size - htab->function_stub_size;
11725 memset (htab->sstubs->contents + dummy_offset, 0,
11726 htab->function_stub_size);
11727 }
11728 }
11729 }
11730
11731 /* The psABI says that the dynamic relocations must be sorted in
11732 increasing order of r_symndx. The VxWorks EABI doesn't require
11733 this, and because the code below handles REL rather than RELA
11734 relocations, using it for VxWorks would be outright harmful. */
11735 if (!htab->is_vxworks)
11736 {
11737 s = mips_elf_rel_dyn_section (info, FALSE);
11738 if (s != NULL
11739 && s->size > (bfd_vma)2 * MIPS_ELF_REL_SIZE (output_bfd))
11740 {
11741 reldyn_sorting_bfd = output_bfd;
11742
11743 if (ABI_64_P (output_bfd))
11744 qsort ((Elf64_External_Rel *) s->contents + 1,
11745 s->reloc_count - 1, sizeof (Elf64_Mips_External_Rel),
11746 sort_dynamic_relocs_64);
11747 else
11748 qsort ((Elf32_External_Rel *) s->contents + 1,
11749 s->reloc_count - 1, sizeof (Elf32_External_Rel),
11750 sort_dynamic_relocs);
11751 }
11752 }
11753 }
11754
11755 if (htab->splt && htab->splt->size > 0)
11756 {
11757 if (htab->is_vxworks)
11758 {
11759 if (info->shared)
11760 mips_vxworks_finish_shared_plt (output_bfd, info);
11761 else
11762 mips_vxworks_finish_exec_plt (output_bfd, info);
11763 }
11764 else
11765 {
11766 BFD_ASSERT (!info->shared);
11767 if (!mips_finish_exec_plt (output_bfd, info))
11768 return FALSE;
11769 }
11770 }
11771 return TRUE;
11772 }
11773
11774
11775 /* Set ABFD's EF_MIPS_ARCH and EF_MIPS_MACH flags. */
11776
11777 static void
11778 mips_set_isa_flags (bfd *abfd)
11779 {
11780 flagword val;
11781
11782 switch (bfd_get_mach (abfd))
11783 {
11784 default:
11785 case bfd_mach_mips3000:
11786 val = E_MIPS_ARCH_1;
11787 break;
11788
11789 case bfd_mach_mips3900:
11790 val = E_MIPS_ARCH_1 | E_MIPS_MACH_3900;
11791 break;
11792
11793 case bfd_mach_mips6000:
11794 val = E_MIPS_ARCH_2;
11795 break;
11796
11797 case bfd_mach_mips4000:
11798 case bfd_mach_mips4300:
11799 case bfd_mach_mips4400:
11800 case bfd_mach_mips4600:
11801 val = E_MIPS_ARCH_3;
11802 break;
11803
11804 case bfd_mach_mips4010:
11805 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4010;
11806 break;
11807
11808 case bfd_mach_mips4100:
11809 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4100;
11810 break;
11811
11812 case bfd_mach_mips4111:
11813 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4111;
11814 break;
11815
11816 case bfd_mach_mips4120:
11817 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4120;
11818 break;
11819
11820 case bfd_mach_mips4650:
11821 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4650;
11822 break;
11823
11824 case bfd_mach_mips5400:
11825 val = E_MIPS_ARCH_4 | E_MIPS_MACH_5400;
11826 break;
11827
11828 case bfd_mach_mips5500:
11829 val = E_MIPS_ARCH_4 | E_MIPS_MACH_5500;
11830 break;
11831
11832 case bfd_mach_mips5900:
11833 val = E_MIPS_ARCH_3 | E_MIPS_MACH_5900;
11834 break;
11835
11836 case bfd_mach_mips9000:
11837 val = E_MIPS_ARCH_4 | E_MIPS_MACH_9000;
11838 break;
11839
11840 case bfd_mach_mips5000:
11841 case bfd_mach_mips7000:
11842 case bfd_mach_mips8000:
11843 case bfd_mach_mips10000:
11844 case bfd_mach_mips12000:
11845 case bfd_mach_mips14000:
11846 case bfd_mach_mips16000:
11847 val = E_MIPS_ARCH_4;
11848 break;
11849
11850 case bfd_mach_mips5:
11851 val = E_MIPS_ARCH_5;
11852 break;
11853
11854 case bfd_mach_mips_loongson_2e:
11855 val = E_MIPS_ARCH_3 | E_MIPS_MACH_LS2E;
11856 break;
11857
11858 case bfd_mach_mips_loongson_2f:
11859 val = E_MIPS_ARCH_3 | E_MIPS_MACH_LS2F;
11860 break;
11861
11862 case bfd_mach_mips_sb1:
11863 val = E_MIPS_ARCH_64 | E_MIPS_MACH_SB1;
11864 break;
11865
11866 case bfd_mach_mips_loongson_3a:
11867 val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_LS3A;
11868 break;
11869
11870 case bfd_mach_mips_octeon:
11871 case bfd_mach_mips_octeonp:
11872 val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_OCTEON;
11873 break;
11874
11875 case bfd_mach_mips_octeon3:
11876 val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_OCTEON3;
11877 break;
11878
11879 case bfd_mach_mips_xlr:
11880 val = E_MIPS_ARCH_64 | E_MIPS_MACH_XLR;
11881 break;
11882
11883 case bfd_mach_mips_octeon2:
11884 val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_OCTEON2;
11885 break;
11886
11887 case bfd_mach_mipsisa32:
11888 val = E_MIPS_ARCH_32;
11889 break;
11890
11891 case bfd_mach_mipsisa64:
11892 val = E_MIPS_ARCH_64;
11893 break;
11894
11895 case bfd_mach_mipsisa32r2:
11896 case bfd_mach_mipsisa32r3:
11897 case bfd_mach_mipsisa32r5:
11898 val = E_MIPS_ARCH_32R2;
11899 break;
11900
11901 case bfd_mach_mipsisa64r2:
11902 case bfd_mach_mipsisa64r3:
11903 case bfd_mach_mipsisa64r5:
11904 val = E_MIPS_ARCH_64R2;
11905 break;
11906
11907 case bfd_mach_mipsisa32r6:
11908 val = E_MIPS_ARCH_32R6;
11909 break;
11910
11911 case bfd_mach_mipsisa64r6:
11912 val = E_MIPS_ARCH_64R6;
11913 break;
11914 }
11915 elf_elfheader (abfd)->e_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH);
11916 elf_elfheader (abfd)->e_flags |= val;
11917
11918 }
11919
11920
11921 /* Whether to sort relocs output by ld -r or ld --emit-relocs, by r_offset.
11922 Don't do so for code sections. We want to keep ordering of HI16/LO16
11923 as is. On the other hand, elf-eh-frame.c processing requires .eh_frame
11924 relocs to be sorted. */
11925
11926 bfd_boolean
11927 _bfd_mips_elf_sort_relocs_p (asection *sec)
11928 {
11929 return (sec->flags & SEC_CODE) == 0;
11930 }
11931
11932
11933 /* The final processing done just before writing out a MIPS ELF object
11934 file. This gets the MIPS architecture right based on the machine
11935 number. This is used by both the 32-bit and the 64-bit ABI. */
11936
11937 void
11938 _bfd_mips_elf_final_write_processing (bfd *abfd,
11939 bfd_boolean linker ATTRIBUTE_UNUSED)
11940 {
11941 unsigned int i;
11942 Elf_Internal_Shdr **hdrpp;
11943 const char *name;
11944 asection *sec;
11945
11946 /* Keep the existing EF_MIPS_MACH and EF_MIPS_ARCH flags if the former
11947 is nonzero. This is for compatibility with old objects, which used
11948 a combination of a 32-bit EF_MIPS_ARCH and a 64-bit EF_MIPS_MACH. */
11949 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == 0)
11950 mips_set_isa_flags (abfd);
11951
11952 /* Set the sh_info field for .gptab sections and other appropriate
11953 info for each special section. */
11954 for (i = 1, hdrpp = elf_elfsections (abfd) + 1;
11955 i < elf_numsections (abfd);
11956 i++, hdrpp++)
11957 {
11958 switch ((*hdrpp)->sh_type)
11959 {
11960 case SHT_MIPS_MSYM:
11961 case SHT_MIPS_LIBLIST:
11962 sec = bfd_get_section_by_name (abfd, ".dynstr");
11963 if (sec != NULL)
11964 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
11965 break;
11966
11967 case SHT_MIPS_GPTAB:
11968 BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
11969 name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section);
11970 BFD_ASSERT (name != NULL
11971 && CONST_STRNEQ (name, ".gptab."));
11972 sec = bfd_get_section_by_name (abfd, name + sizeof ".gptab" - 1);
11973 BFD_ASSERT (sec != NULL);
11974 (*hdrpp)->sh_info = elf_section_data (sec)->this_idx;
11975 break;
11976
11977 case SHT_MIPS_CONTENT:
11978 BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
11979 name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section);
11980 BFD_ASSERT (name != NULL
11981 && CONST_STRNEQ (name, ".MIPS.content"));
11982 sec = bfd_get_section_by_name (abfd,
11983 name + sizeof ".MIPS.content" - 1);
11984 BFD_ASSERT (sec != NULL);
11985 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
11986 break;
11987
11988 case SHT_MIPS_SYMBOL_LIB:
11989 sec = bfd_get_section_by_name (abfd, ".dynsym");
11990 if (sec != NULL)
11991 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
11992 sec = bfd_get_section_by_name (abfd, ".liblist");
11993 if (sec != NULL)
11994 (*hdrpp)->sh_info = elf_section_data (sec)->this_idx;
11995 break;
11996
11997 case SHT_MIPS_EVENTS:
11998 BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
11999 name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section);
12000 BFD_ASSERT (name != NULL);
12001 if (CONST_STRNEQ (name, ".MIPS.events"))
12002 sec = bfd_get_section_by_name (abfd,
12003 name + sizeof ".MIPS.events" - 1);
12004 else
12005 {
12006 BFD_ASSERT (CONST_STRNEQ (name, ".MIPS.post_rel"));
12007 sec = bfd_get_section_by_name (abfd,
12008 (name
12009 + sizeof ".MIPS.post_rel" - 1));
12010 }
12011 BFD_ASSERT (sec != NULL);
12012 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
12013 break;
12014
12015 }
12016 }
12017 }
12018 \f
12019 /* When creating an IRIX5 executable, we need REGINFO and RTPROC
12020 segments. */
12021
12022 int
12023 _bfd_mips_elf_additional_program_headers (bfd *abfd,
12024 struct bfd_link_info *info ATTRIBUTE_UNUSED)
12025 {
12026 asection *s;
12027 int ret = 0;
12028
12029 /* See if we need a PT_MIPS_REGINFO segment. */
12030 s = bfd_get_section_by_name (abfd, ".reginfo");
12031 if (s && (s->flags & SEC_LOAD))
12032 ++ret;
12033
12034 /* See if we need a PT_MIPS_ABIFLAGS segment. */
12035 if (bfd_get_section_by_name (abfd, ".MIPS.abiflags"))
12036 ++ret;
12037
12038 /* See if we need a PT_MIPS_OPTIONS segment. */
12039 if (IRIX_COMPAT (abfd) == ict_irix6
12040 && bfd_get_section_by_name (abfd,
12041 MIPS_ELF_OPTIONS_SECTION_NAME (abfd)))
12042 ++ret;
12043
12044 /* See if we need a PT_MIPS_RTPROC segment. */
12045 if (IRIX_COMPAT (abfd) == ict_irix5
12046 && bfd_get_section_by_name (abfd, ".dynamic")
12047 && bfd_get_section_by_name (abfd, ".mdebug"))
12048 ++ret;
12049
12050 /* Allocate a PT_NULL header in dynamic objects. See
12051 _bfd_mips_elf_modify_segment_map for details. */
12052 if (!SGI_COMPAT (abfd)
12053 && bfd_get_section_by_name (abfd, ".dynamic"))
12054 ++ret;
12055
12056 return ret;
12057 }
12058
12059 /* Modify the segment map for an IRIX5 executable. */
12060
12061 bfd_boolean
12062 _bfd_mips_elf_modify_segment_map (bfd *abfd,
12063 struct bfd_link_info *info)
12064 {
12065 asection *s;
12066 struct elf_segment_map *m, **pm;
12067 bfd_size_type amt;
12068
12069 /* If there is a .reginfo section, we need a PT_MIPS_REGINFO
12070 segment. */
12071 s = bfd_get_section_by_name (abfd, ".reginfo");
12072 if (s != NULL && (s->flags & SEC_LOAD) != 0)
12073 {
12074 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
12075 if (m->p_type == PT_MIPS_REGINFO)
12076 break;
12077 if (m == NULL)
12078 {
12079 amt = sizeof *m;
12080 m = bfd_zalloc (abfd, amt);
12081 if (m == NULL)
12082 return FALSE;
12083
12084 m->p_type = PT_MIPS_REGINFO;
12085 m->count = 1;
12086 m->sections[0] = s;
12087
12088 /* We want to put it after the PHDR and INTERP segments. */
12089 pm = &elf_seg_map (abfd);
12090 while (*pm != NULL
12091 && ((*pm)->p_type == PT_PHDR
12092 || (*pm)->p_type == PT_INTERP))
12093 pm = &(*pm)->next;
12094
12095 m->next = *pm;
12096 *pm = m;
12097 }
12098 }
12099
12100 /* If there is a .MIPS.abiflags section, we need a PT_MIPS_ABIFLAGS
12101 segment. */
12102 s = bfd_get_section_by_name (abfd, ".MIPS.abiflags");
12103 if (s != NULL && (s->flags & SEC_LOAD) != 0)
12104 {
12105 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
12106 if (m->p_type == PT_MIPS_ABIFLAGS)
12107 break;
12108 if (m == NULL)
12109 {
12110 amt = sizeof *m;
12111 m = bfd_zalloc (abfd, amt);
12112 if (m == NULL)
12113 return FALSE;
12114
12115 m->p_type = PT_MIPS_ABIFLAGS;
12116 m->count = 1;
12117 m->sections[0] = s;
12118
12119 /* We want to put it after the PHDR and INTERP segments. */
12120 pm = &elf_seg_map (abfd);
12121 while (*pm != NULL
12122 && ((*pm)->p_type == PT_PHDR
12123 || (*pm)->p_type == PT_INTERP))
12124 pm = &(*pm)->next;
12125
12126 m->next = *pm;
12127 *pm = m;
12128 }
12129 }
12130
12131 /* For IRIX 6, we don't have .mdebug sections, nor does anything but
12132 .dynamic end up in PT_DYNAMIC. However, we do have to insert a
12133 PT_MIPS_OPTIONS segment immediately following the program header
12134 table. */
12135 if (NEWABI_P (abfd)
12136 /* On non-IRIX6 new abi, we'll have already created a segment
12137 for this section, so don't create another. I'm not sure this
12138 is not also the case for IRIX 6, but I can't test it right
12139 now. */
12140 && IRIX_COMPAT (abfd) == ict_irix6)
12141 {
12142 for (s = abfd->sections; s; s = s->next)
12143 if (elf_section_data (s)->this_hdr.sh_type == SHT_MIPS_OPTIONS)
12144 break;
12145
12146 if (s)
12147 {
12148 struct elf_segment_map *options_segment;
12149
12150 pm = &elf_seg_map (abfd);
12151 while (*pm != NULL
12152 && ((*pm)->p_type == PT_PHDR
12153 || (*pm)->p_type == PT_INTERP))
12154 pm = &(*pm)->next;
12155
12156 if (*pm == NULL || (*pm)->p_type != PT_MIPS_OPTIONS)
12157 {
12158 amt = sizeof (struct elf_segment_map);
12159 options_segment = bfd_zalloc (abfd, amt);
12160 options_segment->next = *pm;
12161 options_segment->p_type = PT_MIPS_OPTIONS;
12162 options_segment->p_flags = PF_R;
12163 options_segment->p_flags_valid = TRUE;
12164 options_segment->count = 1;
12165 options_segment->sections[0] = s;
12166 *pm = options_segment;
12167 }
12168 }
12169 }
12170 else
12171 {
12172 if (IRIX_COMPAT (abfd) == ict_irix5)
12173 {
12174 /* If there are .dynamic and .mdebug sections, we make a room
12175 for the RTPROC header. FIXME: Rewrite without section names. */
12176 if (bfd_get_section_by_name (abfd, ".interp") == NULL
12177 && bfd_get_section_by_name (abfd, ".dynamic") != NULL
12178 && bfd_get_section_by_name (abfd, ".mdebug") != NULL)
12179 {
12180 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
12181 if (m->p_type == PT_MIPS_RTPROC)
12182 break;
12183 if (m == NULL)
12184 {
12185 amt = sizeof *m;
12186 m = bfd_zalloc (abfd, amt);
12187 if (m == NULL)
12188 return FALSE;
12189
12190 m->p_type = PT_MIPS_RTPROC;
12191
12192 s = bfd_get_section_by_name (abfd, ".rtproc");
12193 if (s == NULL)
12194 {
12195 m->count = 0;
12196 m->p_flags = 0;
12197 m->p_flags_valid = 1;
12198 }
12199 else
12200 {
12201 m->count = 1;
12202 m->sections[0] = s;
12203 }
12204
12205 /* We want to put it after the DYNAMIC segment. */
12206 pm = &elf_seg_map (abfd);
12207 while (*pm != NULL && (*pm)->p_type != PT_DYNAMIC)
12208 pm = &(*pm)->next;
12209 if (*pm != NULL)
12210 pm = &(*pm)->next;
12211
12212 m->next = *pm;
12213 *pm = m;
12214 }
12215 }
12216 }
12217 /* On IRIX5, the PT_DYNAMIC segment includes the .dynamic,
12218 .dynstr, .dynsym, and .hash sections, and everything in
12219 between. */
12220 for (pm = &elf_seg_map (abfd); *pm != NULL;
12221 pm = &(*pm)->next)
12222 if ((*pm)->p_type == PT_DYNAMIC)
12223 break;
12224 m = *pm;
12225 /* GNU/Linux binaries do not need the extended PT_DYNAMIC section.
12226 glibc's dynamic linker has traditionally derived the number of
12227 tags from the p_filesz field, and sometimes allocates stack
12228 arrays of that size. An overly-big PT_DYNAMIC segment can
12229 be actively harmful in such cases. Making PT_DYNAMIC contain
12230 other sections can also make life hard for the prelinker,
12231 which might move one of the other sections to a different
12232 PT_LOAD segment. */
12233 if (SGI_COMPAT (abfd)
12234 && m != NULL
12235 && m->count == 1
12236 && strcmp (m->sections[0]->name, ".dynamic") == 0)
12237 {
12238 static const char *sec_names[] =
12239 {
12240 ".dynamic", ".dynstr", ".dynsym", ".hash"
12241 };
12242 bfd_vma low, high;
12243 unsigned int i, c;
12244 struct elf_segment_map *n;
12245
12246 low = ~(bfd_vma) 0;
12247 high = 0;
12248 for (i = 0; i < sizeof sec_names / sizeof sec_names[0]; i++)
12249 {
12250 s = bfd_get_section_by_name (abfd, sec_names[i]);
12251 if (s != NULL && (s->flags & SEC_LOAD) != 0)
12252 {
12253 bfd_size_type sz;
12254
12255 if (low > s->vma)
12256 low = s->vma;
12257 sz = s->size;
12258 if (high < s->vma + sz)
12259 high = s->vma + sz;
12260 }
12261 }
12262
12263 c = 0;
12264 for (s = abfd->sections; s != NULL; s = s->next)
12265 if ((s->flags & SEC_LOAD) != 0
12266 && s->vma >= low
12267 && s->vma + s->size <= high)
12268 ++c;
12269
12270 amt = sizeof *n + (bfd_size_type) (c - 1) * sizeof (asection *);
12271 n = bfd_zalloc (abfd, amt);
12272 if (n == NULL)
12273 return FALSE;
12274 *n = *m;
12275 n->count = c;
12276
12277 i = 0;
12278 for (s = abfd->sections; s != NULL; s = s->next)
12279 {
12280 if ((s->flags & SEC_LOAD) != 0
12281 && s->vma >= low
12282 && s->vma + s->size <= high)
12283 {
12284 n->sections[i] = s;
12285 ++i;
12286 }
12287 }
12288
12289 *pm = n;
12290 }
12291 }
12292
12293 /* Allocate a spare program header in dynamic objects so that tools
12294 like the prelinker can add an extra PT_LOAD entry.
12295
12296 If the prelinker needs to make room for a new PT_LOAD entry, its
12297 standard procedure is to move the first (read-only) sections into
12298 the new (writable) segment. However, the MIPS ABI requires
12299 .dynamic to be in a read-only segment, and the section will often
12300 start within sizeof (ElfNN_Phdr) bytes of the last program header.
12301
12302 Although the prelinker could in principle move .dynamic to a
12303 writable segment, it seems better to allocate a spare program
12304 header instead, and avoid the need to move any sections.
12305 There is a long tradition of allocating spare dynamic tags,
12306 so allocating a spare program header seems like a natural
12307 extension.
12308
12309 If INFO is NULL, we may be copying an already prelinked binary
12310 with objcopy or strip, so do not add this header. */
12311 if (info != NULL
12312 && !SGI_COMPAT (abfd)
12313 && bfd_get_section_by_name (abfd, ".dynamic"))
12314 {
12315 for (pm = &elf_seg_map (abfd); *pm != NULL; pm = &(*pm)->next)
12316 if ((*pm)->p_type == PT_NULL)
12317 break;
12318 if (*pm == NULL)
12319 {
12320 m = bfd_zalloc (abfd, sizeof (*m));
12321 if (m == NULL)
12322 return FALSE;
12323
12324 m->p_type = PT_NULL;
12325 *pm = m;
12326 }
12327 }
12328
12329 return TRUE;
12330 }
12331 \f
12332 /* Return the section that should be marked against GC for a given
12333 relocation. */
12334
12335 asection *
12336 _bfd_mips_elf_gc_mark_hook (asection *sec,
12337 struct bfd_link_info *info,
12338 Elf_Internal_Rela *rel,
12339 struct elf_link_hash_entry *h,
12340 Elf_Internal_Sym *sym)
12341 {
12342 /* ??? Do mips16 stub sections need to be handled special? */
12343
12344 if (h != NULL)
12345 switch (ELF_R_TYPE (sec->owner, rel->r_info))
12346 {
12347 case R_MIPS_GNU_VTINHERIT:
12348 case R_MIPS_GNU_VTENTRY:
12349 return NULL;
12350 }
12351
12352 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
12353 }
12354
12355 /* Update the got entry reference counts for the section being removed. */
12356
12357 bfd_boolean
12358 _bfd_mips_elf_gc_sweep_hook (bfd *abfd ATTRIBUTE_UNUSED,
12359 struct bfd_link_info *info ATTRIBUTE_UNUSED,
12360 asection *sec ATTRIBUTE_UNUSED,
12361 const Elf_Internal_Rela *relocs ATTRIBUTE_UNUSED)
12362 {
12363 #if 0
12364 Elf_Internal_Shdr *symtab_hdr;
12365 struct elf_link_hash_entry **sym_hashes;
12366 bfd_signed_vma *local_got_refcounts;
12367 const Elf_Internal_Rela *rel, *relend;
12368 unsigned long r_symndx;
12369 struct elf_link_hash_entry *h;
12370
12371 if (info->relocatable)
12372 return TRUE;
12373
12374 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12375 sym_hashes = elf_sym_hashes (abfd);
12376 local_got_refcounts = elf_local_got_refcounts (abfd);
12377
12378 relend = relocs + sec->reloc_count;
12379 for (rel = relocs; rel < relend; rel++)
12380 switch (ELF_R_TYPE (abfd, rel->r_info))
12381 {
12382 case R_MIPS16_GOT16:
12383 case R_MIPS16_CALL16:
12384 case R_MIPS_GOT16:
12385 case R_MIPS_CALL16:
12386 case R_MIPS_CALL_HI16:
12387 case R_MIPS_CALL_LO16:
12388 case R_MIPS_GOT_HI16:
12389 case R_MIPS_GOT_LO16:
12390 case R_MIPS_GOT_DISP:
12391 case R_MIPS_GOT_PAGE:
12392 case R_MIPS_GOT_OFST:
12393 case R_MICROMIPS_GOT16:
12394 case R_MICROMIPS_CALL16:
12395 case R_MICROMIPS_CALL_HI16:
12396 case R_MICROMIPS_CALL_LO16:
12397 case R_MICROMIPS_GOT_HI16:
12398 case R_MICROMIPS_GOT_LO16:
12399 case R_MICROMIPS_GOT_DISP:
12400 case R_MICROMIPS_GOT_PAGE:
12401 case R_MICROMIPS_GOT_OFST:
12402 /* ??? It would seem that the existing MIPS code does no sort
12403 of reference counting or whatnot on its GOT and PLT entries,
12404 so it is not possible to garbage collect them at this time. */
12405 break;
12406
12407 default:
12408 break;
12409 }
12410 #endif
12411
12412 return TRUE;
12413 }
12414
12415 /* Prevent .MIPS.abiflags from being discarded with --gc-sections. */
12416
12417 bfd_boolean
12418 _bfd_mips_elf_gc_mark_extra_sections (struct bfd_link_info *info,
12419 elf_gc_mark_hook_fn gc_mark_hook)
12420 {
12421 bfd *sub;
12422
12423 _bfd_elf_gc_mark_extra_sections (info, gc_mark_hook);
12424
12425 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
12426 {
12427 asection *o;
12428
12429 if (! is_mips_elf (sub))
12430 continue;
12431
12432 for (o = sub->sections; o != NULL; o = o->next)
12433 if (!o->gc_mark
12434 && MIPS_ELF_ABIFLAGS_SECTION_NAME_P
12435 (bfd_get_section_name (sub, o)))
12436 {
12437 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
12438 return FALSE;
12439 }
12440 }
12441
12442 return TRUE;
12443 }
12444 \f
12445 /* Copy data from a MIPS ELF indirect symbol to its direct symbol,
12446 hiding the old indirect symbol. Process additional relocation
12447 information. Also called for weakdefs, in which case we just let
12448 _bfd_elf_link_hash_copy_indirect copy the flags for us. */
12449
12450 void
12451 _bfd_mips_elf_copy_indirect_symbol (struct bfd_link_info *info,
12452 struct elf_link_hash_entry *dir,
12453 struct elf_link_hash_entry *ind)
12454 {
12455 struct mips_elf_link_hash_entry *dirmips, *indmips;
12456
12457 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
12458
12459 dirmips = (struct mips_elf_link_hash_entry *) dir;
12460 indmips = (struct mips_elf_link_hash_entry *) ind;
12461 /* Any absolute non-dynamic relocations against an indirect or weak
12462 definition will be against the target symbol. */
12463 if (indmips->has_static_relocs)
12464 dirmips->has_static_relocs = TRUE;
12465
12466 if (ind->root.type != bfd_link_hash_indirect)
12467 return;
12468
12469 dirmips->possibly_dynamic_relocs += indmips->possibly_dynamic_relocs;
12470 if (indmips->readonly_reloc)
12471 dirmips->readonly_reloc = TRUE;
12472 if (indmips->no_fn_stub)
12473 dirmips->no_fn_stub = TRUE;
12474 if (indmips->fn_stub)
12475 {
12476 dirmips->fn_stub = indmips->fn_stub;
12477 indmips->fn_stub = NULL;
12478 }
12479 if (indmips->need_fn_stub)
12480 {
12481 dirmips->need_fn_stub = TRUE;
12482 indmips->need_fn_stub = FALSE;
12483 }
12484 if (indmips->call_stub)
12485 {
12486 dirmips->call_stub = indmips->call_stub;
12487 indmips->call_stub = NULL;
12488 }
12489 if (indmips->call_fp_stub)
12490 {
12491 dirmips->call_fp_stub = indmips->call_fp_stub;
12492 indmips->call_fp_stub = NULL;
12493 }
12494 if (indmips->global_got_area < dirmips->global_got_area)
12495 dirmips->global_got_area = indmips->global_got_area;
12496 if (indmips->global_got_area < GGA_NONE)
12497 indmips->global_got_area = GGA_NONE;
12498 if (indmips->has_nonpic_branches)
12499 dirmips->has_nonpic_branches = TRUE;
12500 }
12501 \f
12502 #define PDR_SIZE 32
12503
12504 bfd_boolean
12505 _bfd_mips_elf_discard_info (bfd *abfd, struct elf_reloc_cookie *cookie,
12506 struct bfd_link_info *info)
12507 {
12508 asection *o;
12509 bfd_boolean ret = FALSE;
12510 unsigned char *tdata;
12511 size_t i, skip;
12512
12513 o = bfd_get_section_by_name (abfd, ".pdr");
12514 if (! o)
12515 return FALSE;
12516 if (o->size == 0)
12517 return FALSE;
12518 if (o->size % PDR_SIZE != 0)
12519 return FALSE;
12520 if (o->output_section != NULL
12521 && bfd_is_abs_section (o->output_section))
12522 return FALSE;
12523
12524 tdata = bfd_zmalloc (o->size / PDR_SIZE);
12525 if (! tdata)
12526 return FALSE;
12527
12528 cookie->rels = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
12529 info->keep_memory);
12530 if (!cookie->rels)
12531 {
12532 free (tdata);
12533 return FALSE;
12534 }
12535
12536 cookie->rel = cookie->rels;
12537 cookie->relend = cookie->rels + o->reloc_count;
12538
12539 for (i = 0, skip = 0; i < o->size / PDR_SIZE; i ++)
12540 {
12541 if (bfd_elf_reloc_symbol_deleted_p (i * PDR_SIZE, cookie))
12542 {
12543 tdata[i] = 1;
12544 skip ++;
12545 }
12546 }
12547
12548 if (skip != 0)
12549 {
12550 mips_elf_section_data (o)->u.tdata = tdata;
12551 if (o->rawsize == 0)
12552 o->rawsize = o->size;
12553 o->size -= skip * PDR_SIZE;
12554 ret = TRUE;
12555 }
12556 else
12557 free (tdata);
12558
12559 if (! info->keep_memory)
12560 free (cookie->rels);
12561
12562 return ret;
12563 }
12564
12565 bfd_boolean
12566 _bfd_mips_elf_ignore_discarded_relocs (asection *sec)
12567 {
12568 if (strcmp (sec->name, ".pdr") == 0)
12569 return TRUE;
12570 return FALSE;
12571 }
12572
12573 bfd_boolean
12574 _bfd_mips_elf_write_section (bfd *output_bfd,
12575 struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
12576 asection *sec, bfd_byte *contents)
12577 {
12578 bfd_byte *to, *from, *end;
12579 int i;
12580
12581 if (strcmp (sec->name, ".pdr") != 0)
12582 return FALSE;
12583
12584 if (mips_elf_section_data (sec)->u.tdata == NULL)
12585 return FALSE;
12586
12587 to = contents;
12588 end = contents + sec->size;
12589 for (from = contents, i = 0;
12590 from < end;
12591 from += PDR_SIZE, i++)
12592 {
12593 if ((mips_elf_section_data (sec)->u.tdata)[i] == 1)
12594 continue;
12595 if (to != from)
12596 memcpy (to, from, PDR_SIZE);
12597 to += PDR_SIZE;
12598 }
12599 bfd_set_section_contents (output_bfd, sec->output_section, contents,
12600 sec->output_offset, sec->size);
12601 return TRUE;
12602 }
12603 \f
12604 /* microMIPS code retains local labels for linker relaxation. Omit them
12605 from output by default for clarity. */
12606
12607 bfd_boolean
12608 _bfd_mips_elf_is_target_special_symbol (bfd *abfd, asymbol *sym)
12609 {
12610 return _bfd_elf_is_local_label_name (abfd, sym->name);
12611 }
12612
12613 /* MIPS ELF uses a special find_nearest_line routine in order the
12614 handle the ECOFF debugging information. */
12615
12616 struct mips_elf_find_line
12617 {
12618 struct ecoff_debug_info d;
12619 struct ecoff_find_line i;
12620 };
12621
12622 bfd_boolean
12623 _bfd_mips_elf_find_nearest_line (bfd *abfd, asymbol **symbols,
12624 asection *section, bfd_vma offset,
12625 const char **filename_ptr,
12626 const char **functionname_ptr,
12627 unsigned int *line_ptr,
12628 unsigned int *discriminator_ptr)
12629 {
12630 asection *msec;
12631
12632 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
12633 filename_ptr, functionname_ptr,
12634 line_ptr, discriminator_ptr,
12635 dwarf_debug_sections,
12636 ABI_64_P (abfd) ? 8 : 0,
12637 &elf_tdata (abfd)->dwarf2_find_line_info))
12638 return TRUE;
12639
12640 if (_bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
12641 filename_ptr, functionname_ptr,
12642 line_ptr))
12643 return TRUE;
12644
12645 msec = bfd_get_section_by_name (abfd, ".mdebug");
12646 if (msec != NULL)
12647 {
12648 flagword origflags;
12649 struct mips_elf_find_line *fi;
12650 const struct ecoff_debug_swap * const swap =
12651 get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
12652
12653 /* If we are called during a link, mips_elf_final_link may have
12654 cleared the SEC_HAS_CONTENTS field. We force it back on here
12655 if appropriate (which it normally will be). */
12656 origflags = msec->flags;
12657 if (elf_section_data (msec)->this_hdr.sh_type != SHT_NOBITS)
12658 msec->flags |= SEC_HAS_CONTENTS;
12659
12660 fi = mips_elf_tdata (abfd)->find_line_info;
12661 if (fi == NULL)
12662 {
12663 bfd_size_type external_fdr_size;
12664 char *fraw_src;
12665 char *fraw_end;
12666 struct fdr *fdr_ptr;
12667 bfd_size_type amt = sizeof (struct mips_elf_find_line);
12668
12669 fi = bfd_zalloc (abfd, amt);
12670 if (fi == NULL)
12671 {
12672 msec->flags = origflags;
12673 return FALSE;
12674 }
12675
12676 if (! _bfd_mips_elf_read_ecoff_info (abfd, msec, &fi->d))
12677 {
12678 msec->flags = origflags;
12679 return FALSE;
12680 }
12681
12682 /* Swap in the FDR information. */
12683 amt = fi->d.symbolic_header.ifdMax * sizeof (struct fdr);
12684 fi->d.fdr = bfd_alloc (abfd, amt);
12685 if (fi->d.fdr == NULL)
12686 {
12687 msec->flags = origflags;
12688 return FALSE;
12689 }
12690 external_fdr_size = swap->external_fdr_size;
12691 fdr_ptr = fi->d.fdr;
12692 fraw_src = (char *) fi->d.external_fdr;
12693 fraw_end = (fraw_src
12694 + fi->d.symbolic_header.ifdMax * external_fdr_size);
12695 for (; fraw_src < fraw_end; fraw_src += external_fdr_size, fdr_ptr++)
12696 (*swap->swap_fdr_in) (abfd, fraw_src, fdr_ptr);
12697
12698 mips_elf_tdata (abfd)->find_line_info = fi;
12699
12700 /* Note that we don't bother to ever free this information.
12701 find_nearest_line is either called all the time, as in
12702 objdump -l, so the information should be saved, or it is
12703 rarely called, as in ld error messages, so the memory
12704 wasted is unimportant. Still, it would probably be a
12705 good idea for free_cached_info to throw it away. */
12706 }
12707
12708 if (_bfd_ecoff_locate_line (abfd, section, offset, &fi->d, swap,
12709 &fi->i, filename_ptr, functionname_ptr,
12710 line_ptr))
12711 {
12712 msec->flags = origflags;
12713 return TRUE;
12714 }
12715
12716 msec->flags = origflags;
12717 }
12718
12719 /* Fall back on the generic ELF find_nearest_line routine. */
12720
12721 return _bfd_elf_find_nearest_line (abfd, symbols, section, offset,
12722 filename_ptr, functionname_ptr,
12723 line_ptr, discriminator_ptr);
12724 }
12725
12726 bfd_boolean
12727 _bfd_mips_elf_find_inliner_info (bfd *abfd,
12728 const char **filename_ptr,
12729 const char **functionname_ptr,
12730 unsigned int *line_ptr)
12731 {
12732 bfd_boolean found;
12733 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
12734 functionname_ptr, line_ptr,
12735 & elf_tdata (abfd)->dwarf2_find_line_info);
12736 return found;
12737 }
12738
12739 \f
12740 /* When are writing out the .options or .MIPS.options section,
12741 remember the bytes we are writing out, so that we can install the
12742 GP value in the section_processing routine. */
12743
12744 bfd_boolean
12745 _bfd_mips_elf_set_section_contents (bfd *abfd, sec_ptr section,
12746 const void *location,
12747 file_ptr offset, bfd_size_type count)
12748 {
12749 if (MIPS_ELF_OPTIONS_SECTION_NAME_P (section->name))
12750 {
12751 bfd_byte *c;
12752
12753 if (elf_section_data (section) == NULL)
12754 {
12755 bfd_size_type amt = sizeof (struct bfd_elf_section_data);
12756 section->used_by_bfd = bfd_zalloc (abfd, amt);
12757 if (elf_section_data (section) == NULL)
12758 return FALSE;
12759 }
12760 c = mips_elf_section_data (section)->u.tdata;
12761 if (c == NULL)
12762 {
12763 c = bfd_zalloc (abfd, section->size);
12764 if (c == NULL)
12765 return FALSE;
12766 mips_elf_section_data (section)->u.tdata = c;
12767 }
12768
12769 memcpy (c + offset, location, count);
12770 }
12771
12772 return _bfd_elf_set_section_contents (abfd, section, location, offset,
12773 count);
12774 }
12775
12776 /* This is almost identical to bfd_generic_get_... except that some
12777 MIPS relocations need to be handled specially. Sigh. */
12778
12779 bfd_byte *
12780 _bfd_elf_mips_get_relocated_section_contents
12781 (bfd *abfd,
12782 struct bfd_link_info *link_info,
12783 struct bfd_link_order *link_order,
12784 bfd_byte *data,
12785 bfd_boolean relocatable,
12786 asymbol **symbols)
12787 {
12788 /* Get enough memory to hold the stuff */
12789 bfd *input_bfd = link_order->u.indirect.section->owner;
12790 asection *input_section = link_order->u.indirect.section;
12791 bfd_size_type sz;
12792
12793 long reloc_size = bfd_get_reloc_upper_bound (input_bfd, input_section);
12794 arelent **reloc_vector = NULL;
12795 long reloc_count;
12796
12797 if (reloc_size < 0)
12798 goto error_return;
12799
12800 reloc_vector = bfd_malloc (reloc_size);
12801 if (reloc_vector == NULL && reloc_size != 0)
12802 goto error_return;
12803
12804 /* read in the section */
12805 sz = input_section->rawsize ? input_section->rawsize : input_section->size;
12806 if (!bfd_get_section_contents (input_bfd, input_section, data, 0, sz))
12807 goto error_return;
12808
12809 reloc_count = bfd_canonicalize_reloc (input_bfd,
12810 input_section,
12811 reloc_vector,
12812 symbols);
12813 if (reloc_count < 0)
12814 goto error_return;
12815
12816 if (reloc_count > 0)
12817 {
12818 arelent **parent;
12819 /* for mips */
12820 int gp_found;
12821 bfd_vma gp = 0x12345678; /* initialize just to shut gcc up */
12822
12823 {
12824 struct bfd_hash_entry *h;
12825 struct bfd_link_hash_entry *lh;
12826 /* Skip all this stuff if we aren't mixing formats. */
12827 if (abfd && input_bfd
12828 && abfd->xvec == input_bfd->xvec)
12829 lh = 0;
12830 else
12831 {
12832 h = bfd_hash_lookup (&link_info->hash->table, "_gp", FALSE, FALSE);
12833 lh = (struct bfd_link_hash_entry *) h;
12834 }
12835 lookup:
12836 if (lh)
12837 {
12838 switch (lh->type)
12839 {
12840 case bfd_link_hash_undefined:
12841 case bfd_link_hash_undefweak:
12842 case bfd_link_hash_common:
12843 gp_found = 0;
12844 break;
12845 case bfd_link_hash_defined:
12846 case bfd_link_hash_defweak:
12847 gp_found = 1;
12848 gp = lh->u.def.value;
12849 break;
12850 case bfd_link_hash_indirect:
12851 case bfd_link_hash_warning:
12852 lh = lh->u.i.link;
12853 /* @@FIXME ignoring warning for now */
12854 goto lookup;
12855 case bfd_link_hash_new:
12856 default:
12857 abort ();
12858 }
12859 }
12860 else
12861 gp_found = 0;
12862 }
12863 /* end mips */
12864 for (parent = reloc_vector; *parent != NULL; parent++)
12865 {
12866 char *error_message = NULL;
12867 bfd_reloc_status_type r;
12868
12869 /* Specific to MIPS: Deal with relocation types that require
12870 knowing the gp of the output bfd. */
12871 asymbol *sym = *(*parent)->sym_ptr_ptr;
12872
12873 /* If we've managed to find the gp and have a special
12874 function for the relocation then go ahead, else default
12875 to the generic handling. */
12876 if (gp_found
12877 && (*parent)->howto->special_function
12878 == _bfd_mips_elf32_gprel16_reloc)
12879 r = _bfd_mips_elf_gprel16_with_gp (input_bfd, sym, *parent,
12880 input_section, relocatable,
12881 data, gp);
12882 else
12883 r = bfd_perform_relocation (input_bfd, *parent, data,
12884 input_section,
12885 relocatable ? abfd : NULL,
12886 &error_message);
12887
12888 if (relocatable)
12889 {
12890 asection *os = input_section->output_section;
12891
12892 /* A partial link, so keep the relocs */
12893 os->orelocation[os->reloc_count] = *parent;
12894 os->reloc_count++;
12895 }
12896
12897 if (r != bfd_reloc_ok)
12898 {
12899 switch (r)
12900 {
12901 case bfd_reloc_undefined:
12902 if (!((*link_info->callbacks->undefined_symbol)
12903 (link_info, bfd_asymbol_name (*(*parent)->sym_ptr_ptr),
12904 input_bfd, input_section, (*parent)->address, TRUE)))
12905 goto error_return;
12906 break;
12907 case bfd_reloc_dangerous:
12908 BFD_ASSERT (error_message != NULL);
12909 if (!((*link_info->callbacks->reloc_dangerous)
12910 (link_info, error_message, input_bfd, input_section,
12911 (*parent)->address)))
12912 goto error_return;
12913 break;
12914 case bfd_reloc_overflow:
12915 if (!((*link_info->callbacks->reloc_overflow)
12916 (link_info, NULL,
12917 bfd_asymbol_name (*(*parent)->sym_ptr_ptr),
12918 (*parent)->howto->name, (*parent)->addend,
12919 input_bfd, input_section, (*parent)->address)))
12920 goto error_return;
12921 break;
12922 case bfd_reloc_outofrange:
12923 default:
12924 abort ();
12925 break;
12926 }
12927
12928 }
12929 }
12930 }
12931 if (reloc_vector != NULL)
12932 free (reloc_vector);
12933 return data;
12934
12935 error_return:
12936 if (reloc_vector != NULL)
12937 free (reloc_vector);
12938 return NULL;
12939 }
12940 \f
12941 static bfd_boolean
12942 mips_elf_relax_delete_bytes (bfd *abfd,
12943 asection *sec, bfd_vma addr, int count)
12944 {
12945 Elf_Internal_Shdr *symtab_hdr;
12946 unsigned int sec_shndx;
12947 bfd_byte *contents;
12948 Elf_Internal_Rela *irel, *irelend;
12949 Elf_Internal_Sym *isym;
12950 Elf_Internal_Sym *isymend;
12951 struct elf_link_hash_entry **sym_hashes;
12952 struct elf_link_hash_entry **end_hashes;
12953 struct elf_link_hash_entry **start_hashes;
12954 unsigned int symcount;
12955
12956 sec_shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
12957 contents = elf_section_data (sec)->this_hdr.contents;
12958
12959 irel = elf_section_data (sec)->relocs;
12960 irelend = irel + sec->reloc_count;
12961
12962 /* Actually delete the bytes. */
12963 memmove (contents + addr, contents + addr + count,
12964 (size_t) (sec->size - addr - count));
12965 sec->size -= count;
12966
12967 /* Adjust all the relocs. */
12968 for (irel = elf_section_data (sec)->relocs; irel < irelend; irel++)
12969 {
12970 /* Get the new reloc address. */
12971 if (irel->r_offset > addr)
12972 irel->r_offset -= count;
12973 }
12974
12975 BFD_ASSERT (addr % 2 == 0);
12976 BFD_ASSERT (count % 2 == 0);
12977
12978 /* Adjust the local symbols defined in this section. */
12979 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12980 isym = (Elf_Internal_Sym *) symtab_hdr->contents;
12981 for (isymend = isym + symtab_hdr->sh_info; isym < isymend; isym++)
12982 if (isym->st_shndx == sec_shndx && isym->st_value > addr)
12983 isym->st_value -= count;
12984
12985 /* Now adjust the global symbols defined in this section. */
12986 symcount = (symtab_hdr->sh_size / sizeof (Elf32_External_Sym)
12987 - symtab_hdr->sh_info);
12988 sym_hashes = start_hashes = elf_sym_hashes (abfd);
12989 end_hashes = sym_hashes + symcount;
12990
12991 for (; sym_hashes < end_hashes; sym_hashes++)
12992 {
12993 struct elf_link_hash_entry *sym_hash = *sym_hashes;
12994
12995 if ((sym_hash->root.type == bfd_link_hash_defined
12996 || sym_hash->root.type == bfd_link_hash_defweak)
12997 && sym_hash->root.u.def.section == sec)
12998 {
12999 bfd_vma value = sym_hash->root.u.def.value;
13000
13001 if (ELF_ST_IS_MICROMIPS (sym_hash->other))
13002 value &= MINUS_TWO;
13003 if (value > addr)
13004 sym_hash->root.u.def.value -= count;
13005 }
13006 }
13007
13008 return TRUE;
13009 }
13010
13011
13012 /* Opcodes needed for microMIPS relaxation as found in
13013 opcodes/micromips-opc.c. */
13014
13015 struct opcode_descriptor {
13016 unsigned long match;
13017 unsigned long mask;
13018 };
13019
13020 /* The $ra register aka $31. */
13021
13022 #define RA 31
13023
13024 /* 32-bit instruction format register fields. */
13025
13026 #define OP32_SREG(opcode) (((opcode) >> 16) & 0x1f)
13027 #define OP32_TREG(opcode) (((opcode) >> 21) & 0x1f)
13028
13029 /* Check if a 5-bit register index can be abbreviated to 3 bits. */
13030
13031 #define OP16_VALID_REG(r) \
13032 ((2 <= (r) && (r) <= 7) || (16 <= (r) && (r) <= 17))
13033
13034
13035 /* 32-bit and 16-bit branches. */
13036
13037 static const struct opcode_descriptor b_insns_32[] = {
13038 { /* "b", "p", */ 0x40400000, 0xffff0000 }, /* bgez 0 */
13039 { /* "b", "p", */ 0x94000000, 0xffff0000 }, /* beq 0, 0 */
13040 { 0, 0 } /* End marker for find_match(). */
13041 };
13042
13043 static const struct opcode_descriptor bc_insn_32 =
13044 { /* "bc(1|2)(ft)", "N,p", */ 0x42800000, 0xfec30000 };
13045
13046 static const struct opcode_descriptor bz_insn_32 =
13047 { /* "b(g|l)(e|t)z", "s,p", */ 0x40000000, 0xff200000 };
13048
13049 static const struct opcode_descriptor bzal_insn_32 =
13050 { /* "b(ge|lt)zal", "s,p", */ 0x40200000, 0xffa00000 };
13051
13052 static const struct opcode_descriptor beq_insn_32 =
13053 { /* "b(eq|ne)", "s,t,p", */ 0x94000000, 0xdc000000 };
13054
13055 static const struct opcode_descriptor b_insn_16 =
13056 { /* "b", "mD", */ 0xcc00, 0xfc00 };
13057
13058 static const struct opcode_descriptor bz_insn_16 =
13059 { /* "b(eq|ne)z", "md,mE", */ 0x8c00, 0xdc00 };
13060
13061
13062 /* 32-bit and 16-bit branch EQ and NE zero. */
13063
13064 /* NOTE: All opcode tables have BEQ/BNE in the same order: first the
13065 eq and second the ne. This convention is used when replacing a
13066 32-bit BEQ/BNE with the 16-bit version. */
13067
13068 #define BZC32_REG_FIELD(r) (((r) & 0x1f) << 16)
13069
13070 static const struct opcode_descriptor bz_rs_insns_32[] = {
13071 { /* "beqz", "s,p", */ 0x94000000, 0xffe00000 },
13072 { /* "bnez", "s,p", */ 0xb4000000, 0xffe00000 },
13073 { 0, 0 } /* End marker for find_match(). */
13074 };
13075
13076 static const struct opcode_descriptor bz_rt_insns_32[] = {
13077 { /* "beqz", "t,p", */ 0x94000000, 0xfc01f000 },
13078 { /* "bnez", "t,p", */ 0xb4000000, 0xfc01f000 },
13079 { 0, 0 } /* End marker for find_match(). */
13080 };
13081
13082 static const struct opcode_descriptor bzc_insns_32[] = {
13083 { /* "beqzc", "s,p", */ 0x40e00000, 0xffe00000 },
13084 { /* "bnezc", "s,p", */ 0x40a00000, 0xffe00000 },
13085 { 0, 0 } /* End marker for find_match(). */
13086 };
13087
13088 static const struct opcode_descriptor bz_insns_16[] = {
13089 { /* "beqz", "md,mE", */ 0x8c00, 0xfc00 },
13090 { /* "bnez", "md,mE", */ 0xac00, 0xfc00 },
13091 { 0, 0 } /* End marker for find_match(). */
13092 };
13093
13094 /* Switch between a 5-bit register index and its 3-bit shorthand. */
13095
13096 #define BZ16_REG(opcode) ((((((opcode) >> 7) & 7) + 0x1e) & 0x17) + 2)
13097 #define BZ16_REG_FIELD(r) \
13098 (((2 <= (r) && (r) <= 7) ? (r) : ((r) - 16)) << 7)
13099
13100
13101 /* 32-bit instructions with a delay slot. */
13102
13103 static const struct opcode_descriptor jal_insn_32_bd16 =
13104 { /* "jals", "a", */ 0x74000000, 0xfc000000 };
13105
13106 static const struct opcode_descriptor jal_insn_32_bd32 =
13107 { /* "jal", "a", */ 0xf4000000, 0xfc000000 };
13108
13109 static const struct opcode_descriptor jal_x_insn_32_bd32 =
13110 { /* "jal[x]", "a", */ 0xf0000000, 0xf8000000 };
13111
13112 static const struct opcode_descriptor j_insn_32 =
13113 { /* "j", "a", */ 0xd4000000, 0xfc000000 };
13114
13115 static const struct opcode_descriptor jalr_insn_32 =
13116 { /* "jalr[.hb]", "t,s", */ 0x00000f3c, 0xfc00efff };
13117
13118 /* This table can be compacted, because no opcode replacement is made. */
13119
13120 static const struct opcode_descriptor ds_insns_32_bd16[] = {
13121 { /* "jals", "a", */ 0x74000000, 0xfc000000 },
13122
13123 { /* "jalrs[.hb]", "t,s", */ 0x00004f3c, 0xfc00efff },
13124 { /* "b(ge|lt)zals", "s,p", */ 0x42200000, 0xffa00000 },
13125
13126 { /* "b(g|l)(e|t)z", "s,p", */ 0x40000000, 0xff200000 },
13127 { /* "b(eq|ne)", "s,t,p", */ 0x94000000, 0xdc000000 },
13128 { /* "j", "a", */ 0xd4000000, 0xfc000000 },
13129 { 0, 0 } /* End marker for find_match(). */
13130 };
13131
13132 /* This table can be compacted, because no opcode replacement is made. */
13133
13134 static const struct opcode_descriptor ds_insns_32_bd32[] = {
13135 { /* "jal[x]", "a", */ 0xf0000000, 0xf8000000 },
13136
13137 { /* "jalr[.hb]", "t,s", */ 0x00000f3c, 0xfc00efff },
13138 { /* "b(ge|lt)zal", "s,p", */ 0x40200000, 0xffa00000 },
13139 { 0, 0 } /* End marker for find_match(). */
13140 };
13141
13142
13143 /* 16-bit instructions with a delay slot. */
13144
13145 static const struct opcode_descriptor jalr_insn_16_bd16 =
13146 { /* "jalrs", "my,mj", */ 0x45e0, 0xffe0 };
13147
13148 static const struct opcode_descriptor jalr_insn_16_bd32 =
13149 { /* "jalr", "my,mj", */ 0x45c0, 0xffe0 };
13150
13151 static const struct opcode_descriptor jr_insn_16 =
13152 { /* "jr", "mj", */ 0x4580, 0xffe0 };
13153
13154 #define JR16_REG(opcode) ((opcode) & 0x1f)
13155
13156 /* This table can be compacted, because no opcode replacement is made. */
13157
13158 static const struct opcode_descriptor ds_insns_16_bd16[] = {
13159 { /* "jalrs", "my,mj", */ 0x45e0, 0xffe0 },
13160
13161 { /* "b", "mD", */ 0xcc00, 0xfc00 },
13162 { /* "b(eq|ne)z", "md,mE", */ 0x8c00, 0xdc00 },
13163 { /* "jr", "mj", */ 0x4580, 0xffe0 },
13164 { 0, 0 } /* End marker for find_match(). */
13165 };
13166
13167
13168 /* LUI instruction. */
13169
13170 static const struct opcode_descriptor lui_insn =
13171 { /* "lui", "s,u", */ 0x41a00000, 0xffe00000 };
13172
13173
13174 /* ADDIU instruction. */
13175
13176 static const struct opcode_descriptor addiu_insn =
13177 { /* "addiu", "t,r,j", */ 0x30000000, 0xfc000000 };
13178
13179 static const struct opcode_descriptor addiupc_insn =
13180 { /* "addiu", "mb,$pc,mQ", */ 0x78000000, 0xfc000000 };
13181
13182 #define ADDIUPC_REG_FIELD(r) \
13183 (((2 <= (r) && (r) <= 7) ? (r) : ((r) - 16)) << 23)
13184
13185
13186 /* Relaxable instructions in a JAL delay slot: MOVE. */
13187
13188 /* The 16-bit move has rd in 9:5 and rs in 4:0. The 32-bit moves
13189 (ADDU, OR) have rd in 15:11 and rs in 10:16. */
13190 #define MOVE32_RD(opcode) (((opcode) >> 11) & 0x1f)
13191 #define MOVE32_RS(opcode) (((opcode) >> 16) & 0x1f)
13192
13193 #define MOVE16_RD_FIELD(r) (((r) & 0x1f) << 5)
13194 #define MOVE16_RS_FIELD(r) (((r) & 0x1f) )
13195
13196 static const struct opcode_descriptor move_insns_32[] = {
13197 { /* "move", "d,s", */ 0x00000150, 0xffe007ff }, /* addu d,s,$0 */
13198 { /* "move", "d,s", */ 0x00000290, 0xffe007ff }, /* or d,s,$0 */
13199 { 0, 0 } /* End marker for find_match(). */
13200 };
13201
13202 static const struct opcode_descriptor move_insn_16 =
13203 { /* "move", "mp,mj", */ 0x0c00, 0xfc00 };
13204
13205
13206 /* NOP instructions. */
13207
13208 static const struct opcode_descriptor nop_insn_32 =
13209 { /* "nop", "", */ 0x00000000, 0xffffffff };
13210
13211 static const struct opcode_descriptor nop_insn_16 =
13212 { /* "nop", "", */ 0x0c00, 0xffff };
13213
13214
13215 /* Instruction match support. */
13216
13217 #define MATCH(opcode, insn) ((opcode & insn.mask) == insn.match)
13218
13219 static int
13220 find_match (unsigned long opcode, const struct opcode_descriptor insn[])
13221 {
13222 unsigned long indx;
13223
13224 for (indx = 0; insn[indx].mask != 0; indx++)
13225 if (MATCH (opcode, insn[indx]))
13226 return indx;
13227
13228 return -1;
13229 }
13230
13231
13232 /* Branch and delay slot decoding support. */
13233
13234 /* If PTR points to what *might* be a 16-bit branch or jump, then
13235 return the minimum length of its delay slot, otherwise return 0.
13236 Non-zero results are not definitive as we might be checking against
13237 the second half of another instruction. */
13238
13239 static int
13240 check_br16_dslot (bfd *abfd, bfd_byte *ptr)
13241 {
13242 unsigned long opcode;
13243 int bdsize;
13244
13245 opcode = bfd_get_16 (abfd, ptr);
13246 if (MATCH (opcode, jalr_insn_16_bd32) != 0)
13247 /* 16-bit branch/jump with a 32-bit delay slot. */
13248 bdsize = 4;
13249 else if (MATCH (opcode, jalr_insn_16_bd16) != 0
13250 || find_match (opcode, ds_insns_16_bd16) >= 0)
13251 /* 16-bit branch/jump with a 16-bit delay slot. */
13252 bdsize = 2;
13253 else
13254 /* No delay slot. */
13255 bdsize = 0;
13256
13257 return bdsize;
13258 }
13259
13260 /* If PTR points to what *might* be a 32-bit branch or jump, then
13261 return the minimum length of its delay slot, otherwise return 0.
13262 Non-zero results are not definitive as we might be checking against
13263 the second half of another instruction. */
13264
13265 static int
13266 check_br32_dslot (bfd *abfd, bfd_byte *ptr)
13267 {
13268 unsigned long opcode;
13269 int bdsize;
13270
13271 opcode = bfd_get_micromips_32 (abfd, ptr);
13272 if (find_match (opcode, ds_insns_32_bd32) >= 0)
13273 /* 32-bit branch/jump with a 32-bit delay slot. */
13274 bdsize = 4;
13275 else if (find_match (opcode, ds_insns_32_bd16) >= 0)
13276 /* 32-bit branch/jump with a 16-bit delay slot. */
13277 bdsize = 2;
13278 else
13279 /* No delay slot. */
13280 bdsize = 0;
13281
13282 return bdsize;
13283 }
13284
13285 /* If PTR points to a 16-bit branch or jump with a 32-bit delay slot
13286 that doesn't fiddle with REG, then return TRUE, otherwise FALSE. */
13287
13288 static bfd_boolean
13289 check_br16 (bfd *abfd, bfd_byte *ptr, unsigned long reg)
13290 {
13291 unsigned long opcode;
13292
13293 opcode = bfd_get_16 (abfd, ptr);
13294 if (MATCH (opcode, b_insn_16)
13295 /* B16 */
13296 || (MATCH (opcode, jr_insn_16) && reg != JR16_REG (opcode))
13297 /* JR16 */
13298 || (MATCH (opcode, bz_insn_16) && reg != BZ16_REG (opcode))
13299 /* BEQZ16, BNEZ16 */
13300 || (MATCH (opcode, jalr_insn_16_bd32)
13301 /* JALR16 */
13302 && reg != JR16_REG (opcode) && reg != RA))
13303 return TRUE;
13304
13305 return FALSE;
13306 }
13307
13308 /* If PTR points to a 32-bit branch or jump that doesn't fiddle with REG,
13309 then return TRUE, otherwise FALSE. */
13310
13311 static bfd_boolean
13312 check_br32 (bfd *abfd, bfd_byte *ptr, unsigned long reg)
13313 {
13314 unsigned long opcode;
13315
13316 opcode = bfd_get_micromips_32 (abfd, ptr);
13317 if (MATCH (opcode, j_insn_32)
13318 /* J */
13319 || MATCH (opcode, bc_insn_32)
13320 /* BC1F, BC1T, BC2F, BC2T */
13321 || (MATCH (opcode, jal_x_insn_32_bd32) && reg != RA)
13322 /* JAL, JALX */
13323 || (MATCH (opcode, bz_insn_32) && reg != OP32_SREG (opcode))
13324 /* BGEZ, BGTZ, BLEZ, BLTZ */
13325 || (MATCH (opcode, bzal_insn_32)
13326 /* BGEZAL, BLTZAL */
13327 && reg != OP32_SREG (opcode) && reg != RA)
13328 || ((MATCH (opcode, jalr_insn_32) || MATCH (opcode, beq_insn_32))
13329 /* JALR, JALR.HB, BEQ, BNE */
13330 && reg != OP32_SREG (opcode) && reg != OP32_TREG (opcode)))
13331 return TRUE;
13332
13333 return FALSE;
13334 }
13335
13336 /* If the instruction encoding at PTR and relocations [INTERNAL_RELOCS,
13337 IRELEND) at OFFSET indicate that there must be a compact branch there,
13338 then return TRUE, otherwise FALSE. */
13339
13340 static bfd_boolean
13341 check_relocated_bzc (bfd *abfd, const bfd_byte *ptr, bfd_vma offset,
13342 const Elf_Internal_Rela *internal_relocs,
13343 const Elf_Internal_Rela *irelend)
13344 {
13345 const Elf_Internal_Rela *irel;
13346 unsigned long opcode;
13347
13348 opcode = bfd_get_micromips_32 (abfd, ptr);
13349 if (find_match (opcode, bzc_insns_32) < 0)
13350 return FALSE;
13351
13352 for (irel = internal_relocs; irel < irelend; irel++)
13353 if (irel->r_offset == offset
13354 && ELF32_R_TYPE (irel->r_info) == R_MICROMIPS_PC16_S1)
13355 return TRUE;
13356
13357 return FALSE;
13358 }
13359
13360 /* Bitsize checking. */
13361 #define IS_BITSIZE(val, N) \
13362 (((((val) & ((1ULL << (N)) - 1)) ^ (1ULL << ((N) - 1))) \
13363 - (1ULL << ((N) - 1))) == (val))
13364
13365 \f
13366 bfd_boolean
13367 _bfd_mips_elf_relax_section (bfd *abfd, asection *sec,
13368 struct bfd_link_info *link_info,
13369 bfd_boolean *again)
13370 {
13371 bfd_boolean insn32 = mips_elf_hash_table (link_info)->insn32;
13372 Elf_Internal_Shdr *symtab_hdr;
13373 Elf_Internal_Rela *internal_relocs;
13374 Elf_Internal_Rela *irel, *irelend;
13375 bfd_byte *contents = NULL;
13376 Elf_Internal_Sym *isymbuf = NULL;
13377
13378 /* Assume nothing changes. */
13379 *again = FALSE;
13380
13381 /* We don't have to do anything for a relocatable link, if
13382 this section does not have relocs, or if this is not a
13383 code section. */
13384
13385 if (link_info->relocatable
13386 || (sec->flags & SEC_RELOC) == 0
13387 || sec->reloc_count == 0
13388 || (sec->flags & SEC_CODE) == 0)
13389 return TRUE;
13390
13391 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
13392
13393 /* Get a copy of the native relocations. */
13394 internal_relocs = (_bfd_elf_link_read_relocs
13395 (abfd, sec, NULL, (Elf_Internal_Rela *) NULL,
13396 link_info->keep_memory));
13397 if (internal_relocs == NULL)
13398 goto error_return;
13399
13400 /* Walk through them looking for relaxing opportunities. */
13401 irelend = internal_relocs + sec->reloc_count;
13402 for (irel = internal_relocs; irel < irelend; irel++)
13403 {
13404 unsigned long r_symndx = ELF32_R_SYM (irel->r_info);
13405 unsigned int r_type = ELF32_R_TYPE (irel->r_info);
13406 bfd_boolean target_is_micromips_code_p;
13407 unsigned long opcode;
13408 bfd_vma symval;
13409 bfd_vma pcrval;
13410 bfd_byte *ptr;
13411 int fndopc;
13412
13413 /* The number of bytes to delete for relaxation and from where
13414 to delete these bytes starting at irel->r_offset. */
13415 int delcnt = 0;
13416 int deloff = 0;
13417
13418 /* If this isn't something that can be relaxed, then ignore
13419 this reloc. */
13420 if (r_type != R_MICROMIPS_HI16
13421 && r_type != R_MICROMIPS_PC16_S1
13422 && r_type != R_MICROMIPS_26_S1)
13423 continue;
13424
13425 /* Get the section contents if we haven't done so already. */
13426 if (contents == NULL)
13427 {
13428 /* Get cached copy if it exists. */
13429 if (elf_section_data (sec)->this_hdr.contents != NULL)
13430 contents = elf_section_data (sec)->this_hdr.contents;
13431 /* Go get them off disk. */
13432 else if (!bfd_malloc_and_get_section (abfd, sec, &contents))
13433 goto error_return;
13434 }
13435 ptr = contents + irel->r_offset;
13436
13437 /* Read this BFD's local symbols if we haven't done so already. */
13438 if (isymbuf == NULL && symtab_hdr->sh_info != 0)
13439 {
13440 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
13441 if (isymbuf == NULL)
13442 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
13443 symtab_hdr->sh_info, 0,
13444 NULL, NULL, NULL);
13445 if (isymbuf == NULL)
13446 goto error_return;
13447 }
13448
13449 /* Get the value of the symbol referred to by the reloc. */
13450 if (r_symndx < symtab_hdr->sh_info)
13451 {
13452 /* A local symbol. */
13453 Elf_Internal_Sym *isym;
13454 asection *sym_sec;
13455
13456 isym = isymbuf + r_symndx;
13457 if (isym->st_shndx == SHN_UNDEF)
13458 sym_sec = bfd_und_section_ptr;
13459 else if (isym->st_shndx == SHN_ABS)
13460 sym_sec = bfd_abs_section_ptr;
13461 else if (isym->st_shndx == SHN_COMMON)
13462 sym_sec = bfd_com_section_ptr;
13463 else
13464 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
13465 symval = (isym->st_value
13466 + sym_sec->output_section->vma
13467 + sym_sec->output_offset);
13468 target_is_micromips_code_p = ELF_ST_IS_MICROMIPS (isym->st_other);
13469 }
13470 else
13471 {
13472 unsigned long indx;
13473 struct elf_link_hash_entry *h;
13474
13475 /* An external symbol. */
13476 indx = r_symndx - symtab_hdr->sh_info;
13477 h = elf_sym_hashes (abfd)[indx];
13478 BFD_ASSERT (h != NULL);
13479
13480 if (h->root.type != bfd_link_hash_defined
13481 && h->root.type != bfd_link_hash_defweak)
13482 /* This appears to be a reference to an undefined
13483 symbol. Just ignore it -- it will be caught by the
13484 regular reloc processing. */
13485 continue;
13486
13487 symval = (h->root.u.def.value
13488 + h->root.u.def.section->output_section->vma
13489 + h->root.u.def.section->output_offset);
13490 target_is_micromips_code_p = (!h->needs_plt
13491 && ELF_ST_IS_MICROMIPS (h->other));
13492 }
13493
13494
13495 /* For simplicity of coding, we are going to modify the
13496 section contents, the section relocs, and the BFD symbol
13497 table. We must tell the rest of the code not to free up this
13498 information. It would be possible to instead create a table
13499 of changes which have to be made, as is done in coff-mips.c;
13500 that would be more work, but would require less memory when
13501 the linker is run. */
13502
13503 /* Only 32-bit instructions relaxed. */
13504 if (irel->r_offset + 4 > sec->size)
13505 continue;
13506
13507 opcode = bfd_get_micromips_32 (abfd, ptr);
13508
13509 /* This is the pc-relative distance from the instruction the
13510 relocation is applied to, to the symbol referred. */
13511 pcrval = (symval
13512 - (sec->output_section->vma + sec->output_offset)
13513 - irel->r_offset);
13514
13515 /* R_MICROMIPS_HI16 / LUI relaxation to nil, performing relaxation
13516 of corresponding R_MICROMIPS_LO16 to R_MICROMIPS_HI0_LO16 or
13517 R_MICROMIPS_PC23_S2. The R_MICROMIPS_PC23_S2 condition is
13518
13519 (symval % 4 == 0 && IS_BITSIZE (pcrval, 25))
13520
13521 where pcrval has first to be adjusted to apply against the LO16
13522 location (we make the adjustment later on, when we have figured
13523 out the offset). */
13524 if (r_type == R_MICROMIPS_HI16 && MATCH (opcode, lui_insn))
13525 {
13526 bfd_boolean bzc = FALSE;
13527 unsigned long nextopc;
13528 unsigned long reg;
13529 bfd_vma offset;
13530
13531 /* Give up if the previous reloc was a HI16 against this symbol
13532 too. */
13533 if (irel > internal_relocs
13534 && ELF32_R_TYPE (irel[-1].r_info) == R_MICROMIPS_HI16
13535 && ELF32_R_SYM (irel[-1].r_info) == r_symndx)
13536 continue;
13537
13538 /* Or if the next reloc is not a LO16 against this symbol. */
13539 if (irel + 1 >= irelend
13540 || ELF32_R_TYPE (irel[1].r_info) != R_MICROMIPS_LO16
13541 || ELF32_R_SYM (irel[1].r_info) != r_symndx)
13542 continue;
13543
13544 /* Or if the second next reloc is a LO16 against this symbol too. */
13545 if (irel + 2 >= irelend
13546 && ELF32_R_TYPE (irel[2].r_info) == R_MICROMIPS_LO16
13547 && ELF32_R_SYM (irel[2].r_info) == r_symndx)
13548 continue;
13549
13550 /* See if the LUI instruction *might* be in a branch delay slot.
13551 We check whether what looks like a 16-bit branch or jump is
13552 actually an immediate argument to a compact branch, and let
13553 it through if so. */
13554 if (irel->r_offset >= 2
13555 && check_br16_dslot (abfd, ptr - 2)
13556 && !(irel->r_offset >= 4
13557 && (bzc = check_relocated_bzc (abfd,
13558 ptr - 4, irel->r_offset - 4,
13559 internal_relocs, irelend))))
13560 continue;
13561 if (irel->r_offset >= 4
13562 && !bzc
13563 && check_br32_dslot (abfd, ptr - 4))
13564 continue;
13565
13566 reg = OP32_SREG (opcode);
13567
13568 /* We only relax adjacent instructions or ones separated with
13569 a branch or jump that has a delay slot. The branch or jump
13570 must not fiddle with the register used to hold the address.
13571 Subtract 4 for the LUI itself. */
13572 offset = irel[1].r_offset - irel[0].r_offset;
13573 switch (offset - 4)
13574 {
13575 case 0:
13576 break;
13577 case 2:
13578 if (check_br16 (abfd, ptr + 4, reg))
13579 break;
13580 continue;
13581 case 4:
13582 if (check_br32 (abfd, ptr + 4, reg))
13583 break;
13584 continue;
13585 default:
13586 continue;
13587 }
13588
13589 nextopc = bfd_get_micromips_32 (abfd, contents + irel[1].r_offset);
13590
13591 /* Give up unless the same register is used with both
13592 relocations. */
13593 if (OP32_SREG (nextopc) != reg)
13594 continue;
13595
13596 /* Now adjust pcrval, subtracting the offset to the LO16 reloc
13597 and rounding up to take masking of the two LSBs into account. */
13598 pcrval = ((pcrval - offset + 3) | 3) ^ 3;
13599
13600 /* R_MICROMIPS_LO16 relaxation to R_MICROMIPS_HI0_LO16. */
13601 if (IS_BITSIZE (symval, 16))
13602 {
13603 /* Fix the relocation's type. */
13604 irel[1].r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_HI0_LO16);
13605
13606 /* Instructions using R_MICROMIPS_LO16 have the base or
13607 source register in bits 20:16. This register becomes $0
13608 (zero) as the result of the R_MICROMIPS_HI16 being 0. */
13609 nextopc &= ~0x001f0000;
13610 bfd_put_16 (abfd, (nextopc >> 16) & 0xffff,
13611 contents + irel[1].r_offset);
13612 }
13613
13614 /* R_MICROMIPS_LO16 / ADDIU relaxation to R_MICROMIPS_PC23_S2.
13615 We add 4 to take LUI deletion into account while checking
13616 the PC-relative distance. */
13617 else if (symval % 4 == 0
13618 && IS_BITSIZE (pcrval + 4, 25)
13619 && MATCH (nextopc, addiu_insn)
13620 && OP32_TREG (nextopc) == OP32_SREG (nextopc)
13621 && OP16_VALID_REG (OP32_TREG (nextopc)))
13622 {
13623 /* Fix the relocation's type. */
13624 irel[1].r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_PC23_S2);
13625
13626 /* Replace ADDIU with the ADDIUPC version. */
13627 nextopc = (addiupc_insn.match
13628 | ADDIUPC_REG_FIELD (OP32_TREG (nextopc)));
13629
13630 bfd_put_micromips_32 (abfd, nextopc,
13631 contents + irel[1].r_offset);
13632 }
13633
13634 /* Can't do anything, give up, sigh... */
13635 else
13636 continue;
13637
13638 /* Fix the relocation's type. */
13639 irel->r_info = ELF32_R_INFO (r_symndx, R_MIPS_NONE);
13640
13641 /* Delete the LUI instruction: 4 bytes at irel->r_offset. */
13642 delcnt = 4;
13643 deloff = 0;
13644 }
13645
13646 /* Compact branch relaxation -- due to the multitude of macros
13647 employed by the compiler/assembler, compact branches are not
13648 always generated. Obviously, this can/will be fixed elsewhere,
13649 but there is no drawback in double checking it here. */
13650 else if (r_type == R_MICROMIPS_PC16_S1
13651 && irel->r_offset + 5 < sec->size
13652 && ((fndopc = find_match (opcode, bz_rs_insns_32)) >= 0
13653 || (fndopc = find_match (opcode, bz_rt_insns_32)) >= 0)
13654 && ((!insn32
13655 && (delcnt = MATCH (bfd_get_16 (abfd, ptr + 4),
13656 nop_insn_16) ? 2 : 0))
13657 || (irel->r_offset + 7 < sec->size
13658 && (delcnt = MATCH (bfd_get_micromips_32 (abfd,
13659 ptr + 4),
13660 nop_insn_32) ? 4 : 0))))
13661 {
13662 unsigned long reg;
13663
13664 reg = OP32_SREG (opcode) ? OP32_SREG (opcode) : OP32_TREG (opcode);
13665
13666 /* Replace BEQZ/BNEZ with the compact version. */
13667 opcode = (bzc_insns_32[fndopc].match
13668 | BZC32_REG_FIELD (reg)
13669 | (opcode & 0xffff)); /* Addend value. */
13670
13671 bfd_put_micromips_32 (abfd, opcode, ptr);
13672
13673 /* Delete the delay slot NOP: two or four bytes from
13674 irel->offset + 4; delcnt has already been set above. */
13675 deloff = 4;
13676 }
13677
13678 /* R_MICROMIPS_PC16_S1 relaxation to R_MICROMIPS_PC10_S1. We need
13679 to check the distance from the next instruction, so subtract 2. */
13680 else if (!insn32
13681 && r_type == R_MICROMIPS_PC16_S1
13682 && IS_BITSIZE (pcrval - 2, 11)
13683 && find_match (opcode, b_insns_32) >= 0)
13684 {
13685 /* Fix the relocation's type. */
13686 irel->r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_PC10_S1);
13687
13688 /* Replace the 32-bit opcode with a 16-bit opcode. */
13689 bfd_put_16 (abfd,
13690 (b_insn_16.match
13691 | (opcode & 0x3ff)), /* Addend value. */
13692 ptr);
13693
13694 /* Delete 2 bytes from irel->r_offset + 2. */
13695 delcnt = 2;
13696 deloff = 2;
13697 }
13698
13699 /* R_MICROMIPS_PC16_S1 relaxation to R_MICROMIPS_PC7_S1. We need
13700 to check the distance from the next instruction, so subtract 2. */
13701 else if (!insn32
13702 && r_type == R_MICROMIPS_PC16_S1
13703 && IS_BITSIZE (pcrval - 2, 8)
13704 && (((fndopc = find_match (opcode, bz_rs_insns_32)) >= 0
13705 && OP16_VALID_REG (OP32_SREG (opcode)))
13706 || ((fndopc = find_match (opcode, bz_rt_insns_32)) >= 0
13707 && OP16_VALID_REG (OP32_TREG (opcode)))))
13708 {
13709 unsigned long reg;
13710
13711 reg = OP32_SREG (opcode) ? OP32_SREG (opcode) : OP32_TREG (opcode);
13712
13713 /* Fix the relocation's type. */
13714 irel->r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_PC7_S1);
13715
13716 /* Replace the 32-bit opcode with a 16-bit opcode. */
13717 bfd_put_16 (abfd,
13718 (bz_insns_16[fndopc].match
13719 | BZ16_REG_FIELD (reg)
13720 | (opcode & 0x7f)), /* Addend value. */
13721 ptr);
13722
13723 /* Delete 2 bytes from irel->r_offset + 2. */
13724 delcnt = 2;
13725 deloff = 2;
13726 }
13727
13728 /* R_MICROMIPS_26_S1 -- JAL to JALS relaxation for microMIPS targets. */
13729 else if (!insn32
13730 && r_type == R_MICROMIPS_26_S1
13731 && target_is_micromips_code_p
13732 && irel->r_offset + 7 < sec->size
13733 && MATCH (opcode, jal_insn_32_bd32))
13734 {
13735 unsigned long n32opc;
13736 bfd_boolean relaxed = FALSE;
13737
13738 n32opc = bfd_get_micromips_32 (abfd, ptr + 4);
13739
13740 if (MATCH (n32opc, nop_insn_32))
13741 {
13742 /* Replace delay slot 32-bit NOP with a 16-bit NOP. */
13743 bfd_put_16 (abfd, nop_insn_16.match, ptr + 4);
13744
13745 relaxed = TRUE;
13746 }
13747 else if (find_match (n32opc, move_insns_32) >= 0)
13748 {
13749 /* Replace delay slot 32-bit MOVE with 16-bit MOVE. */
13750 bfd_put_16 (abfd,
13751 (move_insn_16.match
13752 | MOVE16_RD_FIELD (MOVE32_RD (n32opc))
13753 | MOVE16_RS_FIELD (MOVE32_RS (n32opc))),
13754 ptr + 4);
13755
13756 relaxed = TRUE;
13757 }
13758 /* Other 32-bit instructions relaxable to 16-bit
13759 instructions will be handled here later. */
13760
13761 if (relaxed)
13762 {
13763 /* JAL with 32-bit delay slot that is changed to a JALS
13764 with 16-bit delay slot. */
13765 bfd_put_micromips_32 (abfd, jal_insn_32_bd16.match, ptr);
13766
13767 /* Delete 2 bytes from irel->r_offset + 6. */
13768 delcnt = 2;
13769 deloff = 6;
13770 }
13771 }
13772
13773 if (delcnt != 0)
13774 {
13775 /* Note that we've changed the relocs, section contents, etc. */
13776 elf_section_data (sec)->relocs = internal_relocs;
13777 elf_section_data (sec)->this_hdr.contents = contents;
13778 symtab_hdr->contents = (unsigned char *) isymbuf;
13779
13780 /* Delete bytes depending on the delcnt and deloff. */
13781 if (!mips_elf_relax_delete_bytes (abfd, sec,
13782 irel->r_offset + deloff, delcnt))
13783 goto error_return;
13784
13785 /* That will change things, so we should relax again.
13786 Note that this is not required, and it may be slow. */
13787 *again = TRUE;
13788 }
13789 }
13790
13791 if (isymbuf != NULL
13792 && symtab_hdr->contents != (unsigned char *) isymbuf)
13793 {
13794 if (! link_info->keep_memory)
13795 free (isymbuf);
13796 else
13797 {
13798 /* Cache the symbols for elf_link_input_bfd. */
13799 symtab_hdr->contents = (unsigned char *) isymbuf;
13800 }
13801 }
13802
13803 if (contents != NULL
13804 && elf_section_data (sec)->this_hdr.contents != contents)
13805 {
13806 if (! link_info->keep_memory)
13807 free (contents);
13808 else
13809 {
13810 /* Cache the section contents for elf_link_input_bfd. */
13811 elf_section_data (sec)->this_hdr.contents = contents;
13812 }
13813 }
13814
13815 if (internal_relocs != NULL
13816 && elf_section_data (sec)->relocs != internal_relocs)
13817 free (internal_relocs);
13818
13819 return TRUE;
13820
13821 error_return:
13822 if (isymbuf != NULL
13823 && symtab_hdr->contents != (unsigned char *) isymbuf)
13824 free (isymbuf);
13825 if (contents != NULL
13826 && elf_section_data (sec)->this_hdr.contents != contents)
13827 free (contents);
13828 if (internal_relocs != NULL
13829 && elf_section_data (sec)->relocs != internal_relocs)
13830 free (internal_relocs);
13831
13832 return FALSE;
13833 }
13834 \f
13835 /* Create a MIPS ELF linker hash table. */
13836
13837 struct bfd_link_hash_table *
13838 _bfd_mips_elf_link_hash_table_create (bfd *abfd)
13839 {
13840 struct mips_elf_link_hash_table *ret;
13841 bfd_size_type amt = sizeof (struct mips_elf_link_hash_table);
13842
13843 ret = bfd_zmalloc (amt);
13844 if (ret == NULL)
13845 return NULL;
13846
13847 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
13848 mips_elf_link_hash_newfunc,
13849 sizeof (struct mips_elf_link_hash_entry),
13850 MIPS_ELF_DATA))
13851 {
13852 free (ret);
13853 return NULL;
13854 }
13855 ret->root.init_plt_refcount.plist = NULL;
13856 ret->root.init_plt_offset.plist = NULL;
13857
13858 return &ret->root.root;
13859 }
13860
13861 /* Likewise, but indicate that the target is VxWorks. */
13862
13863 struct bfd_link_hash_table *
13864 _bfd_mips_vxworks_link_hash_table_create (bfd *abfd)
13865 {
13866 struct bfd_link_hash_table *ret;
13867
13868 ret = _bfd_mips_elf_link_hash_table_create (abfd);
13869 if (ret)
13870 {
13871 struct mips_elf_link_hash_table *htab;
13872
13873 htab = (struct mips_elf_link_hash_table *) ret;
13874 htab->use_plts_and_copy_relocs = TRUE;
13875 htab->is_vxworks = TRUE;
13876 }
13877 return ret;
13878 }
13879
13880 /* A function that the linker calls if we are allowed to use PLTs
13881 and copy relocs. */
13882
13883 void
13884 _bfd_mips_elf_use_plts_and_copy_relocs (struct bfd_link_info *info)
13885 {
13886 mips_elf_hash_table (info)->use_plts_and_copy_relocs = TRUE;
13887 }
13888
13889 /* A function that the linker calls to select between all or only
13890 32-bit microMIPS instructions. */
13891
13892 void
13893 _bfd_mips_elf_insn32 (struct bfd_link_info *info, bfd_boolean on)
13894 {
13895 mips_elf_hash_table (info)->insn32 = on;
13896 }
13897 \f
13898 /* Return the .MIPS.abiflags value representing each ISA Extension. */
13899
13900 unsigned int
13901 bfd_mips_isa_ext (bfd *abfd)
13902 {
13903 switch (bfd_get_mach (abfd))
13904 {
13905 case bfd_mach_mips3900:
13906 return AFL_EXT_3900;
13907 case bfd_mach_mips4010:
13908 return AFL_EXT_4010;
13909 case bfd_mach_mips4100:
13910 return AFL_EXT_4100;
13911 case bfd_mach_mips4111:
13912 return AFL_EXT_4111;
13913 case bfd_mach_mips4120:
13914 return AFL_EXT_4120;
13915 case bfd_mach_mips4650:
13916 return AFL_EXT_4650;
13917 case bfd_mach_mips5400:
13918 return AFL_EXT_5400;
13919 case bfd_mach_mips5500:
13920 return AFL_EXT_5500;
13921 case bfd_mach_mips5900:
13922 return AFL_EXT_5900;
13923 case bfd_mach_mips10000:
13924 return AFL_EXT_10000;
13925 case bfd_mach_mips_loongson_2e:
13926 return AFL_EXT_LOONGSON_2E;
13927 case bfd_mach_mips_loongson_2f:
13928 return AFL_EXT_LOONGSON_2F;
13929 case bfd_mach_mips_loongson_3a:
13930 return AFL_EXT_LOONGSON_3A;
13931 case bfd_mach_mips_sb1:
13932 return AFL_EXT_SB1;
13933 case bfd_mach_mips_octeon:
13934 return AFL_EXT_OCTEON;
13935 case bfd_mach_mips_octeonp:
13936 return AFL_EXT_OCTEONP;
13937 case bfd_mach_mips_octeon3:
13938 return AFL_EXT_OCTEON3;
13939 case bfd_mach_mips_octeon2:
13940 return AFL_EXT_OCTEON2;
13941 case bfd_mach_mips_xlr:
13942 return AFL_EXT_XLR;
13943 }
13944 return 0;
13945 }
13946
13947 /* Update the isa_level, isa_rev, isa_ext fields of abiflags. */
13948
13949 static void
13950 update_mips_abiflags_isa (bfd *abfd, Elf_Internal_ABIFlags_v0 *abiflags)
13951 {
13952 switch (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH)
13953 {
13954 case E_MIPS_ARCH_1:
13955 abiflags->isa_level = 1;
13956 abiflags->isa_rev = 0;
13957 break;
13958 case E_MIPS_ARCH_2:
13959 abiflags->isa_level = 2;
13960 abiflags->isa_rev = 0;
13961 break;
13962 case E_MIPS_ARCH_3:
13963 abiflags->isa_level = 3;
13964 abiflags->isa_rev = 0;
13965 break;
13966 case E_MIPS_ARCH_4:
13967 abiflags->isa_level = 4;
13968 abiflags->isa_rev = 0;
13969 break;
13970 case E_MIPS_ARCH_5:
13971 abiflags->isa_level = 5;
13972 abiflags->isa_rev = 0;
13973 break;
13974 case E_MIPS_ARCH_32:
13975 abiflags->isa_level = 32;
13976 abiflags->isa_rev = 1;
13977 break;
13978 case E_MIPS_ARCH_32R2:
13979 abiflags->isa_level = 32;
13980 /* Handle MIPS32r3 and MIPS32r5 which do not have a header flag. */
13981 if (abiflags->isa_rev < 2)
13982 abiflags->isa_rev = 2;
13983 break;
13984 case E_MIPS_ARCH_32R6:
13985 abiflags->isa_level = 32;
13986 abiflags->isa_rev = 6;
13987 break;
13988 case E_MIPS_ARCH_64:
13989 abiflags->isa_level = 64;
13990 abiflags->isa_rev = 1;
13991 break;
13992 case E_MIPS_ARCH_64R2:
13993 /* Handle MIPS64r3 and MIPS64r5 which do not have a header flag. */
13994 abiflags->isa_level = 64;
13995 if (abiflags->isa_rev < 2)
13996 abiflags->isa_rev = 2;
13997 break;
13998 case E_MIPS_ARCH_64R6:
13999 abiflags->isa_level = 64;
14000 abiflags->isa_rev = 6;
14001 break;
14002 default:
14003 (*_bfd_error_handler)
14004 (_("%B: Unknown architecture %s"),
14005 abfd, bfd_printable_name (abfd));
14006 }
14007
14008 abiflags->isa_ext = bfd_mips_isa_ext (abfd);
14009 }
14010
14011 /* Return true if the given ELF header flags describe a 32-bit binary. */
14012
14013 static bfd_boolean
14014 mips_32bit_flags_p (flagword flags)
14015 {
14016 return ((flags & EF_MIPS_32BITMODE) != 0
14017 || (flags & EF_MIPS_ABI) == E_MIPS_ABI_O32
14018 || (flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI32
14019 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1
14020 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_2
14021 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32
14022 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R2
14023 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R6);
14024 }
14025
14026 /* Infer the content of the ABI flags based on the elf header. */
14027
14028 static void
14029 infer_mips_abiflags (bfd *abfd, Elf_Internal_ABIFlags_v0* abiflags)
14030 {
14031 obj_attribute *in_attr;
14032
14033 memset (abiflags, 0, sizeof (Elf_Internal_ABIFlags_v0));
14034 update_mips_abiflags_isa (abfd, abiflags);
14035
14036 if (mips_32bit_flags_p (elf_elfheader (abfd)->e_flags))
14037 abiflags->gpr_size = AFL_REG_32;
14038 else
14039 abiflags->gpr_size = AFL_REG_64;
14040
14041 abiflags->cpr1_size = AFL_REG_NONE;
14042
14043 in_attr = elf_known_obj_attributes (abfd)[OBJ_ATTR_GNU];
14044 abiflags->fp_abi = in_attr[Tag_GNU_MIPS_ABI_FP].i;
14045
14046 if (abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_SINGLE
14047 || abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_XX
14048 || (abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_DOUBLE
14049 && abiflags->gpr_size == AFL_REG_32))
14050 abiflags->cpr1_size = AFL_REG_32;
14051 else if (abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_DOUBLE
14052 || abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_64
14053 || abiflags->fp_abi == Val_GNU_MIPS_ABI_FP_64A)
14054 abiflags->cpr1_size = AFL_REG_64;
14055
14056 abiflags->cpr2_size = AFL_REG_NONE;
14057
14058 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MDMX)
14059 abiflags->ases |= AFL_ASE_MDMX;
14060 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_M16)
14061 abiflags->ases |= AFL_ASE_MIPS16;
14062 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MICROMIPS)
14063 abiflags->ases |= AFL_ASE_MICROMIPS;
14064
14065 if (abiflags->fp_abi != Val_GNU_MIPS_ABI_FP_ANY
14066 && abiflags->fp_abi != Val_GNU_MIPS_ABI_FP_SOFT
14067 && abiflags->fp_abi != Val_GNU_MIPS_ABI_FP_64A
14068 && abiflags->isa_level >= 32
14069 && abiflags->isa_ext != AFL_EXT_LOONGSON_3A)
14070 abiflags->flags1 |= AFL_FLAGS1_ODDSPREG;
14071 }
14072
14073 /* We need to use a special link routine to handle the .reginfo and
14074 the .mdebug sections. We need to merge all instances of these
14075 sections together, not write them all out sequentially. */
14076
14077 bfd_boolean
14078 _bfd_mips_elf_final_link (bfd *abfd, struct bfd_link_info *info)
14079 {
14080 asection *o;
14081 struct bfd_link_order *p;
14082 asection *reginfo_sec, *mdebug_sec, *gptab_data_sec, *gptab_bss_sec;
14083 asection *rtproc_sec, *abiflags_sec;
14084 Elf32_RegInfo reginfo;
14085 struct ecoff_debug_info debug;
14086 struct mips_htab_traverse_info hti;
14087 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
14088 const struct ecoff_debug_swap *swap = bed->elf_backend_ecoff_debug_swap;
14089 HDRR *symhdr = &debug.symbolic_header;
14090 void *mdebug_handle = NULL;
14091 asection *s;
14092 EXTR esym;
14093 unsigned int i;
14094 bfd_size_type amt;
14095 struct mips_elf_link_hash_table *htab;
14096
14097 static const char * const secname[] =
14098 {
14099 ".text", ".init", ".fini", ".data",
14100 ".rodata", ".sdata", ".sbss", ".bss"
14101 };
14102 static const int sc[] =
14103 {
14104 scText, scInit, scFini, scData,
14105 scRData, scSData, scSBss, scBss
14106 };
14107
14108 /* Sort the dynamic symbols so that those with GOT entries come after
14109 those without. */
14110 htab = mips_elf_hash_table (info);
14111 BFD_ASSERT (htab != NULL);
14112
14113 if (!mips_elf_sort_hash_table (abfd, info))
14114 return FALSE;
14115
14116 /* Create any scheduled LA25 stubs. */
14117 hti.info = info;
14118 hti.output_bfd = abfd;
14119 hti.error = FALSE;
14120 htab_traverse (htab->la25_stubs, mips_elf_create_la25_stub, &hti);
14121 if (hti.error)
14122 return FALSE;
14123
14124 /* Get a value for the GP register. */
14125 if (elf_gp (abfd) == 0)
14126 {
14127 struct bfd_link_hash_entry *h;
14128
14129 h = bfd_link_hash_lookup (info->hash, "_gp", FALSE, FALSE, TRUE);
14130 if (h != NULL && h->type == bfd_link_hash_defined)
14131 elf_gp (abfd) = (h->u.def.value
14132 + h->u.def.section->output_section->vma
14133 + h->u.def.section->output_offset);
14134 else if (htab->is_vxworks
14135 && (h = bfd_link_hash_lookup (info->hash,
14136 "_GLOBAL_OFFSET_TABLE_",
14137 FALSE, FALSE, TRUE))
14138 && h->type == bfd_link_hash_defined)
14139 elf_gp (abfd) = (h->u.def.section->output_section->vma
14140 + h->u.def.section->output_offset
14141 + h->u.def.value);
14142 else if (info->relocatable)
14143 {
14144 bfd_vma lo = MINUS_ONE;
14145
14146 /* Find the GP-relative section with the lowest offset. */
14147 for (o = abfd->sections; o != NULL; o = o->next)
14148 if (o->vma < lo
14149 && (elf_section_data (o)->this_hdr.sh_flags & SHF_MIPS_GPREL))
14150 lo = o->vma;
14151
14152 /* And calculate GP relative to that. */
14153 elf_gp (abfd) = lo + ELF_MIPS_GP_OFFSET (info);
14154 }
14155 else
14156 {
14157 /* If the relocate_section function needs to do a reloc
14158 involving the GP value, it should make a reloc_dangerous
14159 callback to warn that GP is not defined. */
14160 }
14161 }
14162
14163 /* Go through the sections and collect the .reginfo and .mdebug
14164 information. */
14165 abiflags_sec = NULL;
14166 reginfo_sec = NULL;
14167 mdebug_sec = NULL;
14168 gptab_data_sec = NULL;
14169 gptab_bss_sec = NULL;
14170 for (o = abfd->sections; o != NULL; o = o->next)
14171 {
14172 if (strcmp (o->name, ".MIPS.abiflags") == 0)
14173 {
14174 /* We have found the .MIPS.abiflags section in the output file.
14175 Look through all the link_orders comprising it and remove them.
14176 The data is merged in _bfd_mips_elf_merge_private_bfd_data. */
14177 for (p = o->map_head.link_order; p != NULL; p = p->next)
14178 {
14179 asection *input_section;
14180
14181 if (p->type != bfd_indirect_link_order)
14182 {
14183 if (p->type == bfd_data_link_order)
14184 continue;
14185 abort ();
14186 }
14187
14188 input_section = p->u.indirect.section;
14189
14190 /* Hack: reset the SEC_HAS_CONTENTS flag so that
14191 elf_link_input_bfd ignores this section. */
14192 input_section->flags &= ~SEC_HAS_CONTENTS;
14193 }
14194
14195 /* Size has been set in _bfd_mips_elf_always_size_sections. */
14196 BFD_ASSERT(o->size == sizeof (Elf_External_ABIFlags_v0));
14197
14198 /* Skip this section later on (I don't think this currently
14199 matters, but someday it might). */
14200 o->map_head.link_order = NULL;
14201
14202 abiflags_sec = o;
14203 }
14204
14205 if (strcmp (o->name, ".reginfo") == 0)
14206 {
14207 memset (&reginfo, 0, sizeof reginfo);
14208
14209 /* We have found the .reginfo section in the output file.
14210 Look through all the link_orders comprising it and merge
14211 the information together. */
14212 for (p = o->map_head.link_order; p != NULL; p = p->next)
14213 {
14214 asection *input_section;
14215 bfd *input_bfd;
14216 Elf32_External_RegInfo ext;
14217 Elf32_RegInfo sub;
14218
14219 if (p->type != bfd_indirect_link_order)
14220 {
14221 if (p->type == bfd_data_link_order)
14222 continue;
14223 abort ();
14224 }
14225
14226 input_section = p->u.indirect.section;
14227 input_bfd = input_section->owner;
14228
14229 if (! bfd_get_section_contents (input_bfd, input_section,
14230 &ext, 0, sizeof ext))
14231 return FALSE;
14232
14233 bfd_mips_elf32_swap_reginfo_in (input_bfd, &ext, &sub);
14234
14235 reginfo.ri_gprmask |= sub.ri_gprmask;
14236 reginfo.ri_cprmask[0] |= sub.ri_cprmask[0];
14237 reginfo.ri_cprmask[1] |= sub.ri_cprmask[1];
14238 reginfo.ri_cprmask[2] |= sub.ri_cprmask[2];
14239 reginfo.ri_cprmask[3] |= sub.ri_cprmask[3];
14240
14241 /* ri_gp_value is set by the function
14242 mips_elf32_section_processing when the section is
14243 finally written out. */
14244
14245 /* Hack: reset the SEC_HAS_CONTENTS flag so that
14246 elf_link_input_bfd ignores this section. */
14247 input_section->flags &= ~SEC_HAS_CONTENTS;
14248 }
14249
14250 /* Size has been set in _bfd_mips_elf_always_size_sections. */
14251 BFD_ASSERT(o->size == sizeof (Elf32_External_RegInfo));
14252
14253 /* Skip this section later on (I don't think this currently
14254 matters, but someday it might). */
14255 o->map_head.link_order = NULL;
14256
14257 reginfo_sec = o;
14258 }
14259
14260 if (strcmp (o->name, ".mdebug") == 0)
14261 {
14262 struct extsym_info einfo;
14263 bfd_vma last;
14264
14265 /* We have found the .mdebug section in the output file.
14266 Look through all the link_orders comprising it and merge
14267 the information together. */
14268 symhdr->magic = swap->sym_magic;
14269 /* FIXME: What should the version stamp be? */
14270 symhdr->vstamp = 0;
14271 symhdr->ilineMax = 0;
14272 symhdr->cbLine = 0;
14273 symhdr->idnMax = 0;
14274 symhdr->ipdMax = 0;
14275 symhdr->isymMax = 0;
14276 symhdr->ioptMax = 0;
14277 symhdr->iauxMax = 0;
14278 symhdr->issMax = 0;
14279 symhdr->issExtMax = 0;
14280 symhdr->ifdMax = 0;
14281 symhdr->crfd = 0;
14282 symhdr->iextMax = 0;
14283
14284 /* We accumulate the debugging information itself in the
14285 debug_info structure. */
14286 debug.line = NULL;
14287 debug.external_dnr = NULL;
14288 debug.external_pdr = NULL;
14289 debug.external_sym = NULL;
14290 debug.external_opt = NULL;
14291 debug.external_aux = NULL;
14292 debug.ss = NULL;
14293 debug.ssext = debug.ssext_end = NULL;
14294 debug.external_fdr = NULL;
14295 debug.external_rfd = NULL;
14296 debug.external_ext = debug.external_ext_end = NULL;
14297
14298 mdebug_handle = bfd_ecoff_debug_init (abfd, &debug, swap, info);
14299 if (mdebug_handle == NULL)
14300 return FALSE;
14301
14302 esym.jmptbl = 0;
14303 esym.cobol_main = 0;
14304 esym.weakext = 0;
14305 esym.reserved = 0;
14306 esym.ifd = ifdNil;
14307 esym.asym.iss = issNil;
14308 esym.asym.st = stLocal;
14309 esym.asym.reserved = 0;
14310 esym.asym.index = indexNil;
14311 last = 0;
14312 for (i = 0; i < sizeof (secname) / sizeof (secname[0]); i++)
14313 {
14314 esym.asym.sc = sc[i];
14315 s = bfd_get_section_by_name (abfd, secname[i]);
14316 if (s != NULL)
14317 {
14318 esym.asym.value = s->vma;
14319 last = s->vma + s->size;
14320 }
14321 else
14322 esym.asym.value = last;
14323 if (!bfd_ecoff_debug_one_external (abfd, &debug, swap,
14324 secname[i], &esym))
14325 return FALSE;
14326 }
14327
14328 for (p = o->map_head.link_order; p != NULL; p = p->next)
14329 {
14330 asection *input_section;
14331 bfd *input_bfd;
14332 const struct ecoff_debug_swap *input_swap;
14333 struct ecoff_debug_info input_debug;
14334 char *eraw_src;
14335 char *eraw_end;
14336
14337 if (p->type != bfd_indirect_link_order)
14338 {
14339 if (p->type == bfd_data_link_order)
14340 continue;
14341 abort ();
14342 }
14343
14344 input_section = p->u.indirect.section;
14345 input_bfd = input_section->owner;
14346
14347 if (!is_mips_elf (input_bfd))
14348 {
14349 /* I don't know what a non MIPS ELF bfd would be
14350 doing with a .mdebug section, but I don't really
14351 want to deal with it. */
14352 continue;
14353 }
14354
14355 input_swap = (get_elf_backend_data (input_bfd)
14356 ->elf_backend_ecoff_debug_swap);
14357
14358 BFD_ASSERT (p->size == input_section->size);
14359
14360 /* The ECOFF linking code expects that we have already
14361 read in the debugging information and set up an
14362 ecoff_debug_info structure, so we do that now. */
14363 if (! _bfd_mips_elf_read_ecoff_info (input_bfd, input_section,
14364 &input_debug))
14365 return FALSE;
14366
14367 if (! (bfd_ecoff_debug_accumulate
14368 (mdebug_handle, abfd, &debug, swap, input_bfd,
14369 &input_debug, input_swap, info)))
14370 return FALSE;
14371
14372 /* Loop through the external symbols. For each one with
14373 interesting information, try to find the symbol in
14374 the linker global hash table and save the information
14375 for the output external symbols. */
14376 eraw_src = input_debug.external_ext;
14377 eraw_end = (eraw_src
14378 + (input_debug.symbolic_header.iextMax
14379 * input_swap->external_ext_size));
14380 for (;
14381 eraw_src < eraw_end;
14382 eraw_src += input_swap->external_ext_size)
14383 {
14384 EXTR ext;
14385 const char *name;
14386 struct mips_elf_link_hash_entry *h;
14387
14388 (*input_swap->swap_ext_in) (input_bfd, eraw_src, &ext);
14389 if (ext.asym.sc == scNil
14390 || ext.asym.sc == scUndefined
14391 || ext.asym.sc == scSUndefined)
14392 continue;
14393
14394 name = input_debug.ssext + ext.asym.iss;
14395 h = mips_elf_link_hash_lookup (mips_elf_hash_table (info),
14396 name, FALSE, FALSE, TRUE);
14397 if (h == NULL || h->esym.ifd != -2)
14398 continue;
14399
14400 if (ext.ifd != -1)
14401 {
14402 BFD_ASSERT (ext.ifd
14403 < input_debug.symbolic_header.ifdMax);
14404 ext.ifd = input_debug.ifdmap[ext.ifd];
14405 }
14406
14407 h->esym = ext;
14408 }
14409
14410 /* Free up the information we just read. */
14411 free (input_debug.line);
14412 free (input_debug.external_dnr);
14413 free (input_debug.external_pdr);
14414 free (input_debug.external_sym);
14415 free (input_debug.external_opt);
14416 free (input_debug.external_aux);
14417 free (input_debug.ss);
14418 free (input_debug.ssext);
14419 free (input_debug.external_fdr);
14420 free (input_debug.external_rfd);
14421 free (input_debug.external_ext);
14422
14423 /* Hack: reset the SEC_HAS_CONTENTS flag so that
14424 elf_link_input_bfd ignores this section. */
14425 input_section->flags &= ~SEC_HAS_CONTENTS;
14426 }
14427
14428 if (SGI_COMPAT (abfd) && info->shared)
14429 {
14430 /* Create .rtproc section. */
14431 rtproc_sec = bfd_get_linker_section (abfd, ".rtproc");
14432 if (rtproc_sec == NULL)
14433 {
14434 flagword flags = (SEC_HAS_CONTENTS | SEC_IN_MEMORY
14435 | SEC_LINKER_CREATED | SEC_READONLY);
14436
14437 rtproc_sec = bfd_make_section_anyway_with_flags (abfd,
14438 ".rtproc",
14439 flags);
14440 if (rtproc_sec == NULL
14441 || ! bfd_set_section_alignment (abfd, rtproc_sec, 4))
14442 return FALSE;
14443 }
14444
14445 if (! mips_elf_create_procedure_table (mdebug_handle, abfd,
14446 info, rtproc_sec,
14447 &debug))
14448 return FALSE;
14449 }
14450
14451 /* Build the external symbol information. */
14452 einfo.abfd = abfd;
14453 einfo.info = info;
14454 einfo.debug = &debug;
14455 einfo.swap = swap;
14456 einfo.failed = FALSE;
14457 mips_elf_link_hash_traverse (mips_elf_hash_table (info),
14458 mips_elf_output_extsym, &einfo);
14459 if (einfo.failed)
14460 return FALSE;
14461
14462 /* Set the size of the .mdebug section. */
14463 o->size = bfd_ecoff_debug_size (abfd, &debug, swap);
14464
14465 /* Skip this section later on (I don't think this currently
14466 matters, but someday it might). */
14467 o->map_head.link_order = NULL;
14468
14469 mdebug_sec = o;
14470 }
14471
14472 if (CONST_STRNEQ (o->name, ".gptab."))
14473 {
14474 const char *subname;
14475 unsigned int c;
14476 Elf32_gptab *tab;
14477 Elf32_External_gptab *ext_tab;
14478 unsigned int j;
14479
14480 /* The .gptab.sdata and .gptab.sbss sections hold
14481 information describing how the small data area would
14482 change depending upon the -G switch. These sections
14483 not used in executables files. */
14484 if (! info->relocatable)
14485 {
14486 for (p = o->map_head.link_order; p != NULL; p = p->next)
14487 {
14488 asection *input_section;
14489
14490 if (p->type != bfd_indirect_link_order)
14491 {
14492 if (p->type == bfd_data_link_order)
14493 continue;
14494 abort ();
14495 }
14496
14497 input_section = p->u.indirect.section;
14498
14499 /* Hack: reset the SEC_HAS_CONTENTS flag so that
14500 elf_link_input_bfd ignores this section. */
14501 input_section->flags &= ~SEC_HAS_CONTENTS;
14502 }
14503
14504 /* Skip this section later on (I don't think this
14505 currently matters, but someday it might). */
14506 o->map_head.link_order = NULL;
14507
14508 /* Really remove the section. */
14509 bfd_section_list_remove (abfd, o);
14510 --abfd->section_count;
14511
14512 continue;
14513 }
14514
14515 /* There is one gptab for initialized data, and one for
14516 uninitialized data. */
14517 if (strcmp (o->name, ".gptab.sdata") == 0)
14518 gptab_data_sec = o;
14519 else if (strcmp (o->name, ".gptab.sbss") == 0)
14520 gptab_bss_sec = o;
14521 else
14522 {
14523 (*_bfd_error_handler)
14524 (_("%s: illegal section name `%s'"),
14525 bfd_get_filename (abfd), o->name);
14526 bfd_set_error (bfd_error_nonrepresentable_section);
14527 return FALSE;
14528 }
14529
14530 /* The linker script always combines .gptab.data and
14531 .gptab.sdata into .gptab.sdata, and likewise for
14532 .gptab.bss and .gptab.sbss. It is possible that there is
14533 no .sdata or .sbss section in the output file, in which
14534 case we must change the name of the output section. */
14535 subname = o->name + sizeof ".gptab" - 1;
14536 if (bfd_get_section_by_name (abfd, subname) == NULL)
14537 {
14538 if (o == gptab_data_sec)
14539 o->name = ".gptab.data";
14540 else
14541 o->name = ".gptab.bss";
14542 subname = o->name + sizeof ".gptab" - 1;
14543 BFD_ASSERT (bfd_get_section_by_name (abfd, subname) != NULL);
14544 }
14545
14546 /* Set up the first entry. */
14547 c = 1;
14548 amt = c * sizeof (Elf32_gptab);
14549 tab = bfd_malloc (amt);
14550 if (tab == NULL)
14551 return FALSE;
14552 tab[0].gt_header.gt_current_g_value = elf_gp_size (abfd);
14553 tab[0].gt_header.gt_unused = 0;
14554
14555 /* Combine the input sections. */
14556 for (p = o->map_head.link_order; p != NULL; p = p->next)
14557 {
14558 asection *input_section;
14559 bfd *input_bfd;
14560 bfd_size_type size;
14561 unsigned long last;
14562 bfd_size_type gpentry;
14563
14564 if (p->type != bfd_indirect_link_order)
14565 {
14566 if (p->type == bfd_data_link_order)
14567 continue;
14568 abort ();
14569 }
14570
14571 input_section = p->u.indirect.section;
14572 input_bfd = input_section->owner;
14573
14574 /* Combine the gptab entries for this input section one
14575 by one. We know that the input gptab entries are
14576 sorted by ascending -G value. */
14577 size = input_section->size;
14578 last = 0;
14579 for (gpentry = sizeof (Elf32_External_gptab);
14580 gpentry < size;
14581 gpentry += sizeof (Elf32_External_gptab))
14582 {
14583 Elf32_External_gptab ext_gptab;
14584 Elf32_gptab int_gptab;
14585 unsigned long val;
14586 unsigned long add;
14587 bfd_boolean exact;
14588 unsigned int look;
14589
14590 if (! (bfd_get_section_contents
14591 (input_bfd, input_section, &ext_gptab, gpentry,
14592 sizeof (Elf32_External_gptab))))
14593 {
14594 free (tab);
14595 return FALSE;
14596 }
14597
14598 bfd_mips_elf32_swap_gptab_in (input_bfd, &ext_gptab,
14599 &int_gptab);
14600 val = int_gptab.gt_entry.gt_g_value;
14601 add = int_gptab.gt_entry.gt_bytes - last;
14602
14603 exact = FALSE;
14604 for (look = 1; look < c; look++)
14605 {
14606 if (tab[look].gt_entry.gt_g_value >= val)
14607 tab[look].gt_entry.gt_bytes += add;
14608
14609 if (tab[look].gt_entry.gt_g_value == val)
14610 exact = TRUE;
14611 }
14612
14613 if (! exact)
14614 {
14615 Elf32_gptab *new_tab;
14616 unsigned int max;
14617
14618 /* We need a new table entry. */
14619 amt = (bfd_size_type) (c + 1) * sizeof (Elf32_gptab);
14620 new_tab = bfd_realloc (tab, amt);
14621 if (new_tab == NULL)
14622 {
14623 free (tab);
14624 return FALSE;
14625 }
14626 tab = new_tab;
14627 tab[c].gt_entry.gt_g_value = val;
14628 tab[c].gt_entry.gt_bytes = add;
14629
14630 /* Merge in the size for the next smallest -G
14631 value, since that will be implied by this new
14632 value. */
14633 max = 0;
14634 for (look = 1; look < c; look++)
14635 {
14636 if (tab[look].gt_entry.gt_g_value < val
14637 && (max == 0
14638 || (tab[look].gt_entry.gt_g_value
14639 > tab[max].gt_entry.gt_g_value)))
14640 max = look;
14641 }
14642 if (max != 0)
14643 tab[c].gt_entry.gt_bytes +=
14644 tab[max].gt_entry.gt_bytes;
14645
14646 ++c;
14647 }
14648
14649 last = int_gptab.gt_entry.gt_bytes;
14650 }
14651
14652 /* Hack: reset the SEC_HAS_CONTENTS flag so that
14653 elf_link_input_bfd ignores this section. */
14654 input_section->flags &= ~SEC_HAS_CONTENTS;
14655 }
14656
14657 /* The table must be sorted by -G value. */
14658 if (c > 2)
14659 qsort (tab + 1, c - 1, sizeof (tab[0]), gptab_compare);
14660
14661 /* Swap out the table. */
14662 amt = (bfd_size_type) c * sizeof (Elf32_External_gptab);
14663 ext_tab = bfd_alloc (abfd, amt);
14664 if (ext_tab == NULL)
14665 {
14666 free (tab);
14667 return FALSE;
14668 }
14669
14670 for (j = 0; j < c; j++)
14671 bfd_mips_elf32_swap_gptab_out (abfd, tab + j, ext_tab + j);
14672 free (tab);
14673
14674 o->size = c * sizeof (Elf32_External_gptab);
14675 o->contents = (bfd_byte *) ext_tab;
14676
14677 /* Skip this section later on (I don't think this currently
14678 matters, but someday it might). */
14679 o->map_head.link_order = NULL;
14680 }
14681 }
14682
14683 /* Invoke the regular ELF backend linker to do all the work. */
14684 if (!bfd_elf_final_link (abfd, info))
14685 return FALSE;
14686
14687 /* Now write out the computed sections. */
14688
14689 if (abiflags_sec != NULL)
14690 {
14691 Elf_External_ABIFlags_v0 ext;
14692 Elf_Internal_ABIFlags_v0 *abiflags;
14693
14694 abiflags = &mips_elf_tdata (abfd)->abiflags;
14695
14696 /* Set up the abiflags if no valid input sections were found. */
14697 if (!mips_elf_tdata (abfd)->abiflags_valid)
14698 {
14699 infer_mips_abiflags (abfd, abiflags);
14700 mips_elf_tdata (abfd)->abiflags_valid = TRUE;
14701 }
14702 bfd_mips_elf_swap_abiflags_v0_out (abfd, abiflags, &ext);
14703 if (! bfd_set_section_contents (abfd, abiflags_sec, &ext, 0, sizeof ext))
14704 return FALSE;
14705 }
14706
14707 if (reginfo_sec != NULL)
14708 {
14709 Elf32_External_RegInfo ext;
14710
14711 bfd_mips_elf32_swap_reginfo_out (abfd, &reginfo, &ext);
14712 if (! bfd_set_section_contents (abfd, reginfo_sec, &ext, 0, sizeof ext))
14713 return FALSE;
14714 }
14715
14716 if (mdebug_sec != NULL)
14717 {
14718 BFD_ASSERT (abfd->output_has_begun);
14719 if (! bfd_ecoff_write_accumulated_debug (mdebug_handle, abfd, &debug,
14720 swap, info,
14721 mdebug_sec->filepos))
14722 return FALSE;
14723
14724 bfd_ecoff_debug_free (mdebug_handle, abfd, &debug, swap, info);
14725 }
14726
14727 if (gptab_data_sec != NULL)
14728 {
14729 if (! bfd_set_section_contents (abfd, gptab_data_sec,
14730 gptab_data_sec->contents,
14731 0, gptab_data_sec->size))
14732 return FALSE;
14733 }
14734
14735 if (gptab_bss_sec != NULL)
14736 {
14737 if (! bfd_set_section_contents (abfd, gptab_bss_sec,
14738 gptab_bss_sec->contents,
14739 0, gptab_bss_sec->size))
14740 return FALSE;
14741 }
14742
14743 if (SGI_COMPAT (abfd))
14744 {
14745 rtproc_sec = bfd_get_section_by_name (abfd, ".rtproc");
14746 if (rtproc_sec != NULL)
14747 {
14748 if (! bfd_set_section_contents (abfd, rtproc_sec,
14749 rtproc_sec->contents,
14750 0, rtproc_sec->size))
14751 return FALSE;
14752 }
14753 }
14754
14755 return TRUE;
14756 }
14757 \f
14758 /* Structure for saying that BFD machine EXTENSION extends BASE. */
14759
14760 struct mips_mach_extension
14761 {
14762 unsigned long extension, base;
14763 };
14764
14765
14766 /* An array describing how BFD machines relate to one another. The entries
14767 are ordered topologically with MIPS I extensions listed last. */
14768
14769 static const struct mips_mach_extension mips_mach_extensions[] =
14770 {
14771 /* MIPS64r2 extensions. */
14772 { bfd_mach_mips_octeon3, bfd_mach_mips_octeon2 },
14773 { bfd_mach_mips_octeon2, bfd_mach_mips_octeonp },
14774 { bfd_mach_mips_octeonp, bfd_mach_mips_octeon },
14775 { bfd_mach_mips_octeon, bfd_mach_mipsisa64r2 },
14776 { bfd_mach_mips_loongson_3a, bfd_mach_mipsisa64r2 },
14777
14778 /* MIPS64 extensions. */
14779 { bfd_mach_mipsisa64r2, bfd_mach_mipsisa64 },
14780 { bfd_mach_mips_sb1, bfd_mach_mipsisa64 },
14781 { bfd_mach_mips_xlr, bfd_mach_mipsisa64 },
14782
14783 /* MIPS V extensions. */
14784 { bfd_mach_mipsisa64, bfd_mach_mips5 },
14785
14786 /* R10000 extensions. */
14787 { bfd_mach_mips12000, bfd_mach_mips10000 },
14788 { bfd_mach_mips14000, bfd_mach_mips10000 },
14789 { bfd_mach_mips16000, bfd_mach_mips10000 },
14790
14791 /* R5000 extensions. Note: the vr5500 ISA is an extension of the core
14792 vr5400 ISA, but doesn't include the multimedia stuff. It seems
14793 better to allow vr5400 and vr5500 code to be merged anyway, since
14794 many libraries will just use the core ISA. Perhaps we could add
14795 some sort of ASE flag if this ever proves a problem. */
14796 { bfd_mach_mips5500, bfd_mach_mips5400 },
14797 { bfd_mach_mips5400, bfd_mach_mips5000 },
14798
14799 /* MIPS IV extensions. */
14800 { bfd_mach_mips5, bfd_mach_mips8000 },
14801 { bfd_mach_mips10000, bfd_mach_mips8000 },
14802 { bfd_mach_mips5000, bfd_mach_mips8000 },
14803 { bfd_mach_mips7000, bfd_mach_mips8000 },
14804 { bfd_mach_mips9000, bfd_mach_mips8000 },
14805
14806 /* VR4100 extensions. */
14807 { bfd_mach_mips4120, bfd_mach_mips4100 },
14808 { bfd_mach_mips4111, bfd_mach_mips4100 },
14809
14810 /* MIPS III extensions. */
14811 { bfd_mach_mips_loongson_2e, bfd_mach_mips4000 },
14812 { bfd_mach_mips_loongson_2f, bfd_mach_mips4000 },
14813 { bfd_mach_mips8000, bfd_mach_mips4000 },
14814 { bfd_mach_mips4650, bfd_mach_mips4000 },
14815 { bfd_mach_mips4600, bfd_mach_mips4000 },
14816 { bfd_mach_mips4400, bfd_mach_mips4000 },
14817 { bfd_mach_mips4300, bfd_mach_mips4000 },
14818 { bfd_mach_mips4100, bfd_mach_mips4000 },
14819 { bfd_mach_mips4010, bfd_mach_mips4000 },
14820 { bfd_mach_mips5900, bfd_mach_mips4000 },
14821
14822 /* MIPS32 extensions. */
14823 { bfd_mach_mipsisa32r2, bfd_mach_mipsisa32 },
14824
14825 /* MIPS II extensions. */
14826 { bfd_mach_mips4000, bfd_mach_mips6000 },
14827 { bfd_mach_mipsisa32, bfd_mach_mips6000 },
14828
14829 /* MIPS I extensions. */
14830 { bfd_mach_mips6000, bfd_mach_mips3000 },
14831 { bfd_mach_mips3900, bfd_mach_mips3000 }
14832 };
14833
14834
14835 /* Return true if bfd machine EXTENSION is an extension of machine BASE. */
14836
14837 static bfd_boolean
14838 mips_mach_extends_p (unsigned long base, unsigned long extension)
14839 {
14840 size_t i;
14841
14842 if (extension == base)
14843 return TRUE;
14844
14845 if (base == bfd_mach_mipsisa32
14846 && mips_mach_extends_p (bfd_mach_mipsisa64, extension))
14847 return TRUE;
14848
14849 if (base == bfd_mach_mipsisa32r2
14850 && mips_mach_extends_p (bfd_mach_mipsisa64r2, extension))
14851 return TRUE;
14852
14853 for (i = 0; i < ARRAY_SIZE (mips_mach_extensions); i++)
14854 if (extension == mips_mach_extensions[i].extension)
14855 {
14856 extension = mips_mach_extensions[i].base;
14857 if (extension == base)
14858 return TRUE;
14859 }
14860
14861 return FALSE;
14862 }
14863
14864
14865 /* Merge object attributes from IBFD into OBFD. Raise an error if
14866 there are conflicting attributes. */
14867 static bfd_boolean
14868 mips_elf_merge_obj_attributes (bfd *ibfd, bfd *obfd)
14869 {
14870 obj_attribute *in_attr;
14871 obj_attribute *out_attr;
14872 bfd *abi_fp_bfd;
14873 bfd *abi_msa_bfd;
14874
14875 abi_fp_bfd = mips_elf_tdata (obfd)->abi_fp_bfd;
14876 in_attr = elf_known_obj_attributes (ibfd)[OBJ_ATTR_GNU];
14877 if (!abi_fp_bfd && in_attr[Tag_GNU_MIPS_ABI_FP].i != Val_GNU_MIPS_ABI_FP_ANY)
14878 mips_elf_tdata (obfd)->abi_fp_bfd = ibfd;
14879
14880 abi_msa_bfd = mips_elf_tdata (obfd)->abi_msa_bfd;
14881 if (!abi_msa_bfd
14882 && in_attr[Tag_GNU_MIPS_ABI_MSA].i != Val_GNU_MIPS_ABI_MSA_ANY)
14883 mips_elf_tdata (obfd)->abi_msa_bfd = ibfd;
14884
14885 if (!elf_known_obj_attributes_proc (obfd)[0].i)
14886 {
14887 /* This is the first object. Copy the attributes. */
14888 _bfd_elf_copy_obj_attributes (ibfd, obfd);
14889
14890 /* Use the Tag_null value to indicate the attributes have been
14891 initialized. */
14892 elf_known_obj_attributes_proc (obfd)[0].i = 1;
14893
14894 return TRUE;
14895 }
14896
14897 /* Check for conflicting Tag_GNU_MIPS_ABI_FP attributes and merge
14898 non-conflicting ones. */
14899 out_attr = elf_known_obj_attributes (obfd)[OBJ_ATTR_GNU];
14900 if (in_attr[Tag_GNU_MIPS_ABI_FP].i != out_attr[Tag_GNU_MIPS_ABI_FP].i)
14901 {
14902 int out_fp, in_fp;
14903
14904 out_fp = out_attr[Tag_GNU_MIPS_ABI_FP].i;
14905 in_fp = in_attr[Tag_GNU_MIPS_ABI_FP].i;
14906 out_attr[Tag_GNU_MIPS_ABI_FP].type = 1;
14907 if (out_fp == Val_GNU_MIPS_ABI_FP_ANY)
14908 out_attr[Tag_GNU_MIPS_ABI_FP].i = in_fp;
14909 else if (out_fp == Val_GNU_MIPS_ABI_FP_XX
14910 && (in_fp == Val_GNU_MIPS_ABI_FP_DOUBLE
14911 || in_fp == Val_GNU_MIPS_ABI_FP_64
14912 || in_fp == Val_GNU_MIPS_ABI_FP_64A))
14913 {
14914 mips_elf_tdata (obfd)->abi_fp_bfd = ibfd;
14915 out_attr[Tag_GNU_MIPS_ABI_FP].i = in_attr[Tag_GNU_MIPS_ABI_FP].i;
14916 }
14917 else if (in_fp == Val_GNU_MIPS_ABI_FP_XX
14918 && (out_fp == Val_GNU_MIPS_ABI_FP_DOUBLE
14919 || out_fp == Val_GNU_MIPS_ABI_FP_64
14920 || out_fp == Val_GNU_MIPS_ABI_FP_64A))
14921 /* Keep the current setting. */;
14922 else if (out_fp == Val_GNU_MIPS_ABI_FP_64A
14923 && in_fp == Val_GNU_MIPS_ABI_FP_64)
14924 {
14925 mips_elf_tdata (obfd)->abi_fp_bfd = ibfd;
14926 out_attr[Tag_GNU_MIPS_ABI_FP].i = in_attr[Tag_GNU_MIPS_ABI_FP].i;
14927 }
14928 else if (in_fp == Val_GNU_MIPS_ABI_FP_64A
14929 && out_fp == Val_GNU_MIPS_ABI_FP_64)
14930 /* Keep the current setting. */;
14931 else if (in_fp != Val_GNU_MIPS_ABI_FP_ANY)
14932 {
14933 const char *out_string, *in_string;
14934
14935 out_string = _bfd_mips_fp_abi_string (out_fp);
14936 in_string = _bfd_mips_fp_abi_string (in_fp);
14937 /* First warn about cases involving unrecognised ABIs. */
14938 if (!out_string && !in_string)
14939 _bfd_error_handler
14940 (_("Warning: %B uses unknown floating point ABI %d "
14941 "(set by %B), %B uses unknown floating point ABI %d"),
14942 obfd, abi_fp_bfd, ibfd, out_fp, in_fp);
14943 else if (!out_string)
14944 _bfd_error_handler
14945 (_("Warning: %B uses unknown floating point ABI %d "
14946 "(set by %B), %B uses %s"),
14947 obfd, abi_fp_bfd, ibfd, out_fp, in_string);
14948 else if (!in_string)
14949 _bfd_error_handler
14950 (_("Warning: %B uses %s (set by %B), "
14951 "%B uses unknown floating point ABI %d"),
14952 obfd, abi_fp_bfd, ibfd, out_string, in_fp);
14953 else
14954 {
14955 /* If one of the bfds is soft-float, the other must be
14956 hard-float. The exact choice of hard-float ABI isn't
14957 really relevant to the error message. */
14958 if (in_fp == Val_GNU_MIPS_ABI_FP_SOFT)
14959 out_string = "-mhard-float";
14960 else if (out_fp == Val_GNU_MIPS_ABI_FP_SOFT)
14961 in_string = "-mhard-float";
14962 _bfd_error_handler
14963 (_("Warning: %B uses %s (set by %B), %B uses %s"),
14964 obfd, abi_fp_bfd, ibfd, out_string, in_string);
14965 }
14966 }
14967 }
14968
14969 /* Check for conflicting Tag_GNU_MIPS_ABI_MSA attributes and merge
14970 non-conflicting ones. */
14971 if (in_attr[Tag_GNU_MIPS_ABI_MSA].i != out_attr[Tag_GNU_MIPS_ABI_MSA].i)
14972 {
14973 out_attr[Tag_GNU_MIPS_ABI_MSA].type = 1;
14974 if (out_attr[Tag_GNU_MIPS_ABI_MSA].i == Val_GNU_MIPS_ABI_MSA_ANY)
14975 out_attr[Tag_GNU_MIPS_ABI_MSA].i = in_attr[Tag_GNU_MIPS_ABI_MSA].i;
14976 else if (in_attr[Tag_GNU_MIPS_ABI_MSA].i != Val_GNU_MIPS_ABI_MSA_ANY)
14977 switch (out_attr[Tag_GNU_MIPS_ABI_MSA].i)
14978 {
14979 case Val_GNU_MIPS_ABI_MSA_128:
14980 _bfd_error_handler
14981 (_("Warning: %B uses %s (set by %B), "
14982 "%B uses unknown MSA ABI %d"),
14983 obfd, abi_msa_bfd, ibfd,
14984 "-mmsa", in_attr[Tag_GNU_MIPS_ABI_MSA].i);
14985 break;
14986
14987 default:
14988 switch (in_attr[Tag_GNU_MIPS_ABI_MSA].i)
14989 {
14990 case Val_GNU_MIPS_ABI_MSA_128:
14991 _bfd_error_handler
14992 (_("Warning: %B uses unknown MSA ABI %d "
14993 "(set by %B), %B uses %s"),
14994 obfd, abi_msa_bfd, ibfd,
14995 out_attr[Tag_GNU_MIPS_ABI_MSA].i, "-mmsa");
14996 break;
14997
14998 default:
14999 _bfd_error_handler
15000 (_("Warning: %B uses unknown MSA ABI %d "
15001 "(set by %B), %B uses unknown MSA ABI %d"),
15002 obfd, abi_msa_bfd, ibfd,
15003 out_attr[Tag_GNU_MIPS_ABI_MSA].i,
15004 in_attr[Tag_GNU_MIPS_ABI_MSA].i);
15005 break;
15006 }
15007 }
15008 }
15009
15010 /* Merge Tag_compatibility attributes and any common GNU ones. */
15011 _bfd_elf_merge_object_attributes (ibfd, obfd);
15012
15013 return TRUE;
15014 }
15015
15016 /* Merge backend specific data from an object file to the output
15017 object file when linking. */
15018
15019 bfd_boolean
15020 _bfd_mips_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
15021 {
15022 flagword old_flags;
15023 flagword new_flags;
15024 bfd_boolean ok;
15025 bfd_boolean null_input_bfd = TRUE;
15026 asection *sec;
15027 obj_attribute *out_attr;
15028
15029 /* Check if we have the same endianness. */
15030 if (! _bfd_generic_verify_endian_match (ibfd, obfd))
15031 {
15032 (*_bfd_error_handler)
15033 (_("%B: endianness incompatible with that of the selected emulation"),
15034 ibfd);
15035 return FALSE;
15036 }
15037
15038 if (!is_mips_elf (ibfd) || !is_mips_elf (obfd))
15039 return TRUE;
15040
15041 if (strcmp (bfd_get_target (ibfd), bfd_get_target (obfd)) != 0)
15042 {
15043 (*_bfd_error_handler)
15044 (_("%B: ABI is incompatible with that of the selected emulation"),
15045 ibfd);
15046 return FALSE;
15047 }
15048
15049 /* Set up the FP ABI attribute from the abiflags if it is not already
15050 set. */
15051 if (mips_elf_tdata (ibfd)->abiflags_valid)
15052 {
15053 obj_attribute *in_attr = elf_known_obj_attributes (ibfd)[OBJ_ATTR_GNU];
15054 if (in_attr[Tag_GNU_MIPS_ABI_FP].i == Val_GNU_MIPS_ABI_FP_ANY)
15055 in_attr[Tag_GNU_MIPS_ABI_FP].i =
15056 mips_elf_tdata (ibfd)->abiflags.fp_abi;
15057 }
15058
15059 if (!mips_elf_merge_obj_attributes (ibfd, obfd))
15060 return FALSE;
15061
15062 /* Check to see if the input BFD actually contains any sections.
15063 If not, its flags may not have been initialised either, but it cannot
15064 actually cause any incompatibility. */
15065 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
15066 {
15067 /* Ignore synthetic sections and empty .text, .data and .bss sections
15068 which are automatically generated by gas. Also ignore fake
15069 (s)common sections, since merely defining a common symbol does
15070 not affect compatibility. */
15071 if ((sec->flags & SEC_IS_COMMON) == 0
15072 && strcmp (sec->name, ".reginfo")
15073 && strcmp (sec->name, ".mdebug")
15074 && (sec->size != 0
15075 || (strcmp (sec->name, ".text")
15076 && strcmp (sec->name, ".data")
15077 && strcmp (sec->name, ".bss"))))
15078 {
15079 null_input_bfd = FALSE;
15080 break;
15081 }
15082 }
15083 if (null_input_bfd)
15084 return TRUE;
15085
15086 /* Populate abiflags using existing information. */
15087 if (!mips_elf_tdata (ibfd)->abiflags_valid)
15088 {
15089 infer_mips_abiflags (ibfd, &mips_elf_tdata (ibfd)->abiflags);
15090 mips_elf_tdata (ibfd)->abiflags_valid = TRUE;
15091 }
15092 else
15093 {
15094 Elf_Internal_ABIFlags_v0 abiflags;
15095 Elf_Internal_ABIFlags_v0 in_abiflags;
15096 infer_mips_abiflags (ibfd, &abiflags);
15097 in_abiflags = mips_elf_tdata (ibfd)->abiflags;
15098
15099 /* It is not possible to infer the correct ISA revision
15100 for R3 or R5 so drop down to R2 for the checks. */
15101 if (in_abiflags.isa_rev == 3 || in_abiflags.isa_rev == 5)
15102 in_abiflags.isa_rev = 2;
15103
15104 if (in_abiflags.isa_level != abiflags.isa_level
15105 || in_abiflags.isa_rev != abiflags.isa_rev
15106 || in_abiflags.isa_ext != abiflags.isa_ext)
15107 (*_bfd_error_handler)
15108 (_("%B: warning: Inconsistent ISA between e_flags and "
15109 ".MIPS.abiflags"), ibfd);
15110 if (abiflags.fp_abi != Val_GNU_MIPS_ABI_FP_ANY
15111 && in_abiflags.fp_abi != abiflags.fp_abi)
15112 (*_bfd_error_handler)
15113 (_("%B: warning: Inconsistent FP ABI between e_flags and "
15114 ".MIPS.abiflags"), ibfd);
15115 if ((in_abiflags.ases & abiflags.ases) != abiflags.ases)
15116 (*_bfd_error_handler)
15117 (_("%B: warning: Inconsistent ASEs between e_flags and "
15118 ".MIPS.abiflags"), ibfd);
15119 if (in_abiflags.isa_ext != abiflags.isa_ext)
15120 (*_bfd_error_handler)
15121 (_("%B: warning: Inconsistent ISA extensions between e_flags and "
15122 ".MIPS.abiflags"), ibfd);
15123 if (in_abiflags.flags2 != 0)
15124 (*_bfd_error_handler)
15125 (_("%B: warning: Unexpected flag in the flags2 field of "
15126 ".MIPS.abiflags (0x%lx)"), ibfd,
15127 (unsigned long) in_abiflags.flags2);
15128 }
15129
15130 if (!mips_elf_tdata (obfd)->abiflags_valid)
15131 {
15132 /* Copy input abiflags if output abiflags are not already valid. */
15133 mips_elf_tdata (obfd)->abiflags = mips_elf_tdata (ibfd)->abiflags;
15134 mips_elf_tdata (obfd)->abiflags_valid = TRUE;
15135 }
15136
15137 if (! elf_flags_init (obfd))
15138 {
15139 elf_flags_init (obfd) = TRUE;
15140 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
15141 elf_elfheader (obfd)->e_ident[EI_CLASS]
15142 = elf_elfheader (ibfd)->e_ident[EI_CLASS];
15143
15144 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
15145 && (bfd_get_arch_info (obfd)->the_default
15146 || mips_mach_extends_p (bfd_get_mach (obfd),
15147 bfd_get_mach (ibfd))))
15148 {
15149 if (! bfd_set_arch_mach (obfd, bfd_get_arch (ibfd),
15150 bfd_get_mach (ibfd)))
15151 return FALSE;
15152
15153 /* Update the ABI flags isa_level, isa_rev and isa_ext fields. */
15154 update_mips_abiflags_isa (obfd, &mips_elf_tdata (obfd)->abiflags);
15155 }
15156
15157 return TRUE;
15158 }
15159
15160 /* Update the output abiflags fp_abi using the computed fp_abi. */
15161 out_attr = elf_known_obj_attributes (obfd)[OBJ_ATTR_GNU];
15162 mips_elf_tdata (obfd)->abiflags.fp_abi = out_attr[Tag_GNU_MIPS_ABI_FP].i;
15163
15164 #define max(a,b) ((a) > (b) ? (a) : (b))
15165 /* Merge abiflags. */
15166 mips_elf_tdata (obfd)->abiflags.isa_rev
15167 = max (mips_elf_tdata (obfd)->abiflags.isa_rev,
15168 mips_elf_tdata (ibfd)->abiflags.isa_rev);
15169 mips_elf_tdata (obfd)->abiflags.gpr_size
15170 = max (mips_elf_tdata (obfd)->abiflags.gpr_size,
15171 mips_elf_tdata (ibfd)->abiflags.gpr_size);
15172 mips_elf_tdata (obfd)->abiflags.cpr1_size
15173 = max (mips_elf_tdata (obfd)->abiflags.cpr1_size,
15174 mips_elf_tdata (ibfd)->abiflags.cpr1_size);
15175 mips_elf_tdata (obfd)->abiflags.cpr2_size
15176 = max (mips_elf_tdata (obfd)->abiflags.cpr2_size,
15177 mips_elf_tdata (ibfd)->abiflags.cpr2_size);
15178 #undef max
15179 mips_elf_tdata (obfd)->abiflags.ases
15180 |= mips_elf_tdata (ibfd)->abiflags.ases;
15181 mips_elf_tdata (obfd)->abiflags.flags1
15182 |= mips_elf_tdata (ibfd)->abiflags.flags1;
15183
15184 new_flags = elf_elfheader (ibfd)->e_flags;
15185 elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_NOREORDER;
15186 old_flags = elf_elfheader (obfd)->e_flags;
15187
15188 /* Check flag compatibility. */
15189
15190 new_flags &= ~EF_MIPS_NOREORDER;
15191 old_flags &= ~EF_MIPS_NOREORDER;
15192
15193 /* Some IRIX 6 BSD-compatibility objects have this bit set. It
15194 doesn't seem to matter. */
15195 new_flags &= ~EF_MIPS_XGOT;
15196 old_flags &= ~EF_MIPS_XGOT;
15197
15198 /* MIPSpro generates ucode info in n64 objects. Again, we should
15199 just be able to ignore this. */
15200 new_flags &= ~EF_MIPS_UCODE;
15201 old_flags &= ~EF_MIPS_UCODE;
15202
15203 /* DSOs should only be linked with CPIC code. */
15204 if ((ibfd->flags & DYNAMIC) != 0)
15205 new_flags |= EF_MIPS_PIC | EF_MIPS_CPIC;
15206
15207 if (new_flags == old_flags)
15208 return TRUE;
15209
15210 ok = TRUE;
15211
15212 if (((new_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) != 0)
15213 != ((old_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) != 0))
15214 {
15215 (*_bfd_error_handler)
15216 (_("%B: warning: linking abicalls files with non-abicalls files"),
15217 ibfd);
15218 ok = TRUE;
15219 }
15220
15221 if (new_flags & (EF_MIPS_PIC | EF_MIPS_CPIC))
15222 elf_elfheader (obfd)->e_flags |= EF_MIPS_CPIC;
15223 if (! (new_flags & EF_MIPS_PIC))
15224 elf_elfheader (obfd)->e_flags &= ~EF_MIPS_PIC;
15225
15226 new_flags &= ~ (EF_MIPS_PIC | EF_MIPS_CPIC);
15227 old_flags &= ~ (EF_MIPS_PIC | EF_MIPS_CPIC);
15228
15229 /* Compare the ISAs. */
15230 if (mips_32bit_flags_p (old_flags) != mips_32bit_flags_p (new_flags))
15231 {
15232 (*_bfd_error_handler)
15233 (_("%B: linking 32-bit code with 64-bit code"),
15234 ibfd);
15235 ok = FALSE;
15236 }
15237 else if (!mips_mach_extends_p (bfd_get_mach (ibfd), bfd_get_mach (obfd)))
15238 {
15239 /* OBFD's ISA isn't the same as, or an extension of, IBFD's. */
15240 if (mips_mach_extends_p (bfd_get_mach (obfd), bfd_get_mach (ibfd)))
15241 {
15242 /* Copy the architecture info from IBFD to OBFD. Also copy
15243 the 32-bit flag (if set) so that we continue to recognise
15244 OBFD as a 32-bit binary. */
15245 bfd_set_arch_info (obfd, bfd_get_arch_info (ibfd));
15246 elf_elfheader (obfd)->e_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH);
15247 elf_elfheader (obfd)->e_flags
15248 |= new_flags & (EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
15249
15250 /* Update the ABI flags isa_level, isa_rev, isa_ext fields. */
15251 update_mips_abiflags_isa (obfd, &mips_elf_tdata (obfd)->abiflags);
15252
15253 /* Copy across the ABI flags if OBFD doesn't use them
15254 and if that was what caused us to treat IBFD as 32-bit. */
15255 if ((old_flags & EF_MIPS_ABI) == 0
15256 && mips_32bit_flags_p (new_flags)
15257 && !mips_32bit_flags_p (new_flags & ~EF_MIPS_ABI))
15258 elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_ABI;
15259 }
15260 else
15261 {
15262 /* The ISAs aren't compatible. */
15263 (*_bfd_error_handler)
15264 (_("%B: linking %s module with previous %s modules"),
15265 ibfd,
15266 bfd_printable_name (ibfd),
15267 bfd_printable_name (obfd));
15268 ok = FALSE;
15269 }
15270 }
15271
15272 new_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
15273 old_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
15274
15275 /* Compare ABIs. The 64-bit ABI does not use EF_MIPS_ABI. But, it
15276 does set EI_CLASS differently from any 32-bit ABI. */
15277 if ((new_flags & EF_MIPS_ABI) != (old_flags & EF_MIPS_ABI)
15278 || (elf_elfheader (ibfd)->e_ident[EI_CLASS]
15279 != elf_elfheader (obfd)->e_ident[EI_CLASS]))
15280 {
15281 /* Only error if both are set (to different values). */
15282 if (((new_flags & EF_MIPS_ABI) && (old_flags & EF_MIPS_ABI))
15283 || (elf_elfheader (ibfd)->e_ident[EI_CLASS]
15284 != elf_elfheader (obfd)->e_ident[EI_CLASS]))
15285 {
15286 (*_bfd_error_handler)
15287 (_("%B: ABI mismatch: linking %s module with previous %s modules"),
15288 ibfd,
15289 elf_mips_abi_name (ibfd),
15290 elf_mips_abi_name (obfd));
15291 ok = FALSE;
15292 }
15293 new_flags &= ~EF_MIPS_ABI;
15294 old_flags &= ~EF_MIPS_ABI;
15295 }
15296
15297 /* Compare ASEs. Forbid linking MIPS16 and microMIPS ASE modules together
15298 and allow arbitrary mixing of the remaining ASEs (retain the union). */
15299 if ((new_flags & EF_MIPS_ARCH_ASE) != (old_flags & EF_MIPS_ARCH_ASE))
15300 {
15301 int old_micro = old_flags & EF_MIPS_ARCH_ASE_MICROMIPS;
15302 int new_micro = new_flags & EF_MIPS_ARCH_ASE_MICROMIPS;
15303 int old_m16 = old_flags & EF_MIPS_ARCH_ASE_M16;
15304 int new_m16 = new_flags & EF_MIPS_ARCH_ASE_M16;
15305 int micro_mis = old_m16 && new_micro;
15306 int m16_mis = old_micro && new_m16;
15307
15308 if (m16_mis || micro_mis)
15309 {
15310 (*_bfd_error_handler)
15311 (_("%B: ASE mismatch: linking %s module with previous %s modules"),
15312 ibfd,
15313 m16_mis ? "MIPS16" : "microMIPS",
15314 m16_mis ? "microMIPS" : "MIPS16");
15315 ok = FALSE;
15316 }
15317
15318 elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_ARCH_ASE;
15319
15320 new_flags &= ~ EF_MIPS_ARCH_ASE;
15321 old_flags &= ~ EF_MIPS_ARCH_ASE;
15322 }
15323
15324 /* Compare NaN encodings. */
15325 if ((new_flags & EF_MIPS_NAN2008) != (old_flags & EF_MIPS_NAN2008))
15326 {
15327 _bfd_error_handler (_("%B: linking %s module with previous %s modules"),
15328 ibfd,
15329 (new_flags & EF_MIPS_NAN2008
15330 ? "-mnan=2008" : "-mnan=legacy"),
15331 (old_flags & EF_MIPS_NAN2008
15332 ? "-mnan=2008" : "-mnan=legacy"));
15333 ok = FALSE;
15334 new_flags &= ~EF_MIPS_NAN2008;
15335 old_flags &= ~EF_MIPS_NAN2008;
15336 }
15337
15338 /* Compare FP64 state. */
15339 if ((new_flags & EF_MIPS_FP64) != (old_flags & EF_MIPS_FP64))
15340 {
15341 _bfd_error_handler (_("%B: linking %s module with previous %s modules"),
15342 ibfd,
15343 (new_flags & EF_MIPS_FP64
15344 ? "-mfp64" : "-mfp32"),
15345 (old_flags & EF_MIPS_FP64
15346 ? "-mfp64" : "-mfp32"));
15347 ok = FALSE;
15348 new_flags &= ~EF_MIPS_FP64;
15349 old_flags &= ~EF_MIPS_FP64;
15350 }
15351
15352 /* Warn about any other mismatches */
15353 if (new_flags != old_flags)
15354 {
15355 (*_bfd_error_handler)
15356 (_("%B: uses different e_flags (0x%lx) fields than previous modules (0x%lx)"),
15357 ibfd, (unsigned long) new_flags,
15358 (unsigned long) old_flags);
15359 ok = FALSE;
15360 }
15361
15362 if (! ok)
15363 {
15364 bfd_set_error (bfd_error_bad_value);
15365 return FALSE;
15366 }
15367
15368 return TRUE;
15369 }
15370
15371 /* Function to keep MIPS specific file flags like as EF_MIPS_PIC. */
15372
15373 bfd_boolean
15374 _bfd_mips_elf_set_private_flags (bfd *abfd, flagword flags)
15375 {
15376 BFD_ASSERT (!elf_flags_init (abfd)
15377 || elf_elfheader (abfd)->e_flags == flags);
15378
15379 elf_elfheader (abfd)->e_flags = flags;
15380 elf_flags_init (abfd) = TRUE;
15381 return TRUE;
15382 }
15383
15384 char *
15385 _bfd_mips_elf_get_target_dtag (bfd_vma dtag)
15386 {
15387 switch (dtag)
15388 {
15389 default: return "";
15390 case DT_MIPS_RLD_VERSION:
15391 return "MIPS_RLD_VERSION";
15392 case DT_MIPS_TIME_STAMP:
15393 return "MIPS_TIME_STAMP";
15394 case DT_MIPS_ICHECKSUM:
15395 return "MIPS_ICHECKSUM";
15396 case DT_MIPS_IVERSION:
15397 return "MIPS_IVERSION";
15398 case DT_MIPS_FLAGS:
15399 return "MIPS_FLAGS";
15400 case DT_MIPS_BASE_ADDRESS:
15401 return "MIPS_BASE_ADDRESS";
15402 case DT_MIPS_MSYM:
15403 return "MIPS_MSYM";
15404 case DT_MIPS_CONFLICT:
15405 return "MIPS_CONFLICT";
15406 case DT_MIPS_LIBLIST:
15407 return "MIPS_LIBLIST";
15408 case DT_MIPS_LOCAL_GOTNO:
15409 return "MIPS_LOCAL_GOTNO";
15410 case DT_MIPS_CONFLICTNO:
15411 return "MIPS_CONFLICTNO";
15412 case DT_MIPS_LIBLISTNO:
15413 return "MIPS_LIBLISTNO";
15414 case DT_MIPS_SYMTABNO:
15415 return "MIPS_SYMTABNO";
15416 case DT_MIPS_UNREFEXTNO:
15417 return "MIPS_UNREFEXTNO";
15418 case DT_MIPS_GOTSYM:
15419 return "MIPS_GOTSYM";
15420 case DT_MIPS_HIPAGENO:
15421 return "MIPS_HIPAGENO";
15422 case DT_MIPS_RLD_MAP:
15423 return "MIPS_RLD_MAP";
15424 case DT_MIPS_DELTA_CLASS:
15425 return "MIPS_DELTA_CLASS";
15426 case DT_MIPS_DELTA_CLASS_NO:
15427 return "MIPS_DELTA_CLASS_NO";
15428 case DT_MIPS_DELTA_INSTANCE:
15429 return "MIPS_DELTA_INSTANCE";
15430 case DT_MIPS_DELTA_INSTANCE_NO:
15431 return "MIPS_DELTA_INSTANCE_NO";
15432 case DT_MIPS_DELTA_RELOC:
15433 return "MIPS_DELTA_RELOC";
15434 case DT_MIPS_DELTA_RELOC_NO:
15435 return "MIPS_DELTA_RELOC_NO";
15436 case DT_MIPS_DELTA_SYM:
15437 return "MIPS_DELTA_SYM";
15438 case DT_MIPS_DELTA_SYM_NO:
15439 return "MIPS_DELTA_SYM_NO";
15440 case DT_MIPS_DELTA_CLASSSYM:
15441 return "MIPS_DELTA_CLASSSYM";
15442 case DT_MIPS_DELTA_CLASSSYM_NO:
15443 return "MIPS_DELTA_CLASSSYM_NO";
15444 case DT_MIPS_CXX_FLAGS:
15445 return "MIPS_CXX_FLAGS";
15446 case DT_MIPS_PIXIE_INIT:
15447 return "MIPS_PIXIE_INIT";
15448 case DT_MIPS_SYMBOL_LIB:
15449 return "MIPS_SYMBOL_LIB";
15450 case DT_MIPS_LOCALPAGE_GOTIDX:
15451 return "MIPS_LOCALPAGE_GOTIDX";
15452 case DT_MIPS_LOCAL_GOTIDX:
15453 return "MIPS_LOCAL_GOTIDX";
15454 case DT_MIPS_HIDDEN_GOTIDX:
15455 return "MIPS_HIDDEN_GOTIDX";
15456 case DT_MIPS_PROTECTED_GOTIDX:
15457 return "MIPS_PROTECTED_GOT_IDX";
15458 case DT_MIPS_OPTIONS:
15459 return "MIPS_OPTIONS";
15460 case DT_MIPS_INTERFACE:
15461 return "MIPS_INTERFACE";
15462 case DT_MIPS_DYNSTR_ALIGN:
15463 return "DT_MIPS_DYNSTR_ALIGN";
15464 case DT_MIPS_INTERFACE_SIZE:
15465 return "DT_MIPS_INTERFACE_SIZE";
15466 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR:
15467 return "DT_MIPS_RLD_TEXT_RESOLVE_ADDR";
15468 case DT_MIPS_PERF_SUFFIX:
15469 return "DT_MIPS_PERF_SUFFIX";
15470 case DT_MIPS_COMPACT_SIZE:
15471 return "DT_MIPS_COMPACT_SIZE";
15472 case DT_MIPS_GP_VALUE:
15473 return "DT_MIPS_GP_VALUE";
15474 case DT_MIPS_AUX_DYNAMIC:
15475 return "DT_MIPS_AUX_DYNAMIC";
15476 case DT_MIPS_PLTGOT:
15477 return "DT_MIPS_PLTGOT";
15478 case DT_MIPS_RWPLT:
15479 return "DT_MIPS_RWPLT";
15480 }
15481 }
15482
15483 /* Return the meaning of Tag_GNU_MIPS_ABI_FP value FP, or null if
15484 not known. */
15485
15486 const char *
15487 _bfd_mips_fp_abi_string (int fp)
15488 {
15489 switch (fp)
15490 {
15491 /* These strings aren't translated because they're simply
15492 option lists. */
15493 case Val_GNU_MIPS_ABI_FP_DOUBLE:
15494 return "-mdouble-float";
15495
15496 case Val_GNU_MIPS_ABI_FP_SINGLE:
15497 return "-msingle-float";
15498
15499 case Val_GNU_MIPS_ABI_FP_SOFT:
15500 return "-msoft-float";
15501
15502 case Val_GNU_MIPS_ABI_FP_OLD_64:
15503 return _("-mips32r2 -mfp64 (12 callee-saved)");
15504
15505 case Val_GNU_MIPS_ABI_FP_XX:
15506 return "-mfpxx";
15507
15508 case Val_GNU_MIPS_ABI_FP_64:
15509 return "-mgp32 -mfp64";
15510
15511 case Val_GNU_MIPS_ABI_FP_64A:
15512 return "-mgp32 -mfp64 -mno-odd-spreg";
15513
15514 default:
15515 return 0;
15516 }
15517 }
15518
15519 static void
15520 print_mips_ases (FILE *file, unsigned int mask)
15521 {
15522 if (mask & AFL_ASE_DSP)
15523 fputs ("\n\tDSP ASE", file);
15524 if (mask & AFL_ASE_DSPR2)
15525 fputs ("\n\tDSP R2 ASE", file);
15526 if (mask & AFL_ASE_EVA)
15527 fputs ("\n\tEnhanced VA Scheme", file);
15528 if (mask & AFL_ASE_MCU)
15529 fputs ("\n\tMCU (MicroController) ASE", file);
15530 if (mask & AFL_ASE_MDMX)
15531 fputs ("\n\tMDMX ASE", file);
15532 if (mask & AFL_ASE_MIPS3D)
15533 fputs ("\n\tMIPS-3D ASE", file);
15534 if (mask & AFL_ASE_MT)
15535 fputs ("\n\tMT ASE", file);
15536 if (mask & AFL_ASE_SMARTMIPS)
15537 fputs ("\n\tSmartMIPS ASE", file);
15538 if (mask & AFL_ASE_VIRT)
15539 fputs ("\n\tVZ ASE", file);
15540 if (mask & AFL_ASE_MSA)
15541 fputs ("\n\tMSA ASE", file);
15542 if (mask & AFL_ASE_MIPS16)
15543 fputs ("\n\tMIPS16 ASE", file);
15544 if (mask & AFL_ASE_MICROMIPS)
15545 fputs ("\n\tMICROMIPS ASE", file);
15546 if (mask & AFL_ASE_XPA)
15547 fputs ("\n\tXPA ASE", file);
15548 if (mask == 0)
15549 fprintf (file, "\n\t%s", _("None"));
15550 else if ((mask & ~AFL_ASE_MASK) != 0)
15551 fprintf (stdout, "\n\t%s (%x)", _("Unknown"), mask & ~AFL_ASE_MASK);
15552 }
15553
15554 static void
15555 print_mips_isa_ext (FILE *file, unsigned int isa_ext)
15556 {
15557 switch (isa_ext)
15558 {
15559 case 0:
15560 fputs (_("None"), file);
15561 break;
15562 case AFL_EXT_XLR:
15563 fputs ("RMI XLR", file);
15564 break;
15565 case AFL_EXT_OCTEON3:
15566 fputs ("Cavium Networks Octeon3", file);
15567 break;
15568 case AFL_EXT_OCTEON2:
15569 fputs ("Cavium Networks Octeon2", file);
15570 break;
15571 case AFL_EXT_OCTEONP:
15572 fputs ("Cavium Networks OcteonP", file);
15573 break;
15574 case AFL_EXT_LOONGSON_3A:
15575 fputs ("Loongson 3A", file);
15576 break;
15577 case AFL_EXT_OCTEON:
15578 fputs ("Cavium Networks Octeon", file);
15579 break;
15580 case AFL_EXT_5900:
15581 fputs ("Toshiba R5900", file);
15582 break;
15583 case AFL_EXT_4650:
15584 fputs ("MIPS R4650", file);
15585 break;
15586 case AFL_EXT_4010:
15587 fputs ("LSI R4010", file);
15588 break;
15589 case AFL_EXT_4100:
15590 fputs ("NEC VR4100", file);
15591 break;
15592 case AFL_EXT_3900:
15593 fputs ("Toshiba R3900", file);
15594 break;
15595 case AFL_EXT_10000:
15596 fputs ("MIPS R10000", file);
15597 break;
15598 case AFL_EXT_SB1:
15599 fputs ("Broadcom SB-1", file);
15600 break;
15601 case AFL_EXT_4111:
15602 fputs ("NEC VR4111/VR4181", file);
15603 break;
15604 case AFL_EXT_4120:
15605 fputs ("NEC VR4120", file);
15606 break;
15607 case AFL_EXT_5400:
15608 fputs ("NEC VR5400", file);
15609 break;
15610 case AFL_EXT_5500:
15611 fputs ("NEC VR5500", file);
15612 break;
15613 case AFL_EXT_LOONGSON_2E:
15614 fputs ("ST Microelectronics Loongson 2E", file);
15615 break;
15616 case AFL_EXT_LOONGSON_2F:
15617 fputs ("ST Microelectronics Loongson 2F", file);
15618 break;
15619 default:
15620 fprintf (file, "%s (%d)", _("Unknown"), isa_ext);
15621 break;
15622 }
15623 }
15624
15625 static void
15626 print_mips_fp_abi_value (FILE *file, int val)
15627 {
15628 switch (val)
15629 {
15630 case Val_GNU_MIPS_ABI_FP_ANY:
15631 fprintf (file, _("Hard or soft float\n"));
15632 break;
15633 case Val_GNU_MIPS_ABI_FP_DOUBLE:
15634 fprintf (file, _("Hard float (double precision)\n"));
15635 break;
15636 case Val_GNU_MIPS_ABI_FP_SINGLE:
15637 fprintf (file, _("Hard float (single precision)\n"));
15638 break;
15639 case Val_GNU_MIPS_ABI_FP_SOFT:
15640 fprintf (file, _("Soft float\n"));
15641 break;
15642 case Val_GNU_MIPS_ABI_FP_OLD_64:
15643 fprintf (file, _("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
15644 break;
15645 case Val_GNU_MIPS_ABI_FP_XX:
15646 fprintf (file, _("Hard float (32-bit CPU, Any FPU)\n"));
15647 break;
15648 case Val_GNU_MIPS_ABI_FP_64:
15649 fprintf (file, _("Hard float (32-bit CPU, 64-bit FPU)\n"));
15650 break;
15651 case Val_GNU_MIPS_ABI_FP_64A:
15652 fprintf (file, _("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
15653 break;
15654 default:
15655 fprintf (file, "??? (%d)\n", val);
15656 break;
15657 }
15658 }
15659
15660 static int
15661 get_mips_reg_size (int reg_size)
15662 {
15663 return (reg_size == AFL_REG_NONE) ? 0
15664 : (reg_size == AFL_REG_32) ? 32
15665 : (reg_size == AFL_REG_64) ? 64
15666 : (reg_size == AFL_REG_128) ? 128
15667 : -1;
15668 }
15669
15670 bfd_boolean
15671 _bfd_mips_elf_print_private_bfd_data (bfd *abfd, void *ptr)
15672 {
15673 FILE *file = ptr;
15674
15675 BFD_ASSERT (abfd != NULL && ptr != NULL);
15676
15677 /* Print normal ELF private data. */
15678 _bfd_elf_print_private_bfd_data (abfd, ptr);
15679
15680 /* xgettext:c-format */
15681 fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
15682
15683 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O32)
15684 fprintf (file, _(" [abi=O32]"));
15685 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O64)
15686 fprintf (file, _(" [abi=O64]"));
15687 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI32)
15688 fprintf (file, _(" [abi=EABI32]"));
15689 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64)
15690 fprintf (file, _(" [abi=EABI64]"));
15691 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI))
15692 fprintf (file, _(" [abi unknown]"));
15693 else if (ABI_N32_P (abfd))
15694 fprintf (file, _(" [abi=N32]"));
15695 else if (ABI_64_P (abfd))
15696 fprintf (file, _(" [abi=64]"));
15697 else
15698 fprintf (file, _(" [no abi set]"));
15699
15700 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1)
15701 fprintf (file, " [mips1]");
15702 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_2)
15703 fprintf (file, " [mips2]");
15704 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_3)
15705 fprintf (file, " [mips3]");
15706 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_4)
15707 fprintf (file, " [mips4]");
15708 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_5)
15709 fprintf (file, " [mips5]");
15710 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32)
15711 fprintf (file, " [mips32]");
15712 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64)
15713 fprintf (file, " [mips64]");
15714 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R2)
15715 fprintf (file, " [mips32r2]");
15716 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64R2)
15717 fprintf (file, " [mips64r2]");
15718 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R6)
15719 fprintf (file, " [mips32r6]");
15720 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64R6)
15721 fprintf (file, " [mips64r6]");
15722 else
15723 fprintf (file, _(" [unknown ISA]"));
15724
15725 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MDMX)
15726 fprintf (file, " [mdmx]");
15727
15728 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_M16)
15729 fprintf (file, " [mips16]");
15730
15731 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MICROMIPS)
15732 fprintf (file, " [micromips]");
15733
15734 if (elf_elfheader (abfd)->e_flags & EF_MIPS_NAN2008)
15735 fprintf (file, " [nan2008]");
15736
15737 if (elf_elfheader (abfd)->e_flags & EF_MIPS_FP64)
15738 fprintf (file, " [old fp64]");
15739
15740 if (elf_elfheader (abfd)->e_flags & EF_MIPS_32BITMODE)
15741 fprintf (file, " [32bitmode]");
15742 else
15743 fprintf (file, _(" [not 32bitmode]"));
15744
15745 if (elf_elfheader (abfd)->e_flags & EF_MIPS_NOREORDER)
15746 fprintf (file, " [noreorder]");
15747
15748 if (elf_elfheader (abfd)->e_flags & EF_MIPS_PIC)
15749 fprintf (file, " [PIC]");
15750
15751 if (elf_elfheader (abfd)->e_flags & EF_MIPS_CPIC)
15752 fprintf (file, " [CPIC]");
15753
15754 if (elf_elfheader (abfd)->e_flags & EF_MIPS_XGOT)
15755 fprintf (file, " [XGOT]");
15756
15757 if (elf_elfheader (abfd)->e_flags & EF_MIPS_UCODE)
15758 fprintf (file, " [UCODE]");
15759
15760 fputc ('\n', file);
15761
15762 if (mips_elf_tdata (abfd)->abiflags_valid)
15763 {
15764 Elf_Internal_ABIFlags_v0 *abiflags = &mips_elf_tdata (abfd)->abiflags;
15765 fprintf (file, "\nMIPS ABI Flags Version: %d\n", abiflags->version);
15766 fprintf (file, "\nISA: MIPS%d", abiflags->isa_level);
15767 if (abiflags->isa_rev > 1)
15768 fprintf (file, "r%d", abiflags->isa_rev);
15769 fprintf (file, "\nGPR size: %d",
15770 get_mips_reg_size (abiflags->gpr_size));
15771 fprintf (file, "\nCPR1 size: %d",
15772 get_mips_reg_size (abiflags->cpr1_size));
15773 fprintf (file, "\nCPR2 size: %d",
15774 get_mips_reg_size (abiflags->cpr2_size));
15775 fputs ("\nFP ABI: ", file);
15776 print_mips_fp_abi_value (file, abiflags->fp_abi);
15777 fputs ("ISA Extension: ", file);
15778 print_mips_isa_ext (file, abiflags->isa_ext);
15779 fputs ("\nASEs:", file);
15780 print_mips_ases (file, abiflags->ases);
15781 fprintf (file, "\nFLAGS 1: %8.8lx", abiflags->flags1);
15782 fprintf (file, "\nFLAGS 2: %8.8lx", abiflags->flags2);
15783 fputc ('\n', file);
15784 }
15785
15786 return TRUE;
15787 }
15788
15789 const struct bfd_elf_special_section _bfd_mips_elf_special_sections[] =
15790 {
15791 { STRING_COMMA_LEN (".lit4"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
15792 { STRING_COMMA_LEN (".lit8"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
15793 { STRING_COMMA_LEN (".mdebug"), 0, SHT_MIPS_DEBUG, 0 },
15794 { STRING_COMMA_LEN (".sbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
15795 { STRING_COMMA_LEN (".sdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
15796 { STRING_COMMA_LEN (".ucode"), 0, SHT_MIPS_UCODE, 0 },
15797 { NULL, 0, 0, 0, 0 }
15798 };
15799
15800 /* Merge non visibility st_other attributes. Ensure that the
15801 STO_OPTIONAL flag is copied into h->other, even if this is not a
15802 definiton of the symbol. */
15803 void
15804 _bfd_mips_elf_merge_symbol_attribute (struct elf_link_hash_entry *h,
15805 const Elf_Internal_Sym *isym,
15806 bfd_boolean definition,
15807 bfd_boolean dynamic ATTRIBUTE_UNUSED)
15808 {
15809 if ((isym->st_other & ~ELF_ST_VISIBILITY (-1)) != 0)
15810 {
15811 unsigned char other;
15812
15813 other = (definition ? isym->st_other : h->other);
15814 other &= ~ELF_ST_VISIBILITY (-1);
15815 h->other = other | ELF_ST_VISIBILITY (h->other);
15816 }
15817
15818 if (!definition
15819 && ELF_MIPS_IS_OPTIONAL (isym->st_other))
15820 h->other |= STO_OPTIONAL;
15821 }
15822
15823 /* Decide whether an undefined symbol is special and can be ignored.
15824 This is the case for OPTIONAL symbols on IRIX. */
15825 bfd_boolean
15826 _bfd_mips_elf_ignore_undef_symbol (struct elf_link_hash_entry *h)
15827 {
15828 return ELF_MIPS_IS_OPTIONAL (h->other) ? TRUE : FALSE;
15829 }
15830
15831 bfd_boolean
15832 _bfd_mips_elf_common_definition (Elf_Internal_Sym *sym)
15833 {
15834 return (sym->st_shndx == SHN_COMMON
15835 || sym->st_shndx == SHN_MIPS_ACOMMON
15836 || sym->st_shndx == SHN_MIPS_SCOMMON);
15837 }
15838
15839 /* Return address for Ith PLT stub in section PLT, for relocation REL
15840 or (bfd_vma) -1 if it should not be included. */
15841
15842 bfd_vma
15843 _bfd_mips_elf_plt_sym_val (bfd_vma i, const asection *plt,
15844 const arelent *rel ATTRIBUTE_UNUSED)
15845 {
15846 return (plt->vma
15847 + 4 * ARRAY_SIZE (mips_o32_exec_plt0_entry)
15848 + i * 4 * ARRAY_SIZE (mips_exec_plt_entry));
15849 }
15850
15851 /* Build a table of synthetic symbols to represent the PLT. As with MIPS16
15852 and microMIPS PLT slots we may have a many-to-one mapping between .plt
15853 and .got.plt and also the slots may be of a different size each we walk
15854 the PLT manually fetching instructions and matching them against known
15855 patterns. To make things easier standard MIPS slots, if any, always come
15856 first. As we don't create proper ELF symbols we use the UDATA.I member
15857 of ASYMBOL to carry ISA annotation. The encoding used is the same as
15858 with the ST_OTHER member of the ELF symbol. */
15859
15860 long
15861 _bfd_mips_elf_get_synthetic_symtab (bfd *abfd,
15862 long symcount ATTRIBUTE_UNUSED,
15863 asymbol **syms ATTRIBUTE_UNUSED,
15864 long dynsymcount, asymbol **dynsyms,
15865 asymbol **ret)
15866 {
15867 static const char pltname[] = "_PROCEDURE_LINKAGE_TABLE_";
15868 static const char microsuffix[] = "@micromipsplt";
15869 static const char m16suffix[] = "@mips16plt";
15870 static const char mipssuffix[] = "@plt";
15871
15872 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
15873 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
15874 bfd_boolean micromips_p = MICROMIPS_P (abfd);
15875 Elf_Internal_Shdr *hdr;
15876 bfd_byte *plt_data;
15877 bfd_vma plt_offset;
15878 unsigned int other;
15879 bfd_vma entry_size;
15880 bfd_vma plt0_size;
15881 asection *relplt;
15882 bfd_vma opcode;
15883 asection *plt;
15884 asymbol *send;
15885 size_t size;
15886 char *names;
15887 long counti;
15888 arelent *p;
15889 asymbol *s;
15890 char *nend;
15891 long count;
15892 long pi;
15893 long i;
15894 long n;
15895
15896 *ret = NULL;
15897
15898 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0 || dynsymcount <= 0)
15899 return 0;
15900
15901 relplt = bfd_get_section_by_name (abfd, ".rel.plt");
15902 if (relplt == NULL)
15903 return 0;
15904
15905 hdr = &elf_section_data (relplt)->this_hdr;
15906 if (hdr->sh_link != elf_dynsymtab (abfd) || hdr->sh_type != SHT_REL)
15907 return 0;
15908
15909 plt = bfd_get_section_by_name (abfd, ".plt");
15910 if (plt == NULL)
15911 return 0;
15912
15913 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
15914 if (!(*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
15915 return -1;
15916 p = relplt->relocation;
15917
15918 /* Calculating the exact amount of space required for symbols would
15919 require two passes over the PLT, so just pessimise assuming two
15920 PLT slots per relocation. */
15921 count = relplt->size / hdr->sh_entsize;
15922 counti = count * bed->s->int_rels_per_ext_rel;
15923 size = 2 * count * sizeof (asymbol);
15924 size += count * (sizeof (mipssuffix) +
15925 (micromips_p ? sizeof (microsuffix) : sizeof (m16suffix)));
15926 for (pi = 0; pi < counti; pi += bed->s->int_rels_per_ext_rel)
15927 size += 2 * strlen ((*p[pi].sym_ptr_ptr)->name);
15928
15929 /* Add the size of "_PROCEDURE_LINKAGE_TABLE_" too. */
15930 size += sizeof (asymbol) + sizeof (pltname);
15931
15932 if (!bfd_malloc_and_get_section (abfd, plt, &plt_data))
15933 return -1;
15934
15935 if (plt->size < 16)
15936 return -1;
15937
15938 s = *ret = bfd_malloc (size);
15939 if (s == NULL)
15940 return -1;
15941 send = s + 2 * count + 1;
15942
15943 names = (char *) send;
15944 nend = (char *) s + size;
15945 n = 0;
15946
15947 opcode = bfd_get_micromips_32 (abfd, plt_data + 12);
15948 if (opcode == 0x3302fffe)
15949 {
15950 if (!micromips_p)
15951 return -1;
15952 plt0_size = 2 * ARRAY_SIZE (micromips_o32_exec_plt0_entry);
15953 other = STO_MICROMIPS;
15954 }
15955 else if (opcode == 0x0398c1d0)
15956 {
15957 if (!micromips_p)
15958 return -1;
15959 plt0_size = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt0_entry);
15960 other = STO_MICROMIPS;
15961 }
15962 else
15963 {
15964 plt0_size = 4 * ARRAY_SIZE (mips_o32_exec_plt0_entry);
15965 other = 0;
15966 }
15967
15968 s->the_bfd = abfd;
15969 s->flags = BSF_SYNTHETIC | BSF_FUNCTION | BSF_LOCAL;
15970 s->section = plt;
15971 s->value = 0;
15972 s->name = names;
15973 s->udata.i = other;
15974 memcpy (names, pltname, sizeof (pltname));
15975 names += sizeof (pltname);
15976 ++s, ++n;
15977
15978 pi = 0;
15979 for (plt_offset = plt0_size;
15980 plt_offset + 8 <= plt->size && s < send;
15981 plt_offset += entry_size)
15982 {
15983 bfd_vma gotplt_addr;
15984 const char *suffix;
15985 bfd_vma gotplt_hi;
15986 bfd_vma gotplt_lo;
15987 size_t suffixlen;
15988
15989 opcode = bfd_get_micromips_32 (abfd, plt_data + plt_offset + 4);
15990
15991 /* Check if the second word matches the expected MIPS16 instruction. */
15992 if (opcode == 0x651aeb00)
15993 {
15994 if (micromips_p)
15995 return -1;
15996 /* Truncated table??? */
15997 if (plt_offset + 16 > plt->size)
15998 break;
15999 gotplt_addr = bfd_get_32 (abfd, plt_data + plt_offset + 12);
16000 entry_size = 2 * ARRAY_SIZE (mips16_o32_exec_plt_entry);
16001 suffixlen = sizeof (m16suffix);
16002 suffix = m16suffix;
16003 other = STO_MIPS16;
16004 }
16005 /* Likewise the expected microMIPS instruction (no insn32 mode). */
16006 else if (opcode == 0xff220000)
16007 {
16008 if (!micromips_p)
16009 return -1;
16010 gotplt_hi = bfd_get_16 (abfd, plt_data + plt_offset) & 0x7f;
16011 gotplt_lo = bfd_get_16 (abfd, plt_data + plt_offset + 2) & 0xffff;
16012 gotplt_hi = ((gotplt_hi ^ 0x40) - 0x40) << 18;
16013 gotplt_lo <<= 2;
16014 gotplt_addr = gotplt_hi + gotplt_lo;
16015 gotplt_addr += ((plt->vma + plt_offset) | 3) ^ 3;
16016 entry_size = 2 * ARRAY_SIZE (micromips_o32_exec_plt_entry);
16017 suffixlen = sizeof (microsuffix);
16018 suffix = microsuffix;
16019 other = STO_MICROMIPS;
16020 }
16021 /* Likewise the expected microMIPS instruction (insn32 mode). */
16022 else if ((opcode & 0xffff0000) == 0xff2f0000)
16023 {
16024 gotplt_hi = bfd_get_16 (abfd, plt_data + plt_offset + 2) & 0xffff;
16025 gotplt_lo = bfd_get_16 (abfd, plt_data + plt_offset + 6) & 0xffff;
16026 gotplt_hi = ((gotplt_hi ^ 0x8000) - 0x8000) << 16;
16027 gotplt_lo = (gotplt_lo ^ 0x8000) - 0x8000;
16028 gotplt_addr = gotplt_hi + gotplt_lo;
16029 entry_size = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt_entry);
16030 suffixlen = sizeof (microsuffix);
16031 suffix = microsuffix;
16032 other = STO_MICROMIPS;
16033 }
16034 /* Otherwise assume standard MIPS code. */
16035 else
16036 {
16037 gotplt_hi = bfd_get_32 (abfd, plt_data + plt_offset) & 0xffff;
16038 gotplt_lo = bfd_get_32 (abfd, plt_data + plt_offset + 4) & 0xffff;
16039 gotplt_hi = ((gotplt_hi ^ 0x8000) - 0x8000) << 16;
16040 gotplt_lo = (gotplt_lo ^ 0x8000) - 0x8000;
16041 gotplt_addr = gotplt_hi + gotplt_lo;
16042 entry_size = 4 * ARRAY_SIZE (mips_exec_plt_entry);
16043 suffixlen = sizeof (mipssuffix);
16044 suffix = mipssuffix;
16045 other = 0;
16046 }
16047 /* Truncated table??? */
16048 if (plt_offset + entry_size > plt->size)
16049 break;
16050
16051 for (i = 0;
16052 i < count && p[pi].address != gotplt_addr;
16053 i++, pi = (pi + bed->s->int_rels_per_ext_rel) % counti);
16054
16055 if (i < count)
16056 {
16057 size_t namelen;
16058 size_t len;
16059
16060 *s = **p[pi].sym_ptr_ptr;
16061 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
16062 we are defining a symbol, ensure one of them is set. */
16063 if ((s->flags & BSF_LOCAL) == 0)
16064 s->flags |= BSF_GLOBAL;
16065 s->flags |= BSF_SYNTHETIC;
16066 s->section = plt;
16067 s->value = plt_offset;
16068 s->name = names;
16069 s->udata.i = other;
16070
16071 len = strlen ((*p[pi].sym_ptr_ptr)->name);
16072 namelen = len + suffixlen;
16073 if (names + namelen > nend)
16074 break;
16075
16076 memcpy (names, (*p[pi].sym_ptr_ptr)->name, len);
16077 names += len;
16078 memcpy (names, suffix, suffixlen);
16079 names += suffixlen;
16080
16081 ++s, ++n;
16082 pi = (pi + bed->s->int_rels_per_ext_rel) % counti;
16083 }
16084 }
16085
16086 free (plt_data);
16087
16088 return n;
16089 }
16090
16091 void
16092 _bfd_mips_post_process_headers (bfd *abfd, struct bfd_link_info *link_info)
16093 {
16094 struct mips_elf_link_hash_table *htab;
16095 Elf_Internal_Ehdr *i_ehdrp;
16096
16097 i_ehdrp = elf_elfheader (abfd);
16098 if (link_info)
16099 {
16100 htab = mips_elf_hash_table (link_info);
16101 BFD_ASSERT (htab != NULL);
16102
16103 if (htab->use_plts_and_copy_relocs && !htab->is_vxworks)
16104 i_ehdrp->e_ident[EI_ABIVERSION] = 1;
16105 }
16106
16107 _bfd_elf_post_process_headers (abfd, link_info);
16108
16109 if (mips_elf_tdata (abfd)->abiflags.fp_abi == Val_GNU_MIPS_ABI_FP_64
16110 || mips_elf_tdata (abfd)->abiflags.fp_abi == Val_GNU_MIPS_ABI_FP_64A)
16111 i_ehdrp->e_ident[EI_ABIVERSION] = 3;
16112 }
16113
16114 int
16115 _bfd_mips_elf_compact_eh_encoding (struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
16116 {
16117 return DW_EH_PE_pcrel | DW_EH_PE_sdata4;
16118 }
16119
16120 /* Return the opcode for can't unwind. */
16121
16122 int
16123 _bfd_mips_elf_cant_unwind_opcode (struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
16124 {
16125 return COMPACT_EH_CANT_UNWIND_OPCODE;
16126 }
This page took 0.382377 seconds and 4 git commands to generate.