1 /* MIPS-specific support for ELF
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
4 Free Software Foundation, Inc.
6 Most of the information added by Ian Lance Taylor, Cygnus Support,
8 N32/64 ABI support added by Mark Mitchell, CodeSourcery, LLC.
9 <mark@codesourcery.com>
10 Traditional MIPS targets support added by Koundinya.K, Dansk Data
11 Elektronik & Operations Research Group. <kk@ddeorg.soft.net>
13 This file is part of BFD, the Binary File Descriptor library.
15 This program is free software; you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation; either version 3 of the License, or
18 (at your option) any later version.
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
28 MA 02110-1301, USA. */
31 /* This file handles functionality common to the different MIPS ABI's. */
36 #include "libiberty.h"
38 #include "elfxx-mips.h"
40 #include "elf-vxworks.h"
42 /* Get the ECOFF swapping routines. */
44 #include "coff/symconst.h"
45 #include "coff/ecoff.h"
46 #include "coff/mips.h"
50 /* Types of TLS GOT entry. */
51 enum mips_got_tls_type
{
58 /* This structure is used to hold information about one GOT entry.
59 There are four types of entry:
61 (1) an absolute address
62 requires: abfd == NULL
65 (2) a SYMBOL + OFFSET address, where SYMBOL is local to an input bfd
66 requires: abfd != NULL, symndx >= 0, tls_type != GOT_TLS_LDM
67 fields: abfd, symndx, d.addend, tls_type
69 (3) a SYMBOL address, where SYMBOL is not local to an input bfd
70 requires: abfd != NULL, symndx == -1
74 requires: abfd != NULL, symndx == 0, tls_type == GOT_TLS_LDM
75 fields: none; there's only one of these per GOT. */
78 /* One input bfd that needs the GOT entry. */
80 /* The index of the symbol, as stored in the relocation r_info, if
81 we have a local symbol; -1 otherwise. */
85 /* If abfd == NULL, an address that must be stored in the got. */
87 /* If abfd != NULL && symndx != -1, the addend of the relocation
88 that should be added to the symbol value. */
90 /* If abfd != NULL && symndx == -1, the hash table entry
91 corresponding to a symbol in the GOT. The symbol's entry
92 is in the local area if h->global_got_area is GGA_NONE,
93 otherwise it is in the global area. */
94 struct mips_elf_link_hash_entry
*h
;
97 /* The TLS type of this GOT entry. An LDM GOT entry will be a local
98 symbol entry with r_symndx == 0. */
99 unsigned char tls_type
;
101 /* True if we have filled in the GOT contents for a TLS entry,
102 and created the associated relocations. */
103 unsigned char tls_initialized
;
105 /* The offset from the beginning of the .got section to the entry
106 corresponding to this symbol+addend. If it's a global symbol
107 whose offset is yet to be decided, it's going to be -1. */
111 /* This structure represents a GOT page reference from an input bfd.
112 Each instance represents a symbol + ADDEND, where the representation
113 of the symbol depends on whether it is local to the input bfd.
114 If it is, then SYMNDX >= 0, and the symbol has index SYMNDX in U.ABFD.
115 Otherwise, SYMNDX < 0 and U.H points to the symbol's hash table entry.
117 Page references with SYMNDX >= 0 always become page references
118 in the output. Page references with SYMNDX < 0 only become page
119 references if the symbol binds locally; in other cases, the page
120 reference decays to a global GOT reference. */
121 struct mips_got_page_ref
126 struct mips_elf_link_hash_entry
*h
;
132 /* This structure describes a range of addends: [MIN_ADDEND, MAX_ADDEND].
133 The structures form a non-overlapping list that is sorted by increasing
135 struct mips_got_page_range
137 struct mips_got_page_range
*next
;
138 bfd_signed_vma min_addend
;
139 bfd_signed_vma max_addend
;
142 /* This structure describes the range of addends that are applied to page
143 relocations against a given section. */
144 struct mips_got_page_entry
146 /* The section that these entries are based on. */
148 /* The ranges for this page entry. */
149 struct mips_got_page_range
*ranges
;
150 /* The maximum number of page entries needed for RANGES. */
154 /* This structure is used to hold .got information when linking. */
158 /* The number of global .got entries. */
159 unsigned int global_gotno
;
160 /* The number of global .got entries that are in the GGA_RELOC_ONLY area. */
161 unsigned int reloc_only_gotno
;
162 /* The number of .got slots used for TLS. */
163 unsigned int tls_gotno
;
164 /* The first unused TLS .got entry. Used only during
165 mips_elf_initialize_tls_index. */
166 unsigned int tls_assigned_gotno
;
167 /* The number of local .got entries, eventually including page entries. */
168 unsigned int local_gotno
;
169 /* The maximum number of page entries needed. */
170 unsigned int page_gotno
;
171 /* The number of relocations needed for the GOT entries. */
173 /* The number of local .got entries we have used. */
174 unsigned int assigned_gotno
;
175 /* A hash table holding members of the got. */
176 struct htab
*got_entries
;
177 /* A hash table holding mips_got_page_ref structures. */
178 struct htab
*got_page_refs
;
179 /* A hash table of mips_got_page_entry structures. */
180 struct htab
*got_page_entries
;
181 /* In multi-got links, a pointer to the next got (err, rather, most
182 of the time, it points to the previous got). */
183 struct mips_got_info
*next
;
186 /* Structure passed when merging bfds' gots. */
188 struct mips_elf_got_per_bfd_arg
190 /* The output bfd. */
192 /* The link information. */
193 struct bfd_link_info
*info
;
194 /* A pointer to the primary got, i.e., the one that's going to get
195 the implicit relocations from DT_MIPS_LOCAL_GOTNO and
197 struct mips_got_info
*primary
;
198 /* A non-primary got we're trying to merge with other input bfd's
200 struct mips_got_info
*current
;
201 /* The maximum number of got entries that can be addressed with a
203 unsigned int max_count
;
204 /* The maximum number of page entries needed by each got. */
205 unsigned int max_pages
;
206 /* The total number of global entries which will live in the
207 primary got and be automatically relocated. This includes
208 those not referenced by the primary GOT but included in
210 unsigned int global_count
;
213 /* A structure used to pass information to htab_traverse callbacks
214 when laying out the GOT. */
216 struct mips_elf_traverse_got_arg
218 struct bfd_link_info
*info
;
219 struct mips_got_info
*g
;
223 struct _mips_elf_section_data
225 struct bfd_elf_section_data elf
;
232 #define mips_elf_section_data(sec) \
233 ((struct _mips_elf_section_data *) elf_section_data (sec))
235 #define is_mips_elf(bfd) \
236 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
237 && elf_tdata (bfd) != NULL \
238 && elf_object_id (bfd) == MIPS_ELF_DATA)
240 /* The ABI says that every symbol used by dynamic relocations must have
241 a global GOT entry. Among other things, this provides the dynamic
242 linker with a free, directly-indexed cache. The GOT can therefore
243 contain symbols that are not referenced by GOT relocations themselves
244 (in other words, it may have symbols that are not referenced by things
245 like R_MIPS_GOT16 and R_MIPS_GOT_PAGE).
247 GOT relocations are less likely to overflow if we put the associated
248 GOT entries towards the beginning. We therefore divide the global
249 GOT entries into two areas: "normal" and "reloc-only". Entries in
250 the first area can be used for both dynamic relocations and GP-relative
251 accesses, while those in the "reloc-only" area are for dynamic
254 These GGA_* ("Global GOT Area") values are organised so that lower
255 values are more general than higher values. Also, non-GGA_NONE
256 values are ordered by the position of the area in the GOT. */
258 #define GGA_RELOC_ONLY 1
261 /* Information about a non-PIC interface to a PIC function. There are
262 two ways of creating these interfaces. The first is to add:
265 addiu $25,$25,%lo(func)
267 immediately before a PIC function "func". The second is to add:
271 addiu $25,$25,%lo(func)
273 to a separate trampoline section.
275 Stubs of the first kind go in a new section immediately before the
276 target function. Stubs of the second kind go in a single section
277 pointed to by the hash table's "strampoline" field. */
278 struct mips_elf_la25_stub
{
279 /* The generated section that contains this stub. */
280 asection
*stub_section
;
282 /* The offset of the stub from the start of STUB_SECTION. */
285 /* One symbol for the original function. Its location is available
286 in H->root.root.u.def. */
287 struct mips_elf_link_hash_entry
*h
;
290 /* Macros for populating a mips_elf_la25_stub. */
292 #define LA25_LUI(VAL) (0x3c190000 | (VAL)) /* lui t9,VAL */
293 #define LA25_J(VAL) (0x08000000 | (((VAL) >> 2) & 0x3ffffff)) /* j VAL */
294 #define LA25_ADDIU(VAL) (0x27390000 | (VAL)) /* addiu t9,t9,VAL */
295 #define LA25_LUI_MICROMIPS(VAL) \
296 (0x41b90000 | (VAL)) /* lui t9,VAL */
297 #define LA25_J_MICROMIPS(VAL) \
298 (0xd4000000 | (((VAL) >> 1) & 0x3ffffff)) /* j VAL */
299 #define LA25_ADDIU_MICROMIPS(VAL) \
300 (0x33390000 | (VAL)) /* addiu t9,t9,VAL */
302 /* This structure is passed to mips_elf_sort_hash_table_f when sorting
303 the dynamic symbols. */
305 struct mips_elf_hash_sort_data
307 /* The symbol in the global GOT with the lowest dynamic symbol table
309 struct elf_link_hash_entry
*low
;
310 /* The least dynamic symbol table index corresponding to a non-TLS
311 symbol with a GOT entry. */
312 long min_got_dynindx
;
313 /* The greatest dynamic symbol table index corresponding to a symbol
314 with a GOT entry that is not referenced (e.g., a dynamic symbol
315 with dynamic relocations pointing to it from non-primary GOTs). */
316 long max_unref_got_dynindx
;
317 /* The greatest dynamic symbol table index not corresponding to a
318 symbol without a GOT entry. */
319 long max_non_got_dynindx
;
322 /* The MIPS ELF linker needs additional information for each symbol in
323 the global hash table. */
325 struct mips_elf_link_hash_entry
327 struct elf_link_hash_entry root
;
329 /* External symbol information. */
332 /* The la25 stub we have created for ths symbol, if any. */
333 struct mips_elf_la25_stub
*la25_stub
;
335 /* Number of R_MIPS_32, R_MIPS_REL32, or R_MIPS_64 relocs against
337 unsigned int possibly_dynamic_relocs
;
339 /* If there is a stub that 32 bit functions should use to call this
340 16 bit function, this points to the section containing the stub. */
343 /* If there is a stub that 16 bit functions should use to call this
344 32 bit function, this points to the section containing the stub. */
347 /* This is like the call_stub field, but it is used if the function
348 being called returns a floating point value. */
349 asection
*call_fp_stub
;
351 /* The highest GGA_* value that satisfies all references to this symbol. */
352 unsigned int global_got_area
: 2;
354 /* True if all GOT relocations against this symbol are for calls. This is
355 a looser condition than no_fn_stub below, because there may be other
356 non-call non-GOT relocations against the symbol. */
357 unsigned int got_only_for_calls
: 1;
359 /* True if one of the relocations described by possibly_dynamic_relocs
360 is against a readonly section. */
361 unsigned int readonly_reloc
: 1;
363 /* True if there is a relocation against this symbol that must be
364 resolved by the static linker (in other words, if the relocation
365 cannot possibly be made dynamic). */
366 unsigned int has_static_relocs
: 1;
368 /* True if we must not create a .MIPS.stubs entry for this symbol.
369 This is set, for example, if there are relocations related to
370 taking the function's address, i.e. any but R_MIPS_CALL*16 ones.
371 See "MIPS ABI Supplement, 3rd Edition", p. 4-20. */
372 unsigned int no_fn_stub
: 1;
374 /* Whether we need the fn_stub; this is true if this symbol appears
375 in any relocs other than a 16 bit call. */
376 unsigned int need_fn_stub
: 1;
378 /* True if this symbol is referenced by branch relocations from
379 any non-PIC input file. This is used to determine whether an
380 la25 stub is required. */
381 unsigned int has_nonpic_branches
: 1;
383 /* Does this symbol need a traditional MIPS lazy-binding stub
384 (as opposed to a PLT entry)? */
385 unsigned int needs_lazy_stub
: 1;
388 /* MIPS ELF linker hash table. */
390 struct mips_elf_link_hash_table
392 struct elf_link_hash_table root
;
394 /* The number of .rtproc entries. */
395 bfd_size_type procedure_count
;
397 /* The size of the .compact_rel section (if SGI_COMPAT). */
398 bfd_size_type compact_rel_size
;
400 /* This flag indicates that the value of DT_MIPS_RLD_MAP dynamic entry
401 is set to the address of __rld_obj_head as in IRIX5 and IRIX6. */
402 bfd_boolean use_rld_obj_head
;
404 /* The __rld_map or __rld_obj_head symbol. */
405 struct elf_link_hash_entry
*rld_symbol
;
407 /* This is set if we see any mips16 stub sections. */
408 bfd_boolean mips16_stubs_seen
;
410 /* True if we can generate copy relocs and PLTs. */
411 bfd_boolean use_plts_and_copy_relocs
;
413 /* True if we're generating code for VxWorks. */
414 bfd_boolean is_vxworks
;
416 /* True if we already reported the small-data section overflow. */
417 bfd_boolean small_data_overflow_reported
;
419 /* Shortcuts to some dynamic sections, or NULL if they are not
430 /* The master GOT information. */
431 struct mips_got_info
*got_info
;
433 /* The global symbol in the GOT with the lowest index in the dynamic
435 struct elf_link_hash_entry
*global_gotsym
;
437 /* The size of the PLT header in bytes. */
438 bfd_vma plt_header_size
;
440 /* The size of a PLT entry in bytes. */
441 bfd_vma plt_entry_size
;
443 /* The number of functions that need a lazy-binding stub. */
444 bfd_vma lazy_stub_count
;
446 /* The size of a function stub entry in bytes. */
447 bfd_vma function_stub_size
;
449 /* The number of reserved entries at the beginning of the GOT. */
450 unsigned int reserved_gotno
;
452 /* The section used for mips_elf_la25_stub trampolines.
453 See the comment above that structure for details. */
454 asection
*strampoline
;
456 /* A table of mips_elf_la25_stubs, indexed by (input_section, offset)
460 /* A function FN (NAME, IS, OS) that creates a new input section
461 called NAME and links it to output section OS. If IS is nonnull,
462 the new section should go immediately before it, otherwise it
463 should go at the (current) beginning of OS.
465 The function returns the new section on success, otherwise it
467 asection
*(*add_stub_section
) (const char *, asection
*, asection
*);
469 /* Small local sym cache. */
470 struct sym_cache sym_cache
;
473 /* Get the MIPS ELF linker hash table from a link_info structure. */
475 #define mips_elf_hash_table(p) \
476 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
477 == MIPS_ELF_DATA ? ((struct mips_elf_link_hash_table *) ((p)->hash)) : NULL)
479 /* A structure used to communicate with htab_traverse callbacks. */
480 struct mips_htab_traverse_info
482 /* The usual link-wide information. */
483 struct bfd_link_info
*info
;
486 /* Starts off FALSE and is set to TRUE if the link should be aborted. */
490 /* MIPS ELF private object data. */
492 struct mips_elf_obj_tdata
494 /* Generic ELF private object data. */
495 struct elf_obj_tdata root
;
497 /* Input BFD providing Tag_GNU_MIPS_ABI_FP attribute for output. */
500 /* The GOT requirements of input bfds. */
501 struct mips_got_info
*got
;
503 /* Used by _bfd_mips_elf_find_nearest_line. The structure could be
504 included directly in this one, but there's no point to wasting
505 the memory just for the infrequently called find_nearest_line. */
506 struct mips_elf_find_line
*find_line_info
;
508 /* An array of stub sections indexed by symbol number. */
509 asection
**local_stubs
;
510 asection
**local_call_stubs
;
512 /* The Irix 5 support uses two virtual sections, which represent
513 text/data symbols defined in dynamic objects. */
514 asymbol
*elf_data_symbol
;
515 asymbol
*elf_text_symbol
;
516 asection
*elf_data_section
;
517 asection
*elf_text_section
;
520 /* Get MIPS ELF private object data from BFD's tdata. */
522 #define mips_elf_tdata(bfd) \
523 ((struct mips_elf_obj_tdata *) (bfd)->tdata.any)
525 #define TLS_RELOC_P(r_type) \
526 (r_type == R_MIPS_TLS_DTPMOD32 \
527 || r_type == R_MIPS_TLS_DTPMOD64 \
528 || r_type == R_MIPS_TLS_DTPREL32 \
529 || r_type == R_MIPS_TLS_DTPREL64 \
530 || r_type == R_MIPS_TLS_GD \
531 || r_type == R_MIPS_TLS_LDM \
532 || r_type == R_MIPS_TLS_DTPREL_HI16 \
533 || r_type == R_MIPS_TLS_DTPREL_LO16 \
534 || r_type == R_MIPS_TLS_GOTTPREL \
535 || r_type == R_MIPS_TLS_TPREL32 \
536 || r_type == R_MIPS_TLS_TPREL64 \
537 || r_type == R_MIPS_TLS_TPREL_HI16 \
538 || r_type == R_MIPS_TLS_TPREL_LO16 \
539 || r_type == R_MIPS16_TLS_GD \
540 || r_type == R_MIPS16_TLS_LDM \
541 || r_type == R_MIPS16_TLS_DTPREL_HI16 \
542 || r_type == R_MIPS16_TLS_DTPREL_LO16 \
543 || r_type == R_MIPS16_TLS_GOTTPREL \
544 || r_type == R_MIPS16_TLS_TPREL_HI16 \
545 || r_type == R_MIPS16_TLS_TPREL_LO16 \
546 || r_type == R_MICROMIPS_TLS_GD \
547 || r_type == R_MICROMIPS_TLS_LDM \
548 || r_type == R_MICROMIPS_TLS_DTPREL_HI16 \
549 || r_type == R_MICROMIPS_TLS_DTPREL_LO16 \
550 || r_type == R_MICROMIPS_TLS_GOTTPREL \
551 || r_type == R_MICROMIPS_TLS_TPREL_HI16 \
552 || r_type == R_MICROMIPS_TLS_TPREL_LO16)
554 /* Structure used to pass information to mips_elf_output_extsym. */
559 struct bfd_link_info
*info
;
560 struct ecoff_debug_info
*debug
;
561 const struct ecoff_debug_swap
*swap
;
565 /* The names of the runtime procedure table symbols used on IRIX5. */
567 static const char * const mips_elf_dynsym_rtproc_names
[] =
570 "_procedure_string_table",
571 "_procedure_table_size",
575 /* These structures are used to generate the .compact_rel section on
580 unsigned long id1
; /* Always one? */
581 unsigned long num
; /* Number of compact relocation entries. */
582 unsigned long id2
; /* Always two? */
583 unsigned long offset
; /* The file offset of the first relocation. */
584 unsigned long reserved0
; /* Zero? */
585 unsigned long reserved1
; /* Zero? */
594 bfd_byte reserved0
[4];
595 bfd_byte reserved1
[4];
596 } Elf32_External_compact_rel
;
600 unsigned int ctype
: 1; /* 1: long 0: short format. See below. */
601 unsigned int rtype
: 4; /* Relocation types. See below. */
602 unsigned int dist2to
: 8;
603 unsigned int relvaddr
: 19; /* (VADDR - vaddr of the previous entry)/ 4 */
604 unsigned long konst
; /* KONST field. See below. */
605 unsigned long vaddr
; /* VADDR to be relocated. */
610 unsigned int ctype
: 1; /* 1: long 0: short format. See below. */
611 unsigned int rtype
: 4; /* Relocation types. See below. */
612 unsigned int dist2to
: 8;
613 unsigned int relvaddr
: 19; /* (VADDR - vaddr of the previous entry)/ 4 */
614 unsigned long konst
; /* KONST field. See below. */
622 } Elf32_External_crinfo
;
628 } Elf32_External_crinfo2
;
630 /* These are the constants used to swap the bitfields in a crinfo. */
632 #define CRINFO_CTYPE (0x1)
633 #define CRINFO_CTYPE_SH (31)
634 #define CRINFO_RTYPE (0xf)
635 #define CRINFO_RTYPE_SH (27)
636 #define CRINFO_DIST2TO (0xff)
637 #define CRINFO_DIST2TO_SH (19)
638 #define CRINFO_RELVADDR (0x7ffff)
639 #define CRINFO_RELVADDR_SH (0)
641 /* A compact relocation info has long (3 words) or short (2 words)
642 formats. A short format doesn't have VADDR field and relvaddr
643 fields contains ((VADDR - vaddr of the previous entry) >> 2). */
644 #define CRF_MIPS_LONG 1
645 #define CRF_MIPS_SHORT 0
647 /* There are 4 types of compact relocation at least. The value KONST
648 has different meaning for each type:
651 CT_MIPS_REL32 Address in data
652 CT_MIPS_WORD Address in word (XXX)
653 CT_MIPS_GPHI_LO GP - vaddr
654 CT_MIPS_JMPAD Address to jump
657 #define CRT_MIPS_REL32 0xa
658 #define CRT_MIPS_WORD 0xb
659 #define CRT_MIPS_GPHI_LO 0xc
660 #define CRT_MIPS_JMPAD 0xd
662 #define mips_elf_set_cr_format(x,format) ((x).ctype = (format))
663 #define mips_elf_set_cr_type(x,type) ((x).rtype = (type))
664 #define mips_elf_set_cr_dist2to(x,v) ((x).dist2to = (v))
665 #define mips_elf_set_cr_relvaddr(x,d) ((x).relvaddr = (d)<<2)
667 /* The structure of the runtime procedure descriptor created by the
668 loader for use by the static exception system. */
670 typedef struct runtime_pdr
{
671 bfd_vma adr
; /* Memory address of start of procedure. */
672 long regmask
; /* Save register mask. */
673 long regoffset
; /* Save register offset. */
674 long fregmask
; /* Save floating point register mask. */
675 long fregoffset
; /* Save floating point register offset. */
676 long frameoffset
; /* Frame size. */
677 short framereg
; /* Frame pointer register. */
678 short pcreg
; /* Offset or reg of return pc. */
679 long irpss
; /* Index into the runtime string table. */
681 struct exception_info
*exception_info
;/* Pointer to exception array. */
683 #define cbRPDR sizeof (RPDR)
684 #define rpdNil ((pRPDR) 0)
686 static struct mips_got_entry
*mips_elf_create_local_got_entry
687 (bfd
*, struct bfd_link_info
*, bfd
*, bfd_vma
, unsigned long,
688 struct mips_elf_link_hash_entry
*, int);
689 static bfd_boolean mips_elf_sort_hash_table_f
690 (struct mips_elf_link_hash_entry
*, void *);
691 static bfd_vma mips_elf_high
693 static bfd_boolean mips_elf_create_dynamic_relocation
694 (bfd
*, struct bfd_link_info
*, const Elf_Internal_Rela
*,
695 struct mips_elf_link_hash_entry
*, asection
*, bfd_vma
,
696 bfd_vma
*, asection
*);
697 static bfd_vma mips_elf_adjust_gp
698 (bfd
*, struct mips_got_info
*, bfd
*);
700 /* This will be used when we sort the dynamic relocation records. */
701 static bfd
*reldyn_sorting_bfd
;
703 /* True if ABFD is for CPUs with load interlocking that include
704 non-MIPS1 CPUs and R3900. */
705 #define LOAD_INTERLOCKS_P(abfd) \
706 ( ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) != E_MIPS_ARCH_1) \
707 || ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == E_MIPS_MACH_3900))
709 /* True if ABFD is for CPUs that are faster if JAL is converted to BAL.
710 This should be safe for all architectures. We enable this predicate
711 for RM9000 for now. */
712 #define JAL_TO_BAL_P(abfd) \
713 ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == E_MIPS_MACH_9000)
715 /* True if ABFD is for CPUs that are faster if JALR is converted to BAL.
716 This should be safe for all architectures. We enable this predicate for
718 #define JALR_TO_BAL_P(abfd) 1
720 /* True if ABFD is for CPUs that are faster if JR is converted to B.
721 This should be safe for all architectures. We enable this predicate for
723 #define JR_TO_B_P(abfd) 1
725 /* True if ABFD is a PIC object. */
726 #define PIC_OBJECT_P(abfd) \
727 ((elf_elfheader (abfd)->e_flags & EF_MIPS_PIC) != 0)
729 /* Nonzero if ABFD is using the N32 ABI. */
730 #define ABI_N32_P(abfd) \
731 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI2) != 0)
733 /* Nonzero if ABFD is using the N64 ABI. */
734 #define ABI_64_P(abfd) \
735 (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64)
737 /* Nonzero if ABFD is using NewABI conventions. */
738 #define NEWABI_P(abfd) (ABI_N32_P (abfd) || ABI_64_P (abfd))
740 /* Nonzero if ABFD has microMIPS code. */
741 #define MICROMIPS_P(abfd) \
742 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MICROMIPS) != 0)
744 /* The IRIX compatibility level we are striving for. */
745 #define IRIX_COMPAT(abfd) \
746 (get_elf_backend_data (abfd)->elf_backend_mips_irix_compat (abfd))
748 /* Whether we are trying to be compatible with IRIX at all. */
749 #define SGI_COMPAT(abfd) \
750 (IRIX_COMPAT (abfd) != ict_none)
752 /* The name of the options section. */
753 #define MIPS_ELF_OPTIONS_SECTION_NAME(abfd) \
754 (NEWABI_P (abfd) ? ".MIPS.options" : ".options")
756 /* True if NAME is the recognized name of any SHT_MIPS_OPTIONS section.
757 Some IRIX system files do not use MIPS_ELF_OPTIONS_SECTION_NAME. */
758 #define MIPS_ELF_OPTIONS_SECTION_NAME_P(NAME) \
759 (strcmp (NAME, ".MIPS.options") == 0 || strcmp (NAME, ".options") == 0)
761 /* Whether the section is readonly. */
762 #define MIPS_ELF_READONLY_SECTION(sec) \
763 ((sec->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY)) \
764 == (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
766 /* The name of the stub section. */
767 #define MIPS_ELF_STUB_SECTION_NAME(abfd) ".MIPS.stubs"
769 /* The size of an external REL relocation. */
770 #define MIPS_ELF_REL_SIZE(abfd) \
771 (get_elf_backend_data (abfd)->s->sizeof_rel)
773 /* The size of an external RELA relocation. */
774 #define MIPS_ELF_RELA_SIZE(abfd) \
775 (get_elf_backend_data (abfd)->s->sizeof_rela)
777 /* The size of an external dynamic table entry. */
778 #define MIPS_ELF_DYN_SIZE(abfd) \
779 (get_elf_backend_data (abfd)->s->sizeof_dyn)
781 /* The size of a GOT entry. */
782 #define MIPS_ELF_GOT_SIZE(abfd) \
783 (get_elf_backend_data (abfd)->s->arch_size / 8)
785 /* The size of the .rld_map section. */
786 #define MIPS_ELF_RLD_MAP_SIZE(abfd) \
787 (get_elf_backend_data (abfd)->s->arch_size / 8)
789 /* The size of a symbol-table entry. */
790 #define MIPS_ELF_SYM_SIZE(abfd) \
791 (get_elf_backend_data (abfd)->s->sizeof_sym)
793 /* The default alignment for sections, as a power of two. */
794 #define MIPS_ELF_LOG_FILE_ALIGN(abfd) \
795 (get_elf_backend_data (abfd)->s->log_file_align)
797 /* Get word-sized data. */
798 #define MIPS_ELF_GET_WORD(abfd, ptr) \
799 (ABI_64_P (abfd) ? bfd_get_64 (abfd, ptr) : bfd_get_32 (abfd, ptr))
801 /* Put out word-sized data. */
802 #define MIPS_ELF_PUT_WORD(abfd, val, ptr) \
804 ? bfd_put_64 (abfd, val, ptr) \
805 : bfd_put_32 (abfd, val, ptr))
807 /* The opcode for word-sized loads (LW or LD). */
808 #define MIPS_ELF_LOAD_WORD(abfd) \
809 (ABI_64_P (abfd) ? 0xdc000000 : 0x8c000000)
811 /* Add a dynamic symbol table-entry. */
812 #define MIPS_ELF_ADD_DYNAMIC_ENTRY(info, tag, val) \
813 _bfd_elf_add_dynamic_entry (info, tag, val)
815 #define MIPS_ELF_RTYPE_TO_HOWTO(abfd, rtype, rela) \
816 (get_elf_backend_data (abfd)->elf_backend_mips_rtype_to_howto (rtype, rela))
818 /* The name of the dynamic relocation section. */
819 #define MIPS_ELF_REL_DYN_NAME(INFO) \
820 (mips_elf_hash_table (INFO)->is_vxworks ? ".rela.dyn" : ".rel.dyn")
822 /* In case we're on a 32-bit machine, construct a 64-bit "-1" value
823 from smaller values. Start with zero, widen, *then* decrement. */
824 #define MINUS_ONE (((bfd_vma)0) - 1)
825 #define MINUS_TWO (((bfd_vma)0) - 2)
827 /* The value to write into got[1] for SVR4 targets, to identify it is
828 a GNU object. The dynamic linker can then use got[1] to store the
830 #define MIPS_ELF_GNU_GOT1_MASK(abfd) \
831 ((bfd_vma) 1 << (ABI_64_P (abfd) ? 63 : 31))
833 /* The offset of $gp from the beginning of the .got section. */
834 #define ELF_MIPS_GP_OFFSET(INFO) \
835 (mips_elf_hash_table (INFO)->is_vxworks ? 0x0 : 0x7ff0)
837 /* The maximum size of the GOT for it to be addressable using 16-bit
839 #define MIPS_ELF_GOT_MAX_SIZE(INFO) (ELF_MIPS_GP_OFFSET (INFO) + 0x7fff)
841 /* Instructions which appear in a stub. */
842 #define STUB_LW(abfd) \
844 ? 0xdf998010 /* ld t9,0x8010(gp) */ \
845 : 0x8f998010)) /* lw t9,0x8010(gp) */
846 #define STUB_MOVE(abfd) \
848 ? 0x03e0782d /* daddu t7,ra */ \
849 : 0x03e07821)) /* addu t7,ra */
850 #define STUB_LUI(VAL) (0x3c180000 + (VAL)) /* lui t8,VAL */
851 #define STUB_JALR 0x0320f809 /* jalr t9,ra */
852 #define STUB_ORI(VAL) (0x37180000 + (VAL)) /* ori t8,t8,VAL */
853 #define STUB_LI16U(VAL) (0x34180000 + (VAL)) /* ori t8,zero,VAL unsigned */
854 #define STUB_LI16S(abfd, VAL) \
856 ? (0x64180000 + (VAL)) /* daddiu t8,zero,VAL sign extended */ \
857 : (0x24180000 + (VAL)))) /* addiu t8,zero,VAL sign extended */
859 #define MIPS_FUNCTION_STUB_NORMAL_SIZE 16
860 #define MIPS_FUNCTION_STUB_BIG_SIZE 20
862 /* The name of the dynamic interpreter. This is put in the .interp
865 #define ELF_DYNAMIC_INTERPRETER(abfd) \
866 (ABI_N32_P (abfd) ? "/usr/lib32/libc.so.1" \
867 : ABI_64_P (abfd) ? "/usr/lib64/libc.so.1" \
868 : "/usr/lib/libc.so.1")
871 #define MNAME(bfd,pre,pos) \
872 (ABI_64_P (bfd) ? CONCAT4 (pre,64,_,pos) : CONCAT4 (pre,32,_,pos))
873 #define ELF_R_SYM(bfd, i) \
874 (ABI_64_P (bfd) ? ELF64_R_SYM (i) : ELF32_R_SYM (i))
875 #define ELF_R_TYPE(bfd, i) \
876 (ABI_64_P (bfd) ? ELF64_MIPS_R_TYPE (i) : ELF32_R_TYPE (i))
877 #define ELF_R_INFO(bfd, s, t) \
878 (ABI_64_P (bfd) ? ELF64_R_INFO (s, t) : ELF32_R_INFO (s, t))
880 #define MNAME(bfd,pre,pos) CONCAT4 (pre,32,_,pos)
881 #define ELF_R_SYM(bfd, i) \
883 #define ELF_R_TYPE(bfd, i) \
885 #define ELF_R_INFO(bfd, s, t) \
886 (ELF32_R_INFO (s, t))
889 /* The mips16 compiler uses a couple of special sections to handle
890 floating point arguments.
892 Section names that look like .mips16.fn.FNNAME contain stubs that
893 copy floating point arguments from the fp regs to the gp regs and
894 then jump to FNNAME. If any 32 bit function calls FNNAME, the
895 call should be redirected to the stub instead. If no 32 bit
896 function calls FNNAME, the stub should be discarded. We need to
897 consider any reference to the function, not just a call, because
898 if the address of the function is taken we will need the stub,
899 since the address might be passed to a 32 bit function.
901 Section names that look like .mips16.call.FNNAME contain stubs
902 that copy floating point arguments from the gp regs to the fp
903 regs and then jump to FNNAME. If FNNAME is a 32 bit function,
904 then any 16 bit function that calls FNNAME should be redirected
905 to the stub instead. If FNNAME is not a 32 bit function, the
906 stub should be discarded.
908 .mips16.call.fp.FNNAME sections are similar, but contain stubs
909 which call FNNAME and then copy the return value from the fp regs
910 to the gp regs. These stubs store the return value in $18 while
911 calling FNNAME; any function which might call one of these stubs
912 must arrange to save $18 around the call. (This case is not
913 needed for 32 bit functions that call 16 bit functions, because
914 16 bit functions always return floating point values in both
917 Note that in all cases FNNAME might be defined statically.
918 Therefore, FNNAME is not used literally. Instead, the relocation
919 information will indicate which symbol the section is for.
921 We record any stubs that we find in the symbol table. */
923 #define FN_STUB ".mips16.fn."
924 #define CALL_STUB ".mips16.call."
925 #define CALL_FP_STUB ".mips16.call.fp."
927 #define FN_STUB_P(name) CONST_STRNEQ (name, FN_STUB)
928 #define CALL_STUB_P(name) CONST_STRNEQ (name, CALL_STUB)
929 #define CALL_FP_STUB_P(name) CONST_STRNEQ (name, CALL_FP_STUB)
931 /* The format of the first PLT entry in an O32 executable. */
932 static const bfd_vma mips_o32_exec_plt0_entry
[] =
934 0x3c1c0000, /* lui $28, %hi(&GOTPLT[0]) */
935 0x8f990000, /* lw $25, %lo(&GOTPLT[0])($28) */
936 0x279c0000, /* addiu $28, $28, %lo(&GOTPLT[0]) */
937 0x031cc023, /* subu $24, $24, $28 */
938 0x03e07821, /* move $15, $31 # 32-bit move (addu) */
939 0x0018c082, /* srl $24, $24, 2 */
940 0x0320f809, /* jalr $25 */
941 0x2718fffe /* subu $24, $24, 2 */
944 /* The format of the first PLT entry in an N32 executable. Different
945 because gp ($28) is not available; we use t2 ($14) instead. */
946 static const bfd_vma mips_n32_exec_plt0_entry
[] =
948 0x3c0e0000, /* lui $14, %hi(&GOTPLT[0]) */
949 0x8dd90000, /* lw $25, %lo(&GOTPLT[0])($14) */
950 0x25ce0000, /* addiu $14, $14, %lo(&GOTPLT[0]) */
951 0x030ec023, /* subu $24, $24, $14 */
952 0x03e07821, /* move $15, $31 # 32-bit move (addu) */
953 0x0018c082, /* srl $24, $24, 2 */
954 0x0320f809, /* jalr $25 */
955 0x2718fffe /* subu $24, $24, 2 */
958 /* The format of the first PLT entry in an N64 executable. Different
959 from N32 because of the increased size of GOT entries. */
960 static const bfd_vma mips_n64_exec_plt0_entry
[] =
962 0x3c0e0000, /* lui $14, %hi(&GOTPLT[0]) */
963 0xddd90000, /* ld $25, %lo(&GOTPLT[0])($14) */
964 0x25ce0000, /* addiu $14, $14, %lo(&GOTPLT[0]) */
965 0x030ec023, /* subu $24, $24, $14 */
966 0x03e0782d, /* move $15, $31 # 64-bit move (daddu) */
967 0x0018c0c2, /* srl $24, $24, 3 */
968 0x0320f809, /* jalr $25 */
969 0x2718fffe /* subu $24, $24, 2 */
972 /* The format of subsequent PLT entries. */
973 static const bfd_vma mips_exec_plt_entry
[] =
975 0x3c0f0000, /* lui $15, %hi(.got.plt entry) */
976 0x01f90000, /* l[wd] $25, %lo(.got.plt entry)($15) */
977 0x25f80000, /* addiu $24, $15, %lo(.got.plt entry) */
978 0x03200008 /* jr $25 */
981 /* The format of the first PLT entry in a VxWorks executable. */
982 static const bfd_vma mips_vxworks_exec_plt0_entry
[] =
984 0x3c190000, /* lui t9, %hi(_GLOBAL_OFFSET_TABLE_) */
985 0x27390000, /* addiu t9, t9, %lo(_GLOBAL_OFFSET_TABLE_) */
986 0x8f390008, /* lw t9, 8(t9) */
987 0x00000000, /* nop */
988 0x03200008, /* jr t9 */
992 /* The format of subsequent PLT entries. */
993 static const bfd_vma mips_vxworks_exec_plt_entry
[] =
995 0x10000000, /* b .PLT_resolver */
996 0x24180000, /* li t8, <pltindex> */
997 0x3c190000, /* lui t9, %hi(<.got.plt slot>) */
998 0x27390000, /* addiu t9, t9, %lo(<.got.plt slot>) */
999 0x8f390000, /* lw t9, 0(t9) */
1000 0x00000000, /* nop */
1001 0x03200008, /* jr t9 */
1002 0x00000000 /* nop */
1005 /* The format of the first PLT entry in a VxWorks shared object. */
1006 static const bfd_vma mips_vxworks_shared_plt0_entry
[] =
1008 0x8f990008, /* lw t9, 8(gp) */
1009 0x00000000, /* nop */
1010 0x03200008, /* jr t9 */
1011 0x00000000, /* nop */
1012 0x00000000, /* nop */
1013 0x00000000 /* nop */
1016 /* The format of subsequent PLT entries. */
1017 static const bfd_vma mips_vxworks_shared_plt_entry
[] =
1019 0x10000000, /* b .PLT_resolver */
1020 0x24180000 /* li t8, <pltindex> */
1023 /* microMIPS 32-bit opcode helper installer. */
1026 bfd_put_micromips_32 (const bfd
*abfd
, bfd_vma opcode
, bfd_byte
*ptr
)
1028 bfd_put_16 (abfd
, (opcode
>> 16) & 0xffff, ptr
);
1029 bfd_put_16 (abfd
, opcode
& 0xffff, ptr
+ 2);
1032 /* microMIPS 32-bit opcode helper retriever. */
1035 bfd_get_micromips_32 (const bfd
*abfd
, const bfd_byte
*ptr
)
1037 return (bfd_get_16 (abfd
, ptr
) << 16) | bfd_get_16 (abfd
, ptr
+ 2);
1040 /* Look up an entry in a MIPS ELF linker hash table. */
1042 #define mips_elf_link_hash_lookup(table, string, create, copy, follow) \
1043 ((struct mips_elf_link_hash_entry *) \
1044 elf_link_hash_lookup (&(table)->root, (string), (create), \
1047 /* Traverse a MIPS ELF linker hash table. */
1049 #define mips_elf_link_hash_traverse(table, func, info) \
1050 (elf_link_hash_traverse \
1052 (bfd_boolean (*) (struct elf_link_hash_entry *, void *)) (func), \
1055 /* Find the base offsets for thread-local storage in this object,
1056 for GD/LD and IE/LE respectively. */
1058 #define TP_OFFSET 0x7000
1059 #define DTP_OFFSET 0x8000
1062 dtprel_base (struct bfd_link_info
*info
)
1064 /* If tls_sec is NULL, we should have signalled an error already. */
1065 if (elf_hash_table (info
)->tls_sec
== NULL
)
1067 return elf_hash_table (info
)->tls_sec
->vma
+ DTP_OFFSET
;
1071 tprel_base (struct bfd_link_info
*info
)
1073 /* If tls_sec is NULL, we should have signalled an error already. */
1074 if (elf_hash_table (info
)->tls_sec
== NULL
)
1076 return elf_hash_table (info
)->tls_sec
->vma
+ TP_OFFSET
;
1079 /* Create an entry in a MIPS ELF linker hash table. */
1081 static struct bfd_hash_entry
*
1082 mips_elf_link_hash_newfunc (struct bfd_hash_entry
*entry
,
1083 struct bfd_hash_table
*table
, const char *string
)
1085 struct mips_elf_link_hash_entry
*ret
=
1086 (struct mips_elf_link_hash_entry
*) entry
;
1088 /* Allocate the structure if it has not already been allocated by a
1091 ret
= bfd_hash_allocate (table
, sizeof (struct mips_elf_link_hash_entry
));
1093 return (struct bfd_hash_entry
*) ret
;
1095 /* Call the allocation method of the superclass. */
1096 ret
= ((struct mips_elf_link_hash_entry
*)
1097 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
1101 /* Set local fields. */
1102 memset (&ret
->esym
, 0, sizeof (EXTR
));
1103 /* We use -2 as a marker to indicate that the information has
1104 not been set. -1 means there is no associated ifd. */
1107 ret
->possibly_dynamic_relocs
= 0;
1108 ret
->fn_stub
= NULL
;
1109 ret
->call_stub
= NULL
;
1110 ret
->call_fp_stub
= NULL
;
1111 ret
->global_got_area
= GGA_NONE
;
1112 ret
->got_only_for_calls
= TRUE
;
1113 ret
->readonly_reloc
= FALSE
;
1114 ret
->has_static_relocs
= FALSE
;
1115 ret
->no_fn_stub
= FALSE
;
1116 ret
->need_fn_stub
= FALSE
;
1117 ret
->has_nonpic_branches
= FALSE
;
1118 ret
->needs_lazy_stub
= FALSE
;
1121 return (struct bfd_hash_entry
*) ret
;
1124 /* Allocate MIPS ELF private object data. */
1127 _bfd_mips_elf_mkobject (bfd
*abfd
)
1129 return bfd_elf_allocate_object (abfd
, sizeof (struct mips_elf_obj_tdata
),
1134 _bfd_mips_elf_new_section_hook (bfd
*abfd
, asection
*sec
)
1136 if (!sec
->used_by_bfd
)
1138 struct _mips_elf_section_data
*sdata
;
1139 bfd_size_type amt
= sizeof (*sdata
);
1141 sdata
= bfd_zalloc (abfd
, amt
);
1144 sec
->used_by_bfd
= sdata
;
1147 return _bfd_elf_new_section_hook (abfd
, sec
);
1150 /* Read ECOFF debugging information from a .mdebug section into a
1151 ecoff_debug_info structure. */
1154 _bfd_mips_elf_read_ecoff_info (bfd
*abfd
, asection
*section
,
1155 struct ecoff_debug_info
*debug
)
1158 const struct ecoff_debug_swap
*swap
;
1161 swap
= get_elf_backend_data (abfd
)->elf_backend_ecoff_debug_swap
;
1162 memset (debug
, 0, sizeof (*debug
));
1164 ext_hdr
= bfd_malloc (swap
->external_hdr_size
);
1165 if (ext_hdr
== NULL
&& swap
->external_hdr_size
!= 0)
1168 if (! bfd_get_section_contents (abfd
, section
, ext_hdr
, 0,
1169 swap
->external_hdr_size
))
1172 symhdr
= &debug
->symbolic_header
;
1173 (*swap
->swap_hdr_in
) (abfd
, ext_hdr
, symhdr
);
1175 /* The symbolic header contains absolute file offsets and sizes to
1177 #define READ(ptr, offset, count, size, type) \
1178 if (symhdr->count == 0) \
1179 debug->ptr = NULL; \
1182 bfd_size_type amt = (bfd_size_type) size * symhdr->count; \
1183 debug->ptr = bfd_malloc (amt); \
1184 if (debug->ptr == NULL) \
1185 goto error_return; \
1186 if (bfd_seek (abfd, symhdr->offset, SEEK_SET) != 0 \
1187 || bfd_bread (debug->ptr, amt, abfd) != amt) \
1188 goto error_return; \
1191 READ (line
, cbLineOffset
, cbLine
, sizeof (unsigned char), unsigned char *);
1192 READ (external_dnr
, cbDnOffset
, idnMax
, swap
->external_dnr_size
, void *);
1193 READ (external_pdr
, cbPdOffset
, ipdMax
, swap
->external_pdr_size
, void *);
1194 READ (external_sym
, cbSymOffset
, isymMax
, swap
->external_sym_size
, void *);
1195 READ (external_opt
, cbOptOffset
, ioptMax
, swap
->external_opt_size
, void *);
1196 READ (external_aux
, cbAuxOffset
, iauxMax
, sizeof (union aux_ext
),
1198 READ (ss
, cbSsOffset
, issMax
, sizeof (char), char *);
1199 READ (ssext
, cbSsExtOffset
, issExtMax
, sizeof (char), char *);
1200 READ (external_fdr
, cbFdOffset
, ifdMax
, swap
->external_fdr_size
, void *);
1201 READ (external_rfd
, cbRfdOffset
, crfd
, swap
->external_rfd_size
, void *);
1202 READ (external_ext
, cbExtOffset
, iextMax
, swap
->external_ext_size
, void *);
1210 if (ext_hdr
!= NULL
)
1212 if (debug
->line
!= NULL
)
1214 if (debug
->external_dnr
!= NULL
)
1215 free (debug
->external_dnr
);
1216 if (debug
->external_pdr
!= NULL
)
1217 free (debug
->external_pdr
);
1218 if (debug
->external_sym
!= NULL
)
1219 free (debug
->external_sym
);
1220 if (debug
->external_opt
!= NULL
)
1221 free (debug
->external_opt
);
1222 if (debug
->external_aux
!= NULL
)
1223 free (debug
->external_aux
);
1224 if (debug
->ss
!= NULL
)
1226 if (debug
->ssext
!= NULL
)
1227 free (debug
->ssext
);
1228 if (debug
->external_fdr
!= NULL
)
1229 free (debug
->external_fdr
);
1230 if (debug
->external_rfd
!= NULL
)
1231 free (debug
->external_rfd
);
1232 if (debug
->external_ext
!= NULL
)
1233 free (debug
->external_ext
);
1237 /* Swap RPDR (runtime procedure table entry) for output. */
1240 ecoff_swap_rpdr_out (bfd
*abfd
, const RPDR
*in
, struct rpdr_ext
*ex
)
1242 H_PUT_S32 (abfd
, in
->adr
, ex
->p_adr
);
1243 H_PUT_32 (abfd
, in
->regmask
, ex
->p_regmask
);
1244 H_PUT_32 (abfd
, in
->regoffset
, ex
->p_regoffset
);
1245 H_PUT_32 (abfd
, in
->fregmask
, ex
->p_fregmask
);
1246 H_PUT_32 (abfd
, in
->fregoffset
, ex
->p_fregoffset
);
1247 H_PUT_32 (abfd
, in
->frameoffset
, ex
->p_frameoffset
);
1249 H_PUT_16 (abfd
, in
->framereg
, ex
->p_framereg
);
1250 H_PUT_16 (abfd
, in
->pcreg
, ex
->p_pcreg
);
1252 H_PUT_32 (abfd
, in
->irpss
, ex
->p_irpss
);
1255 /* Create a runtime procedure table from the .mdebug section. */
1258 mips_elf_create_procedure_table (void *handle
, bfd
*abfd
,
1259 struct bfd_link_info
*info
, asection
*s
,
1260 struct ecoff_debug_info
*debug
)
1262 const struct ecoff_debug_swap
*swap
;
1263 HDRR
*hdr
= &debug
->symbolic_header
;
1265 struct rpdr_ext
*erp
;
1267 struct pdr_ext
*epdr
;
1268 struct sym_ext
*esym
;
1272 bfd_size_type count
;
1273 unsigned long sindex
;
1277 const char *no_name_func
= _("static procedure (no name)");
1285 swap
= get_elf_backend_data (abfd
)->elf_backend_ecoff_debug_swap
;
1287 sindex
= strlen (no_name_func
) + 1;
1288 count
= hdr
->ipdMax
;
1291 size
= swap
->external_pdr_size
;
1293 epdr
= bfd_malloc (size
* count
);
1297 if (! _bfd_ecoff_get_accumulated_pdr (handle
, (bfd_byte
*) epdr
))
1300 size
= sizeof (RPDR
);
1301 rp
= rpdr
= bfd_malloc (size
* count
);
1305 size
= sizeof (char *);
1306 sv
= bfd_malloc (size
* count
);
1310 count
= hdr
->isymMax
;
1311 size
= swap
->external_sym_size
;
1312 esym
= bfd_malloc (size
* count
);
1316 if (! _bfd_ecoff_get_accumulated_sym (handle
, (bfd_byte
*) esym
))
1319 count
= hdr
->issMax
;
1320 ss
= bfd_malloc (count
);
1323 if (! _bfd_ecoff_get_accumulated_ss (handle
, (bfd_byte
*) ss
))
1326 count
= hdr
->ipdMax
;
1327 for (i
= 0; i
< (unsigned long) count
; i
++, rp
++)
1329 (*swap
->swap_pdr_in
) (abfd
, epdr
+ i
, &pdr
);
1330 (*swap
->swap_sym_in
) (abfd
, &esym
[pdr
.isym
], &sym
);
1331 rp
->adr
= sym
.value
;
1332 rp
->regmask
= pdr
.regmask
;
1333 rp
->regoffset
= pdr
.regoffset
;
1334 rp
->fregmask
= pdr
.fregmask
;
1335 rp
->fregoffset
= pdr
.fregoffset
;
1336 rp
->frameoffset
= pdr
.frameoffset
;
1337 rp
->framereg
= pdr
.framereg
;
1338 rp
->pcreg
= pdr
.pcreg
;
1340 sv
[i
] = ss
+ sym
.iss
;
1341 sindex
+= strlen (sv
[i
]) + 1;
1345 size
= sizeof (struct rpdr_ext
) * (count
+ 2) + sindex
;
1346 size
= BFD_ALIGN (size
, 16);
1347 rtproc
= bfd_alloc (abfd
, size
);
1350 mips_elf_hash_table (info
)->procedure_count
= 0;
1354 mips_elf_hash_table (info
)->procedure_count
= count
+ 2;
1357 memset (erp
, 0, sizeof (struct rpdr_ext
));
1359 str
= (char *) rtproc
+ sizeof (struct rpdr_ext
) * (count
+ 2);
1360 strcpy (str
, no_name_func
);
1361 str
+= strlen (no_name_func
) + 1;
1362 for (i
= 0; i
< count
; i
++)
1364 ecoff_swap_rpdr_out (abfd
, rpdr
+ i
, erp
+ i
);
1365 strcpy (str
, sv
[i
]);
1366 str
+= strlen (sv
[i
]) + 1;
1368 H_PUT_S32 (abfd
, -1, (erp
+ count
)->p_adr
);
1370 /* Set the size and contents of .rtproc section. */
1372 s
->contents
= rtproc
;
1374 /* Skip this section later on (I don't think this currently
1375 matters, but someday it might). */
1376 s
->map_head
.link_order
= NULL
;
1405 /* We're going to create a stub for H. Create a symbol for the stub's
1406 value and size, to help make the disassembly easier to read. */
1409 mips_elf_create_stub_symbol (struct bfd_link_info
*info
,
1410 struct mips_elf_link_hash_entry
*h
,
1411 const char *prefix
, asection
*s
, bfd_vma value
,
1414 struct bfd_link_hash_entry
*bh
;
1415 struct elf_link_hash_entry
*elfh
;
1418 if (ELF_ST_IS_MICROMIPS (h
->root
.other
))
1421 /* Create a new symbol. */
1422 name
= ACONCAT ((prefix
, h
->root
.root
.root
.string
, NULL
));
1424 if (!_bfd_generic_link_add_one_symbol (info
, s
->owner
, name
,
1425 BSF_LOCAL
, s
, value
, NULL
,
1429 /* Make it a local function. */
1430 elfh
= (struct elf_link_hash_entry
*) bh
;
1431 elfh
->type
= ELF_ST_INFO (STB_LOCAL
, STT_FUNC
);
1433 elfh
->forced_local
= 1;
1437 /* We're about to redefine H. Create a symbol to represent H's
1438 current value and size, to help make the disassembly easier
1442 mips_elf_create_shadow_symbol (struct bfd_link_info
*info
,
1443 struct mips_elf_link_hash_entry
*h
,
1446 struct bfd_link_hash_entry
*bh
;
1447 struct elf_link_hash_entry
*elfh
;
1452 /* Read the symbol's value. */
1453 BFD_ASSERT (h
->root
.root
.type
== bfd_link_hash_defined
1454 || h
->root
.root
.type
== bfd_link_hash_defweak
);
1455 s
= h
->root
.root
.u
.def
.section
;
1456 value
= h
->root
.root
.u
.def
.value
;
1458 /* Create a new symbol. */
1459 name
= ACONCAT ((prefix
, h
->root
.root
.root
.string
, NULL
));
1461 if (!_bfd_generic_link_add_one_symbol (info
, s
->owner
, name
,
1462 BSF_LOCAL
, s
, value
, NULL
,
1466 /* Make it local and copy the other attributes from H. */
1467 elfh
= (struct elf_link_hash_entry
*) bh
;
1468 elfh
->type
= ELF_ST_INFO (STB_LOCAL
, ELF_ST_TYPE (h
->root
.type
));
1469 elfh
->other
= h
->root
.other
;
1470 elfh
->size
= h
->root
.size
;
1471 elfh
->forced_local
= 1;
1475 /* Return TRUE if relocations in SECTION can refer directly to a MIPS16
1476 function rather than to a hard-float stub. */
1479 section_allows_mips16_refs_p (asection
*section
)
1483 name
= bfd_get_section_name (section
->owner
, section
);
1484 return (FN_STUB_P (name
)
1485 || CALL_STUB_P (name
)
1486 || CALL_FP_STUB_P (name
)
1487 || strcmp (name
, ".pdr") == 0);
1490 /* [RELOCS, RELEND) are the relocations against SEC, which is a MIPS16
1491 stub section of some kind. Return the R_SYMNDX of the target
1492 function, or 0 if we can't decide which function that is. */
1494 static unsigned long
1495 mips16_stub_symndx (const struct elf_backend_data
*bed
,
1496 asection
*sec ATTRIBUTE_UNUSED
,
1497 const Elf_Internal_Rela
*relocs
,
1498 const Elf_Internal_Rela
*relend
)
1500 int int_rels_per_ext_rel
= bed
->s
->int_rels_per_ext_rel
;
1501 const Elf_Internal_Rela
*rel
;
1503 /* Trust the first R_MIPS_NONE relocation, if any, but not a subsequent
1504 one in a compound relocation. */
1505 for (rel
= relocs
; rel
< relend
; rel
+= int_rels_per_ext_rel
)
1506 if (ELF_R_TYPE (sec
->owner
, rel
->r_info
) == R_MIPS_NONE
)
1507 return ELF_R_SYM (sec
->owner
, rel
->r_info
);
1509 /* Otherwise trust the first relocation, whatever its kind. This is
1510 the traditional behavior. */
1511 if (relocs
< relend
)
1512 return ELF_R_SYM (sec
->owner
, relocs
->r_info
);
1517 /* Check the mips16 stubs for a particular symbol, and see if we can
1521 mips_elf_check_mips16_stubs (struct bfd_link_info
*info
,
1522 struct mips_elf_link_hash_entry
*h
)
1524 /* Dynamic symbols must use the standard call interface, in case other
1525 objects try to call them. */
1526 if (h
->fn_stub
!= NULL
1527 && h
->root
.dynindx
!= -1)
1529 mips_elf_create_shadow_symbol (info
, h
, ".mips16.");
1530 h
->need_fn_stub
= TRUE
;
1533 if (h
->fn_stub
!= NULL
1534 && ! h
->need_fn_stub
)
1536 /* We don't need the fn_stub; the only references to this symbol
1537 are 16 bit calls. Clobber the size to 0 to prevent it from
1538 being included in the link. */
1539 h
->fn_stub
->size
= 0;
1540 h
->fn_stub
->flags
&= ~SEC_RELOC
;
1541 h
->fn_stub
->reloc_count
= 0;
1542 h
->fn_stub
->flags
|= SEC_EXCLUDE
;
1545 if (h
->call_stub
!= NULL
1546 && ELF_ST_IS_MIPS16 (h
->root
.other
))
1548 /* We don't need the call_stub; this is a 16 bit function, so
1549 calls from other 16 bit functions are OK. Clobber the size
1550 to 0 to prevent it from being included in the link. */
1551 h
->call_stub
->size
= 0;
1552 h
->call_stub
->flags
&= ~SEC_RELOC
;
1553 h
->call_stub
->reloc_count
= 0;
1554 h
->call_stub
->flags
|= SEC_EXCLUDE
;
1557 if (h
->call_fp_stub
!= NULL
1558 && ELF_ST_IS_MIPS16 (h
->root
.other
))
1560 /* We don't need the call_stub; this is a 16 bit function, so
1561 calls from other 16 bit functions are OK. Clobber the size
1562 to 0 to prevent it from being included in the link. */
1563 h
->call_fp_stub
->size
= 0;
1564 h
->call_fp_stub
->flags
&= ~SEC_RELOC
;
1565 h
->call_fp_stub
->reloc_count
= 0;
1566 h
->call_fp_stub
->flags
|= SEC_EXCLUDE
;
1570 /* Hashtable callbacks for mips_elf_la25_stubs. */
1573 mips_elf_la25_stub_hash (const void *entry_
)
1575 const struct mips_elf_la25_stub
*entry
;
1577 entry
= (struct mips_elf_la25_stub
*) entry_
;
1578 return entry
->h
->root
.root
.u
.def
.section
->id
1579 + entry
->h
->root
.root
.u
.def
.value
;
1583 mips_elf_la25_stub_eq (const void *entry1_
, const void *entry2_
)
1585 const struct mips_elf_la25_stub
*entry1
, *entry2
;
1587 entry1
= (struct mips_elf_la25_stub
*) entry1_
;
1588 entry2
= (struct mips_elf_la25_stub
*) entry2_
;
1589 return ((entry1
->h
->root
.root
.u
.def
.section
1590 == entry2
->h
->root
.root
.u
.def
.section
)
1591 && (entry1
->h
->root
.root
.u
.def
.value
1592 == entry2
->h
->root
.root
.u
.def
.value
));
1595 /* Called by the linker to set up the la25 stub-creation code. FN is
1596 the linker's implementation of add_stub_function. Return true on
1600 _bfd_mips_elf_init_stubs (struct bfd_link_info
*info
,
1601 asection
*(*fn
) (const char *, asection
*,
1604 struct mips_elf_link_hash_table
*htab
;
1606 htab
= mips_elf_hash_table (info
);
1610 htab
->add_stub_section
= fn
;
1611 htab
->la25_stubs
= htab_try_create (1, mips_elf_la25_stub_hash
,
1612 mips_elf_la25_stub_eq
, NULL
);
1613 if (htab
->la25_stubs
== NULL
)
1619 /* Return true if H is a locally-defined PIC function, in the sense
1620 that it or its fn_stub might need $25 to be valid on entry.
1621 Note that MIPS16 functions set up $gp using PC-relative instructions,
1622 so they themselves never need $25 to be valid. Only non-MIPS16
1623 entry points are of interest here. */
1626 mips_elf_local_pic_function_p (struct mips_elf_link_hash_entry
*h
)
1628 return ((h
->root
.root
.type
== bfd_link_hash_defined
1629 || h
->root
.root
.type
== bfd_link_hash_defweak
)
1630 && h
->root
.def_regular
1631 && !bfd_is_abs_section (h
->root
.root
.u
.def
.section
)
1632 && (!ELF_ST_IS_MIPS16 (h
->root
.other
)
1633 || (h
->fn_stub
&& h
->need_fn_stub
))
1634 && (PIC_OBJECT_P (h
->root
.root
.u
.def
.section
->owner
)
1635 || ELF_ST_IS_MIPS_PIC (h
->root
.other
)));
1638 /* Set *SEC to the input section that contains the target of STUB.
1639 Return the offset of the target from the start of that section. */
1642 mips_elf_get_la25_target (struct mips_elf_la25_stub
*stub
,
1645 if (ELF_ST_IS_MIPS16 (stub
->h
->root
.other
))
1647 BFD_ASSERT (stub
->h
->need_fn_stub
);
1648 *sec
= stub
->h
->fn_stub
;
1653 *sec
= stub
->h
->root
.root
.u
.def
.section
;
1654 return stub
->h
->root
.root
.u
.def
.value
;
1658 /* STUB describes an la25 stub that we have decided to implement
1659 by inserting an LUI/ADDIU pair before the target function.
1660 Create the section and redirect the function symbol to it. */
1663 mips_elf_add_la25_intro (struct mips_elf_la25_stub
*stub
,
1664 struct bfd_link_info
*info
)
1666 struct mips_elf_link_hash_table
*htab
;
1668 asection
*s
, *input_section
;
1671 htab
= mips_elf_hash_table (info
);
1675 /* Create a unique name for the new section. */
1676 name
= bfd_malloc (11 + sizeof (".text.stub."));
1679 sprintf (name
, ".text.stub.%d", (int) htab_elements (htab
->la25_stubs
));
1681 /* Create the section. */
1682 mips_elf_get_la25_target (stub
, &input_section
);
1683 s
= htab
->add_stub_section (name
, input_section
,
1684 input_section
->output_section
);
1688 /* Make sure that any padding goes before the stub. */
1689 align
= input_section
->alignment_power
;
1690 if (!bfd_set_section_alignment (s
->owner
, s
, align
))
1693 s
->size
= (1 << align
) - 8;
1695 /* Create a symbol for the stub. */
1696 mips_elf_create_stub_symbol (info
, stub
->h
, ".pic.", s
, s
->size
, 8);
1697 stub
->stub_section
= s
;
1698 stub
->offset
= s
->size
;
1700 /* Allocate room for it. */
1705 /* STUB describes an la25 stub that we have decided to implement
1706 with a separate trampoline. Allocate room for it and redirect
1707 the function symbol to it. */
1710 mips_elf_add_la25_trampoline (struct mips_elf_la25_stub
*stub
,
1711 struct bfd_link_info
*info
)
1713 struct mips_elf_link_hash_table
*htab
;
1716 htab
= mips_elf_hash_table (info
);
1720 /* Create a trampoline section, if we haven't already. */
1721 s
= htab
->strampoline
;
1724 asection
*input_section
= stub
->h
->root
.root
.u
.def
.section
;
1725 s
= htab
->add_stub_section (".text", NULL
,
1726 input_section
->output_section
);
1727 if (s
== NULL
|| !bfd_set_section_alignment (s
->owner
, s
, 4))
1729 htab
->strampoline
= s
;
1732 /* Create a symbol for the stub. */
1733 mips_elf_create_stub_symbol (info
, stub
->h
, ".pic.", s
, s
->size
, 16);
1734 stub
->stub_section
= s
;
1735 stub
->offset
= s
->size
;
1737 /* Allocate room for it. */
1742 /* H describes a symbol that needs an la25 stub. Make sure that an
1743 appropriate stub exists and point H at it. */
1746 mips_elf_add_la25_stub (struct bfd_link_info
*info
,
1747 struct mips_elf_link_hash_entry
*h
)
1749 struct mips_elf_link_hash_table
*htab
;
1750 struct mips_elf_la25_stub search
, *stub
;
1751 bfd_boolean use_trampoline_p
;
1756 /* Describe the stub we want. */
1757 search
.stub_section
= NULL
;
1761 /* See if we've already created an equivalent stub. */
1762 htab
= mips_elf_hash_table (info
);
1766 slot
= htab_find_slot (htab
->la25_stubs
, &search
, INSERT
);
1770 stub
= (struct mips_elf_la25_stub
*) *slot
;
1773 /* We can reuse the existing stub. */
1774 h
->la25_stub
= stub
;
1778 /* Create a permanent copy of ENTRY and add it to the hash table. */
1779 stub
= bfd_malloc (sizeof (search
));
1785 /* Prefer to use LUI/ADDIU stubs if the function is at the beginning
1786 of the section and if we would need no more than 2 nops. */
1787 value
= mips_elf_get_la25_target (stub
, &s
);
1788 use_trampoline_p
= (value
!= 0 || s
->alignment_power
> 4);
1790 h
->la25_stub
= stub
;
1791 return (use_trampoline_p
1792 ? mips_elf_add_la25_trampoline (stub
, info
)
1793 : mips_elf_add_la25_intro (stub
, info
));
1796 /* A mips_elf_link_hash_traverse callback that is called before sizing
1797 sections. DATA points to a mips_htab_traverse_info structure. */
1800 mips_elf_check_symbols (struct mips_elf_link_hash_entry
*h
, void *data
)
1802 struct mips_htab_traverse_info
*hti
;
1804 hti
= (struct mips_htab_traverse_info
*) data
;
1805 if (!hti
->info
->relocatable
)
1806 mips_elf_check_mips16_stubs (hti
->info
, h
);
1808 if (mips_elf_local_pic_function_p (h
))
1810 /* PR 12845: If H is in a section that has been garbage
1811 collected it will have its output section set to *ABS*. */
1812 if (bfd_is_abs_section (h
->root
.root
.u
.def
.section
->output_section
))
1815 /* H is a function that might need $25 to be valid on entry.
1816 If we're creating a non-PIC relocatable object, mark H as
1817 being PIC. If we're creating a non-relocatable object with
1818 non-PIC branches and jumps to H, make sure that H has an la25
1820 if (hti
->info
->relocatable
)
1822 if (!PIC_OBJECT_P (hti
->output_bfd
))
1823 h
->root
.other
= ELF_ST_SET_MIPS_PIC (h
->root
.other
);
1825 else if (h
->has_nonpic_branches
&& !mips_elf_add_la25_stub (hti
->info
, h
))
1834 /* R_MIPS16_26 is used for the mips16 jal and jalx instructions.
1835 Most mips16 instructions are 16 bits, but these instructions
1838 The format of these instructions is:
1840 +--------------+--------------------------------+
1841 | JALX | X| Imm 20:16 | Imm 25:21 |
1842 +--------------+--------------------------------+
1844 +-----------------------------------------------+
1846 JALX is the 5-bit value 00011. X is 0 for jal, 1 for jalx.
1847 Note that the immediate value in the first word is swapped.
1849 When producing a relocatable object file, R_MIPS16_26 is
1850 handled mostly like R_MIPS_26. In particular, the addend is
1851 stored as a straight 26-bit value in a 32-bit instruction.
1852 (gas makes life simpler for itself by never adjusting a
1853 R_MIPS16_26 reloc to be against a section, so the addend is
1854 always zero). However, the 32 bit instruction is stored as 2
1855 16-bit values, rather than a single 32-bit value. In a
1856 big-endian file, the result is the same; in a little-endian
1857 file, the two 16-bit halves of the 32 bit value are swapped.
1858 This is so that a disassembler can recognize the jal
1861 When doing a final link, R_MIPS16_26 is treated as a 32 bit
1862 instruction stored as two 16-bit values. The addend A is the
1863 contents of the targ26 field. The calculation is the same as
1864 R_MIPS_26. When storing the calculated value, reorder the
1865 immediate value as shown above, and don't forget to store the
1866 value as two 16-bit values.
1868 To put it in MIPS ABI terms, the relocation field is T-targ26-16,
1872 +--------+----------------------+
1876 +--------+----------------------+
1879 +----------+------+-------------+
1883 +----------+--------------------+
1884 where targ26-16 is sub1 followed by sub2 (i.e., the addend field A is
1885 ((sub1 << 16) | sub2)).
1887 When producing a relocatable object file, the calculation is
1888 (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
1889 When producing a fully linked file, the calculation is
1890 let R = (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
1891 ((R & 0x1f0000) << 5) | ((R & 0x3e00000) >> 5) | (R & 0xffff)
1893 The table below lists the other MIPS16 instruction relocations.
1894 Each one is calculated in the same way as the non-MIPS16 relocation
1895 given on the right, but using the extended MIPS16 layout of 16-bit
1898 R_MIPS16_GPREL R_MIPS_GPREL16
1899 R_MIPS16_GOT16 R_MIPS_GOT16
1900 R_MIPS16_CALL16 R_MIPS_CALL16
1901 R_MIPS16_HI16 R_MIPS_HI16
1902 R_MIPS16_LO16 R_MIPS_LO16
1904 A typical instruction will have a format like this:
1906 +--------------+--------------------------------+
1907 | EXTEND | Imm 10:5 | Imm 15:11 |
1908 +--------------+--------------------------------+
1909 | Major | rx | ry | Imm 4:0 |
1910 +--------------+--------------------------------+
1912 EXTEND is the five bit value 11110. Major is the instruction
1915 All we need to do here is shuffle the bits appropriately.
1916 As above, the two 16-bit halves must be swapped on a
1917 little-endian system. */
1919 static inline bfd_boolean
1920 mips16_reloc_p (int r_type
)
1925 case R_MIPS16_GPREL
:
1926 case R_MIPS16_GOT16
:
1927 case R_MIPS16_CALL16
:
1930 case R_MIPS16_TLS_GD
:
1931 case R_MIPS16_TLS_LDM
:
1932 case R_MIPS16_TLS_DTPREL_HI16
:
1933 case R_MIPS16_TLS_DTPREL_LO16
:
1934 case R_MIPS16_TLS_GOTTPREL
:
1935 case R_MIPS16_TLS_TPREL_HI16
:
1936 case R_MIPS16_TLS_TPREL_LO16
:
1944 /* Check if a microMIPS reloc. */
1946 static inline bfd_boolean
1947 micromips_reloc_p (unsigned int r_type
)
1949 return r_type
>= R_MICROMIPS_min
&& r_type
< R_MICROMIPS_max
;
1952 /* Similar to MIPS16, the two 16-bit halves in microMIPS must be swapped
1953 on a little-endian system. This does not apply to R_MICROMIPS_PC7_S1
1954 and R_MICROMIPS_PC10_S1 relocs that apply to 16-bit instructions. */
1956 static inline bfd_boolean
1957 micromips_reloc_shuffle_p (unsigned int r_type
)
1959 return (micromips_reloc_p (r_type
)
1960 && r_type
!= R_MICROMIPS_PC7_S1
1961 && r_type
!= R_MICROMIPS_PC10_S1
);
1964 static inline bfd_boolean
1965 got16_reloc_p (int r_type
)
1967 return (r_type
== R_MIPS_GOT16
1968 || r_type
== R_MIPS16_GOT16
1969 || r_type
== R_MICROMIPS_GOT16
);
1972 static inline bfd_boolean
1973 call16_reloc_p (int r_type
)
1975 return (r_type
== R_MIPS_CALL16
1976 || r_type
== R_MIPS16_CALL16
1977 || r_type
== R_MICROMIPS_CALL16
);
1980 static inline bfd_boolean
1981 got_disp_reloc_p (unsigned int r_type
)
1983 return r_type
== R_MIPS_GOT_DISP
|| r_type
== R_MICROMIPS_GOT_DISP
;
1986 static inline bfd_boolean
1987 got_page_reloc_p (unsigned int r_type
)
1989 return r_type
== R_MIPS_GOT_PAGE
|| r_type
== R_MICROMIPS_GOT_PAGE
;
1992 static inline bfd_boolean
1993 got_ofst_reloc_p (unsigned int r_type
)
1995 return r_type
== R_MIPS_GOT_OFST
|| r_type
== R_MICROMIPS_GOT_OFST
;
1998 static inline bfd_boolean
1999 got_hi16_reloc_p (unsigned int r_type
)
2001 return r_type
== R_MIPS_GOT_HI16
|| r_type
== R_MICROMIPS_GOT_HI16
;
2004 static inline bfd_boolean
2005 got_lo16_reloc_p (unsigned int r_type
)
2007 return r_type
== R_MIPS_GOT_LO16
|| r_type
== R_MICROMIPS_GOT_LO16
;
2010 static inline bfd_boolean
2011 call_hi16_reloc_p (unsigned int r_type
)
2013 return r_type
== R_MIPS_CALL_HI16
|| r_type
== R_MICROMIPS_CALL_HI16
;
2016 static inline bfd_boolean
2017 call_lo16_reloc_p (unsigned int r_type
)
2019 return r_type
== R_MIPS_CALL_LO16
|| r_type
== R_MICROMIPS_CALL_LO16
;
2022 static inline bfd_boolean
2023 hi16_reloc_p (int r_type
)
2025 return (r_type
== R_MIPS_HI16
2026 || r_type
== R_MIPS16_HI16
2027 || r_type
== R_MICROMIPS_HI16
);
2030 static inline bfd_boolean
2031 lo16_reloc_p (int r_type
)
2033 return (r_type
== R_MIPS_LO16
2034 || r_type
== R_MIPS16_LO16
2035 || r_type
== R_MICROMIPS_LO16
);
2038 static inline bfd_boolean
2039 mips16_call_reloc_p (int r_type
)
2041 return r_type
== R_MIPS16_26
|| r_type
== R_MIPS16_CALL16
;
2044 static inline bfd_boolean
2045 jal_reloc_p (int r_type
)
2047 return (r_type
== R_MIPS_26
2048 || r_type
== R_MIPS16_26
2049 || r_type
== R_MICROMIPS_26_S1
);
2052 static inline bfd_boolean
2053 micromips_branch_reloc_p (int r_type
)
2055 return (r_type
== R_MICROMIPS_26_S1
2056 || r_type
== R_MICROMIPS_PC16_S1
2057 || r_type
== R_MICROMIPS_PC10_S1
2058 || r_type
== R_MICROMIPS_PC7_S1
);
2061 static inline bfd_boolean
2062 tls_gd_reloc_p (unsigned int r_type
)
2064 return (r_type
== R_MIPS_TLS_GD
2065 || r_type
== R_MIPS16_TLS_GD
2066 || r_type
== R_MICROMIPS_TLS_GD
);
2069 static inline bfd_boolean
2070 tls_ldm_reloc_p (unsigned int r_type
)
2072 return (r_type
== R_MIPS_TLS_LDM
2073 || r_type
== R_MIPS16_TLS_LDM
2074 || r_type
== R_MICROMIPS_TLS_LDM
);
2077 static inline bfd_boolean
2078 tls_gottprel_reloc_p (unsigned int r_type
)
2080 return (r_type
== R_MIPS_TLS_GOTTPREL
2081 || r_type
== R_MIPS16_TLS_GOTTPREL
2082 || r_type
== R_MICROMIPS_TLS_GOTTPREL
);
2086 _bfd_mips_elf_reloc_unshuffle (bfd
*abfd
, int r_type
,
2087 bfd_boolean jal_shuffle
, bfd_byte
*data
)
2089 bfd_vma first
, second
, val
;
2091 if (!mips16_reloc_p (r_type
) && !micromips_reloc_shuffle_p (r_type
))
2094 /* Pick up the first and second halfwords of the instruction. */
2095 first
= bfd_get_16 (abfd
, data
);
2096 second
= bfd_get_16 (abfd
, data
+ 2);
2097 if (micromips_reloc_p (r_type
) || (r_type
== R_MIPS16_26
&& !jal_shuffle
))
2098 val
= first
<< 16 | second
;
2099 else if (r_type
!= R_MIPS16_26
)
2100 val
= (((first
& 0xf800) << 16) | ((second
& 0xffe0) << 11)
2101 | ((first
& 0x1f) << 11) | (first
& 0x7e0) | (second
& 0x1f));
2103 val
= (((first
& 0xfc00) << 16) | ((first
& 0x3e0) << 11)
2104 | ((first
& 0x1f) << 21) | second
);
2105 bfd_put_32 (abfd
, val
, data
);
2109 _bfd_mips_elf_reloc_shuffle (bfd
*abfd
, int r_type
,
2110 bfd_boolean jal_shuffle
, bfd_byte
*data
)
2112 bfd_vma first
, second
, val
;
2114 if (!mips16_reloc_p (r_type
) && !micromips_reloc_shuffle_p (r_type
))
2117 val
= bfd_get_32 (abfd
, data
);
2118 if (micromips_reloc_p (r_type
) || (r_type
== R_MIPS16_26
&& !jal_shuffle
))
2120 second
= val
& 0xffff;
2123 else if (r_type
!= R_MIPS16_26
)
2125 second
= ((val
>> 11) & 0xffe0) | (val
& 0x1f);
2126 first
= ((val
>> 16) & 0xf800) | ((val
>> 11) & 0x1f) | (val
& 0x7e0);
2130 second
= val
& 0xffff;
2131 first
= ((val
>> 16) & 0xfc00) | ((val
>> 11) & 0x3e0)
2132 | ((val
>> 21) & 0x1f);
2134 bfd_put_16 (abfd
, second
, data
+ 2);
2135 bfd_put_16 (abfd
, first
, data
);
2138 bfd_reloc_status_type
2139 _bfd_mips_elf_gprel16_with_gp (bfd
*abfd
, asymbol
*symbol
,
2140 arelent
*reloc_entry
, asection
*input_section
,
2141 bfd_boolean relocatable
, void *data
, bfd_vma gp
)
2145 bfd_reloc_status_type status
;
2147 if (bfd_is_com_section (symbol
->section
))
2150 relocation
= symbol
->value
;
2152 relocation
+= symbol
->section
->output_section
->vma
;
2153 relocation
+= symbol
->section
->output_offset
;
2155 if (reloc_entry
->address
> bfd_get_section_limit (abfd
, input_section
))
2156 return bfd_reloc_outofrange
;
2158 /* Set val to the offset into the section or symbol. */
2159 val
= reloc_entry
->addend
;
2161 _bfd_mips_elf_sign_extend (val
, 16);
2163 /* Adjust val for the final section location and GP value. If we
2164 are producing relocatable output, we don't want to do this for
2165 an external symbol. */
2167 || (symbol
->flags
& BSF_SECTION_SYM
) != 0)
2168 val
+= relocation
- gp
;
2170 if (reloc_entry
->howto
->partial_inplace
)
2172 status
= _bfd_relocate_contents (reloc_entry
->howto
, abfd
, val
,
2174 + reloc_entry
->address
);
2175 if (status
!= bfd_reloc_ok
)
2179 reloc_entry
->addend
= val
;
2182 reloc_entry
->address
+= input_section
->output_offset
;
2184 return bfd_reloc_ok
;
2187 /* Used to store a REL high-part relocation such as R_MIPS_HI16 or
2188 R_MIPS_GOT16. REL is the relocation, INPUT_SECTION is the section
2189 that contains the relocation field and DATA points to the start of
2194 struct mips_hi16
*next
;
2196 asection
*input_section
;
2200 /* FIXME: This should not be a static variable. */
2202 static struct mips_hi16
*mips_hi16_list
;
2204 /* A howto special_function for REL *HI16 relocations. We can only
2205 calculate the correct value once we've seen the partnering
2206 *LO16 relocation, so just save the information for later.
2208 The ABI requires that the *LO16 immediately follow the *HI16.
2209 However, as a GNU extension, we permit an arbitrary number of
2210 *HI16s to be associated with a single *LO16. This significantly
2211 simplies the relocation handling in gcc. */
2213 bfd_reloc_status_type
2214 _bfd_mips_elf_hi16_reloc (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*reloc_entry
,
2215 asymbol
*symbol ATTRIBUTE_UNUSED
, void *data
,
2216 asection
*input_section
, bfd
*output_bfd
,
2217 char **error_message ATTRIBUTE_UNUSED
)
2219 struct mips_hi16
*n
;
2221 if (reloc_entry
->address
> bfd_get_section_limit (abfd
, input_section
))
2222 return bfd_reloc_outofrange
;
2224 n
= bfd_malloc (sizeof *n
);
2226 return bfd_reloc_outofrange
;
2228 n
->next
= mips_hi16_list
;
2230 n
->input_section
= input_section
;
2231 n
->rel
= *reloc_entry
;
2234 if (output_bfd
!= NULL
)
2235 reloc_entry
->address
+= input_section
->output_offset
;
2237 return bfd_reloc_ok
;
2240 /* A howto special_function for REL R_MIPS*_GOT16 relocations. This is just
2241 like any other 16-bit relocation when applied to global symbols, but is
2242 treated in the same as R_MIPS_HI16 when applied to local symbols. */
2244 bfd_reloc_status_type
2245 _bfd_mips_elf_got16_reloc (bfd
*abfd
, arelent
*reloc_entry
, asymbol
*symbol
,
2246 void *data
, asection
*input_section
,
2247 bfd
*output_bfd
, char **error_message
)
2249 if ((symbol
->flags
& (BSF_GLOBAL
| BSF_WEAK
)) != 0
2250 || bfd_is_und_section (bfd_get_section (symbol
))
2251 || bfd_is_com_section (bfd_get_section (symbol
)))
2252 /* The relocation is against a global symbol. */
2253 return _bfd_mips_elf_generic_reloc (abfd
, reloc_entry
, symbol
, data
,
2254 input_section
, output_bfd
,
2257 return _bfd_mips_elf_hi16_reloc (abfd
, reloc_entry
, symbol
, data
,
2258 input_section
, output_bfd
, error_message
);
2261 /* A howto special_function for REL *LO16 relocations. The *LO16 itself
2262 is a straightforward 16 bit inplace relocation, but we must deal with
2263 any partnering high-part relocations as well. */
2265 bfd_reloc_status_type
2266 _bfd_mips_elf_lo16_reloc (bfd
*abfd
, arelent
*reloc_entry
, asymbol
*symbol
,
2267 void *data
, asection
*input_section
,
2268 bfd
*output_bfd
, char **error_message
)
2271 bfd_byte
*location
= (bfd_byte
*) data
+ reloc_entry
->address
;
2273 if (reloc_entry
->address
> bfd_get_section_limit (abfd
, input_section
))
2274 return bfd_reloc_outofrange
;
2276 _bfd_mips_elf_reloc_unshuffle (abfd
, reloc_entry
->howto
->type
, FALSE
,
2278 vallo
= bfd_get_32 (abfd
, location
);
2279 _bfd_mips_elf_reloc_shuffle (abfd
, reloc_entry
->howto
->type
, FALSE
,
2282 while (mips_hi16_list
!= NULL
)
2284 bfd_reloc_status_type ret
;
2285 struct mips_hi16
*hi
;
2287 hi
= mips_hi16_list
;
2289 /* R_MIPS*_GOT16 relocations are something of a special case. We
2290 want to install the addend in the same way as for a R_MIPS*_HI16
2291 relocation (with a rightshift of 16). However, since GOT16
2292 relocations can also be used with global symbols, their howto
2293 has a rightshift of 0. */
2294 if (hi
->rel
.howto
->type
== R_MIPS_GOT16
)
2295 hi
->rel
.howto
= MIPS_ELF_RTYPE_TO_HOWTO (abfd
, R_MIPS_HI16
, FALSE
);
2296 else if (hi
->rel
.howto
->type
== R_MIPS16_GOT16
)
2297 hi
->rel
.howto
= MIPS_ELF_RTYPE_TO_HOWTO (abfd
, R_MIPS16_HI16
, FALSE
);
2298 else if (hi
->rel
.howto
->type
== R_MICROMIPS_GOT16
)
2299 hi
->rel
.howto
= MIPS_ELF_RTYPE_TO_HOWTO (abfd
, R_MICROMIPS_HI16
, FALSE
);
2301 /* VALLO is a signed 16-bit number. Bias it by 0x8000 so that any
2302 carry or borrow will induce a change of +1 or -1 in the high part. */
2303 hi
->rel
.addend
+= (vallo
+ 0x8000) & 0xffff;
2305 ret
= _bfd_mips_elf_generic_reloc (abfd
, &hi
->rel
, symbol
, hi
->data
,
2306 hi
->input_section
, output_bfd
,
2308 if (ret
!= bfd_reloc_ok
)
2311 mips_hi16_list
= hi
->next
;
2315 return _bfd_mips_elf_generic_reloc (abfd
, reloc_entry
, symbol
, data
,
2316 input_section
, output_bfd
,
2320 /* A generic howto special_function. This calculates and installs the
2321 relocation itself, thus avoiding the oft-discussed problems in
2322 bfd_perform_relocation and bfd_install_relocation. */
2324 bfd_reloc_status_type
2325 _bfd_mips_elf_generic_reloc (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*reloc_entry
,
2326 asymbol
*symbol
, void *data ATTRIBUTE_UNUSED
,
2327 asection
*input_section
, bfd
*output_bfd
,
2328 char **error_message ATTRIBUTE_UNUSED
)
2331 bfd_reloc_status_type status
;
2332 bfd_boolean relocatable
;
2334 relocatable
= (output_bfd
!= NULL
);
2336 if (reloc_entry
->address
> bfd_get_section_limit (abfd
, input_section
))
2337 return bfd_reloc_outofrange
;
2339 /* Build up the field adjustment in VAL. */
2341 if (!relocatable
|| (symbol
->flags
& BSF_SECTION_SYM
) != 0)
2343 /* Either we're calculating the final field value or we have a
2344 relocation against a section symbol. Add in the section's
2345 offset or address. */
2346 val
+= symbol
->section
->output_section
->vma
;
2347 val
+= symbol
->section
->output_offset
;
2352 /* We're calculating the final field value. Add in the symbol's value
2353 and, if pc-relative, subtract the address of the field itself. */
2354 val
+= symbol
->value
;
2355 if (reloc_entry
->howto
->pc_relative
)
2357 val
-= input_section
->output_section
->vma
;
2358 val
-= input_section
->output_offset
;
2359 val
-= reloc_entry
->address
;
2363 /* VAL is now the final adjustment. If we're keeping this relocation
2364 in the output file, and if the relocation uses a separate addend,
2365 we just need to add VAL to that addend. Otherwise we need to add
2366 VAL to the relocation field itself. */
2367 if (relocatable
&& !reloc_entry
->howto
->partial_inplace
)
2368 reloc_entry
->addend
+= val
;
2371 bfd_byte
*location
= (bfd_byte
*) data
+ reloc_entry
->address
;
2373 /* Add in the separate addend, if any. */
2374 val
+= reloc_entry
->addend
;
2376 /* Add VAL to the relocation field. */
2377 _bfd_mips_elf_reloc_unshuffle (abfd
, reloc_entry
->howto
->type
, FALSE
,
2379 status
= _bfd_relocate_contents (reloc_entry
->howto
, abfd
, val
,
2381 _bfd_mips_elf_reloc_shuffle (abfd
, reloc_entry
->howto
->type
, FALSE
,
2384 if (status
!= bfd_reloc_ok
)
2389 reloc_entry
->address
+= input_section
->output_offset
;
2391 return bfd_reloc_ok
;
2394 /* Swap an entry in a .gptab section. Note that these routines rely
2395 on the equivalence of the two elements of the union. */
2398 bfd_mips_elf32_swap_gptab_in (bfd
*abfd
, const Elf32_External_gptab
*ex
,
2401 in
->gt_entry
.gt_g_value
= H_GET_32 (abfd
, ex
->gt_entry
.gt_g_value
);
2402 in
->gt_entry
.gt_bytes
= H_GET_32 (abfd
, ex
->gt_entry
.gt_bytes
);
2406 bfd_mips_elf32_swap_gptab_out (bfd
*abfd
, const Elf32_gptab
*in
,
2407 Elf32_External_gptab
*ex
)
2409 H_PUT_32 (abfd
, in
->gt_entry
.gt_g_value
, ex
->gt_entry
.gt_g_value
);
2410 H_PUT_32 (abfd
, in
->gt_entry
.gt_bytes
, ex
->gt_entry
.gt_bytes
);
2414 bfd_elf32_swap_compact_rel_out (bfd
*abfd
, const Elf32_compact_rel
*in
,
2415 Elf32_External_compact_rel
*ex
)
2417 H_PUT_32 (abfd
, in
->id1
, ex
->id1
);
2418 H_PUT_32 (abfd
, in
->num
, ex
->num
);
2419 H_PUT_32 (abfd
, in
->id2
, ex
->id2
);
2420 H_PUT_32 (abfd
, in
->offset
, ex
->offset
);
2421 H_PUT_32 (abfd
, in
->reserved0
, ex
->reserved0
);
2422 H_PUT_32 (abfd
, in
->reserved1
, ex
->reserved1
);
2426 bfd_elf32_swap_crinfo_out (bfd
*abfd
, const Elf32_crinfo
*in
,
2427 Elf32_External_crinfo
*ex
)
2431 l
= (((in
->ctype
& CRINFO_CTYPE
) << CRINFO_CTYPE_SH
)
2432 | ((in
->rtype
& CRINFO_RTYPE
) << CRINFO_RTYPE_SH
)
2433 | ((in
->dist2to
& CRINFO_DIST2TO
) << CRINFO_DIST2TO_SH
)
2434 | ((in
->relvaddr
& CRINFO_RELVADDR
) << CRINFO_RELVADDR_SH
));
2435 H_PUT_32 (abfd
, l
, ex
->info
);
2436 H_PUT_32 (abfd
, in
->konst
, ex
->konst
);
2437 H_PUT_32 (abfd
, in
->vaddr
, ex
->vaddr
);
2440 /* A .reginfo section holds a single Elf32_RegInfo structure. These
2441 routines swap this structure in and out. They are used outside of
2442 BFD, so they are globally visible. */
2445 bfd_mips_elf32_swap_reginfo_in (bfd
*abfd
, const Elf32_External_RegInfo
*ex
,
2448 in
->ri_gprmask
= H_GET_32 (abfd
, ex
->ri_gprmask
);
2449 in
->ri_cprmask
[0] = H_GET_32 (abfd
, ex
->ri_cprmask
[0]);
2450 in
->ri_cprmask
[1] = H_GET_32 (abfd
, ex
->ri_cprmask
[1]);
2451 in
->ri_cprmask
[2] = H_GET_32 (abfd
, ex
->ri_cprmask
[2]);
2452 in
->ri_cprmask
[3] = H_GET_32 (abfd
, ex
->ri_cprmask
[3]);
2453 in
->ri_gp_value
= H_GET_32 (abfd
, ex
->ri_gp_value
);
2457 bfd_mips_elf32_swap_reginfo_out (bfd
*abfd
, const Elf32_RegInfo
*in
,
2458 Elf32_External_RegInfo
*ex
)
2460 H_PUT_32 (abfd
, in
->ri_gprmask
, ex
->ri_gprmask
);
2461 H_PUT_32 (abfd
, in
->ri_cprmask
[0], ex
->ri_cprmask
[0]);
2462 H_PUT_32 (abfd
, in
->ri_cprmask
[1], ex
->ri_cprmask
[1]);
2463 H_PUT_32 (abfd
, in
->ri_cprmask
[2], ex
->ri_cprmask
[2]);
2464 H_PUT_32 (abfd
, in
->ri_cprmask
[3], ex
->ri_cprmask
[3]);
2465 H_PUT_32 (abfd
, in
->ri_gp_value
, ex
->ri_gp_value
);
2468 /* In the 64 bit ABI, the .MIPS.options section holds register
2469 information in an Elf64_Reginfo structure. These routines swap
2470 them in and out. They are globally visible because they are used
2471 outside of BFD. These routines are here so that gas can call them
2472 without worrying about whether the 64 bit ABI has been included. */
2475 bfd_mips_elf64_swap_reginfo_in (bfd
*abfd
, const Elf64_External_RegInfo
*ex
,
2476 Elf64_Internal_RegInfo
*in
)
2478 in
->ri_gprmask
= H_GET_32 (abfd
, ex
->ri_gprmask
);
2479 in
->ri_pad
= H_GET_32 (abfd
, ex
->ri_pad
);
2480 in
->ri_cprmask
[0] = H_GET_32 (abfd
, ex
->ri_cprmask
[0]);
2481 in
->ri_cprmask
[1] = H_GET_32 (abfd
, ex
->ri_cprmask
[1]);
2482 in
->ri_cprmask
[2] = H_GET_32 (abfd
, ex
->ri_cprmask
[2]);
2483 in
->ri_cprmask
[3] = H_GET_32 (abfd
, ex
->ri_cprmask
[3]);
2484 in
->ri_gp_value
= H_GET_64 (abfd
, ex
->ri_gp_value
);
2488 bfd_mips_elf64_swap_reginfo_out (bfd
*abfd
, const Elf64_Internal_RegInfo
*in
,
2489 Elf64_External_RegInfo
*ex
)
2491 H_PUT_32 (abfd
, in
->ri_gprmask
, ex
->ri_gprmask
);
2492 H_PUT_32 (abfd
, in
->ri_pad
, ex
->ri_pad
);
2493 H_PUT_32 (abfd
, in
->ri_cprmask
[0], ex
->ri_cprmask
[0]);
2494 H_PUT_32 (abfd
, in
->ri_cprmask
[1], ex
->ri_cprmask
[1]);
2495 H_PUT_32 (abfd
, in
->ri_cprmask
[2], ex
->ri_cprmask
[2]);
2496 H_PUT_32 (abfd
, in
->ri_cprmask
[3], ex
->ri_cprmask
[3]);
2497 H_PUT_64 (abfd
, in
->ri_gp_value
, ex
->ri_gp_value
);
2500 /* Swap in an options header. */
2503 bfd_mips_elf_swap_options_in (bfd
*abfd
, const Elf_External_Options
*ex
,
2504 Elf_Internal_Options
*in
)
2506 in
->kind
= H_GET_8 (abfd
, ex
->kind
);
2507 in
->size
= H_GET_8 (abfd
, ex
->size
);
2508 in
->section
= H_GET_16 (abfd
, ex
->section
);
2509 in
->info
= H_GET_32 (abfd
, ex
->info
);
2512 /* Swap out an options header. */
2515 bfd_mips_elf_swap_options_out (bfd
*abfd
, const Elf_Internal_Options
*in
,
2516 Elf_External_Options
*ex
)
2518 H_PUT_8 (abfd
, in
->kind
, ex
->kind
);
2519 H_PUT_8 (abfd
, in
->size
, ex
->size
);
2520 H_PUT_16 (abfd
, in
->section
, ex
->section
);
2521 H_PUT_32 (abfd
, in
->info
, ex
->info
);
2524 /* This function is called via qsort() to sort the dynamic relocation
2525 entries by increasing r_symndx value. */
2528 sort_dynamic_relocs (const void *arg1
, const void *arg2
)
2530 Elf_Internal_Rela int_reloc1
;
2531 Elf_Internal_Rela int_reloc2
;
2534 bfd_elf32_swap_reloc_in (reldyn_sorting_bfd
, arg1
, &int_reloc1
);
2535 bfd_elf32_swap_reloc_in (reldyn_sorting_bfd
, arg2
, &int_reloc2
);
2537 diff
= ELF32_R_SYM (int_reloc1
.r_info
) - ELF32_R_SYM (int_reloc2
.r_info
);
2541 if (int_reloc1
.r_offset
< int_reloc2
.r_offset
)
2543 if (int_reloc1
.r_offset
> int_reloc2
.r_offset
)
2548 /* Like sort_dynamic_relocs, but used for elf64 relocations. */
2551 sort_dynamic_relocs_64 (const void *arg1 ATTRIBUTE_UNUSED
,
2552 const void *arg2 ATTRIBUTE_UNUSED
)
2555 Elf_Internal_Rela int_reloc1
[3];
2556 Elf_Internal_Rela int_reloc2
[3];
2558 (*get_elf_backend_data (reldyn_sorting_bfd
)->s
->swap_reloc_in
)
2559 (reldyn_sorting_bfd
, arg1
, int_reloc1
);
2560 (*get_elf_backend_data (reldyn_sorting_bfd
)->s
->swap_reloc_in
)
2561 (reldyn_sorting_bfd
, arg2
, int_reloc2
);
2563 if (ELF64_R_SYM (int_reloc1
[0].r_info
) < ELF64_R_SYM (int_reloc2
[0].r_info
))
2565 if (ELF64_R_SYM (int_reloc1
[0].r_info
) > ELF64_R_SYM (int_reloc2
[0].r_info
))
2568 if (int_reloc1
[0].r_offset
< int_reloc2
[0].r_offset
)
2570 if (int_reloc1
[0].r_offset
> int_reloc2
[0].r_offset
)
2579 /* This routine is used to write out ECOFF debugging external symbol
2580 information. It is called via mips_elf_link_hash_traverse. The
2581 ECOFF external symbol information must match the ELF external
2582 symbol information. Unfortunately, at this point we don't know
2583 whether a symbol is required by reloc information, so the two
2584 tables may wind up being different. We must sort out the external
2585 symbol information before we can set the final size of the .mdebug
2586 section, and we must set the size of the .mdebug section before we
2587 can relocate any sections, and we can't know which symbols are
2588 required by relocation until we relocate the sections.
2589 Fortunately, it is relatively unlikely that any symbol will be
2590 stripped but required by a reloc. In particular, it can not happen
2591 when generating a final executable. */
2594 mips_elf_output_extsym (struct mips_elf_link_hash_entry
*h
, void *data
)
2596 struct extsym_info
*einfo
= data
;
2598 asection
*sec
, *output_section
;
2600 if (h
->root
.indx
== -2)
2602 else if ((h
->root
.def_dynamic
2603 || h
->root
.ref_dynamic
2604 || h
->root
.type
== bfd_link_hash_new
)
2605 && !h
->root
.def_regular
2606 && !h
->root
.ref_regular
)
2608 else if (einfo
->info
->strip
== strip_all
2609 || (einfo
->info
->strip
== strip_some
2610 && bfd_hash_lookup (einfo
->info
->keep_hash
,
2611 h
->root
.root
.root
.string
,
2612 FALSE
, FALSE
) == NULL
))
2620 if (h
->esym
.ifd
== -2)
2623 h
->esym
.cobol_main
= 0;
2624 h
->esym
.weakext
= 0;
2625 h
->esym
.reserved
= 0;
2626 h
->esym
.ifd
= ifdNil
;
2627 h
->esym
.asym
.value
= 0;
2628 h
->esym
.asym
.st
= stGlobal
;
2630 if (h
->root
.root
.type
== bfd_link_hash_undefined
2631 || h
->root
.root
.type
== bfd_link_hash_undefweak
)
2635 /* Use undefined class. Also, set class and type for some
2637 name
= h
->root
.root
.root
.string
;
2638 if (strcmp (name
, mips_elf_dynsym_rtproc_names
[0]) == 0
2639 || strcmp (name
, mips_elf_dynsym_rtproc_names
[1]) == 0)
2641 h
->esym
.asym
.sc
= scData
;
2642 h
->esym
.asym
.st
= stLabel
;
2643 h
->esym
.asym
.value
= 0;
2645 else if (strcmp (name
, mips_elf_dynsym_rtproc_names
[2]) == 0)
2647 h
->esym
.asym
.sc
= scAbs
;
2648 h
->esym
.asym
.st
= stLabel
;
2649 h
->esym
.asym
.value
=
2650 mips_elf_hash_table (einfo
->info
)->procedure_count
;
2652 else if (strcmp (name
, "_gp_disp") == 0 && ! NEWABI_P (einfo
->abfd
))
2654 h
->esym
.asym
.sc
= scAbs
;
2655 h
->esym
.asym
.st
= stLabel
;
2656 h
->esym
.asym
.value
= elf_gp (einfo
->abfd
);
2659 h
->esym
.asym
.sc
= scUndefined
;
2661 else if (h
->root
.root
.type
!= bfd_link_hash_defined
2662 && h
->root
.root
.type
!= bfd_link_hash_defweak
)
2663 h
->esym
.asym
.sc
= scAbs
;
2668 sec
= h
->root
.root
.u
.def
.section
;
2669 output_section
= sec
->output_section
;
2671 /* When making a shared library and symbol h is the one from
2672 the another shared library, OUTPUT_SECTION may be null. */
2673 if (output_section
== NULL
)
2674 h
->esym
.asym
.sc
= scUndefined
;
2677 name
= bfd_section_name (output_section
->owner
, output_section
);
2679 if (strcmp (name
, ".text") == 0)
2680 h
->esym
.asym
.sc
= scText
;
2681 else if (strcmp (name
, ".data") == 0)
2682 h
->esym
.asym
.sc
= scData
;
2683 else if (strcmp (name
, ".sdata") == 0)
2684 h
->esym
.asym
.sc
= scSData
;
2685 else if (strcmp (name
, ".rodata") == 0
2686 || strcmp (name
, ".rdata") == 0)
2687 h
->esym
.asym
.sc
= scRData
;
2688 else if (strcmp (name
, ".bss") == 0)
2689 h
->esym
.asym
.sc
= scBss
;
2690 else if (strcmp (name
, ".sbss") == 0)
2691 h
->esym
.asym
.sc
= scSBss
;
2692 else if (strcmp (name
, ".init") == 0)
2693 h
->esym
.asym
.sc
= scInit
;
2694 else if (strcmp (name
, ".fini") == 0)
2695 h
->esym
.asym
.sc
= scFini
;
2697 h
->esym
.asym
.sc
= scAbs
;
2701 h
->esym
.asym
.reserved
= 0;
2702 h
->esym
.asym
.index
= indexNil
;
2705 if (h
->root
.root
.type
== bfd_link_hash_common
)
2706 h
->esym
.asym
.value
= h
->root
.root
.u
.c
.size
;
2707 else if (h
->root
.root
.type
== bfd_link_hash_defined
2708 || h
->root
.root
.type
== bfd_link_hash_defweak
)
2710 if (h
->esym
.asym
.sc
== scCommon
)
2711 h
->esym
.asym
.sc
= scBss
;
2712 else if (h
->esym
.asym
.sc
== scSCommon
)
2713 h
->esym
.asym
.sc
= scSBss
;
2715 sec
= h
->root
.root
.u
.def
.section
;
2716 output_section
= sec
->output_section
;
2717 if (output_section
!= NULL
)
2718 h
->esym
.asym
.value
= (h
->root
.root
.u
.def
.value
2719 + sec
->output_offset
2720 + output_section
->vma
);
2722 h
->esym
.asym
.value
= 0;
2726 struct mips_elf_link_hash_entry
*hd
= h
;
2728 while (hd
->root
.root
.type
== bfd_link_hash_indirect
)
2729 hd
= (struct mips_elf_link_hash_entry
*)h
->root
.root
.u
.i
.link
;
2731 if (hd
->needs_lazy_stub
)
2733 /* Set type and value for a symbol with a function stub. */
2734 h
->esym
.asym
.st
= stProc
;
2735 sec
= hd
->root
.root
.u
.def
.section
;
2737 h
->esym
.asym
.value
= 0;
2740 output_section
= sec
->output_section
;
2741 if (output_section
!= NULL
)
2742 h
->esym
.asym
.value
= (hd
->root
.plt
.offset
2743 + sec
->output_offset
2744 + output_section
->vma
);
2746 h
->esym
.asym
.value
= 0;
2751 if (! bfd_ecoff_debug_one_external (einfo
->abfd
, einfo
->debug
, einfo
->swap
,
2752 h
->root
.root
.root
.string
,
2755 einfo
->failed
= TRUE
;
2762 /* A comparison routine used to sort .gptab entries. */
2765 gptab_compare (const void *p1
, const void *p2
)
2767 const Elf32_gptab
*a1
= p1
;
2768 const Elf32_gptab
*a2
= p2
;
2770 return a1
->gt_entry
.gt_g_value
- a2
->gt_entry
.gt_g_value
;
2773 /* Functions to manage the got entry hash table. */
2775 /* Use all 64 bits of a bfd_vma for the computation of a 32-bit
2778 static INLINE hashval_t
2779 mips_elf_hash_bfd_vma (bfd_vma addr
)
2782 return addr
+ (addr
>> 32);
2789 mips_elf_got_entry_hash (const void *entry_
)
2791 const struct mips_got_entry
*entry
= (struct mips_got_entry
*)entry_
;
2793 return (entry
->symndx
2794 + ((entry
->tls_type
== GOT_TLS_LDM
) << 18)
2795 + (entry
->tls_type
== GOT_TLS_LDM
? 0
2796 : !entry
->abfd
? mips_elf_hash_bfd_vma (entry
->d
.address
)
2797 : entry
->symndx
>= 0 ? (entry
->abfd
->id
2798 + mips_elf_hash_bfd_vma (entry
->d
.addend
))
2799 : entry
->d
.h
->root
.root
.root
.hash
));
2803 mips_elf_got_entry_eq (const void *entry1
, const void *entry2
)
2805 const struct mips_got_entry
*e1
= (struct mips_got_entry
*)entry1
;
2806 const struct mips_got_entry
*e2
= (struct mips_got_entry
*)entry2
;
2808 return (e1
->symndx
== e2
->symndx
2809 && e1
->tls_type
== e2
->tls_type
2810 && (e1
->tls_type
== GOT_TLS_LDM
? TRUE
2811 : !e1
->abfd
? !e2
->abfd
&& e1
->d
.address
== e2
->d
.address
2812 : e1
->symndx
>= 0 ? (e1
->abfd
== e2
->abfd
2813 && e1
->d
.addend
== e2
->d
.addend
)
2814 : e2
->abfd
&& e1
->d
.h
== e2
->d
.h
));
2818 mips_got_page_ref_hash (const void *ref_
)
2820 const struct mips_got_page_ref
*ref
;
2822 ref
= (const struct mips_got_page_ref
*) ref_
;
2823 return ((ref
->symndx
>= 0
2824 ? (hashval_t
) (ref
->u
.abfd
->id
+ ref
->symndx
)
2825 : ref
->u
.h
->root
.root
.root
.hash
)
2826 + mips_elf_hash_bfd_vma (ref
->addend
));
2830 mips_got_page_ref_eq (const void *ref1_
, const void *ref2_
)
2832 const struct mips_got_page_ref
*ref1
, *ref2
;
2834 ref1
= (const struct mips_got_page_ref
*) ref1_
;
2835 ref2
= (const struct mips_got_page_ref
*) ref2_
;
2836 return (ref1
->symndx
== ref2
->symndx
2837 && (ref1
->symndx
< 0
2838 ? ref1
->u
.h
== ref2
->u
.h
2839 : ref1
->u
.abfd
== ref2
->u
.abfd
)
2840 && ref1
->addend
== ref2
->addend
);
2844 mips_got_page_entry_hash (const void *entry_
)
2846 const struct mips_got_page_entry
*entry
;
2848 entry
= (const struct mips_got_page_entry
*) entry_
;
2849 return entry
->sec
->id
;
2853 mips_got_page_entry_eq (const void *entry1_
, const void *entry2_
)
2855 const struct mips_got_page_entry
*entry1
, *entry2
;
2857 entry1
= (const struct mips_got_page_entry
*) entry1_
;
2858 entry2
= (const struct mips_got_page_entry
*) entry2_
;
2859 return entry1
->sec
== entry2
->sec
;
2862 /* Create and return a new mips_got_info structure. */
2864 static struct mips_got_info
*
2865 mips_elf_create_got_info (bfd
*abfd
)
2867 struct mips_got_info
*g
;
2869 g
= bfd_zalloc (abfd
, sizeof (struct mips_got_info
));
2873 g
->got_entries
= htab_try_create (1, mips_elf_got_entry_hash
,
2874 mips_elf_got_entry_eq
, NULL
);
2875 if (g
->got_entries
== NULL
)
2878 g
->got_page_refs
= htab_try_create (1, mips_got_page_ref_hash
,
2879 mips_got_page_ref_eq
, NULL
);
2880 if (g
->got_page_refs
== NULL
)
2886 /* Return the GOT info for input bfd ABFD, trying to create a new one if
2887 CREATE_P and if ABFD doesn't already have a GOT. */
2889 static struct mips_got_info
*
2890 mips_elf_bfd_got (bfd
*abfd
, bfd_boolean create_p
)
2892 struct mips_elf_obj_tdata
*tdata
;
2894 if (!is_mips_elf (abfd
))
2897 tdata
= mips_elf_tdata (abfd
);
2898 if (!tdata
->got
&& create_p
)
2899 tdata
->got
= mips_elf_create_got_info (abfd
);
2903 /* Record that ABFD should use output GOT G. */
2906 mips_elf_replace_bfd_got (bfd
*abfd
, struct mips_got_info
*g
)
2908 struct mips_elf_obj_tdata
*tdata
;
2910 BFD_ASSERT (is_mips_elf (abfd
));
2911 tdata
= mips_elf_tdata (abfd
);
2914 /* The GOT structure itself and the hash table entries are
2915 allocated to a bfd, but the hash tables aren't. */
2916 htab_delete (tdata
->got
->got_entries
);
2917 htab_delete (tdata
->got
->got_page_refs
);
2918 if (tdata
->got
->got_page_entries
)
2919 htab_delete (tdata
->got
->got_page_entries
);
2924 /* Return the dynamic relocation section. If it doesn't exist, try to
2925 create a new it if CREATE_P, otherwise return NULL. Also return NULL
2926 if creation fails. */
2929 mips_elf_rel_dyn_section (struct bfd_link_info
*info
, bfd_boolean create_p
)
2935 dname
= MIPS_ELF_REL_DYN_NAME (info
);
2936 dynobj
= elf_hash_table (info
)->dynobj
;
2937 sreloc
= bfd_get_linker_section (dynobj
, dname
);
2938 if (sreloc
== NULL
&& create_p
)
2940 sreloc
= bfd_make_section_anyway_with_flags (dynobj
, dname
,
2945 | SEC_LINKER_CREATED
2948 || ! bfd_set_section_alignment (dynobj
, sreloc
,
2949 MIPS_ELF_LOG_FILE_ALIGN (dynobj
)))
2955 /* Return the GOT_TLS_* type required by relocation type R_TYPE. */
2958 mips_elf_reloc_tls_type (unsigned int r_type
)
2960 if (tls_gd_reloc_p (r_type
))
2963 if (tls_ldm_reloc_p (r_type
))
2966 if (tls_gottprel_reloc_p (r_type
))
2969 return GOT_TLS_NONE
;
2972 /* Return the number of GOT slots needed for GOT TLS type TYPE. */
2975 mips_tls_got_entries (unsigned int type
)
2992 /* Count the number of relocations needed for a TLS GOT entry, with
2993 access types from TLS_TYPE, and symbol H (or a local symbol if H
2997 mips_tls_got_relocs (struct bfd_link_info
*info
, unsigned char tls_type
,
2998 struct elf_link_hash_entry
*h
)
3001 bfd_boolean need_relocs
= FALSE
;
3002 bfd_boolean dyn
= elf_hash_table (info
)->dynamic_sections_created
;
3004 if (h
&& WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, h
)
3005 && (!info
->shared
|| !SYMBOL_REFERENCES_LOCAL (info
, h
)))
3008 if ((info
->shared
|| indx
!= 0)
3010 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
3011 || h
->root
.type
!= bfd_link_hash_undefweak
))
3020 return indx
!= 0 ? 2 : 1;
3026 return info
->shared
? 1 : 0;
3033 /* Add the number of GOT entries and TLS relocations required by ENTRY
3037 mips_elf_count_got_entry (struct bfd_link_info
*info
,
3038 struct mips_got_info
*g
,
3039 struct mips_got_entry
*entry
)
3041 if (entry
->tls_type
)
3043 g
->tls_gotno
+= mips_tls_got_entries (entry
->tls_type
);
3044 g
->relocs
+= mips_tls_got_relocs (info
, entry
->tls_type
,
3046 ? &entry
->d
.h
->root
: NULL
);
3048 else if (entry
->symndx
>= 0 || entry
->d
.h
->global_got_area
== GGA_NONE
)
3049 g
->local_gotno
+= 1;
3051 g
->global_gotno
+= 1;
3054 /* Output a simple dynamic relocation into SRELOC. */
3057 mips_elf_output_dynamic_relocation (bfd
*output_bfd
,
3059 unsigned long reloc_index
,
3064 Elf_Internal_Rela rel
[3];
3066 memset (rel
, 0, sizeof (rel
));
3068 rel
[0].r_info
= ELF_R_INFO (output_bfd
, indx
, r_type
);
3069 rel
[0].r_offset
= rel
[1].r_offset
= rel
[2].r_offset
= offset
;
3071 if (ABI_64_P (output_bfd
))
3073 (*get_elf_backend_data (output_bfd
)->s
->swap_reloc_out
)
3074 (output_bfd
, &rel
[0],
3076 + reloc_index
* sizeof (Elf64_Mips_External_Rel
)));
3079 bfd_elf32_swap_reloc_out
3080 (output_bfd
, &rel
[0],
3082 + reloc_index
* sizeof (Elf32_External_Rel
)));
3085 /* Initialize a set of TLS GOT entries for one symbol. */
3088 mips_elf_initialize_tls_slots (bfd
*abfd
, struct bfd_link_info
*info
,
3089 struct mips_got_entry
*entry
,
3090 struct mips_elf_link_hash_entry
*h
,
3093 struct mips_elf_link_hash_table
*htab
;
3095 asection
*sreloc
, *sgot
;
3096 bfd_vma got_offset
, got_offset2
;
3097 bfd_boolean need_relocs
= FALSE
;
3099 htab
= mips_elf_hash_table (info
);
3108 bfd_boolean dyn
= elf_hash_table (info
)->dynamic_sections_created
;
3110 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, &h
->root
)
3111 && (!info
->shared
|| !SYMBOL_REFERENCES_LOCAL (info
, &h
->root
)))
3112 indx
= h
->root
.dynindx
;
3115 if (entry
->tls_initialized
)
3118 if ((info
->shared
|| indx
!= 0)
3120 || ELF_ST_VISIBILITY (h
->root
.other
) == STV_DEFAULT
3121 || h
->root
.type
!= bfd_link_hash_undefweak
))
3124 /* MINUS_ONE means the symbol is not defined in this object. It may not
3125 be defined at all; assume that the value doesn't matter in that
3126 case. Otherwise complain if we would use the value. */
3127 BFD_ASSERT (value
!= MINUS_ONE
|| (indx
!= 0 && need_relocs
)
3128 || h
->root
.root
.type
== bfd_link_hash_undefweak
);
3130 /* Emit necessary relocations. */
3131 sreloc
= mips_elf_rel_dyn_section (info
, FALSE
);
3132 got_offset
= entry
->gotidx
;
3134 switch (entry
->tls_type
)
3137 /* General Dynamic. */
3138 got_offset2
= got_offset
+ MIPS_ELF_GOT_SIZE (abfd
);
3142 mips_elf_output_dynamic_relocation
3143 (abfd
, sreloc
, sreloc
->reloc_count
++, indx
,
3144 ABI_64_P (abfd
) ? R_MIPS_TLS_DTPMOD64
: R_MIPS_TLS_DTPMOD32
,
3145 sgot
->output_offset
+ sgot
->output_section
->vma
+ got_offset
);
3148 mips_elf_output_dynamic_relocation
3149 (abfd
, sreloc
, sreloc
->reloc_count
++, indx
,
3150 ABI_64_P (abfd
) ? R_MIPS_TLS_DTPREL64
: R_MIPS_TLS_DTPREL32
,
3151 sgot
->output_offset
+ sgot
->output_section
->vma
+ got_offset2
);
3153 MIPS_ELF_PUT_WORD (abfd
, value
- dtprel_base (info
),
3154 sgot
->contents
+ got_offset2
);
3158 MIPS_ELF_PUT_WORD (abfd
, 1,
3159 sgot
->contents
+ got_offset
);
3160 MIPS_ELF_PUT_WORD (abfd
, value
- dtprel_base (info
),
3161 sgot
->contents
+ got_offset2
);
3166 /* Initial Exec model. */
3170 MIPS_ELF_PUT_WORD (abfd
, value
- elf_hash_table (info
)->tls_sec
->vma
,
3171 sgot
->contents
+ got_offset
);
3173 MIPS_ELF_PUT_WORD (abfd
, 0,
3174 sgot
->contents
+ got_offset
);
3176 mips_elf_output_dynamic_relocation
3177 (abfd
, sreloc
, sreloc
->reloc_count
++, indx
,
3178 ABI_64_P (abfd
) ? R_MIPS_TLS_TPREL64
: R_MIPS_TLS_TPREL32
,
3179 sgot
->output_offset
+ sgot
->output_section
->vma
+ got_offset
);
3182 MIPS_ELF_PUT_WORD (abfd
, value
- tprel_base (info
),
3183 sgot
->contents
+ got_offset
);
3187 /* The initial offset is zero, and the LD offsets will include the
3188 bias by DTP_OFFSET. */
3189 MIPS_ELF_PUT_WORD (abfd
, 0,
3190 sgot
->contents
+ got_offset
3191 + MIPS_ELF_GOT_SIZE (abfd
));
3194 MIPS_ELF_PUT_WORD (abfd
, 1,
3195 sgot
->contents
+ got_offset
);
3197 mips_elf_output_dynamic_relocation
3198 (abfd
, sreloc
, sreloc
->reloc_count
++, indx
,
3199 ABI_64_P (abfd
) ? R_MIPS_TLS_DTPMOD64
: R_MIPS_TLS_DTPMOD32
,
3200 sgot
->output_offset
+ sgot
->output_section
->vma
+ got_offset
);
3207 entry
->tls_initialized
= TRUE
;
3210 /* Return the offset from _GLOBAL_OFFSET_TABLE_ of the .got.plt entry
3211 for global symbol H. .got.plt comes before the GOT, so the offset
3212 will be negative. */
3215 mips_elf_gotplt_index (struct bfd_link_info
*info
,
3216 struct elf_link_hash_entry
*h
)
3218 bfd_vma plt_index
, got_address
, got_value
;
3219 struct mips_elf_link_hash_table
*htab
;
3221 htab
= mips_elf_hash_table (info
);
3222 BFD_ASSERT (htab
!= NULL
);
3224 BFD_ASSERT (h
->plt
.offset
!= (bfd_vma
) -1);
3226 /* This function only works for VxWorks, because a non-VxWorks .got.plt
3227 section starts with reserved entries. */
3228 BFD_ASSERT (htab
->is_vxworks
);
3230 /* Calculate the index of the symbol's PLT entry. */
3231 plt_index
= (h
->plt
.offset
- htab
->plt_header_size
) / htab
->plt_entry_size
;
3233 /* Calculate the address of the associated .got.plt entry. */
3234 got_address
= (htab
->sgotplt
->output_section
->vma
3235 + htab
->sgotplt
->output_offset
3238 /* Calculate the value of _GLOBAL_OFFSET_TABLE_. */
3239 got_value
= (htab
->root
.hgot
->root
.u
.def
.section
->output_section
->vma
3240 + htab
->root
.hgot
->root
.u
.def
.section
->output_offset
3241 + htab
->root
.hgot
->root
.u
.def
.value
);
3243 return got_address
- got_value
;
3246 /* Return the GOT offset for address VALUE. If there is not yet a GOT
3247 entry for this value, create one. If R_SYMNDX refers to a TLS symbol,
3248 create a TLS GOT entry instead. Return -1 if no satisfactory GOT
3249 offset can be found. */
3252 mips_elf_local_got_index (bfd
*abfd
, bfd
*ibfd
, struct bfd_link_info
*info
,
3253 bfd_vma value
, unsigned long r_symndx
,
3254 struct mips_elf_link_hash_entry
*h
, int r_type
)
3256 struct mips_elf_link_hash_table
*htab
;
3257 struct mips_got_entry
*entry
;
3259 htab
= mips_elf_hash_table (info
);
3260 BFD_ASSERT (htab
!= NULL
);
3262 entry
= mips_elf_create_local_got_entry (abfd
, info
, ibfd
, value
,
3263 r_symndx
, h
, r_type
);
3267 if (entry
->tls_type
)
3268 mips_elf_initialize_tls_slots (abfd
, info
, entry
, h
, value
);
3269 return entry
->gotidx
;
3272 /* Return the GOT index of global symbol H in the primary GOT. */
3275 mips_elf_primary_global_got_index (bfd
*obfd
, struct bfd_link_info
*info
,
3276 struct elf_link_hash_entry
*h
)
3278 struct mips_elf_link_hash_table
*htab
;
3279 long global_got_dynindx
;
3280 struct mips_got_info
*g
;
3283 htab
= mips_elf_hash_table (info
);
3284 BFD_ASSERT (htab
!= NULL
);
3286 global_got_dynindx
= 0;
3287 if (htab
->global_gotsym
!= NULL
)
3288 global_got_dynindx
= htab
->global_gotsym
->dynindx
;
3290 /* Once we determine the global GOT entry with the lowest dynamic
3291 symbol table index, we must put all dynamic symbols with greater
3292 indices into the primary GOT. That makes it easy to calculate the
3294 BFD_ASSERT (h
->dynindx
>= global_got_dynindx
);
3295 g
= mips_elf_bfd_got (obfd
, FALSE
);
3296 got_index
= ((h
->dynindx
- global_got_dynindx
+ g
->local_gotno
)
3297 * MIPS_ELF_GOT_SIZE (obfd
));
3298 BFD_ASSERT (got_index
< htab
->sgot
->size
);
3303 /* Return the GOT index for the global symbol indicated by H, which is
3304 referenced by a relocation of type R_TYPE in IBFD. */
3307 mips_elf_global_got_index (bfd
*obfd
, struct bfd_link_info
*info
, bfd
*ibfd
,
3308 struct elf_link_hash_entry
*h
, int r_type
)
3310 struct mips_elf_link_hash_table
*htab
;
3311 struct mips_got_info
*g
;
3312 struct mips_got_entry lookup
, *entry
;
3315 htab
= mips_elf_hash_table (info
);
3316 BFD_ASSERT (htab
!= NULL
);
3318 g
= mips_elf_bfd_got (ibfd
, FALSE
);
3321 lookup
.tls_type
= mips_elf_reloc_tls_type (r_type
);
3322 if (!lookup
.tls_type
&& g
== mips_elf_bfd_got (obfd
, FALSE
))
3323 return mips_elf_primary_global_got_index (obfd
, info
, h
);
3327 lookup
.d
.h
= (struct mips_elf_link_hash_entry
*) h
;
3328 entry
= htab_find (g
->got_entries
, &lookup
);
3331 gotidx
= entry
->gotidx
;
3332 BFD_ASSERT (gotidx
> 0 && gotidx
< htab
->sgot
->size
);
3334 if (lookup
.tls_type
)
3336 bfd_vma value
= MINUS_ONE
;
3338 if ((h
->root
.type
== bfd_link_hash_defined
3339 || h
->root
.type
== bfd_link_hash_defweak
)
3340 && h
->root
.u
.def
.section
->output_section
)
3341 value
= (h
->root
.u
.def
.value
3342 + h
->root
.u
.def
.section
->output_offset
3343 + h
->root
.u
.def
.section
->output_section
->vma
);
3345 mips_elf_initialize_tls_slots (obfd
, info
, entry
, lookup
.d
.h
, value
);
3350 /* Find a GOT page entry that points to within 32KB of VALUE. These
3351 entries are supposed to be placed at small offsets in the GOT, i.e.,
3352 within 32KB of GP. Return the index of the GOT entry, or -1 if no
3353 entry could be created. If OFFSETP is nonnull, use it to return the
3354 offset of the GOT entry from VALUE. */
3357 mips_elf_got_page (bfd
*abfd
, bfd
*ibfd
, struct bfd_link_info
*info
,
3358 bfd_vma value
, bfd_vma
*offsetp
)
3360 bfd_vma page
, got_index
;
3361 struct mips_got_entry
*entry
;
3363 page
= (value
+ 0x8000) & ~(bfd_vma
) 0xffff;
3364 entry
= mips_elf_create_local_got_entry (abfd
, info
, ibfd
, page
, 0,
3365 NULL
, R_MIPS_GOT_PAGE
);
3370 got_index
= entry
->gotidx
;
3373 *offsetp
= value
- entry
->d
.address
;
3378 /* Find a local GOT entry for an R_MIPS*_GOT16 relocation against VALUE.
3379 EXTERNAL is true if the relocation was originally against a global
3380 symbol that binds locally. */
3383 mips_elf_got16_entry (bfd
*abfd
, bfd
*ibfd
, struct bfd_link_info
*info
,
3384 bfd_vma value
, bfd_boolean external
)
3386 struct mips_got_entry
*entry
;
3388 /* GOT16 relocations against local symbols are followed by a LO16
3389 relocation; those against global symbols are not. Thus if the
3390 symbol was originally local, the GOT16 relocation should load the
3391 equivalent of %hi(VALUE), otherwise it should load VALUE itself. */
3393 value
= mips_elf_high (value
) << 16;
3395 /* It doesn't matter whether the original relocation was R_MIPS_GOT16,
3396 R_MIPS16_GOT16, R_MIPS_CALL16, etc. The format of the entry is the
3397 same in all cases. */
3398 entry
= mips_elf_create_local_got_entry (abfd
, info
, ibfd
, value
, 0,
3399 NULL
, R_MIPS_GOT16
);
3401 return entry
->gotidx
;
3406 /* Returns the offset for the entry at the INDEXth position
3410 mips_elf_got_offset_from_index (struct bfd_link_info
*info
, bfd
*output_bfd
,
3411 bfd
*input_bfd
, bfd_vma got_index
)
3413 struct mips_elf_link_hash_table
*htab
;
3417 htab
= mips_elf_hash_table (info
);
3418 BFD_ASSERT (htab
!= NULL
);
3421 gp
= _bfd_get_gp_value (output_bfd
)
3422 + mips_elf_adjust_gp (output_bfd
, htab
->got_info
, input_bfd
);
3424 return sgot
->output_section
->vma
+ sgot
->output_offset
+ got_index
- gp
;
3427 /* Create and return a local GOT entry for VALUE, which was calculated
3428 from a symbol belonging to INPUT_SECTON. Return NULL if it could not
3429 be created. If R_SYMNDX refers to a TLS symbol, create a TLS entry
3432 static struct mips_got_entry
*
3433 mips_elf_create_local_got_entry (bfd
*abfd
, struct bfd_link_info
*info
,
3434 bfd
*ibfd
, bfd_vma value
,
3435 unsigned long r_symndx
,
3436 struct mips_elf_link_hash_entry
*h
,
3439 struct mips_got_entry lookup
, *entry
;
3441 struct mips_got_info
*g
;
3442 struct mips_elf_link_hash_table
*htab
;
3445 htab
= mips_elf_hash_table (info
);
3446 BFD_ASSERT (htab
!= NULL
);
3448 g
= mips_elf_bfd_got (ibfd
, FALSE
);
3451 g
= mips_elf_bfd_got (abfd
, FALSE
);
3452 BFD_ASSERT (g
!= NULL
);
3455 /* This function shouldn't be called for symbols that live in the global
3457 BFD_ASSERT (h
== NULL
|| h
->global_got_area
== GGA_NONE
);
3459 lookup
.tls_type
= mips_elf_reloc_tls_type (r_type
);
3460 if (lookup
.tls_type
)
3463 if (tls_ldm_reloc_p (r_type
))
3466 lookup
.d
.addend
= 0;
3470 lookup
.symndx
= r_symndx
;
3471 lookup
.d
.addend
= 0;
3479 entry
= (struct mips_got_entry
*) htab_find (g
->got_entries
, &lookup
);
3482 gotidx
= entry
->gotidx
;
3483 BFD_ASSERT (gotidx
> 0 && gotidx
< htab
->sgot
->size
);
3490 lookup
.d
.address
= value
;
3491 loc
= htab_find_slot (g
->got_entries
, &lookup
, INSERT
);
3495 entry
= (struct mips_got_entry
*) *loc
;
3499 if (g
->assigned_gotno
>= g
->local_gotno
)
3501 /* We didn't allocate enough space in the GOT. */
3502 (*_bfd_error_handler
)
3503 (_("not enough GOT space for local GOT entries"));
3504 bfd_set_error (bfd_error_bad_value
);
3508 entry
= (struct mips_got_entry
*) bfd_alloc (abfd
, sizeof (*entry
));
3512 lookup
.gotidx
= MIPS_ELF_GOT_SIZE (abfd
) * g
->assigned_gotno
++;
3516 MIPS_ELF_PUT_WORD (abfd
, value
, htab
->sgot
->contents
+ entry
->gotidx
);
3518 /* These GOT entries need a dynamic relocation on VxWorks. */
3519 if (htab
->is_vxworks
)
3521 Elf_Internal_Rela outrel
;
3524 bfd_vma got_address
;
3526 s
= mips_elf_rel_dyn_section (info
, FALSE
);
3527 got_address
= (htab
->sgot
->output_section
->vma
3528 + htab
->sgot
->output_offset
3531 rloc
= s
->contents
+ (s
->reloc_count
++ * sizeof (Elf32_External_Rela
));
3532 outrel
.r_offset
= got_address
;
3533 outrel
.r_info
= ELF32_R_INFO (STN_UNDEF
, R_MIPS_32
);
3534 outrel
.r_addend
= value
;
3535 bfd_elf32_swap_reloca_out (abfd
, &outrel
, rloc
);
3541 /* Return the number of dynamic section symbols required by OUTPUT_BFD.
3542 The number might be exact or a worst-case estimate, depending on how
3543 much information is available to elf_backend_omit_section_dynsym at
3544 the current linking stage. */
3546 static bfd_size_type
3547 count_section_dynsyms (bfd
*output_bfd
, struct bfd_link_info
*info
)
3549 bfd_size_type count
;
3552 if (info
->shared
|| elf_hash_table (info
)->is_relocatable_executable
)
3555 const struct elf_backend_data
*bed
;
3557 bed
= get_elf_backend_data (output_bfd
);
3558 for (p
= output_bfd
->sections
; p
; p
= p
->next
)
3559 if ((p
->flags
& SEC_EXCLUDE
) == 0
3560 && (p
->flags
& SEC_ALLOC
) != 0
3561 && !(*bed
->elf_backend_omit_section_dynsym
) (output_bfd
, info
, p
))
3567 /* Sort the dynamic symbol table so that symbols that need GOT entries
3568 appear towards the end. */
3571 mips_elf_sort_hash_table (bfd
*abfd
, struct bfd_link_info
*info
)
3573 struct mips_elf_link_hash_table
*htab
;
3574 struct mips_elf_hash_sort_data hsd
;
3575 struct mips_got_info
*g
;
3577 if (elf_hash_table (info
)->dynsymcount
== 0)
3580 htab
= mips_elf_hash_table (info
);
3581 BFD_ASSERT (htab
!= NULL
);
3588 hsd
.max_unref_got_dynindx
3589 = hsd
.min_got_dynindx
3590 = (elf_hash_table (info
)->dynsymcount
- g
->reloc_only_gotno
);
3591 hsd
.max_non_got_dynindx
= count_section_dynsyms (abfd
, info
) + 1;
3592 mips_elf_link_hash_traverse (((struct mips_elf_link_hash_table
*)
3593 elf_hash_table (info
)),
3594 mips_elf_sort_hash_table_f
,
3597 /* There should have been enough room in the symbol table to
3598 accommodate both the GOT and non-GOT symbols. */
3599 BFD_ASSERT (hsd
.max_non_got_dynindx
<= hsd
.min_got_dynindx
);
3600 BFD_ASSERT ((unsigned long) hsd
.max_unref_got_dynindx
3601 == elf_hash_table (info
)->dynsymcount
);
3602 BFD_ASSERT (elf_hash_table (info
)->dynsymcount
- hsd
.min_got_dynindx
3603 == g
->global_gotno
);
3605 /* Now we know which dynamic symbol has the lowest dynamic symbol
3606 table index in the GOT. */
3607 htab
->global_gotsym
= hsd
.low
;
3612 /* If H needs a GOT entry, assign it the highest available dynamic
3613 index. Otherwise, assign it the lowest available dynamic
3617 mips_elf_sort_hash_table_f (struct mips_elf_link_hash_entry
*h
, void *data
)
3619 struct mips_elf_hash_sort_data
*hsd
= data
;
3621 /* Symbols without dynamic symbol table entries aren't interesting
3623 if (h
->root
.dynindx
== -1)
3626 switch (h
->global_got_area
)
3629 h
->root
.dynindx
= hsd
->max_non_got_dynindx
++;
3633 h
->root
.dynindx
= --hsd
->min_got_dynindx
;
3634 hsd
->low
= (struct elf_link_hash_entry
*) h
;
3637 case GGA_RELOC_ONLY
:
3638 if (hsd
->max_unref_got_dynindx
== hsd
->min_got_dynindx
)
3639 hsd
->low
= (struct elf_link_hash_entry
*) h
;
3640 h
->root
.dynindx
= hsd
->max_unref_got_dynindx
++;
3647 /* Record that input bfd ABFD requires a GOT entry like *LOOKUP
3648 (which is owned by the caller and shouldn't be added to the
3649 hash table directly). */
3652 mips_elf_record_got_entry (struct bfd_link_info
*info
, bfd
*abfd
,
3653 struct mips_got_entry
*lookup
)
3655 struct mips_elf_link_hash_table
*htab
;
3656 struct mips_got_entry
*entry
;
3657 struct mips_got_info
*g
;
3658 void **loc
, **bfd_loc
;
3660 /* Make sure there's a slot for this entry in the master GOT. */
3661 htab
= mips_elf_hash_table (info
);
3663 loc
= htab_find_slot (g
->got_entries
, lookup
, INSERT
);
3667 /* Populate the entry if it isn't already. */
3668 entry
= (struct mips_got_entry
*) *loc
;
3671 entry
= (struct mips_got_entry
*) bfd_alloc (abfd
, sizeof (*entry
));
3675 lookup
->tls_initialized
= FALSE
;
3676 lookup
->gotidx
= -1;
3681 /* Reuse the same GOT entry for the BFD's GOT. */
3682 g
= mips_elf_bfd_got (abfd
, TRUE
);
3686 bfd_loc
= htab_find_slot (g
->got_entries
, lookup
, INSERT
);
3695 /* ABFD has a GOT relocation of type R_TYPE against H. Reserve a GOT
3696 entry for it. FOR_CALL is true if the caller is only interested in
3697 using the GOT entry for calls. */
3700 mips_elf_record_global_got_symbol (struct elf_link_hash_entry
*h
,
3701 bfd
*abfd
, struct bfd_link_info
*info
,
3702 bfd_boolean for_call
, int r_type
)
3704 struct mips_elf_link_hash_table
*htab
;
3705 struct mips_elf_link_hash_entry
*hmips
;
3706 struct mips_got_entry entry
;
3707 unsigned char tls_type
;
3709 htab
= mips_elf_hash_table (info
);
3710 BFD_ASSERT (htab
!= NULL
);
3712 hmips
= (struct mips_elf_link_hash_entry
*) h
;
3714 hmips
->got_only_for_calls
= FALSE
;
3716 /* A global symbol in the GOT must also be in the dynamic symbol
3718 if (h
->dynindx
== -1)
3720 switch (ELF_ST_VISIBILITY (h
->other
))
3724 _bfd_elf_link_hash_hide_symbol (info
, h
, TRUE
);
3727 if (!bfd_elf_link_record_dynamic_symbol (info
, h
))
3731 tls_type
= mips_elf_reloc_tls_type (r_type
);
3732 if (tls_type
== GOT_TLS_NONE
&& hmips
->global_got_area
> GGA_NORMAL
)
3733 hmips
->global_got_area
= GGA_NORMAL
;
3737 entry
.d
.h
= (struct mips_elf_link_hash_entry
*) h
;
3738 entry
.tls_type
= tls_type
;
3739 return mips_elf_record_got_entry (info
, abfd
, &entry
);
3742 /* ABFD has a GOT relocation of type R_TYPE against symbol SYMNDX + ADDEND,
3743 where SYMNDX is a local symbol. Reserve a GOT entry for it. */
3746 mips_elf_record_local_got_symbol (bfd
*abfd
, long symndx
, bfd_vma addend
,
3747 struct bfd_link_info
*info
, int r_type
)
3749 struct mips_elf_link_hash_table
*htab
;
3750 struct mips_got_info
*g
;
3751 struct mips_got_entry entry
;
3753 htab
= mips_elf_hash_table (info
);
3754 BFD_ASSERT (htab
!= NULL
);
3757 BFD_ASSERT (g
!= NULL
);
3760 entry
.symndx
= symndx
;
3761 entry
.d
.addend
= addend
;
3762 entry
.tls_type
= mips_elf_reloc_tls_type (r_type
);
3763 return mips_elf_record_got_entry (info
, abfd
, &entry
);
3766 /* Record that ABFD has a page relocation against SYMNDX + ADDEND.
3767 H is the symbol's hash table entry, or null if SYMNDX is local
3771 mips_elf_record_got_page_ref (struct bfd_link_info
*info
, bfd
*abfd
,
3772 long symndx
, struct elf_link_hash_entry
*h
,
3773 bfd_signed_vma addend
)
3775 struct mips_elf_link_hash_table
*htab
;
3776 struct mips_got_info
*g1
, *g2
;
3777 struct mips_got_page_ref lookup
, *entry
;
3778 void **loc
, **bfd_loc
;
3780 htab
= mips_elf_hash_table (info
);
3781 BFD_ASSERT (htab
!= NULL
);
3783 g1
= htab
->got_info
;
3784 BFD_ASSERT (g1
!= NULL
);
3789 lookup
.u
.h
= (struct mips_elf_link_hash_entry
*) h
;
3793 lookup
.symndx
= symndx
;
3794 lookup
.u
.abfd
= abfd
;
3796 lookup
.addend
= addend
;
3797 loc
= htab_find_slot (g1
->got_page_refs
, &lookup
, INSERT
);
3801 entry
= (struct mips_got_page_ref
*) *loc
;
3804 entry
= bfd_alloc (abfd
, sizeof (*entry
));
3812 /* Add the same entry to the BFD's GOT. */
3813 g2
= mips_elf_bfd_got (abfd
, TRUE
);
3817 bfd_loc
= htab_find_slot (g2
->got_page_refs
, &lookup
, INSERT
);
3827 /* Add room for N relocations to the .rel(a).dyn section in ABFD. */
3830 mips_elf_allocate_dynamic_relocations (bfd
*abfd
, struct bfd_link_info
*info
,
3834 struct mips_elf_link_hash_table
*htab
;
3836 htab
= mips_elf_hash_table (info
);
3837 BFD_ASSERT (htab
!= NULL
);
3839 s
= mips_elf_rel_dyn_section (info
, FALSE
);
3840 BFD_ASSERT (s
!= NULL
);
3842 if (htab
->is_vxworks
)
3843 s
->size
+= n
* MIPS_ELF_RELA_SIZE (abfd
);
3848 /* Make room for a null element. */
3849 s
->size
+= MIPS_ELF_REL_SIZE (abfd
);
3852 s
->size
+= n
* MIPS_ELF_REL_SIZE (abfd
);
3856 /* A htab_traverse callback for GOT entries, with DATA pointing to a
3857 mips_elf_traverse_got_arg structure. Count the number of GOT
3858 entries and TLS relocs. Set DATA->value to true if we need
3859 to resolve indirect or warning symbols and then recreate the GOT. */
3862 mips_elf_check_recreate_got (void **entryp
, void *data
)
3864 struct mips_got_entry
*entry
;
3865 struct mips_elf_traverse_got_arg
*arg
;
3867 entry
= (struct mips_got_entry
*) *entryp
;
3868 arg
= (struct mips_elf_traverse_got_arg
*) data
;
3869 if (entry
->abfd
!= NULL
&& entry
->symndx
== -1)
3871 struct mips_elf_link_hash_entry
*h
;
3874 if (h
->root
.root
.type
== bfd_link_hash_indirect
3875 || h
->root
.root
.type
== bfd_link_hash_warning
)
3881 mips_elf_count_got_entry (arg
->info
, arg
->g
, entry
);
3885 /* A htab_traverse callback for GOT entries, with DATA pointing to a
3886 mips_elf_traverse_got_arg structure. Add all entries to DATA->g,
3887 converting entries for indirect and warning symbols into entries
3888 for the target symbol. Set DATA->g to null on error. */
3891 mips_elf_recreate_got (void **entryp
, void *data
)
3893 struct mips_got_entry new_entry
, *entry
;
3894 struct mips_elf_traverse_got_arg
*arg
;
3897 entry
= (struct mips_got_entry
*) *entryp
;
3898 arg
= (struct mips_elf_traverse_got_arg
*) data
;
3899 if (entry
->abfd
!= NULL
3900 && entry
->symndx
== -1
3901 && (entry
->d
.h
->root
.root
.type
== bfd_link_hash_indirect
3902 || entry
->d
.h
->root
.root
.type
== bfd_link_hash_warning
))
3904 struct mips_elf_link_hash_entry
*h
;
3911 BFD_ASSERT (h
->global_got_area
== GGA_NONE
);
3912 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
3914 while (h
->root
.root
.type
== bfd_link_hash_indirect
3915 || h
->root
.root
.type
== bfd_link_hash_warning
);
3918 slot
= htab_find_slot (arg
->g
->got_entries
, entry
, INSERT
);
3926 if (entry
== &new_entry
)
3928 entry
= bfd_alloc (entry
->abfd
, sizeof (*entry
));
3937 mips_elf_count_got_entry (arg
->info
, arg
->g
, entry
);
3942 /* Return the maximum number of GOT page entries required for RANGE. */
3945 mips_elf_pages_for_range (const struct mips_got_page_range
*range
)
3947 return (range
->max_addend
- range
->min_addend
+ 0x1ffff) >> 16;
3950 /* Record that G requires a page entry that can reach SEC + ADDEND. */
3953 mips_elf_record_got_page_entry (struct mips_got_info
*g
,
3954 asection
*sec
, bfd_signed_vma addend
)
3956 struct mips_got_page_entry lookup
, *entry
;
3957 struct mips_got_page_range
**range_ptr
, *range
;
3958 bfd_vma old_pages
, new_pages
;
3961 /* Find the mips_got_page_entry hash table entry for this section. */
3963 loc
= htab_find_slot (g
->got_page_entries
, &lookup
, INSERT
);
3967 /* Create a mips_got_page_entry if this is the first time we've
3968 seen the section. */
3969 entry
= (struct mips_got_page_entry
*) *loc
;
3972 entry
= bfd_zalloc (sec
->owner
, sizeof (*entry
));
3980 /* Skip over ranges whose maximum extent cannot share a page entry
3982 range_ptr
= &entry
->ranges
;
3983 while (*range_ptr
&& addend
> (*range_ptr
)->max_addend
+ 0xffff)
3984 range_ptr
= &(*range_ptr
)->next
;
3986 /* If we scanned to the end of the list, or found a range whose
3987 minimum extent cannot share a page entry with ADDEND, create
3988 a new singleton range. */
3990 if (!range
|| addend
< range
->min_addend
- 0xffff)
3992 range
= bfd_zalloc (sec
->owner
, sizeof (*range
));
3996 range
->next
= *range_ptr
;
3997 range
->min_addend
= addend
;
3998 range
->max_addend
= addend
;
4006 /* Remember how many pages the old range contributed. */
4007 old_pages
= mips_elf_pages_for_range (range
);
4009 /* Update the ranges. */
4010 if (addend
< range
->min_addend
)
4011 range
->min_addend
= addend
;
4012 else if (addend
> range
->max_addend
)
4014 if (range
->next
&& addend
>= range
->next
->min_addend
- 0xffff)
4016 old_pages
+= mips_elf_pages_for_range (range
->next
);
4017 range
->max_addend
= range
->next
->max_addend
;
4018 range
->next
= range
->next
->next
;
4021 range
->max_addend
= addend
;
4024 /* Record any change in the total estimate. */
4025 new_pages
= mips_elf_pages_for_range (range
);
4026 if (old_pages
!= new_pages
)
4028 entry
->num_pages
+= new_pages
- old_pages
;
4029 g
->page_gotno
+= new_pages
- old_pages
;
4035 /* A htab_traverse callback for which *REFP points to a mips_got_page_ref
4036 and for which DATA points to a mips_elf_traverse_got_arg. Work out
4037 whether the page reference described by *REFP needs a GOT page entry,
4038 and record that entry in DATA->g if so. Set DATA->g to null on failure. */
4041 mips_elf_resolve_got_page_ref (void **refp
, void *data
)
4043 struct mips_got_page_ref
*ref
;
4044 struct mips_elf_traverse_got_arg
*arg
;
4045 struct mips_elf_link_hash_table
*htab
;
4049 ref
= (struct mips_got_page_ref
*) *refp
;
4050 arg
= (struct mips_elf_traverse_got_arg
*) data
;
4051 htab
= mips_elf_hash_table (arg
->info
);
4053 if (ref
->symndx
< 0)
4055 struct mips_elf_link_hash_entry
*h
;
4057 /* Global GOT_PAGEs decay to GOT_DISP and so don't need page entries. */
4059 if (!SYMBOL_REFERENCES_LOCAL (arg
->info
, &h
->root
))
4062 /* Ignore undefined symbols; we'll issue an error later if
4064 if (!((h
->root
.root
.type
== bfd_link_hash_defined
4065 || h
->root
.root
.type
== bfd_link_hash_defweak
)
4066 && h
->root
.root
.u
.def
.section
))
4069 sec
= h
->root
.root
.u
.def
.section
;
4070 addend
= h
->root
.root
.u
.def
.value
+ ref
->addend
;
4074 Elf_Internal_Sym
*isym
;
4076 /* Read in the symbol. */
4077 isym
= bfd_sym_from_r_symndx (&htab
->sym_cache
, ref
->u
.abfd
,
4085 /* Get the associated input section. */
4086 sec
= bfd_section_from_elf_index (ref
->u
.abfd
, isym
->st_shndx
);
4093 /* If this is a mergable section, work out the section and offset
4094 of the merged data. For section symbols, the addend specifies
4095 of the offset _of_ the first byte in the data, otherwise it
4096 specifies the offset _from_ the first byte. */
4097 if (sec
->flags
& SEC_MERGE
)
4101 secinfo
= elf_section_data (sec
)->sec_info
;
4102 if (ELF_ST_TYPE (isym
->st_info
) == STT_SECTION
)
4103 addend
= _bfd_merged_section_offset (ref
->u
.abfd
, &sec
, secinfo
,
4104 isym
->st_value
+ ref
->addend
);
4106 addend
= _bfd_merged_section_offset (ref
->u
.abfd
, &sec
, secinfo
,
4107 isym
->st_value
) + ref
->addend
;
4110 addend
= isym
->st_value
+ ref
->addend
;
4112 if (!mips_elf_record_got_page_entry (arg
->g
, sec
, addend
))
4120 /* If any entries in G->got_entries are for indirect or warning symbols,
4121 replace them with entries for the target symbol. Convert g->got_page_refs
4122 into got_page_entry structures and estimate the number of page entries
4123 that they require. */
4126 mips_elf_resolve_final_got_entries (struct bfd_link_info
*info
,
4127 struct mips_got_info
*g
)
4129 struct mips_elf_traverse_got_arg tga
;
4130 struct mips_got_info oldg
;
4137 htab_traverse (g
->got_entries
, mips_elf_check_recreate_got
, &tga
);
4141 g
->got_entries
= htab_create (htab_size (oldg
.got_entries
),
4142 mips_elf_got_entry_hash
,
4143 mips_elf_got_entry_eq
, NULL
);
4144 if (!g
->got_entries
)
4147 htab_traverse (oldg
.got_entries
, mips_elf_recreate_got
, &tga
);
4151 htab_delete (oldg
.got_entries
);
4154 g
->got_page_entries
= htab_try_create (1, mips_got_page_entry_hash
,
4155 mips_got_page_entry_eq
, NULL
);
4156 if (g
->got_page_entries
== NULL
)
4161 htab_traverse (g
->got_page_refs
, mips_elf_resolve_got_page_ref
, &tga
);
4166 /* A mips_elf_link_hash_traverse callback for which DATA points to the
4167 link_info structure. Decide whether the hash entry needs an entry in
4168 the global part of the primary GOT, setting global_got_area accordingly.
4169 Count the number of global symbols that are in the primary GOT only
4170 because they have relocations against them (reloc_only_gotno). */
4173 mips_elf_count_got_symbols (struct mips_elf_link_hash_entry
*h
, void *data
)
4175 struct bfd_link_info
*info
;
4176 struct mips_elf_link_hash_table
*htab
;
4177 struct mips_got_info
*g
;
4179 info
= (struct bfd_link_info
*) data
;
4180 htab
= mips_elf_hash_table (info
);
4182 if (h
->global_got_area
!= GGA_NONE
)
4184 /* Make a final decision about whether the symbol belongs in the
4185 local or global GOT. Symbols that bind locally can (and in the
4186 case of forced-local symbols, must) live in the local GOT.
4187 Those that are aren't in the dynamic symbol table must also
4188 live in the local GOT.
4190 Note that the former condition does not always imply the
4191 latter: symbols do not bind locally if they are completely
4192 undefined. We'll report undefined symbols later if appropriate. */
4193 if (h
->root
.dynindx
== -1
4194 || (h
->got_only_for_calls
4195 ? SYMBOL_CALLS_LOCAL (info
, &h
->root
)
4196 : SYMBOL_REFERENCES_LOCAL (info
, &h
->root
)))
4197 /* The symbol belongs in the local GOT. We no longer need this
4198 entry if it was only used for relocations; those relocations
4199 will be against the null or section symbol instead of H. */
4200 h
->global_got_area
= GGA_NONE
;
4201 else if (htab
->is_vxworks
4202 && h
->got_only_for_calls
4203 && h
->root
.plt
.offset
!= MINUS_ONE
)
4204 /* On VxWorks, calls can refer directly to the .got.plt entry;
4205 they don't need entries in the regular GOT. .got.plt entries
4206 will be allocated by _bfd_mips_elf_adjust_dynamic_symbol. */
4207 h
->global_got_area
= GGA_NONE
;
4208 else if (h
->global_got_area
== GGA_RELOC_ONLY
)
4210 g
->reloc_only_gotno
++;
4217 /* A htab_traverse callback for GOT entries. Add each one to the GOT
4218 given in mips_elf_traverse_got_arg DATA. Clear DATA->G on error. */
4221 mips_elf_add_got_entry (void **entryp
, void *data
)
4223 struct mips_got_entry
*entry
;
4224 struct mips_elf_traverse_got_arg
*arg
;
4227 entry
= (struct mips_got_entry
*) *entryp
;
4228 arg
= (struct mips_elf_traverse_got_arg
*) data
;
4229 slot
= htab_find_slot (arg
->g
->got_entries
, entry
, INSERT
);
4238 mips_elf_count_got_entry (arg
->info
, arg
->g
, entry
);
4243 /* A htab_traverse callback for GOT page entries. Add each one to the GOT
4244 given in mips_elf_traverse_got_arg DATA. Clear DATA->G on error. */
4247 mips_elf_add_got_page_entry (void **entryp
, void *data
)
4249 struct mips_got_page_entry
*entry
;
4250 struct mips_elf_traverse_got_arg
*arg
;
4253 entry
= (struct mips_got_page_entry
*) *entryp
;
4254 arg
= (struct mips_elf_traverse_got_arg
*) data
;
4255 slot
= htab_find_slot (arg
->g
->got_page_entries
, entry
, INSERT
);
4264 arg
->g
->page_gotno
+= entry
->num_pages
;
4269 /* Consider merging FROM, which is ABFD's GOT, into TO. Return -1 if
4270 this would lead to overflow, 1 if they were merged successfully,
4271 and 0 if a merge failed due to lack of memory. (These values are chosen
4272 so that nonnegative return values can be returned by a htab_traverse
4276 mips_elf_merge_got_with (bfd
*abfd
, struct mips_got_info
*from
,
4277 struct mips_got_info
*to
,
4278 struct mips_elf_got_per_bfd_arg
*arg
)
4280 struct mips_elf_traverse_got_arg tga
;
4281 unsigned int estimate
;
4283 /* Work out how many page entries we would need for the combined GOT. */
4284 estimate
= arg
->max_pages
;
4285 if (estimate
>= from
->page_gotno
+ to
->page_gotno
)
4286 estimate
= from
->page_gotno
+ to
->page_gotno
;
4288 /* And conservatively estimate how many local and TLS entries
4290 estimate
+= from
->local_gotno
+ to
->local_gotno
;
4291 estimate
+= from
->tls_gotno
+ to
->tls_gotno
;
4293 /* If we're merging with the primary got, any TLS relocations will
4294 come after the full set of global entries. Otherwise estimate those
4295 conservatively as well. */
4296 if (to
== arg
->primary
&& from
->tls_gotno
+ to
->tls_gotno
)
4297 estimate
+= arg
->global_count
;
4299 estimate
+= from
->global_gotno
+ to
->global_gotno
;
4301 /* Bail out if the combined GOT might be too big. */
4302 if (estimate
> arg
->max_count
)
4305 /* Transfer the bfd's got information from FROM to TO. */
4306 tga
.info
= arg
->info
;
4308 htab_traverse (from
->got_entries
, mips_elf_add_got_entry
, &tga
);
4312 htab_traverse (from
->got_page_entries
, mips_elf_add_got_page_entry
, &tga
);
4316 mips_elf_replace_bfd_got (abfd
, to
);
4320 /* Attempt to merge GOT G, which belongs to ABFD. Try to use as much
4321 as possible of the primary got, since it doesn't require explicit
4322 dynamic relocations, but don't use bfds that would reference global
4323 symbols out of the addressable range. Failing the primary got,
4324 attempt to merge with the current got, or finish the current got
4325 and then make make the new got current. */
4328 mips_elf_merge_got (bfd
*abfd
, struct mips_got_info
*g
,
4329 struct mips_elf_got_per_bfd_arg
*arg
)
4331 unsigned int estimate
;
4334 if (!mips_elf_resolve_final_got_entries (arg
->info
, g
))
4337 /* Work out the number of page, local and TLS entries. */
4338 estimate
= arg
->max_pages
;
4339 if (estimate
> g
->page_gotno
)
4340 estimate
= g
->page_gotno
;
4341 estimate
+= g
->local_gotno
+ g
->tls_gotno
;
4343 /* We place TLS GOT entries after both locals and globals. The globals
4344 for the primary GOT may overflow the normal GOT size limit, so be
4345 sure not to merge a GOT which requires TLS with the primary GOT in that
4346 case. This doesn't affect non-primary GOTs. */
4347 estimate
+= (g
->tls_gotno
> 0 ? arg
->global_count
: g
->global_gotno
);
4349 if (estimate
<= arg
->max_count
)
4351 /* If we don't have a primary GOT, use it as
4352 a starting point for the primary GOT. */
4359 /* Try merging with the primary GOT. */
4360 result
= mips_elf_merge_got_with (abfd
, g
, arg
->primary
, arg
);
4365 /* If we can merge with the last-created got, do it. */
4368 result
= mips_elf_merge_got_with (abfd
, g
, arg
->current
, arg
);
4373 /* Well, we couldn't merge, so create a new GOT. Don't check if it
4374 fits; if it turns out that it doesn't, we'll get relocation
4375 overflows anyway. */
4376 g
->next
= arg
->current
;
4382 /* ENTRYP is a hash table entry for a mips_got_entry. Set its gotidx
4383 to GOTIDX, duplicating the entry if it has already been assigned
4384 an index in a different GOT. */
4387 mips_elf_set_gotidx (void **entryp
, long gotidx
)
4389 struct mips_got_entry
*entry
;
4391 entry
= (struct mips_got_entry
*) *entryp
;
4392 if (entry
->gotidx
> 0)
4394 struct mips_got_entry
*new_entry
;
4396 new_entry
= bfd_alloc (entry
->abfd
, sizeof (*entry
));
4400 *new_entry
= *entry
;
4401 *entryp
= new_entry
;
4404 entry
->gotidx
= gotidx
;
4408 /* Set the TLS GOT index for the GOT entry in ENTRYP. DATA points to a
4409 mips_elf_traverse_got_arg in which DATA->value is the size of one
4410 GOT entry. Set DATA->g to null on failure. */
4413 mips_elf_initialize_tls_index (void **entryp
, void *data
)
4415 struct mips_got_entry
*entry
;
4416 struct mips_elf_traverse_got_arg
*arg
;
4418 /* We're only interested in TLS symbols. */
4419 entry
= (struct mips_got_entry
*) *entryp
;
4420 if (entry
->tls_type
== GOT_TLS_NONE
)
4423 arg
= (struct mips_elf_traverse_got_arg
*) data
;
4424 if (!mips_elf_set_gotidx (entryp
, arg
->value
* arg
->g
->tls_assigned_gotno
))
4430 /* Account for the entries we've just allocated. */
4431 arg
->g
->tls_assigned_gotno
+= mips_tls_got_entries (entry
->tls_type
);
4435 /* A htab_traverse callback for GOT entries, where DATA points to a
4436 mips_elf_traverse_got_arg. Set the global_got_area of each global
4437 symbol to DATA->value. */
4440 mips_elf_set_global_got_area (void **entryp
, void *data
)
4442 struct mips_got_entry
*entry
;
4443 struct mips_elf_traverse_got_arg
*arg
;
4445 entry
= (struct mips_got_entry
*) *entryp
;
4446 arg
= (struct mips_elf_traverse_got_arg
*) data
;
4447 if (entry
->abfd
!= NULL
4448 && entry
->symndx
== -1
4449 && entry
->d
.h
->global_got_area
!= GGA_NONE
)
4450 entry
->d
.h
->global_got_area
= arg
->value
;
4454 /* A htab_traverse callback for secondary GOT entries, where DATA points
4455 to a mips_elf_traverse_got_arg. Assign GOT indices to global entries
4456 and record the number of relocations they require. DATA->value is
4457 the size of one GOT entry. Set DATA->g to null on failure. */
4460 mips_elf_set_global_gotidx (void **entryp
, void *data
)
4462 struct mips_got_entry
*entry
;
4463 struct mips_elf_traverse_got_arg
*arg
;
4465 entry
= (struct mips_got_entry
*) *entryp
;
4466 arg
= (struct mips_elf_traverse_got_arg
*) data
;
4467 if (entry
->abfd
!= NULL
4468 && entry
->symndx
== -1
4469 && entry
->d
.h
->global_got_area
!= GGA_NONE
)
4471 if (!mips_elf_set_gotidx (entryp
, arg
->value
* arg
->g
->assigned_gotno
))
4476 arg
->g
->assigned_gotno
+= 1;
4478 if (arg
->info
->shared
4479 || (elf_hash_table (arg
->info
)->dynamic_sections_created
4480 && entry
->d
.h
->root
.def_dynamic
4481 && !entry
->d
.h
->root
.def_regular
))
4482 arg
->g
->relocs
+= 1;
4488 /* A htab_traverse callback for GOT entries for which DATA is the
4489 bfd_link_info. Forbid any global symbols from having traditional
4490 lazy-binding stubs. */
4493 mips_elf_forbid_lazy_stubs (void **entryp
, void *data
)
4495 struct bfd_link_info
*info
;
4496 struct mips_elf_link_hash_table
*htab
;
4497 struct mips_got_entry
*entry
;
4499 entry
= (struct mips_got_entry
*) *entryp
;
4500 info
= (struct bfd_link_info
*) data
;
4501 htab
= mips_elf_hash_table (info
);
4502 BFD_ASSERT (htab
!= NULL
);
4504 if (entry
->abfd
!= NULL
4505 && entry
->symndx
== -1
4506 && entry
->d
.h
->needs_lazy_stub
)
4508 entry
->d
.h
->needs_lazy_stub
= FALSE
;
4509 htab
->lazy_stub_count
--;
4515 /* Return the offset of an input bfd IBFD's GOT from the beginning of
4518 mips_elf_adjust_gp (bfd
*abfd
, struct mips_got_info
*g
, bfd
*ibfd
)
4523 g
= mips_elf_bfd_got (ibfd
, FALSE
);
4527 BFD_ASSERT (g
->next
);
4531 return (g
->local_gotno
+ g
->global_gotno
+ g
->tls_gotno
)
4532 * MIPS_ELF_GOT_SIZE (abfd
);
4535 /* Turn a single GOT that is too big for 16-bit addressing into
4536 a sequence of GOTs, each one 16-bit addressable. */
4539 mips_elf_multi_got (bfd
*abfd
, struct bfd_link_info
*info
,
4540 asection
*got
, bfd_size_type pages
)
4542 struct mips_elf_link_hash_table
*htab
;
4543 struct mips_elf_got_per_bfd_arg got_per_bfd_arg
;
4544 struct mips_elf_traverse_got_arg tga
;
4545 struct mips_got_info
*g
, *gg
;
4546 unsigned int assign
, needed_relocs
;
4549 dynobj
= elf_hash_table (info
)->dynobj
;
4550 htab
= mips_elf_hash_table (info
);
4551 BFD_ASSERT (htab
!= NULL
);
4555 got_per_bfd_arg
.obfd
= abfd
;
4556 got_per_bfd_arg
.info
= info
;
4557 got_per_bfd_arg
.current
= NULL
;
4558 got_per_bfd_arg
.primary
= NULL
;
4559 got_per_bfd_arg
.max_count
= ((MIPS_ELF_GOT_MAX_SIZE (info
)
4560 / MIPS_ELF_GOT_SIZE (abfd
))
4561 - htab
->reserved_gotno
);
4562 got_per_bfd_arg
.max_pages
= pages
;
4563 /* The number of globals that will be included in the primary GOT.
4564 See the calls to mips_elf_set_global_got_area below for more
4566 got_per_bfd_arg
.global_count
= g
->global_gotno
;
4568 /* Try to merge the GOTs of input bfds together, as long as they
4569 don't seem to exceed the maximum GOT size, choosing one of them
4570 to be the primary GOT. */
4571 for (ibfd
= info
->input_bfds
; ibfd
; ibfd
= ibfd
->link_next
)
4573 gg
= mips_elf_bfd_got (ibfd
, FALSE
);
4574 if (gg
&& !mips_elf_merge_got (ibfd
, gg
, &got_per_bfd_arg
))
4578 /* If we do not find any suitable primary GOT, create an empty one. */
4579 if (got_per_bfd_arg
.primary
== NULL
)
4580 g
->next
= mips_elf_create_got_info (abfd
);
4582 g
->next
= got_per_bfd_arg
.primary
;
4583 g
->next
->next
= got_per_bfd_arg
.current
;
4585 /* GG is now the master GOT, and G is the primary GOT. */
4589 /* Map the output bfd to the primary got. That's what we're going
4590 to use for bfds that use GOT16 or GOT_PAGE relocations that we
4591 didn't mark in check_relocs, and we want a quick way to find it.
4592 We can't just use gg->next because we're going to reverse the
4594 mips_elf_replace_bfd_got (abfd
, g
);
4596 /* Every symbol that is referenced in a dynamic relocation must be
4597 present in the primary GOT, so arrange for them to appear after
4598 those that are actually referenced. */
4599 gg
->reloc_only_gotno
= gg
->global_gotno
- g
->global_gotno
;
4600 g
->global_gotno
= gg
->global_gotno
;
4603 tga
.value
= GGA_RELOC_ONLY
;
4604 htab_traverse (gg
->got_entries
, mips_elf_set_global_got_area
, &tga
);
4605 tga
.value
= GGA_NORMAL
;
4606 htab_traverse (g
->got_entries
, mips_elf_set_global_got_area
, &tga
);
4608 /* Now go through the GOTs assigning them offset ranges.
4609 [assigned_gotno, local_gotno[ will be set to the range of local
4610 entries in each GOT. We can then compute the end of a GOT by
4611 adding local_gotno to global_gotno. We reverse the list and make
4612 it circular since then we'll be able to quickly compute the
4613 beginning of a GOT, by computing the end of its predecessor. To
4614 avoid special cases for the primary GOT, while still preserving
4615 assertions that are valid for both single- and multi-got links,
4616 we arrange for the main got struct to have the right number of
4617 global entries, but set its local_gotno such that the initial
4618 offset of the primary GOT is zero. Remember that the primary GOT
4619 will become the last item in the circular linked list, so it
4620 points back to the master GOT. */
4621 gg
->local_gotno
= -g
->global_gotno
;
4622 gg
->global_gotno
= g
->global_gotno
;
4629 struct mips_got_info
*gn
;
4631 assign
+= htab
->reserved_gotno
;
4632 g
->assigned_gotno
= assign
;
4633 g
->local_gotno
+= assign
;
4634 g
->local_gotno
+= (pages
< g
->page_gotno
? pages
: g
->page_gotno
);
4635 assign
= g
->local_gotno
+ g
->global_gotno
+ g
->tls_gotno
;
4637 /* Take g out of the direct list, and push it onto the reversed
4638 list that gg points to. g->next is guaranteed to be nonnull after
4639 this operation, as required by mips_elf_initialize_tls_index. */
4644 /* Set up any TLS entries. We always place the TLS entries after
4645 all non-TLS entries. */
4646 g
->tls_assigned_gotno
= g
->local_gotno
+ g
->global_gotno
;
4648 tga
.value
= MIPS_ELF_GOT_SIZE (abfd
);
4649 htab_traverse (g
->got_entries
, mips_elf_initialize_tls_index
, &tga
);
4652 BFD_ASSERT (g
->tls_assigned_gotno
== assign
);
4654 /* Move onto the next GOT. It will be a secondary GOT if nonull. */
4657 /* Forbid global symbols in every non-primary GOT from having
4658 lazy-binding stubs. */
4660 htab_traverse (g
->got_entries
, mips_elf_forbid_lazy_stubs
, info
);
4664 got
->size
= assign
* MIPS_ELF_GOT_SIZE (abfd
);
4667 for (g
= gg
->next
; g
&& g
->next
!= gg
; g
= g
->next
)
4669 unsigned int save_assign
;
4671 /* Assign offsets to global GOT entries and count how many
4672 relocations they need. */
4673 save_assign
= g
->assigned_gotno
;
4674 g
->assigned_gotno
= g
->local_gotno
;
4676 tga
.value
= MIPS_ELF_GOT_SIZE (abfd
);
4678 htab_traverse (g
->got_entries
, mips_elf_set_global_gotidx
, &tga
);
4681 BFD_ASSERT (g
->assigned_gotno
== g
->local_gotno
+ g
->global_gotno
);
4682 g
->assigned_gotno
= save_assign
;
4686 g
->relocs
+= g
->local_gotno
- g
->assigned_gotno
;
4687 BFD_ASSERT (g
->assigned_gotno
== g
->next
->local_gotno
4688 + g
->next
->global_gotno
4689 + g
->next
->tls_gotno
4690 + htab
->reserved_gotno
);
4692 needed_relocs
+= g
->relocs
;
4694 needed_relocs
+= g
->relocs
;
4697 mips_elf_allocate_dynamic_relocations (dynobj
, info
,
4704 /* Returns the first relocation of type r_type found, beginning with
4705 RELOCATION. RELEND is one-past-the-end of the relocation table. */
4707 static const Elf_Internal_Rela
*
4708 mips_elf_next_relocation (bfd
*abfd ATTRIBUTE_UNUSED
, unsigned int r_type
,
4709 const Elf_Internal_Rela
*relocation
,
4710 const Elf_Internal_Rela
*relend
)
4712 unsigned long r_symndx
= ELF_R_SYM (abfd
, relocation
->r_info
);
4714 while (relocation
< relend
)
4716 if (ELF_R_TYPE (abfd
, relocation
->r_info
) == r_type
4717 && ELF_R_SYM (abfd
, relocation
->r_info
) == r_symndx
)
4723 /* We didn't find it. */
4727 /* Return whether an input relocation is against a local symbol. */
4730 mips_elf_local_relocation_p (bfd
*input_bfd
,
4731 const Elf_Internal_Rela
*relocation
,
4732 asection
**local_sections
)
4734 unsigned long r_symndx
;
4735 Elf_Internal_Shdr
*symtab_hdr
;
4738 r_symndx
= ELF_R_SYM (input_bfd
, relocation
->r_info
);
4739 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
4740 extsymoff
= (elf_bad_symtab (input_bfd
)) ? 0 : symtab_hdr
->sh_info
;
4742 if (r_symndx
< extsymoff
)
4744 if (elf_bad_symtab (input_bfd
) && local_sections
[r_symndx
] != NULL
)
4750 /* Sign-extend VALUE, which has the indicated number of BITS. */
4753 _bfd_mips_elf_sign_extend (bfd_vma value
, int bits
)
4755 if (value
& ((bfd_vma
) 1 << (bits
- 1)))
4756 /* VALUE is negative. */
4757 value
|= ((bfd_vma
) - 1) << bits
;
4762 /* Return non-zero if the indicated VALUE has overflowed the maximum
4763 range expressible by a signed number with the indicated number of
4767 mips_elf_overflow_p (bfd_vma value
, int bits
)
4769 bfd_signed_vma svalue
= (bfd_signed_vma
) value
;
4771 if (svalue
> (1 << (bits
- 1)) - 1)
4772 /* The value is too big. */
4774 else if (svalue
< -(1 << (bits
- 1)))
4775 /* The value is too small. */
4782 /* Calculate the %high function. */
4785 mips_elf_high (bfd_vma value
)
4787 return ((value
+ (bfd_vma
) 0x8000) >> 16) & 0xffff;
4790 /* Calculate the %higher function. */
4793 mips_elf_higher (bfd_vma value ATTRIBUTE_UNUSED
)
4796 return ((value
+ (bfd_vma
) 0x80008000) >> 32) & 0xffff;
4803 /* Calculate the %highest function. */
4806 mips_elf_highest (bfd_vma value ATTRIBUTE_UNUSED
)
4809 return ((value
+ (((bfd_vma
) 0x8000 << 32) | 0x80008000)) >> 48) & 0xffff;
4816 /* Create the .compact_rel section. */
4819 mips_elf_create_compact_rel_section
4820 (bfd
*abfd
, struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
4823 register asection
*s
;
4825 if (bfd_get_linker_section (abfd
, ".compact_rel") == NULL
)
4827 flags
= (SEC_HAS_CONTENTS
| SEC_IN_MEMORY
| SEC_LINKER_CREATED
4830 s
= bfd_make_section_anyway_with_flags (abfd
, ".compact_rel", flags
);
4832 || ! bfd_set_section_alignment (abfd
, s
,
4833 MIPS_ELF_LOG_FILE_ALIGN (abfd
)))
4836 s
->size
= sizeof (Elf32_External_compact_rel
);
4842 /* Create the .got section to hold the global offset table. */
4845 mips_elf_create_got_section (bfd
*abfd
, struct bfd_link_info
*info
)
4848 register asection
*s
;
4849 struct elf_link_hash_entry
*h
;
4850 struct bfd_link_hash_entry
*bh
;
4851 struct mips_elf_link_hash_table
*htab
;
4853 htab
= mips_elf_hash_table (info
);
4854 BFD_ASSERT (htab
!= NULL
);
4856 /* This function may be called more than once. */
4860 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
4861 | SEC_LINKER_CREATED
);
4863 /* We have to use an alignment of 2**4 here because this is hardcoded
4864 in the function stub generation and in the linker script. */
4865 s
= bfd_make_section_anyway_with_flags (abfd
, ".got", flags
);
4867 || ! bfd_set_section_alignment (abfd
, s
, 4))
4871 /* Define the symbol _GLOBAL_OFFSET_TABLE_. We don't do this in the
4872 linker script because we don't want to define the symbol if we
4873 are not creating a global offset table. */
4875 if (! (_bfd_generic_link_add_one_symbol
4876 (info
, abfd
, "_GLOBAL_OFFSET_TABLE_", BSF_GLOBAL
, s
,
4877 0, NULL
, FALSE
, get_elf_backend_data (abfd
)->collect
, &bh
)))
4880 h
= (struct elf_link_hash_entry
*) bh
;
4883 h
->type
= STT_OBJECT
;
4884 elf_hash_table (info
)->hgot
= h
;
4887 && ! bfd_elf_link_record_dynamic_symbol (info
, h
))
4890 htab
->got_info
= mips_elf_create_got_info (abfd
);
4891 mips_elf_section_data (s
)->elf
.this_hdr
.sh_flags
4892 |= SHF_ALLOC
| SHF_WRITE
| SHF_MIPS_GPREL
;
4894 /* We also need a .got.plt section when generating PLTs. */
4895 s
= bfd_make_section_anyway_with_flags (abfd
, ".got.plt",
4896 SEC_ALLOC
| SEC_LOAD
4899 | SEC_LINKER_CREATED
);
4907 /* Return true if H refers to the special VxWorks __GOTT_BASE__ or
4908 __GOTT_INDEX__ symbols. These symbols are only special for
4909 shared objects; they are not used in executables. */
4912 is_gott_symbol (struct bfd_link_info
*info
, struct elf_link_hash_entry
*h
)
4914 return (mips_elf_hash_table (info
)->is_vxworks
4916 && (strcmp (h
->root
.root
.string
, "__GOTT_BASE__") == 0
4917 || strcmp (h
->root
.root
.string
, "__GOTT_INDEX__") == 0));
4920 /* Return TRUE if a relocation of type R_TYPE from INPUT_BFD might
4921 require an la25 stub. See also mips_elf_local_pic_function_p,
4922 which determines whether the destination function ever requires a
4926 mips_elf_relocation_needs_la25_stub (bfd
*input_bfd
, int r_type
,
4927 bfd_boolean target_is_16_bit_code_p
)
4929 /* We specifically ignore branches and jumps from EF_PIC objects,
4930 where the onus is on the compiler or programmer to perform any
4931 necessary initialization of $25. Sometimes such initialization
4932 is unnecessary; for example, -mno-shared functions do not use
4933 the incoming value of $25, and may therefore be called directly. */
4934 if (PIC_OBJECT_P (input_bfd
))
4941 case R_MICROMIPS_26_S1
:
4942 case R_MICROMIPS_PC7_S1
:
4943 case R_MICROMIPS_PC10_S1
:
4944 case R_MICROMIPS_PC16_S1
:
4945 case R_MICROMIPS_PC23_S2
:
4949 return !target_is_16_bit_code_p
;
4956 /* Calculate the value produced by the RELOCATION (which comes from
4957 the INPUT_BFD). The ADDEND is the addend to use for this
4958 RELOCATION; RELOCATION->R_ADDEND is ignored.
4960 The result of the relocation calculation is stored in VALUEP.
4961 On exit, set *CROSS_MODE_JUMP_P to true if the relocation field
4962 is a MIPS16 or microMIPS jump to standard MIPS code, or vice versa.
4964 This function returns bfd_reloc_continue if the caller need take no
4965 further action regarding this relocation, bfd_reloc_notsupported if
4966 something goes dramatically wrong, bfd_reloc_overflow if an
4967 overflow occurs, and bfd_reloc_ok to indicate success. */
4969 static bfd_reloc_status_type
4970 mips_elf_calculate_relocation (bfd
*abfd
, bfd
*input_bfd
,
4971 asection
*input_section
,
4972 struct bfd_link_info
*info
,
4973 const Elf_Internal_Rela
*relocation
,
4974 bfd_vma addend
, reloc_howto_type
*howto
,
4975 Elf_Internal_Sym
*local_syms
,
4976 asection
**local_sections
, bfd_vma
*valuep
,
4978 bfd_boolean
*cross_mode_jump_p
,
4979 bfd_boolean save_addend
)
4981 /* The eventual value we will return. */
4983 /* The address of the symbol against which the relocation is
4986 /* The final GP value to be used for the relocatable, executable, or
4987 shared object file being produced. */
4989 /* The place (section offset or address) of the storage unit being
4992 /* The value of GP used to create the relocatable object. */
4994 /* The offset into the global offset table at which the address of
4995 the relocation entry symbol, adjusted by the addend, resides
4996 during execution. */
4997 bfd_vma g
= MINUS_ONE
;
4998 /* The section in which the symbol referenced by the relocation is
5000 asection
*sec
= NULL
;
5001 struct mips_elf_link_hash_entry
*h
= NULL
;
5002 /* TRUE if the symbol referred to by this relocation is a local
5004 bfd_boolean local_p
, was_local_p
;
5005 /* TRUE if the symbol referred to by this relocation is "_gp_disp". */
5006 bfd_boolean gp_disp_p
= FALSE
;
5007 /* TRUE if the symbol referred to by this relocation is
5008 "__gnu_local_gp". */
5009 bfd_boolean gnu_local_gp_p
= FALSE
;
5010 Elf_Internal_Shdr
*symtab_hdr
;
5012 unsigned long r_symndx
;
5014 /* TRUE if overflow occurred during the calculation of the
5015 relocation value. */
5016 bfd_boolean overflowed_p
;
5017 /* TRUE if this relocation refers to a MIPS16 function. */
5018 bfd_boolean target_is_16_bit_code_p
= FALSE
;
5019 bfd_boolean target_is_micromips_code_p
= FALSE
;
5020 struct mips_elf_link_hash_table
*htab
;
5023 dynobj
= elf_hash_table (info
)->dynobj
;
5024 htab
= mips_elf_hash_table (info
);
5025 BFD_ASSERT (htab
!= NULL
);
5027 /* Parse the relocation. */
5028 r_symndx
= ELF_R_SYM (input_bfd
, relocation
->r_info
);
5029 r_type
= ELF_R_TYPE (input_bfd
, relocation
->r_info
);
5030 p
= (input_section
->output_section
->vma
5031 + input_section
->output_offset
5032 + relocation
->r_offset
);
5034 /* Assume that there will be no overflow. */
5035 overflowed_p
= FALSE
;
5037 /* Figure out whether or not the symbol is local, and get the offset
5038 used in the array of hash table entries. */
5039 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
5040 local_p
= mips_elf_local_relocation_p (input_bfd
, relocation
,
5042 was_local_p
= local_p
;
5043 if (! elf_bad_symtab (input_bfd
))
5044 extsymoff
= symtab_hdr
->sh_info
;
5047 /* The symbol table does not follow the rule that local symbols
5048 must come before globals. */
5052 /* Figure out the value of the symbol. */
5055 Elf_Internal_Sym
*sym
;
5057 sym
= local_syms
+ r_symndx
;
5058 sec
= local_sections
[r_symndx
];
5060 symbol
= sec
->output_section
->vma
+ sec
->output_offset
;
5061 if (ELF_ST_TYPE (sym
->st_info
) != STT_SECTION
5062 || (sec
->flags
& SEC_MERGE
))
5063 symbol
+= sym
->st_value
;
5064 if ((sec
->flags
& SEC_MERGE
)
5065 && ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
5067 addend
= _bfd_elf_rel_local_sym (abfd
, sym
, &sec
, addend
);
5069 addend
+= sec
->output_section
->vma
+ sec
->output_offset
;
5072 /* MIPS16/microMIPS text labels should be treated as odd. */
5073 if (ELF_ST_IS_COMPRESSED (sym
->st_other
))
5076 /* Record the name of this symbol, for our caller. */
5077 *namep
= bfd_elf_string_from_elf_section (input_bfd
,
5078 symtab_hdr
->sh_link
,
5081 *namep
= bfd_section_name (input_bfd
, sec
);
5083 target_is_16_bit_code_p
= ELF_ST_IS_MIPS16 (sym
->st_other
);
5084 target_is_micromips_code_p
= ELF_ST_IS_MICROMIPS (sym
->st_other
);
5088 /* ??? Could we use RELOC_FOR_GLOBAL_SYMBOL here ? */
5090 /* For global symbols we look up the symbol in the hash-table. */
5091 h
= ((struct mips_elf_link_hash_entry
*)
5092 elf_sym_hashes (input_bfd
) [r_symndx
- extsymoff
]);
5093 /* Find the real hash-table entry for this symbol. */
5094 while (h
->root
.root
.type
== bfd_link_hash_indirect
5095 || h
->root
.root
.type
== bfd_link_hash_warning
)
5096 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
5098 /* Record the name of this symbol, for our caller. */
5099 *namep
= h
->root
.root
.root
.string
;
5101 /* See if this is the special _gp_disp symbol. Note that such a
5102 symbol must always be a global symbol. */
5103 if (strcmp (*namep
, "_gp_disp") == 0
5104 && ! NEWABI_P (input_bfd
))
5106 /* Relocations against _gp_disp are permitted only with
5107 R_MIPS_HI16 and R_MIPS_LO16 relocations. */
5108 if (!hi16_reloc_p (r_type
) && !lo16_reloc_p (r_type
))
5109 return bfd_reloc_notsupported
;
5113 /* See if this is the special _gp symbol. Note that such a
5114 symbol must always be a global symbol. */
5115 else if (strcmp (*namep
, "__gnu_local_gp") == 0)
5116 gnu_local_gp_p
= TRUE
;
5119 /* If this symbol is defined, calculate its address. Note that
5120 _gp_disp is a magic symbol, always implicitly defined by the
5121 linker, so it's inappropriate to check to see whether or not
5123 else if ((h
->root
.root
.type
== bfd_link_hash_defined
5124 || h
->root
.root
.type
== bfd_link_hash_defweak
)
5125 && h
->root
.root
.u
.def
.section
)
5127 sec
= h
->root
.root
.u
.def
.section
;
5128 if (sec
->output_section
)
5129 symbol
= (h
->root
.root
.u
.def
.value
5130 + sec
->output_section
->vma
5131 + sec
->output_offset
);
5133 symbol
= h
->root
.root
.u
.def
.value
;
5135 else if (h
->root
.root
.type
== bfd_link_hash_undefweak
)
5136 /* We allow relocations against undefined weak symbols, giving
5137 it the value zero, so that you can undefined weak functions
5138 and check to see if they exist by looking at their
5141 else if (info
->unresolved_syms_in_objects
== RM_IGNORE
5142 && ELF_ST_VISIBILITY (h
->root
.other
) == STV_DEFAULT
)
5144 else if (strcmp (*namep
, SGI_COMPAT (input_bfd
)
5145 ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING") == 0)
5147 /* If this is a dynamic link, we should have created a
5148 _DYNAMIC_LINK symbol or _DYNAMIC_LINKING(for normal mips) symbol
5149 in in _bfd_mips_elf_create_dynamic_sections.
5150 Otherwise, we should define the symbol with a value of 0.
5151 FIXME: It should probably get into the symbol table
5153 BFD_ASSERT (! info
->shared
);
5154 BFD_ASSERT (bfd_get_section_by_name (abfd
, ".dynamic") == NULL
);
5157 else if (ELF_MIPS_IS_OPTIONAL (h
->root
.other
))
5159 /* This is an optional symbol - an Irix specific extension to the
5160 ELF spec. Ignore it for now.
5161 XXX - FIXME - there is more to the spec for OPTIONAL symbols
5162 than simply ignoring them, but we do not handle this for now.
5163 For information see the "64-bit ELF Object File Specification"
5164 which is available from here:
5165 http://techpubs.sgi.com/library/manuals/4000/007-4658-001/pdf/007-4658-001.pdf */
5168 else if ((*info
->callbacks
->undefined_symbol
)
5169 (info
, h
->root
.root
.root
.string
, input_bfd
,
5170 input_section
, relocation
->r_offset
,
5171 (info
->unresolved_syms_in_objects
== RM_GENERATE_ERROR
)
5172 || ELF_ST_VISIBILITY (h
->root
.other
)))
5174 return bfd_reloc_undefined
;
5178 return bfd_reloc_notsupported
;
5181 target_is_16_bit_code_p
= ELF_ST_IS_MIPS16 (h
->root
.other
);
5182 /* If the output section is the PLT section,
5183 then the target is not microMIPS. */
5184 target_is_micromips_code_p
= (htab
->splt
!= sec
5185 && ELF_ST_IS_MICROMIPS (h
->root
.other
));
5188 /* If this is a reference to a 16-bit function with a stub, we need
5189 to redirect the relocation to the stub unless:
5191 (a) the relocation is for a MIPS16 JAL;
5193 (b) the relocation is for a MIPS16 PIC call, and there are no
5194 non-MIPS16 uses of the GOT slot; or
5196 (c) the section allows direct references to MIPS16 functions. */
5197 if (r_type
!= R_MIPS16_26
5198 && !info
->relocatable
5200 && h
->fn_stub
!= NULL
5201 && (r_type
!= R_MIPS16_CALL16
|| h
->need_fn_stub
))
5203 && mips_elf_tdata (input_bfd
)->local_stubs
!= NULL
5204 && mips_elf_tdata (input_bfd
)->local_stubs
[r_symndx
] != NULL
))
5205 && !section_allows_mips16_refs_p (input_section
))
5207 /* This is a 32- or 64-bit call to a 16-bit function. We should
5208 have already noticed that we were going to need the
5212 sec
= mips_elf_tdata (input_bfd
)->local_stubs
[r_symndx
];
5217 BFD_ASSERT (h
->need_fn_stub
);
5220 /* If a LA25 header for the stub itself exists, point to the
5221 prepended LUI/ADDIU sequence. */
5222 sec
= h
->la25_stub
->stub_section
;
5223 value
= h
->la25_stub
->offset
;
5232 symbol
= sec
->output_section
->vma
+ sec
->output_offset
+ value
;
5233 /* The target is 16-bit, but the stub isn't. */
5234 target_is_16_bit_code_p
= FALSE
;
5236 /* If this is a 16-bit call to a 32- or 64-bit function with a stub, we
5237 need to redirect the call to the stub. Note that we specifically
5238 exclude R_MIPS16_CALL16 from this behavior; indirect calls should
5239 use an indirect stub instead. */
5240 else if (r_type
== R_MIPS16_26
&& !info
->relocatable
5241 && ((h
!= NULL
&& (h
->call_stub
!= NULL
|| h
->call_fp_stub
!= NULL
))
5243 && mips_elf_tdata (input_bfd
)->local_call_stubs
!= NULL
5244 && mips_elf_tdata (input_bfd
)->local_call_stubs
[r_symndx
] != NULL
))
5245 && !target_is_16_bit_code_p
)
5248 sec
= mips_elf_tdata (input_bfd
)->local_call_stubs
[r_symndx
];
5251 /* If both call_stub and call_fp_stub are defined, we can figure
5252 out which one to use by checking which one appears in the input
5254 if (h
->call_stub
!= NULL
&& h
->call_fp_stub
!= NULL
)
5259 for (o
= input_bfd
->sections
; o
!= NULL
; o
= o
->next
)
5261 if (CALL_FP_STUB_P (bfd_get_section_name (input_bfd
, o
)))
5263 sec
= h
->call_fp_stub
;
5270 else if (h
->call_stub
!= NULL
)
5273 sec
= h
->call_fp_stub
;
5276 BFD_ASSERT (sec
->size
> 0);
5277 symbol
= sec
->output_section
->vma
+ sec
->output_offset
;
5279 /* If this is a direct call to a PIC function, redirect to the
5281 else if (h
!= NULL
&& h
->la25_stub
5282 && mips_elf_relocation_needs_la25_stub (input_bfd
, r_type
,
5283 target_is_16_bit_code_p
))
5284 symbol
= (h
->la25_stub
->stub_section
->output_section
->vma
5285 + h
->la25_stub
->stub_section
->output_offset
5286 + h
->la25_stub
->offset
);
5288 /* Make sure MIPS16 and microMIPS are not used together. */
5289 if ((r_type
== R_MIPS16_26
&& target_is_micromips_code_p
)
5290 || (micromips_branch_reloc_p (r_type
) && target_is_16_bit_code_p
))
5292 (*_bfd_error_handler
)
5293 (_("MIPS16 and microMIPS functions cannot call each other"));
5294 return bfd_reloc_notsupported
;
5297 /* Calls from 16-bit code to 32-bit code and vice versa require the
5298 mode change. However, we can ignore calls to undefined weak symbols,
5299 which should never be executed at runtime. This exception is important
5300 because the assembly writer may have "known" that any definition of the
5301 symbol would be 16-bit code, and that direct jumps were therefore
5303 *cross_mode_jump_p
= (!info
->relocatable
5304 && !(h
&& h
->root
.root
.type
== bfd_link_hash_undefweak
)
5305 && ((r_type
== R_MIPS16_26
&& !target_is_16_bit_code_p
)
5306 || (r_type
== R_MICROMIPS_26_S1
5307 && !target_is_micromips_code_p
)
5308 || ((r_type
== R_MIPS_26
|| r_type
== R_MIPS_JALR
)
5309 && (target_is_16_bit_code_p
5310 || target_is_micromips_code_p
))));
5312 local_p
= (h
== NULL
5313 || (h
->got_only_for_calls
5314 ? SYMBOL_CALLS_LOCAL (info
, &h
->root
)
5315 : SYMBOL_REFERENCES_LOCAL (info
, &h
->root
)));
5317 gp0
= _bfd_get_gp_value (input_bfd
);
5318 gp
= _bfd_get_gp_value (abfd
);
5320 gp
+= mips_elf_adjust_gp (abfd
, htab
->got_info
, input_bfd
);
5325 /* Global R_MIPS_GOT_PAGE/R_MICROMIPS_GOT_PAGE relocations are equivalent
5326 to R_MIPS_GOT_DISP/R_MICROMIPS_GOT_DISP. The addend is applied by the
5327 corresponding R_MIPS_GOT_OFST/R_MICROMIPS_GOT_OFST. */
5328 if (got_page_reloc_p (r_type
) && !local_p
)
5330 r_type
= (micromips_reloc_p (r_type
)
5331 ? R_MICROMIPS_GOT_DISP
: R_MIPS_GOT_DISP
);
5335 /* If we haven't already determined the GOT offset, and we're going
5336 to need it, get it now. */
5339 case R_MIPS16_CALL16
:
5340 case R_MIPS16_GOT16
:
5343 case R_MIPS_GOT_DISP
:
5344 case R_MIPS_GOT_HI16
:
5345 case R_MIPS_CALL_HI16
:
5346 case R_MIPS_GOT_LO16
:
5347 case R_MIPS_CALL_LO16
:
5348 case R_MICROMIPS_CALL16
:
5349 case R_MICROMIPS_GOT16
:
5350 case R_MICROMIPS_GOT_DISP
:
5351 case R_MICROMIPS_GOT_HI16
:
5352 case R_MICROMIPS_CALL_HI16
:
5353 case R_MICROMIPS_GOT_LO16
:
5354 case R_MICROMIPS_CALL_LO16
:
5356 case R_MIPS_TLS_GOTTPREL
:
5357 case R_MIPS_TLS_LDM
:
5358 case R_MIPS16_TLS_GD
:
5359 case R_MIPS16_TLS_GOTTPREL
:
5360 case R_MIPS16_TLS_LDM
:
5361 case R_MICROMIPS_TLS_GD
:
5362 case R_MICROMIPS_TLS_GOTTPREL
:
5363 case R_MICROMIPS_TLS_LDM
:
5364 /* Find the index into the GOT where this value is located. */
5365 if (tls_ldm_reloc_p (r_type
))
5367 g
= mips_elf_local_got_index (abfd
, input_bfd
, info
,
5368 0, 0, NULL
, r_type
);
5370 return bfd_reloc_outofrange
;
5374 /* On VxWorks, CALL relocations should refer to the .got.plt
5375 entry, which is initialized to point at the PLT stub. */
5376 if (htab
->is_vxworks
5377 && (call_hi16_reloc_p (r_type
)
5378 || call_lo16_reloc_p (r_type
)
5379 || call16_reloc_p (r_type
)))
5381 BFD_ASSERT (addend
== 0);
5382 BFD_ASSERT (h
->root
.needs_plt
);
5383 g
= mips_elf_gotplt_index (info
, &h
->root
);
5387 BFD_ASSERT (addend
== 0);
5388 g
= mips_elf_global_got_index (abfd
, info
, input_bfd
,
5390 if (!TLS_RELOC_P (r_type
)
5391 && !elf_hash_table (info
)->dynamic_sections_created
)
5392 /* This is a static link. We must initialize the GOT entry. */
5393 MIPS_ELF_PUT_WORD (dynobj
, symbol
, htab
->sgot
->contents
+ g
);
5396 else if (!htab
->is_vxworks
5397 && (call16_reloc_p (r_type
) || got16_reloc_p (r_type
)))
5398 /* The calculation below does not involve "g". */
5402 g
= mips_elf_local_got_index (abfd
, input_bfd
, info
,
5403 symbol
+ addend
, r_symndx
, h
, r_type
);
5405 return bfd_reloc_outofrange
;
5408 /* Convert GOT indices to actual offsets. */
5409 g
= mips_elf_got_offset_from_index (info
, abfd
, input_bfd
, g
);
5413 /* Relocations against the VxWorks __GOTT_BASE__ and __GOTT_INDEX__
5414 symbols are resolved by the loader. Add them to .rela.dyn. */
5415 if (h
!= NULL
&& is_gott_symbol (info
, &h
->root
))
5417 Elf_Internal_Rela outrel
;
5421 s
= mips_elf_rel_dyn_section (info
, FALSE
);
5422 loc
= s
->contents
+ s
->reloc_count
++ * sizeof (Elf32_External_Rela
);
5424 outrel
.r_offset
= (input_section
->output_section
->vma
5425 + input_section
->output_offset
5426 + relocation
->r_offset
);
5427 outrel
.r_info
= ELF32_R_INFO (h
->root
.dynindx
, r_type
);
5428 outrel
.r_addend
= addend
;
5429 bfd_elf32_swap_reloca_out (abfd
, &outrel
, loc
);
5431 /* If we've written this relocation for a readonly section,
5432 we need to set DF_TEXTREL again, so that we do not delete the
5434 if (MIPS_ELF_READONLY_SECTION (input_section
))
5435 info
->flags
|= DF_TEXTREL
;
5438 return bfd_reloc_ok
;
5441 /* Figure out what kind of relocation is being performed. */
5445 return bfd_reloc_continue
;
5448 value
= symbol
+ _bfd_mips_elf_sign_extend (addend
, 16);
5449 overflowed_p
= mips_elf_overflow_p (value
, 16);
5456 || (htab
->root
.dynamic_sections_created
5458 && h
->root
.def_dynamic
5459 && !h
->root
.def_regular
5460 && !h
->has_static_relocs
))
5461 && r_symndx
!= STN_UNDEF
5463 || h
->root
.root
.type
!= bfd_link_hash_undefweak
5464 || ELF_ST_VISIBILITY (h
->root
.other
) == STV_DEFAULT
)
5465 && (input_section
->flags
& SEC_ALLOC
) != 0)
5467 /* If we're creating a shared library, then we can't know
5468 where the symbol will end up. So, we create a relocation
5469 record in the output, and leave the job up to the dynamic
5470 linker. We must do the same for executable references to
5471 shared library symbols, unless we've decided to use copy
5472 relocs or PLTs instead. */
5474 if (!mips_elf_create_dynamic_relocation (abfd
,
5482 return bfd_reloc_undefined
;
5486 if (r_type
!= R_MIPS_REL32
)
5487 value
= symbol
+ addend
;
5491 value
&= howto
->dst_mask
;
5495 value
= symbol
+ addend
- p
;
5496 value
&= howto
->dst_mask
;
5500 /* The calculation for R_MIPS16_26 is just the same as for an
5501 R_MIPS_26. It's only the storage of the relocated field into
5502 the output file that's different. That's handled in
5503 mips_elf_perform_relocation. So, we just fall through to the
5504 R_MIPS_26 case here. */
5506 case R_MICROMIPS_26_S1
:
5510 /* Make sure the target of JALX is word-aligned. Bit 0 must be
5511 the correct ISA mode selector and bit 1 must be 0. */
5512 if (*cross_mode_jump_p
&& (symbol
& 3) != (r_type
== R_MIPS_26
))
5513 return bfd_reloc_outofrange
;
5515 /* Shift is 2, unusually, for microMIPS JALX. */
5516 shift
= (!*cross_mode_jump_p
&& r_type
== R_MICROMIPS_26_S1
) ? 1 : 2;
5519 value
= addend
| ((p
+ 4) & (0xfc000000 << shift
));
5521 value
= _bfd_mips_elf_sign_extend (addend
, 26 + shift
);
5522 value
= (value
+ symbol
) >> shift
;
5523 if (!was_local_p
&& h
->root
.root
.type
!= bfd_link_hash_undefweak
)
5524 overflowed_p
= (value
>> 26) != ((p
+ 4) >> (26 + shift
));
5525 value
&= howto
->dst_mask
;
5529 case R_MIPS_TLS_DTPREL_HI16
:
5530 case R_MIPS16_TLS_DTPREL_HI16
:
5531 case R_MICROMIPS_TLS_DTPREL_HI16
:
5532 value
= (mips_elf_high (addend
+ symbol
- dtprel_base (info
))
5536 case R_MIPS_TLS_DTPREL_LO16
:
5537 case R_MIPS_TLS_DTPREL32
:
5538 case R_MIPS_TLS_DTPREL64
:
5539 case R_MIPS16_TLS_DTPREL_LO16
:
5540 case R_MICROMIPS_TLS_DTPREL_LO16
:
5541 value
= (symbol
+ addend
- dtprel_base (info
)) & howto
->dst_mask
;
5544 case R_MIPS_TLS_TPREL_HI16
:
5545 case R_MIPS16_TLS_TPREL_HI16
:
5546 case R_MICROMIPS_TLS_TPREL_HI16
:
5547 value
= (mips_elf_high (addend
+ symbol
- tprel_base (info
))
5551 case R_MIPS_TLS_TPREL_LO16
:
5552 case R_MIPS_TLS_TPREL32
:
5553 case R_MIPS_TLS_TPREL64
:
5554 case R_MIPS16_TLS_TPREL_LO16
:
5555 case R_MICROMIPS_TLS_TPREL_LO16
:
5556 value
= (symbol
+ addend
- tprel_base (info
)) & howto
->dst_mask
;
5561 case R_MICROMIPS_HI16
:
5564 value
= mips_elf_high (addend
+ symbol
);
5565 value
&= howto
->dst_mask
;
5569 /* For MIPS16 ABI code we generate this sequence
5570 0: li $v0,%hi(_gp_disp)
5571 4: addiupc $v1,%lo(_gp_disp)
5575 So the offsets of hi and lo relocs are the same, but the
5576 base $pc is that used by the ADDIUPC instruction at $t9 + 4.
5577 ADDIUPC clears the low two bits of the instruction address,
5578 so the base is ($t9 + 4) & ~3. */
5579 if (r_type
== R_MIPS16_HI16
)
5580 value
= mips_elf_high (addend
+ gp
- ((p
+ 4) & ~(bfd_vma
) 0x3));
5581 /* The microMIPS .cpload sequence uses the same assembly
5582 instructions as the traditional psABI version, but the
5583 incoming $t9 has the low bit set. */
5584 else if (r_type
== R_MICROMIPS_HI16
)
5585 value
= mips_elf_high (addend
+ gp
- p
- 1);
5587 value
= mips_elf_high (addend
+ gp
- p
);
5588 overflowed_p
= mips_elf_overflow_p (value
, 16);
5594 case R_MICROMIPS_LO16
:
5595 case R_MICROMIPS_HI0_LO16
:
5597 value
= (symbol
+ addend
) & howto
->dst_mask
;
5600 /* See the comment for R_MIPS16_HI16 above for the reason
5601 for this conditional. */
5602 if (r_type
== R_MIPS16_LO16
)
5603 value
= addend
+ gp
- (p
& ~(bfd_vma
) 0x3);
5604 else if (r_type
== R_MICROMIPS_LO16
5605 || r_type
== R_MICROMIPS_HI0_LO16
)
5606 value
= addend
+ gp
- p
+ 3;
5608 value
= addend
+ gp
- p
+ 4;
5609 /* The MIPS ABI requires checking the R_MIPS_LO16 relocation
5610 for overflow. But, on, say, IRIX5, relocations against
5611 _gp_disp are normally generated from the .cpload
5612 pseudo-op. It generates code that normally looks like
5615 lui $gp,%hi(_gp_disp)
5616 addiu $gp,$gp,%lo(_gp_disp)
5619 Here $t9 holds the address of the function being called,
5620 as required by the MIPS ELF ABI. The R_MIPS_LO16
5621 relocation can easily overflow in this situation, but the
5622 R_MIPS_HI16 relocation will handle the overflow.
5623 Therefore, we consider this a bug in the MIPS ABI, and do
5624 not check for overflow here. */
5628 case R_MIPS_LITERAL
:
5629 case R_MICROMIPS_LITERAL
:
5630 /* Because we don't merge literal sections, we can handle this
5631 just like R_MIPS_GPREL16. In the long run, we should merge
5632 shared literals, and then we will need to additional work
5637 case R_MIPS16_GPREL
:
5638 /* The R_MIPS16_GPREL performs the same calculation as
5639 R_MIPS_GPREL16, but stores the relocated bits in a different
5640 order. We don't need to do anything special here; the
5641 differences are handled in mips_elf_perform_relocation. */
5642 case R_MIPS_GPREL16
:
5643 case R_MICROMIPS_GPREL7_S2
:
5644 case R_MICROMIPS_GPREL16
:
5645 /* Only sign-extend the addend if it was extracted from the
5646 instruction. If the addend was separate, leave it alone,
5647 otherwise we may lose significant bits. */
5648 if (howto
->partial_inplace
)
5649 addend
= _bfd_mips_elf_sign_extend (addend
, 16);
5650 value
= symbol
+ addend
- gp
;
5651 /* If the symbol was local, any earlier relocatable links will
5652 have adjusted its addend with the gp offset, so compensate
5653 for that now. Don't do it for symbols forced local in this
5654 link, though, since they won't have had the gp offset applied
5658 overflowed_p
= mips_elf_overflow_p (value
, 16);
5661 case R_MIPS16_GOT16
:
5662 case R_MIPS16_CALL16
:
5665 case R_MICROMIPS_GOT16
:
5666 case R_MICROMIPS_CALL16
:
5667 /* VxWorks does not have separate local and global semantics for
5668 R_MIPS*_GOT16; every relocation evaluates to "G". */
5669 if (!htab
->is_vxworks
&& local_p
)
5671 value
= mips_elf_got16_entry (abfd
, input_bfd
, info
,
5672 symbol
+ addend
, !was_local_p
);
5673 if (value
== MINUS_ONE
)
5674 return bfd_reloc_outofrange
;
5676 = mips_elf_got_offset_from_index (info
, abfd
, input_bfd
, value
);
5677 overflowed_p
= mips_elf_overflow_p (value
, 16);
5684 case R_MIPS_TLS_GOTTPREL
:
5685 case R_MIPS_TLS_LDM
:
5686 case R_MIPS_GOT_DISP
:
5687 case R_MIPS16_TLS_GD
:
5688 case R_MIPS16_TLS_GOTTPREL
:
5689 case R_MIPS16_TLS_LDM
:
5690 case R_MICROMIPS_TLS_GD
:
5691 case R_MICROMIPS_TLS_GOTTPREL
:
5692 case R_MICROMIPS_TLS_LDM
:
5693 case R_MICROMIPS_GOT_DISP
:
5695 overflowed_p
= mips_elf_overflow_p (value
, 16);
5698 case R_MIPS_GPREL32
:
5699 value
= (addend
+ symbol
+ gp0
- gp
);
5701 value
&= howto
->dst_mask
;
5705 case R_MIPS_GNU_REL16_S2
:
5706 value
= symbol
+ _bfd_mips_elf_sign_extend (addend
, 18) - p
;
5707 overflowed_p
= mips_elf_overflow_p (value
, 18);
5708 value
>>= howto
->rightshift
;
5709 value
&= howto
->dst_mask
;
5712 case R_MICROMIPS_PC7_S1
:
5713 value
= symbol
+ _bfd_mips_elf_sign_extend (addend
, 8) - p
;
5714 overflowed_p
= mips_elf_overflow_p (value
, 8);
5715 value
>>= howto
->rightshift
;
5716 value
&= howto
->dst_mask
;
5719 case R_MICROMIPS_PC10_S1
:
5720 value
= symbol
+ _bfd_mips_elf_sign_extend (addend
, 11) - p
;
5721 overflowed_p
= mips_elf_overflow_p (value
, 11);
5722 value
>>= howto
->rightshift
;
5723 value
&= howto
->dst_mask
;
5726 case R_MICROMIPS_PC16_S1
:
5727 value
= symbol
+ _bfd_mips_elf_sign_extend (addend
, 17) - p
;
5728 overflowed_p
= mips_elf_overflow_p (value
, 17);
5729 value
>>= howto
->rightshift
;
5730 value
&= howto
->dst_mask
;
5733 case R_MICROMIPS_PC23_S2
:
5734 value
= symbol
+ _bfd_mips_elf_sign_extend (addend
, 25) - ((p
| 3) ^ 3);
5735 overflowed_p
= mips_elf_overflow_p (value
, 25);
5736 value
>>= howto
->rightshift
;
5737 value
&= howto
->dst_mask
;
5740 case R_MIPS_GOT_HI16
:
5741 case R_MIPS_CALL_HI16
:
5742 case R_MICROMIPS_GOT_HI16
:
5743 case R_MICROMIPS_CALL_HI16
:
5744 /* We're allowed to handle these two relocations identically.
5745 The dynamic linker is allowed to handle the CALL relocations
5746 differently by creating a lazy evaluation stub. */
5748 value
= mips_elf_high (value
);
5749 value
&= howto
->dst_mask
;
5752 case R_MIPS_GOT_LO16
:
5753 case R_MIPS_CALL_LO16
:
5754 case R_MICROMIPS_GOT_LO16
:
5755 case R_MICROMIPS_CALL_LO16
:
5756 value
= g
& howto
->dst_mask
;
5759 case R_MIPS_GOT_PAGE
:
5760 case R_MICROMIPS_GOT_PAGE
:
5761 value
= mips_elf_got_page (abfd
, input_bfd
, info
, symbol
+ addend
, NULL
);
5762 if (value
== MINUS_ONE
)
5763 return bfd_reloc_outofrange
;
5764 value
= mips_elf_got_offset_from_index (info
, abfd
, input_bfd
, value
);
5765 overflowed_p
= mips_elf_overflow_p (value
, 16);
5768 case R_MIPS_GOT_OFST
:
5769 case R_MICROMIPS_GOT_OFST
:
5771 mips_elf_got_page (abfd
, input_bfd
, info
, symbol
+ addend
, &value
);
5774 overflowed_p
= mips_elf_overflow_p (value
, 16);
5778 case R_MICROMIPS_SUB
:
5779 value
= symbol
- addend
;
5780 value
&= howto
->dst_mask
;
5784 case R_MICROMIPS_HIGHER
:
5785 value
= mips_elf_higher (addend
+ symbol
);
5786 value
&= howto
->dst_mask
;
5789 case R_MIPS_HIGHEST
:
5790 case R_MICROMIPS_HIGHEST
:
5791 value
= mips_elf_highest (addend
+ symbol
);
5792 value
&= howto
->dst_mask
;
5795 case R_MIPS_SCN_DISP
:
5796 case R_MICROMIPS_SCN_DISP
:
5797 value
= symbol
+ addend
- sec
->output_offset
;
5798 value
&= howto
->dst_mask
;
5802 case R_MICROMIPS_JALR
:
5803 /* This relocation is only a hint. In some cases, we optimize
5804 it into a bal instruction. But we don't try to optimize
5805 when the symbol does not resolve locally. */
5806 if (h
!= NULL
&& !SYMBOL_CALLS_LOCAL (info
, &h
->root
))
5807 return bfd_reloc_continue
;
5808 value
= symbol
+ addend
;
5812 case R_MIPS_GNU_VTINHERIT
:
5813 case R_MIPS_GNU_VTENTRY
:
5814 /* We don't do anything with these at present. */
5815 return bfd_reloc_continue
;
5818 /* An unrecognized relocation type. */
5819 return bfd_reloc_notsupported
;
5822 /* Store the VALUE for our caller. */
5824 return overflowed_p
? bfd_reloc_overflow
: bfd_reloc_ok
;
5827 /* Obtain the field relocated by RELOCATION. */
5830 mips_elf_obtain_contents (reloc_howto_type
*howto
,
5831 const Elf_Internal_Rela
*relocation
,
5832 bfd
*input_bfd
, bfd_byte
*contents
)
5835 bfd_byte
*location
= contents
+ relocation
->r_offset
;
5837 /* Obtain the bytes. */
5838 x
= bfd_get ((8 * bfd_get_reloc_size (howto
)), input_bfd
, location
);
5843 /* It has been determined that the result of the RELOCATION is the
5844 VALUE. Use HOWTO to place VALUE into the output file at the
5845 appropriate position. The SECTION is the section to which the
5847 CROSS_MODE_JUMP_P is true if the relocation field
5848 is a MIPS16 or microMIPS jump to standard MIPS code, or vice versa.
5850 Returns FALSE if anything goes wrong. */
5853 mips_elf_perform_relocation (struct bfd_link_info
*info
,
5854 reloc_howto_type
*howto
,
5855 const Elf_Internal_Rela
*relocation
,
5856 bfd_vma value
, bfd
*input_bfd
,
5857 asection
*input_section
, bfd_byte
*contents
,
5858 bfd_boolean cross_mode_jump_p
)
5862 int r_type
= ELF_R_TYPE (input_bfd
, relocation
->r_info
);
5864 /* Figure out where the relocation is occurring. */
5865 location
= contents
+ relocation
->r_offset
;
5867 _bfd_mips_elf_reloc_unshuffle (input_bfd
, r_type
, FALSE
, location
);
5869 /* Obtain the current value. */
5870 x
= mips_elf_obtain_contents (howto
, relocation
, input_bfd
, contents
);
5872 /* Clear the field we are setting. */
5873 x
&= ~howto
->dst_mask
;
5875 /* Set the field. */
5876 x
|= (value
& howto
->dst_mask
);
5878 /* If required, turn JAL into JALX. */
5879 if (cross_mode_jump_p
&& jal_reloc_p (r_type
))
5882 bfd_vma opcode
= x
>> 26;
5883 bfd_vma jalx_opcode
;
5885 /* Check to see if the opcode is already JAL or JALX. */
5886 if (r_type
== R_MIPS16_26
)
5888 ok
= ((opcode
== 0x6) || (opcode
== 0x7));
5891 else if (r_type
== R_MICROMIPS_26_S1
)
5893 ok
= ((opcode
== 0x3d) || (opcode
== 0x3c));
5898 ok
= ((opcode
== 0x3) || (opcode
== 0x1d));
5902 /* If the opcode is not JAL or JALX, there's a problem. We cannot
5903 convert J or JALS to JALX. */
5906 (*_bfd_error_handler
)
5907 (_("%B: %A+0x%lx: Unsupported jump between ISA modes; consider recompiling with interlinking enabled."),
5910 (unsigned long) relocation
->r_offset
);
5911 bfd_set_error (bfd_error_bad_value
);
5915 /* Make this the JALX opcode. */
5916 x
= (x
& ~(0x3f << 26)) | (jalx_opcode
<< 26);
5919 /* Try converting JAL to BAL and J(AL)R to B(AL), if the target is in
5921 if (!info
->relocatable
5922 && !cross_mode_jump_p
5923 && ((JAL_TO_BAL_P (input_bfd
)
5924 && r_type
== R_MIPS_26
5925 && (x
>> 26) == 0x3) /* jal addr */
5926 || (JALR_TO_BAL_P (input_bfd
)
5927 && r_type
== R_MIPS_JALR
5928 && x
== 0x0320f809) /* jalr t9 */
5929 || (JR_TO_B_P (input_bfd
)
5930 && r_type
== R_MIPS_JALR
5931 && x
== 0x03200008))) /* jr t9 */
5937 addr
= (input_section
->output_section
->vma
5938 + input_section
->output_offset
5939 + relocation
->r_offset
5941 if (r_type
== R_MIPS_26
)
5942 dest
= (value
<< 2) | ((addr
>> 28) << 28);
5946 if (off
<= 0x1ffff && off
>= -0x20000)
5948 if (x
== 0x03200008) /* jr t9 */
5949 x
= 0x10000000 | (((bfd_vma
) off
>> 2) & 0xffff); /* b addr */
5951 x
= 0x04110000 | (((bfd_vma
) off
>> 2) & 0xffff); /* bal addr */
5955 /* Put the value into the output. */
5956 bfd_put (8 * bfd_get_reloc_size (howto
), input_bfd
, x
, location
);
5958 _bfd_mips_elf_reloc_shuffle (input_bfd
, r_type
, !info
->relocatable
,
5964 /* Create a rel.dyn relocation for the dynamic linker to resolve. REL
5965 is the original relocation, which is now being transformed into a
5966 dynamic relocation. The ADDENDP is adjusted if necessary; the
5967 caller should store the result in place of the original addend. */
5970 mips_elf_create_dynamic_relocation (bfd
*output_bfd
,
5971 struct bfd_link_info
*info
,
5972 const Elf_Internal_Rela
*rel
,
5973 struct mips_elf_link_hash_entry
*h
,
5974 asection
*sec
, bfd_vma symbol
,
5975 bfd_vma
*addendp
, asection
*input_section
)
5977 Elf_Internal_Rela outrel
[3];
5982 bfd_boolean defined_p
;
5983 struct mips_elf_link_hash_table
*htab
;
5985 htab
= mips_elf_hash_table (info
);
5986 BFD_ASSERT (htab
!= NULL
);
5988 r_type
= ELF_R_TYPE (output_bfd
, rel
->r_info
);
5989 dynobj
= elf_hash_table (info
)->dynobj
;
5990 sreloc
= mips_elf_rel_dyn_section (info
, FALSE
);
5991 BFD_ASSERT (sreloc
!= NULL
);
5992 BFD_ASSERT (sreloc
->contents
!= NULL
);
5993 BFD_ASSERT (sreloc
->reloc_count
* MIPS_ELF_REL_SIZE (output_bfd
)
5996 outrel
[0].r_offset
=
5997 _bfd_elf_section_offset (output_bfd
, info
, input_section
, rel
[0].r_offset
);
5998 if (ABI_64_P (output_bfd
))
6000 outrel
[1].r_offset
=
6001 _bfd_elf_section_offset (output_bfd
, info
, input_section
, rel
[1].r_offset
);
6002 outrel
[2].r_offset
=
6003 _bfd_elf_section_offset (output_bfd
, info
, input_section
, rel
[2].r_offset
);
6006 if (outrel
[0].r_offset
== MINUS_ONE
)
6007 /* The relocation field has been deleted. */
6010 if (outrel
[0].r_offset
== MINUS_TWO
)
6012 /* The relocation field has been converted into a relative value of
6013 some sort. Functions like _bfd_elf_write_section_eh_frame expect
6014 the field to be fully relocated, so add in the symbol's value. */
6019 /* We must now calculate the dynamic symbol table index to use
6020 in the relocation. */
6021 if (h
!= NULL
&& ! SYMBOL_REFERENCES_LOCAL (info
, &h
->root
))
6023 BFD_ASSERT (htab
->is_vxworks
|| h
->global_got_area
!= GGA_NONE
);
6024 indx
= h
->root
.dynindx
;
6025 if (SGI_COMPAT (output_bfd
))
6026 defined_p
= h
->root
.def_regular
;
6028 /* ??? glibc's ld.so just adds the final GOT entry to the
6029 relocation field. It therefore treats relocs against
6030 defined symbols in the same way as relocs against
6031 undefined symbols. */
6036 if (sec
!= NULL
&& bfd_is_abs_section (sec
))
6038 else if (sec
== NULL
|| sec
->owner
== NULL
)
6040 bfd_set_error (bfd_error_bad_value
);
6045 indx
= elf_section_data (sec
->output_section
)->dynindx
;
6048 asection
*osec
= htab
->root
.text_index_section
;
6049 indx
= elf_section_data (osec
)->dynindx
;
6055 /* Instead of generating a relocation using the section
6056 symbol, we may as well make it a fully relative
6057 relocation. We want to avoid generating relocations to
6058 local symbols because we used to generate them
6059 incorrectly, without adding the original symbol value,
6060 which is mandated by the ABI for section symbols. In
6061 order to give dynamic loaders and applications time to
6062 phase out the incorrect use, we refrain from emitting
6063 section-relative relocations. It's not like they're
6064 useful, after all. This should be a bit more efficient
6066 /* ??? Although this behavior is compatible with glibc's ld.so,
6067 the ABI says that relocations against STN_UNDEF should have
6068 a symbol value of 0. Irix rld honors this, so relocations
6069 against STN_UNDEF have no effect. */
6070 if (!SGI_COMPAT (output_bfd
))
6075 /* If the relocation was previously an absolute relocation and
6076 this symbol will not be referred to by the relocation, we must
6077 adjust it by the value we give it in the dynamic symbol table.
6078 Otherwise leave the job up to the dynamic linker. */
6079 if (defined_p
&& r_type
!= R_MIPS_REL32
)
6082 if (htab
->is_vxworks
)
6083 /* VxWorks uses non-relative relocations for this. */
6084 outrel
[0].r_info
= ELF32_R_INFO (indx
, R_MIPS_32
);
6086 /* The relocation is always an REL32 relocation because we don't
6087 know where the shared library will wind up at load-time. */
6088 outrel
[0].r_info
= ELF_R_INFO (output_bfd
, (unsigned long) indx
,
6091 /* For strict adherence to the ABI specification, we should
6092 generate a R_MIPS_64 relocation record by itself before the
6093 _REL32/_64 record as well, such that the addend is read in as
6094 a 64-bit value (REL32 is a 32-bit relocation, after all).
6095 However, since none of the existing ELF64 MIPS dynamic
6096 loaders seems to care, we don't waste space with these
6097 artificial relocations. If this turns out to not be true,
6098 mips_elf_allocate_dynamic_relocation() should be tweaked so
6099 as to make room for a pair of dynamic relocations per
6100 invocation if ABI_64_P, and here we should generate an
6101 additional relocation record with R_MIPS_64 by itself for a
6102 NULL symbol before this relocation record. */
6103 outrel
[1].r_info
= ELF_R_INFO (output_bfd
, 0,
6104 ABI_64_P (output_bfd
)
6107 outrel
[2].r_info
= ELF_R_INFO (output_bfd
, 0, R_MIPS_NONE
);
6109 /* Adjust the output offset of the relocation to reference the
6110 correct location in the output file. */
6111 outrel
[0].r_offset
+= (input_section
->output_section
->vma
6112 + input_section
->output_offset
);
6113 outrel
[1].r_offset
+= (input_section
->output_section
->vma
6114 + input_section
->output_offset
);
6115 outrel
[2].r_offset
+= (input_section
->output_section
->vma
6116 + input_section
->output_offset
);
6118 /* Put the relocation back out. We have to use the special
6119 relocation outputter in the 64-bit case since the 64-bit
6120 relocation format is non-standard. */
6121 if (ABI_64_P (output_bfd
))
6123 (*get_elf_backend_data (output_bfd
)->s
->swap_reloc_out
)
6124 (output_bfd
, &outrel
[0],
6126 + sreloc
->reloc_count
* sizeof (Elf64_Mips_External_Rel
)));
6128 else if (htab
->is_vxworks
)
6130 /* VxWorks uses RELA rather than REL dynamic relocations. */
6131 outrel
[0].r_addend
= *addendp
;
6132 bfd_elf32_swap_reloca_out
6133 (output_bfd
, &outrel
[0],
6135 + sreloc
->reloc_count
* sizeof (Elf32_External_Rela
)));
6138 bfd_elf32_swap_reloc_out
6139 (output_bfd
, &outrel
[0],
6140 (sreloc
->contents
+ sreloc
->reloc_count
* sizeof (Elf32_External_Rel
)));
6142 /* We've now added another relocation. */
6143 ++sreloc
->reloc_count
;
6145 /* Make sure the output section is writable. The dynamic linker
6146 will be writing to it. */
6147 elf_section_data (input_section
->output_section
)->this_hdr
.sh_flags
6150 /* On IRIX5, make an entry of compact relocation info. */
6151 if (IRIX_COMPAT (output_bfd
) == ict_irix5
)
6153 asection
*scpt
= bfd_get_linker_section (dynobj
, ".compact_rel");
6158 Elf32_crinfo cptrel
;
6160 mips_elf_set_cr_format (cptrel
, CRF_MIPS_LONG
);
6161 cptrel
.vaddr
= (rel
->r_offset
6162 + input_section
->output_section
->vma
6163 + input_section
->output_offset
);
6164 if (r_type
== R_MIPS_REL32
)
6165 mips_elf_set_cr_type (cptrel
, CRT_MIPS_REL32
);
6167 mips_elf_set_cr_type (cptrel
, CRT_MIPS_WORD
);
6168 mips_elf_set_cr_dist2to (cptrel
, 0);
6169 cptrel
.konst
= *addendp
;
6171 cr
= (scpt
->contents
6172 + sizeof (Elf32_External_compact_rel
));
6173 mips_elf_set_cr_relvaddr (cptrel
, 0);
6174 bfd_elf32_swap_crinfo_out (output_bfd
, &cptrel
,
6175 ((Elf32_External_crinfo
*) cr
6176 + scpt
->reloc_count
));
6177 ++scpt
->reloc_count
;
6181 /* If we've written this relocation for a readonly section,
6182 we need to set DF_TEXTREL again, so that we do not delete the
6184 if (MIPS_ELF_READONLY_SECTION (input_section
))
6185 info
->flags
|= DF_TEXTREL
;
6190 /* Return the MACH for a MIPS e_flags value. */
6193 _bfd_elf_mips_mach (flagword flags
)
6195 switch (flags
& EF_MIPS_MACH
)
6197 case E_MIPS_MACH_3900
:
6198 return bfd_mach_mips3900
;
6200 case E_MIPS_MACH_4010
:
6201 return bfd_mach_mips4010
;
6203 case E_MIPS_MACH_4100
:
6204 return bfd_mach_mips4100
;
6206 case E_MIPS_MACH_4111
:
6207 return bfd_mach_mips4111
;
6209 case E_MIPS_MACH_4120
:
6210 return bfd_mach_mips4120
;
6212 case E_MIPS_MACH_4650
:
6213 return bfd_mach_mips4650
;
6215 case E_MIPS_MACH_5400
:
6216 return bfd_mach_mips5400
;
6218 case E_MIPS_MACH_5500
:
6219 return bfd_mach_mips5500
;
6221 case E_MIPS_MACH_5900
:
6222 return bfd_mach_mips5900
;
6224 case E_MIPS_MACH_9000
:
6225 return bfd_mach_mips9000
;
6227 case E_MIPS_MACH_SB1
:
6228 return bfd_mach_mips_sb1
;
6230 case E_MIPS_MACH_LS2E
:
6231 return bfd_mach_mips_loongson_2e
;
6233 case E_MIPS_MACH_LS2F
:
6234 return bfd_mach_mips_loongson_2f
;
6236 case E_MIPS_MACH_LS3A
:
6237 return bfd_mach_mips_loongson_3a
;
6239 case E_MIPS_MACH_OCTEON2
:
6240 return bfd_mach_mips_octeon2
;
6242 case E_MIPS_MACH_OCTEON
:
6243 return bfd_mach_mips_octeon
;
6245 case E_MIPS_MACH_XLR
:
6246 return bfd_mach_mips_xlr
;
6249 switch (flags
& EF_MIPS_ARCH
)
6253 return bfd_mach_mips3000
;
6256 return bfd_mach_mips6000
;
6259 return bfd_mach_mips4000
;
6262 return bfd_mach_mips8000
;
6265 return bfd_mach_mips5
;
6267 case E_MIPS_ARCH_32
:
6268 return bfd_mach_mipsisa32
;
6270 case E_MIPS_ARCH_64
:
6271 return bfd_mach_mipsisa64
;
6273 case E_MIPS_ARCH_32R2
:
6274 return bfd_mach_mipsisa32r2
;
6276 case E_MIPS_ARCH_64R2
:
6277 return bfd_mach_mipsisa64r2
;
6284 /* Return printable name for ABI. */
6286 static INLINE
char *
6287 elf_mips_abi_name (bfd
*abfd
)
6291 flags
= elf_elfheader (abfd
)->e_flags
;
6292 switch (flags
& EF_MIPS_ABI
)
6295 if (ABI_N32_P (abfd
))
6297 else if (ABI_64_P (abfd
))
6301 case E_MIPS_ABI_O32
:
6303 case E_MIPS_ABI_O64
:
6305 case E_MIPS_ABI_EABI32
:
6307 case E_MIPS_ABI_EABI64
:
6310 return "unknown abi";
6314 /* MIPS ELF uses two common sections. One is the usual one, and the
6315 other is for small objects. All the small objects are kept
6316 together, and then referenced via the gp pointer, which yields
6317 faster assembler code. This is what we use for the small common
6318 section. This approach is copied from ecoff.c. */
6319 static asection mips_elf_scom_section
;
6320 static asymbol mips_elf_scom_symbol
;
6321 static asymbol
*mips_elf_scom_symbol_ptr
;
6323 /* MIPS ELF also uses an acommon section, which represents an
6324 allocated common symbol which may be overridden by a
6325 definition in a shared library. */
6326 static asection mips_elf_acom_section
;
6327 static asymbol mips_elf_acom_symbol
;
6328 static asymbol
*mips_elf_acom_symbol_ptr
;
6330 /* This is used for both the 32-bit and the 64-bit ABI. */
6333 _bfd_mips_elf_symbol_processing (bfd
*abfd
, asymbol
*asym
)
6335 elf_symbol_type
*elfsym
;
6337 /* Handle the special MIPS section numbers that a symbol may use. */
6338 elfsym
= (elf_symbol_type
*) asym
;
6339 switch (elfsym
->internal_elf_sym
.st_shndx
)
6341 case SHN_MIPS_ACOMMON
:
6342 /* This section is used in a dynamically linked executable file.
6343 It is an allocated common section. The dynamic linker can
6344 either resolve these symbols to something in a shared
6345 library, or it can just leave them here. For our purposes,
6346 we can consider these symbols to be in a new section. */
6347 if (mips_elf_acom_section
.name
== NULL
)
6349 /* Initialize the acommon section. */
6350 mips_elf_acom_section
.name
= ".acommon";
6351 mips_elf_acom_section
.flags
= SEC_ALLOC
;
6352 mips_elf_acom_section
.output_section
= &mips_elf_acom_section
;
6353 mips_elf_acom_section
.symbol
= &mips_elf_acom_symbol
;
6354 mips_elf_acom_section
.symbol_ptr_ptr
= &mips_elf_acom_symbol_ptr
;
6355 mips_elf_acom_symbol
.name
= ".acommon";
6356 mips_elf_acom_symbol
.flags
= BSF_SECTION_SYM
;
6357 mips_elf_acom_symbol
.section
= &mips_elf_acom_section
;
6358 mips_elf_acom_symbol_ptr
= &mips_elf_acom_symbol
;
6360 asym
->section
= &mips_elf_acom_section
;
6364 /* Common symbols less than the GP size are automatically
6365 treated as SHN_MIPS_SCOMMON symbols on IRIX5. */
6366 if (asym
->value
> elf_gp_size (abfd
)
6367 || ELF_ST_TYPE (elfsym
->internal_elf_sym
.st_info
) == STT_TLS
6368 || IRIX_COMPAT (abfd
) == ict_irix6
)
6371 case SHN_MIPS_SCOMMON
:
6372 if (mips_elf_scom_section
.name
== NULL
)
6374 /* Initialize the small common section. */
6375 mips_elf_scom_section
.name
= ".scommon";
6376 mips_elf_scom_section
.flags
= SEC_IS_COMMON
;
6377 mips_elf_scom_section
.output_section
= &mips_elf_scom_section
;
6378 mips_elf_scom_section
.symbol
= &mips_elf_scom_symbol
;
6379 mips_elf_scom_section
.symbol_ptr_ptr
= &mips_elf_scom_symbol_ptr
;
6380 mips_elf_scom_symbol
.name
= ".scommon";
6381 mips_elf_scom_symbol
.flags
= BSF_SECTION_SYM
;
6382 mips_elf_scom_symbol
.section
= &mips_elf_scom_section
;
6383 mips_elf_scom_symbol_ptr
= &mips_elf_scom_symbol
;
6385 asym
->section
= &mips_elf_scom_section
;
6386 asym
->value
= elfsym
->internal_elf_sym
.st_size
;
6389 case SHN_MIPS_SUNDEFINED
:
6390 asym
->section
= bfd_und_section_ptr
;
6395 asection
*section
= bfd_get_section_by_name (abfd
, ".text");
6397 if (section
!= NULL
)
6399 asym
->section
= section
;
6400 /* MIPS_TEXT is a bit special, the address is not an offset
6401 to the base of the .text section. So substract the section
6402 base address to make it an offset. */
6403 asym
->value
-= section
->vma
;
6410 asection
*section
= bfd_get_section_by_name (abfd
, ".data");
6412 if (section
!= NULL
)
6414 asym
->section
= section
;
6415 /* MIPS_DATA is a bit special, the address is not an offset
6416 to the base of the .data section. So substract the section
6417 base address to make it an offset. */
6418 asym
->value
-= section
->vma
;
6424 /* If this is an odd-valued function symbol, assume it's a MIPS16
6425 or microMIPS one. */
6426 if (ELF_ST_TYPE (elfsym
->internal_elf_sym
.st_info
) == STT_FUNC
6427 && (asym
->value
& 1) != 0)
6430 if (MICROMIPS_P (abfd
))
6431 elfsym
->internal_elf_sym
.st_other
6432 = ELF_ST_SET_MICROMIPS (elfsym
->internal_elf_sym
.st_other
);
6434 elfsym
->internal_elf_sym
.st_other
6435 = ELF_ST_SET_MIPS16 (elfsym
->internal_elf_sym
.st_other
);
6439 /* Implement elf_backend_eh_frame_address_size. This differs from
6440 the default in the way it handles EABI64.
6442 EABI64 was originally specified as an LP64 ABI, and that is what
6443 -mabi=eabi normally gives on a 64-bit target. However, gcc has
6444 historically accepted the combination of -mabi=eabi and -mlong32,
6445 and this ILP32 variation has become semi-official over time.
6446 Both forms use elf32 and have pointer-sized FDE addresses.
6448 If an EABI object was generated by GCC 4.0 or above, it will have
6449 an empty .gcc_compiled_longXX section, where XX is the size of longs
6450 in bits. Unfortunately, ILP32 objects generated by earlier compilers
6451 have no special marking to distinguish them from LP64 objects.
6453 We don't want users of the official LP64 ABI to be punished for the
6454 existence of the ILP32 variant, but at the same time, we don't want
6455 to mistakenly interpret pre-4.0 ILP32 objects as being LP64 objects.
6456 We therefore take the following approach:
6458 - If ABFD contains a .gcc_compiled_longXX section, use it to
6459 determine the pointer size.
6461 - Otherwise check the type of the first relocation. Assume that
6462 the LP64 ABI is being used if the relocation is of type R_MIPS_64.
6466 The second check is enough to detect LP64 objects generated by pre-4.0
6467 compilers because, in the kind of output generated by those compilers,
6468 the first relocation will be associated with either a CIE personality
6469 routine or an FDE start address. Furthermore, the compilers never
6470 used a special (non-pointer) encoding for this ABI.
6472 Checking the relocation type should also be safe because there is no
6473 reason to use R_MIPS_64 in an ILP32 object. Pre-4.0 compilers never
6477 _bfd_mips_elf_eh_frame_address_size (bfd
*abfd
, asection
*sec
)
6479 if (elf_elfheader (abfd
)->e_ident
[EI_CLASS
] == ELFCLASS64
)
6481 if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_EABI64
)
6483 bfd_boolean long32_p
, long64_p
;
6485 long32_p
= bfd_get_section_by_name (abfd
, ".gcc_compiled_long32") != 0;
6486 long64_p
= bfd_get_section_by_name (abfd
, ".gcc_compiled_long64") != 0;
6487 if (long32_p
&& long64_p
)
6494 if (sec
->reloc_count
> 0
6495 && elf_section_data (sec
)->relocs
!= NULL
6496 && (ELF32_R_TYPE (elf_section_data (sec
)->relocs
[0].r_info
)
6505 /* There appears to be a bug in the MIPSpro linker that causes GOT_DISP
6506 relocations against two unnamed section symbols to resolve to the
6507 same address. For example, if we have code like:
6509 lw $4,%got_disp(.data)($gp)
6510 lw $25,%got_disp(.text)($gp)
6513 then the linker will resolve both relocations to .data and the program
6514 will jump there rather than to .text.
6516 We can work around this problem by giving names to local section symbols.
6517 This is also what the MIPSpro tools do. */
6520 _bfd_mips_elf_name_local_section_symbols (bfd
*abfd
)
6522 return SGI_COMPAT (abfd
);
6525 /* Work over a section just before writing it out. This routine is
6526 used by both the 32-bit and the 64-bit ABI. FIXME: We recognize
6527 sections that need the SHF_MIPS_GPREL flag by name; there has to be
6531 _bfd_mips_elf_section_processing (bfd
*abfd
, Elf_Internal_Shdr
*hdr
)
6533 if (hdr
->sh_type
== SHT_MIPS_REGINFO
6534 && hdr
->sh_size
> 0)
6538 BFD_ASSERT (hdr
->sh_size
== sizeof (Elf32_External_RegInfo
));
6539 BFD_ASSERT (hdr
->contents
== NULL
);
6542 hdr
->sh_offset
+ sizeof (Elf32_External_RegInfo
) - 4,
6545 H_PUT_32 (abfd
, elf_gp (abfd
), buf
);
6546 if (bfd_bwrite (buf
, 4, abfd
) != 4)
6550 if (hdr
->sh_type
== SHT_MIPS_OPTIONS
6551 && hdr
->bfd_section
!= NULL
6552 && mips_elf_section_data (hdr
->bfd_section
) != NULL
6553 && mips_elf_section_data (hdr
->bfd_section
)->u
.tdata
!= NULL
)
6555 bfd_byte
*contents
, *l
, *lend
;
6557 /* We stored the section contents in the tdata field in the
6558 set_section_contents routine. We save the section contents
6559 so that we don't have to read them again.
6560 At this point we know that elf_gp is set, so we can look
6561 through the section contents to see if there is an
6562 ODK_REGINFO structure. */
6564 contents
= mips_elf_section_data (hdr
->bfd_section
)->u
.tdata
;
6566 lend
= contents
+ hdr
->sh_size
;
6567 while (l
+ sizeof (Elf_External_Options
) <= lend
)
6569 Elf_Internal_Options intopt
;
6571 bfd_mips_elf_swap_options_in (abfd
, (Elf_External_Options
*) l
,
6573 if (intopt
.size
< sizeof (Elf_External_Options
))
6575 (*_bfd_error_handler
)
6576 (_("%B: Warning: bad `%s' option size %u smaller than its header"),
6577 abfd
, MIPS_ELF_OPTIONS_SECTION_NAME (abfd
), intopt
.size
);
6580 if (ABI_64_P (abfd
) && intopt
.kind
== ODK_REGINFO
)
6587 + sizeof (Elf_External_Options
)
6588 + (sizeof (Elf64_External_RegInfo
) - 8)),
6591 H_PUT_64 (abfd
, elf_gp (abfd
), buf
);
6592 if (bfd_bwrite (buf
, 8, abfd
) != 8)
6595 else if (intopt
.kind
== ODK_REGINFO
)
6602 + sizeof (Elf_External_Options
)
6603 + (sizeof (Elf32_External_RegInfo
) - 4)),
6606 H_PUT_32 (abfd
, elf_gp (abfd
), buf
);
6607 if (bfd_bwrite (buf
, 4, abfd
) != 4)
6614 if (hdr
->bfd_section
!= NULL
)
6616 const char *name
= bfd_get_section_name (abfd
, hdr
->bfd_section
);
6618 /* .sbss is not handled specially here because the GNU/Linux
6619 prelinker can convert .sbss from NOBITS to PROGBITS and
6620 changing it back to NOBITS breaks the binary. The entry in
6621 _bfd_mips_elf_special_sections will ensure the correct flags
6622 are set on .sbss if BFD creates it without reading it from an
6623 input file, and without special handling here the flags set
6624 on it in an input file will be followed. */
6625 if (strcmp (name
, ".sdata") == 0
6626 || strcmp (name
, ".lit8") == 0
6627 || strcmp (name
, ".lit4") == 0)
6629 hdr
->sh_flags
|= SHF_ALLOC
| SHF_WRITE
| SHF_MIPS_GPREL
;
6630 hdr
->sh_type
= SHT_PROGBITS
;
6632 else if (strcmp (name
, ".srdata") == 0)
6634 hdr
->sh_flags
|= SHF_ALLOC
| SHF_MIPS_GPREL
;
6635 hdr
->sh_type
= SHT_PROGBITS
;
6637 else if (strcmp (name
, ".compact_rel") == 0)
6640 hdr
->sh_type
= SHT_PROGBITS
;
6642 else if (strcmp (name
, ".rtproc") == 0)
6644 if (hdr
->sh_addralign
!= 0 && hdr
->sh_entsize
== 0)
6646 unsigned int adjust
;
6648 adjust
= hdr
->sh_size
% hdr
->sh_addralign
;
6650 hdr
->sh_size
+= hdr
->sh_addralign
- adjust
;
6658 /* Handle a MIPS specific section when reading an object file. This
6659 is called when elfcode.h finds a section with an unknown type.
6660 This routine supports both the 32-bit and 64-bit ELF ABI.
6662 FIXME: We need to handle the SHF_MIPS_GPREL flag, but I'm not sure
6666 _bfd_mips_elf_section_from_shdr (bfd
*abfd
,
6667 Elf_Internal_Shdr
*hdr
,
6673 /* There ought to be a place to keep ELF backend specific flags, but
6674 at the moment there isn't one. We just keep track of the
6675 sections by their name, instead. Fortunately, the ABI gives
6676 suggested names for all the MIPS specific sections, so we will
6677 probably get away with this. */
6678 switch (hdr
->sh_type
)
6680 case SHT_MIPS_LIBLIST
:
6681 if (strcmp (name
, ".liblist") != 0)
6685 if (strcmp (name
, ".msym") != 0)
6688 case SHT_MIPS_CONFLICT
:
6689 if (strcmp (name
, ".conflict") != 0)
6692 case SHT_MIPS_GPTAB
:
6693 if (! CONST_STRNEQ (name
, ".gptab."))
6696 case SHT_MIPS_UCODE
:
6697 if (strcmp (name
, ".ucode") != 0)
6700 case SHT_MIPS_DEBUG
:
6701 if (strcmp (name
, ".mdebug") != 0)
6703 flags
= SEC_DEBUGGING
;
6705 case SHT_MIPS_REGINFO
:
6706 if (strcmp (name
, ".reginfo") != 0
6707 || hdr
->sh_size
!= sizeof (Elf32_External_RegInfo
))
6709 flags
= (SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_SAME_SIZE
);
6711 case SHT_MIPS_IFACE
:
6712 if (strcmp (name
, ".MIPS.interfaces") != 0)
6715 case SHT_MIPS_CONTENT
:
6716 if (! CONST_STRNEQ (name
, ".MIPS.content"))
6719 case SHT_MIPS_OPTIONS
:
6720 if (!MIPS_ELF_OPTIONS_SECTION_NAME_P (name
))
6723 case SHT_MIPS_DWARF
:
6724 if (! CONST_STRNEQ (name
, ".debug_")
6725 && ! CONST_STRNEQ (name
, ".zdebug_"))
6728 case SHT_MIPS_SYMBOL_LIB
:
6729 if (strcmp (name
, ".MIPS.symlib") != 0)
6732 case SHT_MIPS_EVENTS
:
6733 if (! CONST_STRNEQ (name
, ".MIPS.events")
6734 && ! CONST_STRNEQ (name
, ".MIPS.post_rel"))
6741 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
6746 if (! bfd_set_section_flags (abfd
, hdr
->bfd_section
,
6747 (bfd_get_section_flags (abfd
,
6753 /* FIXME: We should record sh_info for a .gptab section. */
6755 /* For a .reginfo section, set the gp value in the tdata information
6756 from the contents of this section. We need the gp value while
6757 processing relocs, so we just get it now. The .reginfo section
6758 is not used in the 64-bit MIPS ELF ABI. */
6759 if (hdr
->sh_type
== SHT_MIPS_REGINFO
)
6761 Elf32_External_RegInfo ext
;
6764 if (! bfd_get_section_contents (abfd
, hdr
->bfd_section
,
6765 &ext
, 0, sizeof ext
))
6767 bfd_mips_elf32_swap_reginfo_in (abfd
, &ext
, &s
);
6768 elf_gp (abfd
) = s
.ri_gp_value
;
6771 /* For a SHT_MIPS_OPTIONS section, look for a ODK_REGINFO entry, and
6772 set the gp value based on what we find. We may see both
6773 SHT_MIPS_REGINFO and SHT_MIPS_OPTIONS/ODK_REGINFO; in that case,
6774 they should agree. */
6775 if (hdr
->sh_type
== SHT_MIPS_OPTIONS
)
6777 bfd_byte
*contents
, *l
, *lend
;
6779 contents
= bfd_malloc (hdr
->sh_size
);
6780 if (contents
== NULL
)
6782 if (! bfd_get_section_contents (abfd
, hdr
->bfd_section
, contents
,
6789 lend
= contents
+ hdr
->sh_size
;
6790 while (l
+ sizeof (Elf_External_Options
) <= lend
)
6792 Elf_Internal_Options intopt
;
6794 bfd_mips_elf_swap_options_in (abfd
, (Elf_External_Options
*) l
,
6796 if (intopt
.size
< sizeof (Elf_External_Options
))
6798 (*_bfd_error_handler
)
6799 (_("%B: Warning: bad `%s' option size %u smaller than its header"),
6800 abfd
, MIPS_ELF_OPTIONS_SECTION_NAME (abfd
), intopt
.size
);
6803 if (ABI_64_P (abfd
) && intopt
.kind
== ODK_REGINFO
)
6805 Elf64_Internal_RegInfo intreg
;
6807 bfd_mips_elf64_swap_reginfo_in
6809 ((Elf64_External_RegInfo
*)
6810 (l
+ sizeof (Elf_External_Options
))),
6812 elf_gp (abfd
) = intreg
.ri_gp_value
;
6814 else if (intopt
.kind
== ODK_REGINFO
)
6816 Elf32_RegInfo intreg
;
6818 bfd_mips_elf32_swap_reginfo_in
6820 ((Elf32_External_RegInfo
*)
6821 (l
+ sizeof (Elf_External_Options
))),
6823 elf_gp (abfd
) = intreg
.ri_gp_value
;
6833 /* Set the correct type for a MIPS ELF section. We do this by the
6834 section name, which is a hack, but ought to work. This routine is
6835 used by both the 32-bit and the 64-bit ABI. */
6838 _bfd_mips_elf_fake_sections (bfd
*abfd
, Elf_Internal_Shdr
*hdr
, asection
*sec
)
6840 const char *name
= bfd_get_section_name (abfd
, sec
);
6842 if (strcmp (name
, ".liblist") == 0)
6844 hdr
->sh_type
= SHT_MIPS_LIBLIST
;
6845 hdr
->sh_info
= sec
->size
/ sizeof (Elf32_Lib
);
6846 /* The sh_link field is set in final_write_processing. */
6848 else if (strcmp (name
, ".conflict") == 0)
6849 hdr
->sh_type
= SHT_MIPS_CONFLICT
;
6850 else if (CONST_STRNEQ (name
, ".gptab."))
6852 hdr
->sh_type
= SHT_MIPS_GPTAB
;
6853 hdr
->sh_entsize
= sizeof (Elf32_External_gptab
);
6854 /* The sh_info field is set in final_write_processing. */
6856 else if (strcmp (name
, ".ucode") == 0)
6857 hdr
->sh_type
= SHT_MIPS_UCODE
;
6858 else if (strcmp (name
, ".mdebug") == 0)
6860 hdr
->sh_type
= SHT_MIPS_DEBUG
;
6861 /* In a shared object on IRIX 5.3, the .mdebug section has an
6862 entsize of 0. FIXME: Does this matter? */
6863 if (SGI_COMPAT (abfd
) && (abfd
->flags
& DYNAMIC
) != 0)
6864 hdr
->sh_entsize
= 0;
6866 hdr
->sh_entsize
= 1;
6868 else if (strcmp (name
, ".reginfo") == 0)
6870 hdr
->sh_type
= SHT_MIPS_REGINFO
;
6871 /* In a shared object on IRIX 5.3, the .reginfo section has an
6872 entsize of 0x18. FIXME: Does this matter? */
6873 if (SGI_COMPAT (abfd
))
6875 if ((abfd
->flags
& DYNAMIC
) != 0)
6876 hdr
->sh_entsize
= sizeof (Elf32_External_RegInfo
);
6878 hdr
->sh_entsize
= 1;
6881 hdr
->sh_entsize
= sizeof (Elf32_External_RegInfo
);
6883 else if (SGI_COMPAT (abfd
)
6884 && (strcmp (name
, ".hash") == 0
6885 || strcmp (name
, ".dynamic") == 0
6886 || strcmp (name
, ".dynstr") == 0))
6888 if (SGI_COMPAT (abfd
))
6889 hdr
->sh_entsize
= 0;
6891 /* This isn't how the IRIX6 linker behaves. */
6892 hdr
->sh_info
= SIZEOF_MIPS_DYNSYM_SECNAMES
;
6895 else if (strcmp (name
, ".got") == 0
6896 || strcmp (name
, ".srdata") == 0
6897 || strcmp (name
, ".sdata") == 0
6898 || strcmp (name
, ".sbss") == 0
6899 || strcmp (name
, ".lit4") == 0
6900 || strcmp (name
, ".lit8") == 0)
6901 hdr
->sh_flags
|= SHF_MIPS_GPREL
;
6902 else if (strcmp (name
, ".MIPS.interfaces") == 0)
6904 hdr
->sh_type
= SHT_MIPS_IFACE
;
6905 hdr
->sh_flags
|= SHF_MIPS_NOSTRIP
;
6907 else if (CONST_STRNEQ (name
, ".MIPS.content"))
6909 hdr
->sh_type
= SHT_MIPS_CONTENT
;
6910 hdr
->sh_flags
|= SHF_MIPS_NOSTRIP
;
6911 /* The sh_info field is set in final_write_processing. */
6913 else if (MIPS_ELF_OPTIONS_SECTION_NAME_P (name
))
6915 hdr
->sh_type
= SHT_MIPS_OPTIONS
;
6916 hdr
->sh_entsize
= 1;
6917 hdr
->sh_flags
|= SHF_MIPS_NOSTRIP
;
6919 else if (CONST_STRNEQ (name
, ".debug_")
6920 || CONST_STRNEQ (name
, ".zdebug_"))
6922 hdr
->sh_type
= SHT_MIPS_DWARF
;
6924 /* Irix facilities such as libexc expect a single .debug_frame
6925 per executable, the system ones have NOSTRIP set and the linker
6926 doesn't merge sections with different flags so ... */
6927 if (SGI_COMPAT (abfd
) && CONST_STRNEQ (name
, ".debug_frame"))
6928 hdr
->sh_flags
|= SHF_MIPS_NOSTRIP
;
6930 else if (strcmp (name
, ".MIPS.symlib") == 0)
6932 hdr
->sh_type
= SHT_MIPS_SYMBOL_LIB
;
6933 /* The sh_link and sh_info fields are set in
6934 final_write_processing. */
6936 else if (CONST_STRNEQ (name
, ".MIPS.events")
6937 || CONST_STRNEQ (name
, ".MIPS.post_rel"))
6939 hdr
->sh_type
= SHT_MIPS_EVENTS
;
6940 hdr
->sh_flags
|= SHF_MIPS_NOSTRIP
;
6941 /* The sh_link field is set in final_write_processing. */
6943 else if (strcmp (name
, ".msym") == 0)
6945 hdr
->sh_type
= SHT_MIPS_MSYM
;
6946 hdr
->sh_flags
|= SHF_ALLOC
;
6947 hdr
->sh_entsize
= 8;
6950 /* The generic elf_fake_sections will set up REL_HDR using the default
6951 kind of relocations. We used to set up a second header for the
6952 non-default kind of relocations here, but only NewABI would use
6953 these, and the IRIX ld doesn't like resulting empty RELA sections.
6954 Thus we create those header only on demand now. */
6959 /* Given a BFD section, try to locate the corresponding ELF section
6960 index. This is used by both the 32-bit and the 64-bit ABI.
6961 Actually, it's not clear to me that the 64-bit ABI supports these,
6962 but for non-PIC objects we will certainly want support for at least
6963 the .scommon section. */
6966 _bfd_mips_elf_section_from_bfd_section (bfd
*abfd ATTRIBUTE_UNUSED
,
6967 asection
*sec
, int *retval
)
6969 if (strcmp (bfd_get_section_name (abfd
, sec
), ".scommon") == 0)
6971 *retval
= SHN_MIPS_SCOMMON
;
6974 if (strcmp (bfd_get_section_name (abfd
, sec
), ".acommon") == 0)
6976 *retval
= SHN_MIPS_ACOMMON
;
6982 /* Hook called by the linker routine which adds symbols from an object
6983 file. We must handle the special MIPS section numbers here. */
6986 _bfd_mips_elf_add_symbol_hook (bfd
*abfd
, struct bfd_link_info
*info
,
6987 Elf_Internal_Sym
*sym
, const char **namep
,
6988 flagword
*flagsp ATTRIBUTE_UNUSED
,
6989 asection
**secp
, bfd_vma
*valp
)
6991 if (SGI_COMPAT (abfd
)
6992 && (abfd
->flags
& DYNAMIC
) != 0
6993 && strcmp (*namep
, "_rld_new_interface") == 0)
6995 /* Skip IRIX5 rld entry name. */
7000 /* Shared objects may have a dynamic symbol '_gp_disp' defined as
7001 a SECTION *ABS*. This causes ld to think it can resolve _gp_disp
7002 by setting a DT_NEEDED for the shared object. Since _gp_disp is
7003 a magic symbol resolved by the linker, we ignore this bogus definition
7004 of _gp_disp. New ABI objects do not suffer from this problem so this
7005 is not done for them. */
7007 && (sym
->st_shndx
== SHN_ABS
)
7008 && (strcmp (*namep
, "_gp_disp") == 0))
7014 switch (sym
->st_shndx
)
7017 /* Common symbols less than the GP size are automatically
7018 treated as SHN_MIPS_SCOMMON symbols. */
7019 if (sym
->st_size
> elf_gp_size (abfd
)
7020 || ELF_ST_TYPE (sym
->st_info
) == STT_TLS
7021 || IRIX_COMPAT (abfd
) == ict_irix6
)
7024 case SHN_MIPS_SCOMMON
:
7025 *secp
= bfd_make_section_old_way (abfd
, ".scommon");
7026 (*secp
)->flags
|= SEC_IS_COMMON
;
7027 *valp
= sym
->st_size
;
7031 /* This section is used in a shared object. */
7032 if (mips_elf_tdata (abfd
)->elf_text_section
== NULL
)
7034 asymbol
*elf_text_symbol
;
7035 asection
*elf_text_section
;
7036 bfd_size_type amt
= sizeof (asection
);
7038 elf_text_section
= bfd_zalloc (abfd
, amt
);
7039 if (elf_text_section
== NULL
)
7042 amt
= sizeof (asymbol
);
7043 elf_text_symbol
= bfd_zalloc (abfd
, amt
);
7044 if (elf_text_symbol
== NULL
)
7047 /* Initialize the section. */
7049 mips_elf_tdata (abfd
)->elf_text_section
= elf_text_section
;
7050 mips_elf_tdata (abfd
)->elf_text_symbol
= elf_text_symbol
;
7052 elf_text_section
->symbol
= elf_text_symbol
;
7053 elf_text_section
->symbol_ptr_ptr
= &mips_elf_tdata (abfd
)->elf_text_symbol
;
7055 elf_text_section
->name
= ".text";
7056 elf_text_section
->flags
= SEC_NO_FLAGS
;
7057 elf_text_section
->output_section
= NULL
;
7058 elf_text_section
->owner
= abfd
;
7059 elf_text_symbol
->name
= ".text";
7060 elf_text_symbol
->flags
= BSF_SECTION_SYM
| BSF_DYNAMIC
;
7061 elf_text_symbol
->section
= elf_text_section
;
7063 /* This code used to do *secp = bfd_und_section_ptr if
7064 info->shared. I don't know why, and that doesn't make sense,
7065 so I took it out. */
7066 *secp
= mips_elf_tdata (abfd
)->elf_text_section
;
7069 case SHN_MIPS_ACOMMON
:
7070 /* Fall through. XXX Can we treat this as allocated data? */
7072 /* This section is used in a shared object. */
7073 if (mips_elf_tdata (abfd
)->elf_data_section
== NULL
)
7075 asymbol
*elf_data_symbol
;
7076 asection
*elf_data_section
;
7077 bfd_size_type amt
= sizeof (asection
);
7079 elf_data_section
= bfd_zalloc (abfd
, amt
);
7080 if (elf_data_section
== NULL
)
7083 amt
= sizeof (asymbol
);
7084 elf_data_symbol
= bfd_zalloc (abfd
, amt
);
7085 if (elf_data_symbol
== NULL
)
7088 /* Initialize the section. */
7090 mips_elf_tdata (abfd
)->elf_data_section
= elf_data_section
;
7091 mips_elf_tdata (abfd
)->elf_data_symbol
= elf_data_symbol
;
7093 elf_data_section
->symbol
= elf_data_symbol
;
7094 elf_data_section
->symbol_ptr_ptr
= &mips_elf_tdata (abfd
)->elf_data_symbol
;
7096 elf_data_section
->name
= ".data";
7097 elf_data_section
->flags
= SEC_NO_FLAGS
;
7098 elf_data_section
->output_section
= NULL
;
7099 elf_data_section
->owner
= abfd
;
7100 elf_data_symbol
->name
= ".data";
7101 elf_data_symbol
->flags
= BSF_SECTION_SYM
| BSF_DYNAMIC
;
7102 elf_data_symbol
->section
= elf_data_section
;
7104 /* This code used to do *secp = bfd_und_section_ptr if
7105 info->shared. I don't know why, and that doesn't make sense,
7106 so I took it out. */
7107 *secp
= mips_elf_tdata (abfd
)->elf_data_section
;
7110 case SHN_MIPS_SUNDEFINED
:
7111 *secp
= bfd_und_section_ptr
;
7115 if (SGI_COMPAT (abfd
)
7117 && info
->output_bfd
->xvec
== abfd
->xvec
7118 && strcmp (*namep
, "__rld_obj_head") == 0)
7120 struct elf_link_hash_entry
*h
;
7121 struct bfd_link_hash_entry
*bh
;
7123 /* Mark __rld_obj_head as dynamic. */
7125 if (! (_bfd_generic_link_add_one_symbol
7126 (info
, abfd
, *namep
, BSF_GLOBAL
, *secp
, *valp
, NULL
, FALSE
,
7127 get_elf_backend_data (abfd
)->collect
, &bh
)))
7130 h
= (struct elf_link_hash_entry
*) bh
;
7133 h
->type
= STT_OBJECT
;
7135 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
7138 mips_elf_hash_table (info
)->use_rld_obj_head
= TRUE
;
7139 mips_elf_hash_table (info
)->rld_symbol
= h
;
7142 /* If this is a mips16 text symbol, add 1 to the value to make it
7143 odd. This will cause something like .word SYM to come up with
7144 the right value when it is loaded into the PC. */
7145 if (ELF_ST_IS_COMPRESSED (sym
->st_other
))
7151 /* This hook function is called before the linker writes out a global
7152 symbol. We mark symbols as small common if appropriate. This is
7153 also where we undo the increment of the value for a mips16 symbol. */
7156 _bfd_mips_elf_link_output_symbol_hook
7157 (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
7158 const char *name ATTRIBUTE_UNUSED
, Elf_Internal_Sym
*sym
,
7159 asection
*input_sec
, struct elf_link_hash_entry
*h ATTRIBUTE_UNUSED
)
7161 /* If we see a common symbol, which implies a relocatable link, then
7162 if a symbol was small common in an input file, mark it as small
7163 common in the output file. */
7164 if (sym
->st_shndx
== SHN_COMMON
7165 && strcmp (input_sec
->name
, ".scommon") == 0)
7166 sym
->st_shndx
= SHN_MIPS_SCOMMON
;
7168 if (ELF_ST_IS_COMPRESSED (sym
->st_other
))
7169 sym
->st_value
&= ~1;
7174 /* Functions for the dynamic linker. */
7176 /* Create dynamic sections when linking against a dynamic object. */
7179 _bfd_mips_elf_create_dynamic_sections (bfd
*abfd
, struct bfd_link_info
*info
)
7181 struct elf_link_hash_entry
*h
;
7182 struct bfd_link_hash_entry
*bh
;
7184 register asection
*s
;
7185 const char * const *namep
;
7186 struct mips_elf_link_hash_table
*htab
;
7188 htab
= mips_elf_hash_table (info
);
7189 BFD_ASSERT (htab
!= NULL
);
7191 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
7192 | SEC_LINKER_CREATED
| SEC_READONLY
);
7194 /* The psABI requires a read-only .dynamic section, but the VxWorks
7196 if (!htab
->is_vxworks
)
7198 s
= bfd_get_linker_section (abfd
, ".dynamic");
7201 if (! bfd_set_section_flags (abfd
, s
, flags
))
7206 /* We need to create .got section. */
7207 if (!mips_elf_create_got_section (abfd
, info
))
7210 if (! mips_elf_rel_dyn_section (info
, TRUE
))
7213 /* Create .stub section. */
7214 s
= bfd_make_section_anyway_with_flags (abfd
,
7215 MIPS_ELF_STUB_SECTION_NAME (abfd
),
7218 || ! bfd_set_section_alignment (abfd
, s
,
7219 MIPS_ELF_LOG_FILE_ALIGN (abfd
)))
7223 if (!mips_elf_hash_table (info
)->use_rld_obj_head
7225 && bfd_get_linker_section (abfd
, ".rld_map") == NULL
)
7227 s
= bfd_make_section_anyway_with_flags (abfd
, ".rld_map",
7228 flags
&~ (flagword
) SEC_READONLY
);
7230 || ! bfd_set_section_alignment (abfd
, s
,
7231 MIPS_ELF_LOG_FILE_ALIGN (abfd
)))
7235 /* On IRIX5, we adjust add some additional symbols and change the
7236 alignments of several sections. There is no ABI documentation
7237 indicating that this is necessary on IRIX6, nor any evidence that
7238 the linker takes such action. */
7239 if (IRIX_COMPAT (abfd
) == ict_irix5
)
7241 for (namep
= mips_elf_dynsym_rtproc_names
; *namep
!= NULL
; namep
++)
7244 if (! (_bfd_generic_link_add_one_symbol
7245 (info
, abfd
, *namep
, BSF_GLOBAL
, bfd_und_section_ptr
, 0,
7246 NULL
, FALSE
, get_elf_backend_data (abfd
)->collect
, &bh
)))
7249 h
= (struct elf_link_hash_entry
*) bh
;
7252 h
->type
= STT_SECTION
;
7254 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
7258 /* We need to create a .compact_rel section. */
7259 if (SGI_COMPAT (abfd
))
7261 if (!mips_elf_create_compact_rel_section (abfd
, info
))
7265 /* Change alignments of some sections. */
7266 s
= bfd_get_linker_section (abfd
, ".hash");
7268 bfd_set_section_alignment (abfd
, s
, MIPS_ELF_LOG_FILE_ALIGN (abfd
));
7269 s
= bfd_get_linker_section (abfd
, ".dynsym");
7271 bfd_set_section_alignment (abfd
, s
, MIPS_ELF_LOG_FILE_ALIGN (abfd
));
7272 s
= bfd_get_linker_section (abfd
, ".dynstr");
7274 bfd_set_section_alignment (abfd
, s
, MIPS_ELF_LOG_FILE_ALIGN (abfd
));
7276 s
= bfd_get_section_by_name (abfd
, ".reginfo");
7278 bfd_set_section_alignment (abfd
, s
, MIPS_ELF_LOG_FILE_ALIGN (abfd
));
7279 s
= bfd_get_linker_section (abfd
, ".dynamic");
7281 bfd_set_section_alignment (abfd
, s
, MIPS_ELF_LOG_FILE_ALIGN (abfd
));
7288 name
= SGI_COMPAT (abfd
) ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING";
7290 if (!(_bfd_generic_link_add_one_symbol
7291 (info
, abfd
, name
, BSF_GLOBAL
, bfd_abs_section_ptr
, 0,
7292 NULL
, FALSE
, get_elf_backend_data (abfd
)->collect
, &bh
)))
7295 h
= (struct elf_link_hash_entry
*) bh
;
7298 h
->type
= STT_SECTION
;
7300 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
7303 if (! mips_elf_hash_table (info
)->use_rld_obj_head
)
7305 /* __rld_map is a four byte word located in the .data section
7306 and is filled in by the rtld to contain a pointer to
7307 the _r_debug structure. Its symbol value will be set in
7308 _bfd_mips_elf_finish_dynamic_symbol. */
7309 s
= bfd_get_linker_section (abfd
, ".rld_map");
7310 BFD_ASSERT (s
!= NULL
);
7312 name
= SGI_COMPAT (abfd
) ? "__rld_map" : "__RLD_MAP";
7314 if (!(_bfd_generic_link_add_one_symbol
7315 (info
, abfd
, name
, BSF_GLOBAL
, s
, 0, NULL
, FALSE
,
7316 get_elf_backend_data (abfd
)->collect
, &bh
)))
7319 h
= (struct elf_link_hash_entry
*) bh
;
7322 h
->type
= STT_OBJECT
;
7324 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
7326 mips_elf_hash_table (info
)->rld_symbol
= h
;
7330 /* Create the .plt, .rel(a).plt, .dynbss and .rel(a).bss sections.
7331 Also, on VxWorks, create the _PROCEDURE_LINKAGE_TABLE_ symbol. */
7332 if (!_bfd_elf_create_dynamic_sections (abfd
, info
))
7335 /* Cache the sections created above. */
7336 htab
->splt
= bfd_get_linker_section (abfd
, ".plt");
7337 htab
->sdynbss
= bfd_get_linker_section (abfd
, ".dynbss");
7338 if (htab
->is_vxworks
)
7340 htab
->srelbss
= bfd_get_linker_section (abfd
, ".rela.bss");
7341 htab
->srelplt
= bfd_get_linker_section (abfd
, ".rela.plt");
7344 htab
->srelplt
= bfd_get_linker_section (abfd
, ".rel.plt");
7346 || (htab
->is_vxworks
&& !htab
->srelbss
&& !info
->shared
)
7351 if (htab
->is_vxworks
)
7353 /* Do the usual VxWorks handling. */
7354 if (!elf_vxworks_create_dynamic_sections (abfd
, info
, &htab
->srelplt2
))
7357 /* Work out the PLT sizes. */
7360 htab
->plt_header_size
7361 = 4 * ARRAY_SIZE (mips_vxworks_shared_plt0_entry
);
7362 htab
->plt_entry_size
7363 = 4 * ARRAY_SIZE (mips_vxworks_shared_plt_entry
);
7367 htab
->plt_header_size
7368 = 4 * ARRAY_SIZE (mips_vxworks_exec_plt0_entry
);
7369 htab
->plt_entry_size
7370 = 4 * ARRAY_SIZE (mips_vxworks_exec_plt_entry
);
7373 else if (!info
->shared
)
7375 /* All variants of the plt0 entry are the same size. */
7376 htab
->plt_header_size
= 4 * ARRAY_SIZE (mips_o32_exec_plt0_entry
);
7377 htab
->plt_entry_size
= 4 * ARRAY_SIZE (mips_exec_plt_entry
);
7383 /* Return true if relocation REL against section SEC is a REL rather than
7384 RELA relocation. RELOCS is the first relocation in the section and
7385 ABFD is the bfd that contains SEC. */
7388 mips_elf_rel_relocation_p (bfd
*abfd
, asection
*sec
,
7389 const Elf_Internal_Rela
*relocs
,
7390 const Elf_Internal_Rela
*rel
)
7392 Elf_Internal_Shdr
*rel_hdr
;
7393 const struct elf_backend_data
*bed
;
7395 /* To determine which flavor of relocation this is, we depend on the
7396 fact that the INPUT_SECTION's REL_HDR is read before RELA_HDR. */
7397 rel_hdr
= elf_section_data (sec
)->rel
.hdr
;
7398 if (rel_hdr
== NULL
)
7400 bed
= get_elf_backend_data (abfd
);
7401 return ((size_t) (rel
- relocs
)
7402 < NUM_SHDR_ENTRIES (rel_hdr
) * bed
->s
->int_rels_per_ext_rel
);
7405 /* Read the addend for REL relocation REL, which belongs to bfd ABFD.
7406 HOWTO is the relocation's howto and CONTENTS points to the contents
7407 of the section that REL is against. */
7410 mips_elf_read_rel_addend (bfd
*abfd
, const Elf_Internal_Rela
*rel
,
7411 reloc_howto_type
*howto
, bfd_byte
*contents
)
7414 unsigned int r_type
;
7417 r_type
= ELF_R_TYPE (abfd
, rel
->r_info
);
7418 location
= contents
+ rel
->r_offset
;
7420 /* Get the addend, which is stored in the input file. */
7421 _bfd_mips_elf_reloc_unshuffle (abfd
, r_type
, FALSE
, location
);
7422 addend
= mips_elf_obtain_contents (howto
, rel
, abfd
, contents
);
7423 _bfd_mips_elf_reloc_shuffle (abfd
, r_type
, FALSE
, location
);
7425 return addend
& howto
->src_mask
;
7428 /* REL is a relocation in ABFD that needs a partnering LO16 relocation
7429 and *ADDEND is the addend for REL itself. Look for the LO16 relocation
7430 and update *ADDEND with the final addend. Return true on success
7431 or false if the LO16 could not be found. RELEND is the exclusive
7432 upper bound on the relocations for REL's section. */
7435 mips_elf_add_lo16_rel_addend (bfd
*abfd
,
7436 const Elf_Internal_Rela
*rel
,
7437 const Elf_Internal_Rela
*relend
,
7438 bfd_byte
*contents
, bfd_vma
*addend
)
7440 unsigned int r_type
, lo16_type
;
7441 const Elf_Internal_Rela
*lo16_relocation
;
7442 reloc_howto_type
*lo16_howto
;
7445 r_type
= ELF_R_TYPE (abfd
, rel
->r_info
);
7446 if (mips16_reloc_p (r_type
))
7447 lo16_type
= R_MIPS16_LO16
;
7448 else if (micromips_reloc_p (r_type
))
7449 lo16_type
= R_MICROMIPS_LO16
;
7451 lo16_type
= R_MIPS_LO16
;
7453 /* The combined value is the sum of the HI16 addend, left-shifted by
7454 sixteen bits, and the LO16 addend, sign extended. (Usually, the
7455 code does a `lui' of the HI16 value, and then an `addiu' of the
7458 Scan ahead to find a matching LO16 relocation.
7460 According to the MIPS ELF ABI, the R_MIPS_LO16 relocation must
7461 be immediately following. However, for the IRIX6 ABI, the next
7462 relocation may be a composed relocation consisting of several
7463 relocations for the same address. In that case, the R_MIPS_LO16
7464 relocation may occur as one of these. We permit a similar
7465 extension in general, as that is useful for GCC.
7467 In some cases GCC dead code elimination removes the LO16 but keeps
7468 the corresponding HI16. This is strictly speaking a violation of
7469 the ABI but not immediately harmful. */
7470 lo16_relocation
= mips_elf_next_relocation (abfd
, lo16_type
, rel
, relend
);
7471 if (lo16_relocation
== NULL
)
7474 /* Obtain the addend kept there. */
7475 lo16_howto
= MIPS_ELF_RTYPE_TO_HOWTO (abfd
, lo16_type
, FALSE
);
7476 l
= mips_elf_read_rel_addend (abfd
, lo16_relocation
, lo16_howto
, contents
);
7478 l
<<= lo16_howto
->rightshift
;
7479 l
= _bfd_mips_elf_sign_extend (l
, 16);
7486 /* Try to read the contents of section SEC in bfd ABFD. Return true and
7487 store the contents in *CONTENTS on success. Assume that *CONTENTS
7488 already holds the contents if it is nonull on entry. */
7491 mips_elf_get_section_contents (bfd
*abfd
, asection
*sec
, bfd_byte
**contents
)
7496 /* Get cached copy if it exists. */
7497 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
7499 *contents
= elf_section_data (sec
)->this_hdr
.contents
;
7503 return bfd_malloc_and_get_section (abfd
, sec
, contents
);
7506 /* Look through the relocs for a section during the first phase, and
7507 allocate space in the global offset table. */
7510 _bfd_mips_elf_check_relocs (bfd
*abfd
, struct bfd_link_info
*info
,
7511 asection
*sec
, const Elf_Internal_Rela
*relocs
)
7515 Elf_Internal_Shdr
*symtab_hdr
;
7516 struct elf_link_hash_entry
**sym_hashes
;
7518 const Elf_Internal_Rela
*rel
;
7519 const Elf_Internal_Rela
*rel_end
;
7521 const struct elf_backend_data
*bed
;
7522 struct mips_elf_link_hash_table
*htab
;
7525 reloc_howto_type
*howto
;
7527 if (info
->relocatable
)
7530 htab
= mips_elf_hash_table (info
);
7531 BFD_ASSERT (htab
!= NULL
);
7533 dynobj
= elf_hash_table (info
)->dynobj
;
7534 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
7535 sym_hashes
= elf_sym_hashes (abfd
);
7536 extsymoff
= (elf_bad_symtab (abfd
)) ? 0 : symtab_hdr
->sh_info
;
7538 bed
= get_elf_backend_data (abfd
);
7539 rel_end
= relocs
+ sec
->reloc_count
* bed
->s
->int_rels_per_ext_rel
;
7541 /* Check for the mips16 stub sections. */
7543 name
= bfd_get_section_name (abfd
, sec
);
7544 if (FN_STUB_P (name
))
7546 unsigned long r_symndx
;
7548 /* Look at the relocation information to figure out which symbol
7551 r_symndx
= mips16_stub_symndx (bed
, sec
, relocs
, rel_end
);
7554 (*_bfd_error_handler
)
7555 (_("%B: Warning: cannot determine the target function for"
7556 " stub section `%s'"),
7558 bfd_set_error (bfd_error_bad_value
);
7562 if (r_symndx
< extsymoff
7563 || sym_hashes
[r_symndx
- extsymoff
] == NULL
)
7567 /* This stub is for a local symbol. This stub will only be
7568 needed if there is some relocation in this BFD, other
7569 than a 16 bit function call, which refers to this symbol. */
7570 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
7572 Elf_Internal_Rela
*sec_relocs
;
7573 const Elf_Internal_Rela
*r
, *rend
;
7575 /* We can ignore stub sections when looking for relocs. */
7576 if ((o
->flags
& SEC_RELOC
) == 0
7577 || o
->reloc_count
== 0
7578 || section_allows_mips16_refs_p (o
))
7582 = _bfd_elf_link_read_relocs (abfd
, o
, NULL
, NULL
,
7584 if (sec_relocs
== NULL
)
7587 rend
= sec_relocs
+ o
->reloc_count
;
7588 for (r
= sec_relocs
; r
< rend
; r
++)
7589 if (ELF_R_SYM (abfd
, r
->r_info
) == r_symndx
7590 && !mips16_call_reloc_p (ELF_R_TYPE (abfd
, r
->r_info
)))
7593 if (elf_section_data (o
)->relocs
!= sec_relocs
)
7602 /* There is no non-call reloc for this stub, so we do
7603 not need it. Since this function is called before
7604 the linker maps input sections to output sections, we
7605 can easily discard it by setting the SEC_EXCLUDE
7607 sec
->flags
|= SEC_EXCLUDE
;
7611 /* Record this stub in an array of local symbol stubs for
7613 if (mips_elf_tdata (abfd
)->local_stubs
== NULL
)
7615 unsigned long symcount
;
7619 if (elf_bad_symtab (abfd
))
7620 symcount
= NUM_SHDR_ENTRIES (symtab_hdr
);
7622 symcount
= symtab_hdr
->sh_info
;
7623 amt
= symcount
* sizeof (asection
*);
7624 n
= bfd_zalloc (abfd
, amt
);
7627 mips_elf_tdata (abfd
)->local_stubs
= n
;
7630 sec
->flags
|= SEC_KEEP
;
7631 mips_elf_tdata (abfd
)->local_stubs
[r_symndx
] = sec
;
7633 /* We don't need to set mips16_stubs_seen in this case.
7634 That flag is used to see whether we need to look through
7635 the global symbol table for stubs. We don't need to set
7636 it here, because we just have a local stub. */
7640 struct mips_elf_link_hash_entry
*h
;
7642 h
= ((struct mips_elf_link_hash_entry
*)
7643 sym_hashes
[r_symndx
- extsymoff
]);
7645 while (h
->root
.root
.type
== bfd_link_hash_indirect
7646 || h
->root
.root
.type
== bfd_link_hash_warning
)
7647 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
7649 /* H is the symbol this stub is for. */
7651 /* If we already have an appropriate stub for this function, we
7652 don't need another one, so we can discard this one. Since
7653 this function is called before the linker maps input sections
7654 to output sections, we can easily discard it by setting the
7655 SEC_EXCLUDE flag. */
7656 if (h
->fn_stub
!= NULL
)
7658 sec
->flags
|= SEC_EXCLUDE
;
7662 sec
->flags
|= SEC_KEEP
;
7664 mips_elf_hash_table (info
)->mips16_stubs_seen
= TRUE
;
7667 else if (CALL_STUB_P (name
) || CALL_FP_STUB_P (name
))
7669 unsigned long r_symndx
;
7670 struct mips_elf_link_hash_entry
*h
;
7673 /* Look at the relocation information to figure out which symbol
7676 r_symndx
= mips16_stub_symndx (bed
, sec
, relocs
, rel_end
);
7679 (*_bfd_error_handler
)
7680 (_("%B: Warning: cannot determine the target function for"
7681 " stub section `%s'"),
7683 bfd_set_error (bfd_error_bad_value
);
7687 if (r_symndx
< extsymoff
7688 || sym_hashes
[r_symndx
- extsymoff
] == NULL
)
7692 /* This stub is for a local symbol. This stub will only be
7693 needed if there is some relocation (R_MIPS16_26) in this BFD
7694 that refers to this symbol. */
7695 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
7697 Elf_Internal_Rela
*sec_relocs
;
7698 const Elf_Internal_Rela
*r
, *rend
;
7700 /* We can ignore stub sections when looking for relocs. */
7701 if ((o
->flags
& SEC_RELOC
) == 0
7702 || o
->reloc_count
== 0
7703 || section_allows_mips16_refs_p (o
))
7707 = _bfd_elf_link_read_relocs (abfd
, o
, NULL
, NULL
,
7709 if (sec_relocs
== NULL
)
7712 rend
= sec_relocs
+ o
->reloc_count
;
7713 for (r
= sec_relocs
; r
< rend
; r
++)
7714 if (ELF_R_SYM (abfd
, r
->r_info
) == r_symndx
7715 && ELF_R_TYPE (abfd
, r
->r_info
) == R_MIPS16_26
)
7718 if (elf_section_data (o
)->relocs
!= sec_relocs
)
7727 /* There is no non-call reloc for this stub, so we do
7728 not need it. Since this function is called before
7729 the linker maps input sections to output sections, we
7730 can easily discard it by setting the SEC_EXCLUDE
7732 sec
->flags
|= SEC_EXCLUDE
;
7736 /* Record this stub in an array of local symbol call_stubs for
7738 if (mips_elf_tdata (abfd
)->local_call_stubs
== NULL
)
7740 unsigned long symcount
;
7744 if (elf_bad_symtab (abfd
))
7745 symcount
= NUM_SHDR_ENTRIES (symtab_hdr
);
7747 symcount
= symtab_hdr
->sh_info
;
7748 amt
= symcount
* sizeof (asection
*);
7749 n
= bfd_zalloc (abfd
, amt
);
7752 mips_elf_tdata (abfd
)->local_call_stubs
= n
;
7755 sec
->flags
|= SEC_KEEP
;
7756 mips_elf_tdata (abfd
)->local_call_stubs
[r_symndx
] = sec
;
7758 /* We don't need to set mips16_stubs_seen in this case.
7759 That flag is used to see whether we need to look through
7760 the global symbol table for stubs. We don't need to set
7761 it here, because we just have a local stub. */
7765 h
= ((struct mips_elf_link_hash_entry
*)
7766 sym_hashes
[r_symndx
- extsymoff
]);
7768 /* H is the symbol this stub is for. */
7770 if (CALL_FP_STUB_P (name
))
7771 loc
= &h
->call_fp_stub
;
7773 loc
= &h
->call_stub
;
7775 /* If we already have an appropriate stub for this function, we
7776 don't need another one, so we can discard this one. Since
7777 this function is called before the linker maps input sections
7778 to output sections, we can easily discard it by setting the
7779 SEC_EXCLUDE flag. */
7782 sec
->flags
|= SEC_EXCLUDE
;
7786 sec
->flags
|= SEC_KEEP
;
7788 mips_elf_hash_table (info
)->mips16_stubs_seen
= TRUE
;
7794 for (rel
= relocs
; rel
< rel_end
; ++rel
)
7796 unsigned long r_symndx
;
7797 unsigned int r_type
;
7798 struct elf_link_hash_entry
*h
;
7799 bfd_boolean can_make_dynamic_p
;
7801 r_symndx
= ELF_R_SYM (abfd
, rel
->r_info
);
7802 r_type
= ELF_R_TYPE (abfd
, rel
->r_info
);
7804 if (r_symndx
< extsymoff
)
7806 else if (r_symndx
>= extsymoff
+ NUM_SHDR_ENTRIES (symtab_hdr
))
7808 (*_bfd_error_handler
)
7809 (_("%B: Malformed reloc detected for section %s"),
7811 bfd_set_error (bfd_error_bad_value
);
7816 h
= sym_hashes
[r_symndx
- extsymoff
];
7818 && (h
->root
.type
== bfd_link_hash_indirect
7819 || h
->root
.type
== bfd_link_hash_warning
))
7820 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
7823 /* Set CAN_MAKE_DYNAMIC_P to true if we can convert this
7824 relocation into a dynamic one. */
7825 can_make_dynamic_p
= FALSE
;
7830 case R_MIPS_CALL_HI16
:
7831 case R_MIPS_CALL_LO16
:
7832 case R_MIPS_GOT_HI16
:
7833 case R_MIPS_GOT_LO16
:
7834 case R_MIPS_GOT_PAGE
:
7835 case R_MIPS_GOT_OFST
:
7836 case R_MIPS_GOT_DISP
:
7837 case R_MIPS_TLS_GOTTPREL
:
7839 case R_MIPS_TLS_LDM
:
7840 case R_MIPS16_GOT16
:
7841 case R_MIPS16_CALL16
:
7842 case R_MIPS16_TLS_GOTTPREL
:
7843 case R_MIPS16_TLS_GD
:
7844 case R_MIPS16_TLS_LDM
:
7845 case R_MICROMIPS_GOT16
:
7846 case R_MICROMIPS_CALL16
:
7847 case R_MICROMIPS_CALL_HI16
:
7848 case R_MICROMIPS_CALL_LO16
:
7849 case R_MICROMIPS_GOT_HI16
:
7850 case R_MICROMIPS_GOT_LO16
:
7851 case R_MICROMIPS_GOT_PAGE
:
7852 case R_MICROMIPS_GOT_OFST
:
7853 case R_MICROMIPS_GOT_DISP
:
7854 case R_MICROMIPS_TLS_GOTTPREL
:
7855 case R_MICROMIPS_TLS_GD
:
7856 case R_MICROMIPS_TLS_LDM
:
7858 elf_hash_table (info
)->dynobj
= dynobj
= abfd
;
7859 if (!mips_elf_create_got_section (dynobj
, info
))
7861 if (htab
->is_vxworks
&& !info
->shared
)
7863 (*_bfd_error_handler
)
7864 (_("%B: GOT reloc at 0x%lx not expected in executables"),
7865 abfd
, (unsigned long) rel
->r_offset
);
7866 bfd_set_error (bfd_error_bad_value
);
7871 /* This is just a hint; it can safely be ignored. Don't set
7872 has_static_relocs for the corresponding symbol. */
7874 case R_MICROMIPS_JALR
:
7880 /* In VxWorks executables, references to external symbols
7881 must be handled using copy relocs or PLT entries; it is not
7882 possible to convert this relocation into a dynamic one.
7884 For executables that use PLTs and copy-relocs, we have a
7885 choice between converting the relocation into a dynamic
7886 one or using copy relocations or PLT entries. It is
7887 usually better to do the former, unless the relocation is
7888 against a read-only section. */
7891 && !htab
->is_vxworks
7892 && strcmp (h
->root
.root
.string
, "__gnu_local_gp") != 0
7893 && !(!info
->nocopyreloc
7894 && !PIC_OBJECT_P (abfd
)
7895 && MIPS_ELF_READONLY_SECTION (sec
))))
7896 && (sec
->flags
& SEC_ALLOC
) != 0)
7898 can_make_dynamic_p
= TRUE
;
7900 elf_hash_table (info
)->dynobj
= dynobj
= abfd
;
7903 /* For sections that are not SEC_ALLOC a copy reloc would be
7904 output if possible (implying questionable semantics for
7905 read-only data objects) or otherwise the final link would
7906 fail as ld.so will not process them and could not therefore
7907 handle any outstanding dynamic relocations.
7909 For such sections that are also SEC_DEBUGGING, we can avoid
7910 these problems by simply ignoring any relocs as these
7911 sections have a predefined use and we know it is safe to do
7914 This is needed in cases such as a global symbol definition
7915 in a shared library causing a common symbol from an object
7916 file to be converted to an undefined reference. If that
7917 happens, then all the relocations against this symbol from
7918 SEC_DEBUGGING sections in the object file will resolve to
7920 if ((sec
->flags
& SEC_DEBUGGING
) != 0)
7925 /* Most static relocations require pointer equality, except
7928 h
->pointer_equality_needed
= TRUE
;
7934 case R_MICROMIPS_26_S1
:
7935 case R_MICROMIPS_PC7_S1
:
7936 case R_MICROMIPS_PC10_S1
:
7937 case R_MICROMIPS_PC16_S1
:
7938 case R_MICROMIPS_PC23_S2
:
7940 ((struct mips_elf_link_hash_entry
*) h
)->has_static_relocs
= TRUE
;
7946 /* Relocations against the special VxWorks __GOTT_BASE__ and
7947 __GOTT_INDEX__ symbols must be left to the loader. Allocate
7948 room for them in .rela.dyn. */
7949 if (is_gott_symbol (info
, h
))
7953 sreloc
= mips_elf_rel_dyn_section (info
, TRUE
);
7957 mips_elf_allocate_dynamic_relocations (dynobj
, info
, 1);
7958 if (MIPS_ELF_READONLY_SECTION (sec
))
7959 /* We tell the dynamic linker that there are
7960 relocations against the text segment. */
7961 info
->flags
|= DF_TEXTREL
;
7964 else if (call_lo16_reloc_p (r_type
)
7965 || got_lo16_reloc_p (r_type
)
7966 || got_disp_reloc_p (r_type
)
7967 || (got16_reloc_p (r_type
) && htab
->is_vxworks
))
7969 /* We may need a local GOT entry for this relocation. We
7970 don't count R_MIPS_GOT_PAGE because we can estimate the
7971 maximum number of pages needed by looking at the size of
7972 the segment. Similar comments apply to R_MIPS*_GOT16 and
7973 R_MIPS*_CALL16, except on VxWorks, where GOT relocations
7974 always evaluate to "G". We don't count R_MIPS_GOT_HI16, or
7975 R_MIPS_CALL_HI16 because these are always followed by an
7976 R_MIPS_GOT_LO16 or R_MIPS_CALL_LO16. */
7977 if (!mips_elf_record_local_got_symbol (abfd
, r_symndx
,
7978 rel
->r_addend
, info
, r_type
))
7983 && mips_elf_relocation_needs_la25_stub (abfd
, r_type
,
7984 ELF_ST_IS_MIPS16 (h
->other
)))
7985 ((struct mips_elf_link_hash_entry
*) h
)->has_nonpic_branches
= TRUE
;
7990 case R_MIPS16_CALL16
:
7991 case R_MICROMIPS_CALL16
:
7994 (*_bfd_error_handler
)
7995 (_("%B: CALL16 reloc at 0x%lx not against global symbol"),
7996 abfd
, (unsigned long) rel
->r_offset
);
7997 bfd_set_error (bfd_error_bad_value
);
8002 case R_MIPS_CALL_HI16
:
8003 case R_MIPS_CALL_LO16
:
8004 case R_MICROMIPS_CALL_HI16
:
8005 case R_MICROMIPS_CALL_LO16
:
8008 /* Make sure there is room in the regular GOT to hold the
8009 function's address. We may eliminate it in favour of
8010 a .got.plt entry later; see mips_elf_count_got_symbols. */
8011 if (!mips_elf_record_global_got_symbol (h
, abfd
, info
, TRUE
,
8015 /* We need a stub, not a plt entry for the undefined
8016 function. But we record it as if it needs plt. See
8017 _bfd_elf_adjust_dynamic_symbol. */
8023 case R_MIPS_GOT_PAGE
:
8024 case R_MICROMIPS_GOT_PAGE
:
8025 case R_MIPS16_GOT16
:
8027 case R_MIPS_GOT_HI16
:
8028 case R_MIPS_GOT_LO16
:
8029 case R_MICROMIPS_GOT16
:
8030 case R_MICROMIPS_GOT_HI16
:
8031 case R_MICROMIPS_GOT_LO16
:
8032 if (!h
|| got_page_reloc_p (r_type
))
8034 /* This relocation needs (or may need, if h != NULL) a
8035 page entry in the GOT. For R_MIPS_GOT_PAGE we do not
8036 know for sure until we know whether the symbol is
8038 if (mips_elf_rel_relocation_p (abfd
, sec
, relocs
, rel
))
8040 if (!mips_elf_get_section_contents (abfd
, sec
, &contents
))
8042 howto
= MIPS_ELF_RTYPE_TO_HOWTO (abfd
, r_type
, FALSE
);
8043 addend
= mips_elf_read_rel_addend (abfd
, rel
,
8045 if (got16_reloc_p (r_type
))
8046 mips_elf_add_lo16_rel_addend (abfd
, rel
, rel_end
,
8049 addend
<<= howto
->rightshift
;
8052 addend
= rel
->r_addend
;
8053 if (!mips_elf_record_got_page_ref (info
, abfd
, r_symndx
,
8059 struct mips_elf_link_hash_entry
*hmips
=
8060 (struct mips_elf_link_hash_entry
*) h
;
8062 /* This symbol is definitely not overridable. */
8063 if (hmips
->root
.def_regular
8064 && ! (info
->shared
&& ! info
->symbolic
8065 && ! hmips
->root
.forced_local
))
8069 /* If this is a global, overridable symbol, GOT_PAGE will
8070 decay to GOT_DISP, so we'll need a GOT entry for it. */
8073 case R_MIPS_GOT_DISP
:
8074 case R_MICROMIPS_GOT_DISP
:
8075 if (h
&& !mips_elf_record_global_got_symbol (h
, abfd
, info
,
8080 case R_MIPS_TLS_GOTTPREL
:
8081 case R_MIPS16_TLS_GOTTPREL
:
8082 case R_MICROMIPS_TLS_GOTTPREL
:
8084 info
->flags
|= DF_STATIC_TLS
;
8087 case R_MIPS_TLS_LDM
:
8088 case R_MIPS16_TLS_LDM
:
8089 case R_MICROMIPS_TLS_LDM
:
8090 if (tls_ldm_reloc_p (r_type
))
8092 r_symndx
= STN_UNDEF
;
8098 case R_MIPS16_TLS_GD
:
8099 case R_MICROMIPS_TLS_GD
:
8100 /* This symbol requires a global offset table entry, or two
8101 for TLS GD relocations. */
8104 if (!mips_elf_record_global_got_symbol (h
, abfd
, info
,
8110 if (!mips_elf_record_local_got_symbol (abfd
, r_symndx
,
8120 /* In VxWorks executables, references to external symbols
8121 are handled using copy relocs or PLT stubs, so there's
8122 no need to add a .rela.dyn entry for this relocation. */
8123 if (can_make_dynamic_p
)
8127 sreloc
= mips_elf_rel_dyn_section (info
, TRUE
);
8131 if (info
->shared
&& h
== NULL
)
8133 /* When creating a shared object, we must copy these
8134 reloc types into the output file as R_MIPS_REL32
8135 relocs. Make room for this reloc in .rel(a).dyn. */
8136 mips_elf_allocate_dynamic_relocations (dynobj
, info
, 1);
8137 if (MIPS_ELF_READONLY_SECTION (sec
))
8138 /* We tell the dynamic linker that there are
8139 relocations against the text segment. */
8140 info
->flags
|= DF_TEXTREL
;
8144 struct mips_elf_link_hash_entry
*hmips
;
8146 /* For a shared object, we must copy this relocation
8147 unless the symbol turns out to be undefined and
8148 weak with non-default visibility, in which case
8149 it will be left as zero.
8151 We could elide R_MIPS_REL32 for locally binding symbols
8152 in shared libraries, but do not yet do so.
8154 For an executable, we only need to copy this
8155 reloc if the symbol is defined in a dynamic
8157 hmips
= (struct mips_elf_link_hash_entry
*) h
;
8158 ++hmips
->possibly_dynamic_relocs
;
8159 if (MIPS_ELF_READONLY_SECTION (sec
))
8160 /* We need it to tell the dynamic linker if there
8161 are relocations against the text segment. */
8162 hmips
->readonly_reloc
= TRUE
;
8166 if (SGI_COMPAT (abfd
))
8167 mips_elf_hash_table (info
)->compact_rel_size
+=
8168 sizeof (Elf32_External_crinfo
);
8172 case R_MIPS_GPREL16
:
8173 case R_MIPS_LITERAL
:
8174 case R_MIPS_GPREL32
:
8175 case R_MICROMIPS_26_S1
:
8176 case R_MICROMIPS_GPREL16
:
8177 case R_MICROMIPS_LITERAL
:
8178 case R_MICROMIPS_GPREL7_S2
:
8179 if (SGI_COMPAT (abfd
))
8180 mips_elf_hash_table (info
)->compact_rel_size
+=
8181 sizeof (Elf32_External_crinfo
);
8184 /* This relocation describes the C++ object vtable hierarchy.
8185 Reconstruct it for later use during GC. */
8186 case R_MIPS_GNU_VTINHERIT
:
8187 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
8191 /* This relocation describes which C++ vtable entries are actually
8192 used. Record for later use during GC. */
8193 case R_MIPS_GNU_VTENTRY
:
8194 BFD_ASSERT (h
!= NULL
);
8196 && !bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_offset
))
8204 /* We must not create a stub for a symbol that has relocations
8205 related to taking the function's address. This doesn't apply to
8206 VxWorks, where CALL relocs refer to a .got.plt entry instead of
8207 a normal .got entry. */
8208 if (!htab
->is_vxworks
&& h
!= NULL
)
8212 ((struct mips_elf_link_hash_entry
*) h
)->no_fn_stub
= TRUE
;
8214 case R_MIPS16_CALL16
:
8216 case R_MIPS_CALL_HI16
:
8217 case R_MIPS_CALL_LO16
:
8219 case R_MICROMIPS_CALL16
:
8220 case R_MICROMIPS_CALL_HI16
:
8221 case R_MICROMIPS_CALL_LO16
:
8222 case R_MICROMIPS_JALR
:
8226 /* See if this reloc would need to refer to a MIPS16 hard-float stub,
8227 if there is one. We only need to handle global symbols here;
8228 we decide whether to keep or delete stubs for local symbols
8229 when processing the stub's relocations. */
8231 && !mips16_call_reloc_p (r_type
)
8232 && !section_allows_mips16_refs_p (sec
))
8234 struct mips_elf_link_hash_entry
*mh
;
8236 mh
= (struct mips_elf_link_hash_entry
*) h
;
8237 mh
->need_fn_stub
= TRUE
;
8240 /* Refuse some position-dependent relocations when creating a
8241 shared library. Do not refuse R_MIPS_32 / R_MIPS_64; they're
8242 not PIC, but we can create dynamic relocations and the result
8243 will be fine. Also do not refuse R_MIPS_LO16, which can be
8244 combined with R_MIPS_GOT16. */
8252 case R_MIPS_HIGHEST
:
8253 case R_MICROMIPS_HI16
:
8254 case R_MICROMIPS_HIGHER
:
8255 case R_MICROMIPS_HIGHEST
:
8256 /* Don't refuse a high part relocation if it's against
8257 no symbol (e.g. part of a compound relocation). */
8258 if (r_symndx
== STN_UNDEF
)
8261 /* R_MIPS_HI16 against _gp_disp is used for $gp setup,
8262 and has a special meaning. */
8263 if (!NEWABI_P (abfd
) && h
!= NULL
8264 && strcmp (h
->root
.root
.string
, "_gp_disp") == 0)
8267 /* Likewise __GOTT_BASE__ and __GOTT_INDEX__ on VxWorks. */
8268 if (is_gott_symbol (info
, h
))
8275 case R_MICROMIPS_26_S1
:
8276 howto
= MIPS_ELF_RTYPE_TO_HOWTO (abfd
, r_type
, FALSE
);
8277 (*_bfd_error_handler
)
8278 (_("%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
8280 (h
) ? h
->root
.root
.string
: "a local symbol");
8281 bfd_set_error (bfd_error_bad_value
);
8293 _bfd_mips_relax_section (bfd
*abfd
, asection
*sec
,
8294 struct bfd_link_info
*link_info
,
8297 Elf_Internal_Rela
*internal_relocs
;
8298 Elf_Internal_Rela
*irel
, *irelend
;
8299 Elf_Internal_Shdr
*symtab_hdr
;
8300 bfd_byte
*contents
= NULL
;
8302 bfd_boolean changed_contents
= FALSE
;
8303 bfd_vma sec_start
= sec
->output_section
->vma
+ sec
->output_offset
;
8304 Elf_Internal_Sym
*isymbuf
= NULL
;
8306 /* We are not currently changing any sizes, so only one pass. */
8309 if (link_info
->relocatable
)
8312 internal_relocs
= _bfd_elf_link_read_relocs (abfd
, sec
, NULL
, NULL
,
8313 link_info
->keep_memory
);
8314 if (internal_relocs
== NULL
)
8317 irelend
= internal_relocs
+ sec
->reloc_count
8318 * get_elf_backend_data (abfd
)->s
->int_rels_per_ext_rel
;
8319 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
8320 extsymoff
= (elf_bad_symtab (abfd
)) ? 0 : symtab_hdr
->sh_info
;
8322 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
8325 bfd_signed_vma sym_offset
;
8326 unsigned int r_type
;
8327 unsigned long r_symndx
;
8329 unsigned long instruction
;
8331 /* Turn jalr into bgezal, and jr into beq, if they're marked
8332 with a JALR relocation, that indicate where they jump to.
8333 This saves some pipeline bubbles. */
8334 r_type
= ELF_R_TYPE (abfd
, irel
->r_info
);
8335 if (r_type
!= R_MIPS_JALR
)
8338 r_symndx
= ELF_R_SYM (abfd
, irel
->r_info
);
8339 /* Compute the address of the jump target. */
8340 if (r_symndx
>= extsymoff
)
8342 struct mips_elf_link_hash_entry
*h
8343 = ((struct mips_elf_link_hash_entry
*)
8344 elf_sym_hashes (abfd
) [r_symndx
- extsymoff
]);
8346 while (h
->root
.root
.type
== bfd_link_hash_indirect
8347 || h
->root
.root
.type
== bfd_link_hash_warning
)
8348 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
8350 /* If a symbol is undefined, or if it may be overridden,
8352 if (! ((h
->root
.root
.type
== bfd_link_hash_defined
8353 || h
->root
.root
.type
== bfd_link_hash_defweak
)
8354 && h
->root
.root
.u
.def
.section
)
8355 || (link_info
->shared
&& ! link_info
->symbolic
8356 && !h
->root
.forced_local
))
8359 sym_sec
= h
->root
.root
.u
.def
.section
;
8360 if (sym_sec
->output_section
)
8361 symval
= (h
->root
.root
.u
.def
.value
8362 + sym_sec
->output_section
->vma
8363 + sym_sec
->output_offset
);
8365 symval
= h
->root
.root
.u
.def
.value
;
8369 Elf_Internal_Sym
*isym
;
8371 /* Read this BFD's symbols if we haven't done so already. */
8372 if (isymbuf
== NULL
&& symtab_hdr
->sh_info
!= 0)
8374 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
8375 if (isymbuf
== NULL
)
8376 isymbuf
= bfd_elf_get_elf_syms (abfd
, symtab_hdr
,
8377 symtab_hdr
->sh_info
, 0,
8379 if (isymbuf
== NULL
)
8383 isym
= isymbuf
+ r_symndx
;
8384 if (isym
->st_shndx
== SHN_UNDEF
)
8386 else if (isym
->st_shndx
== SHN_ABS
)
8387 sym_sec
= bfd_abs_section_ptr
;
8388 else if (isym
->st_shndx
== SHN_COMMON
)
8389 sym_sec
= bfd_com_section_ptr
;
8392 = bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
8393 symval
= isym
->st_value
8394 + sym_sec
->output_section
->vma
8395 + sym_sec
->output_offset
;
8398 /* Compute branch offset, from delay slot of the jump to the
8400 sym_offset
= (symval
+ irel
->r_addend
)
8401 - (sec_start
+ irel
->r_offset
+ 4);
8403 /* Branch offset must be properly aligned. */
8404 if ((sym_offset
& 3) != 0)
8409 /* Check that it's in range. */
8410 if (sym_offset
< -0x8000 || sym_offset
>= 0x8000)
8413 /* Get the section contents if we haven't done so already. */
8414 if (!mips_elf_get_section_contents (abfd
, sec
, &contents
))
8417 instruction
= bfd_get_32 (abfd
, contents
+ irel
->r_offset
);
8419 /* If it was jalr <reg>, turn it into bgezal $zero, <target>. */
8420 if ((instruction
& 0xfc1fffff) == 0x0000f809)
8421 instruction
= 0x04110000;
8422 /* If it was jr <reg>, turn it into b <target>. */
8423 else if ((instruction
& 0xfc1fffff) == 0x00000008)
8424 instruction
= 0x10000000;
8428 instruction
|= (sym_offset
& 0xffff);
8429 bfd_put_32 (abfd
, instruction
, contents
+ irel
->r_offset
);
8430 changed_contents
= TRUE
;
8433 if (contents
!= NULL
8434 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
8436 if (!changed_contents
&& !link_info
->keep_memory
)
8440 /* Cache the section contents for elf_link_input_bfd. */
8441 elf_section_data (sec
)->this_hdr
.contents
= contents
;
8447 if (contents
!= NULL
8448 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
8453 /* Allocate space for global sym dynamic relocs. */
8456 allocate_dynrelocs (struct elf_link_hash_entry
*h
, void *inf
)
8458 struct bfd_link_info
*info
= inf
;
8460 struct mips_elf_link_hash_entry
*hmips
;
8461 struct mips_elf_link_hash_table
*htab
;
8463 htab
= mips_elf_hash_table (info
);
8464 BFD_ASSERT (htab
!= NULL
);
8466 dynobj
= elf_hash_table (info
)->dynobj
;
8467 hmips
= (struct mips_elf_link_hash_entry
*) h
;
8469 /* VxWorks executables are handled elsewhere; we only need to
8470 allocate relocations in shared objects. */
8471 if (htab
->is_vxworks
&& !info
->shared
)
8474 /* Ignore indirect symbols. All relocations against such symbols
8475 will be redirected to the target symbol. */
8476 if (h
->root
.type
== bfd_link_hash_indirect
)
8479 /* If this symbol is defined in a dynamic object, or we are creating
8480 a shared library, we will need to copy any R_MIPS_32 or
8481 R_MIPS_REL32 relocs against it into the output file. */
8482 if (! info
->relocatable
8483 && hmips
->possibly_dynamic_relocs
!= 0
8484 && (h
->root
.type
== bfd_link_hash_defweak
8485 || (!h
->def_regular
&& !ELF_COMMON_DEF_P (h
))
8488 bfd_boolean do_copy
= TRUE
;
8490 if (h
->root
.type
== bfd_link_hash_undefweak
)
8492 /* Do not copy relocations for undefined weak symbols with
8493 non-default visibility. */
8494 if (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
)
8497 /* Make sure undefined weak symbols are output as a dynamic
8499 else if (h
->dynindx
== -1 && !h
->forced_local
)
8501 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
8508 /* Even though we don't directly need a GOT entry for this symbol,
8509 the SVR4 psABI requires it to have a dynamic symbol table
8510 index greater that DT_MIPS_GOTSYM if there are dynamic
8511 relocations against it.
8513 VxWorks does not enforce the same mapping between the GOT
8514 and the symbol table, so the same requirement does not
8516 if (!htab
->is_vxworks
)
8518 if (hmips
->global_got_area
> GGA_RELOC_ONLY
)
8519 hmips
->global_got_area
= GGA_RELOC_ONLY
;
8520 hmips
->got_only_for_calls
= FALSE
;
8523 mips_elf_allocate_dynamic_relocations
8524 (dynobj
, info
, hmips
->possibly_dynamic_relocs
);
8525 if (hmips
->readonly_reloc
)
8526 /* We tell the dynamic linker that there are relocations
8527 against the text segment. */
8528 info
->flags
|= DF_TEXTREL
;
8535 /* Adjust a symbol defined by a dynamic object and referenced by a
8536 regular object. The current definition is in some section of the
8537 dynamic object, but we're not including those sections. We have to
8538 change the definition to something the rest of the link can
8542 _bfd_mips_elf_adjust_dynamic_symbol (struct bfd_link_info
*info
,
8543 struct elf_link_hash_entry
*h
)
8546 struct mips_elf_link_hash_entry
*hmips
;
8547 struct mips_elf_link_hash_table
*htab
;
8549 htab
= mips_elf_hash_table (info
);
8550 BFD_ASSERT (htab
!= NULL
);
8552 dynobj
= elf_hash_table (info
)->dynobj
;
8553 hmips
= (struct mips_elf_link_hash_entry
*) h
;
8555 /* Make sure we know what is going on here. */
8556 BFD_ASSERT (dynobj
!= NULL
8558 || h
->u
.weakdef
!= NULL
8561 && !h
->def_regular
)));
8563 hmips
= (struct mips_elf_link_hash_entry
*) h
;
8565 /* If there are call relocations against an externally-defined symbol,
8566 see whether we can create a MIPS lazy-binding stub for it. We can
8567 only do this if all references to the function are through call
8568 relocations, and in that case, the traditional lazy-binding stubs
8569 are much more efficient than PLT entries.
8571 Traditional stubs are only available on SVR4 psABI-based systems;
8572 VxWorks always uses PLTs instead. */
8573 if (!htab
->is_vxworks
&& h
->needs_plt
&& !hmips
->no_fn_stub
)
8575 if (! elf_hash_table (info
)->dynamic_sections_created
)
8578 /* If this symbol is not defined in a regular file, then set
8579 the symbol to the stub location. This is required to make
8580 function pointers compare as equal between the normal
8581 executable and the shared library. */
8582 if (!h
->def_regular
)
8584 hmips
->needs_lazy_stub
= TRUE
;
8585 htab
->lazy_stub_count
++;
8589 /* As above, VxWorks requires PLT entries for externally-defined
8590 functions that are only accessed through call relocations.
8592 Both VxWorks and non-VxWorks targets also need PLT entries if there
8593 are static-only relocations against an externally-defined function.
8594 This can technically occur for shared libraries if there are
8595 branches to the symbol, although it is unlikely that this will be
8596 used in practice due to the short ranges involved. It can occur
8597 for any relative or absolute relocation in executables; in that
8598 case, the PLT entry becomes the function's canonical address. */
8599 else if (((h
->needs_plt
&& !hmips
->no_fn_stub
)
8600 || (h
->type
== STT_FUNC
&& hmips
->has_static_relocs
))
8601 && htab
->use_plts_and_copy_relocs
8602 && !SYMBOL_CALLS_LOCAL (info
, h
)
8603 && !(ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
8604 && h
->root
.type
== bfd_link_hash_undefweak
))
8606 /* If this is the first symbol to need a PLT entry, allocate room
8608 if (htab
->splt
->size
== 0)
8610 BFD_ASSERT (htab
->sgotplt
->size
== 0);
8612 /* If we're using the PLT additions to the psABI, each PLT
8613 entry is 16 bytes and the PLT0 entry is 32 bytes.
8614 Encourage better cache usage by aligning. We do this
8615 lazily to avoid pessimizing traditional objects. */
8616 if (!htab
->is_vxworks
8617 && !bfd_set_section_alignment (dynobj
, htab
->splt
, 5))
8620 /* Make sure that .got.plt is word-aligned. We do this lazily
8621 for the same reason as above. */
8622 if (!bfd_set_section_alignment (dynobj
, htab
->sgotplt
,
8623 MIPS_ELF_LOG_FILE_ALIGN (dynobj
)))
8626 htab
->splt
->size
+= htab
->plt_header_size
;
8628 /* On non-VxWorks targets, the first two entries in .got.plt
8630 if (!htab
->is_vxworks
)
8632 += get_elf_backend_data (dynobj
)->got_header_size
;
8634 /* On VxWorks, also allocate room for the header's
8635 .rela.plt.unloaded entries. */
8636 if (htab
->is_vxworks
&& !info
->shared
)
8637 htab
->srelplt2
->size
+= 2 * sizeof (Elf32_External_Rela
);
8640 /* Assign the next .plt entry to this symbol. */
8641 h
->plt
.offset
= htab
->splt
->size
;
8642 htab
->splt
->size
+= htab
->plt_entry_size
;
8644 /* If the output file has no definition of the symbol, set the
8645 symbol's value to the address of the stub. */
8646 if (!info
->shared
&& !h
->def_regular
)
8648 h
->root
.u
.def
.section
= htab
->splt
;
8649 h
->root
.u
.def
.value
= h
->plt
.offset
;
8650 /* For VxWorks, point at the PLT load stub rather than the
8651 lazy resolution stub; this stub will become the canonical
8652 function address. */
8653 if (htab
->is_vxworks
)
8654 h
->root
.u
.def
.value
+= 8;
8657 /* Make room for the .got.plt entry and the R_MIPS_JUMP_SLOT
8659 htab
->sgotplt
->size
+= MIPS_ELF_GOT_SIZE (dynobj
);
8660 htab
->srelplt
->size
+= (htab
->is_vxworks
8661 ? MIPS_ELF_RELA_SIZE (dynobj
)
8662 : MIPS_ELF_REL_SIZE (dynobj
));
8664 /* Make room for the .rela.plt.unloaded relocations. */
8665 if (htab
->is_vxworks
&& !info
->shared
)
8666 htab
->srelplt2
->size
+= 3 * sizeof (Elf32_External_Rela
);
8668 /* All relocations against this symbol that could have been made
8669 dynamic will now refer to the PLT entry instead. */
8670 hmips
->possibly_dynamic_relocs
= 0;
8675 /* If this is a weak symbol, and there is a real definition, the
8676 processor independent code will have arranged for us to see the
8677 real definition first, and we can just use the same value. */
8678 if (h
->u
.weakdef
!= NULL
)
8680 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
8681 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
8682 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
8683 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
8687 /* Otherwise, there is nothing further to do for symbols defined
8688 in regular objects. */
8692 /* There's also nothing more to do if we'll convert all relocations
8693 against this symbol into dynamic relocations. */
8694 if (!hmips
->has_static_relocs
)
8697 /* We're now relying on copy relocations. Complain if we have
8698 some that we can't convert. */
8699 if (!htab
->use_plts_and_copy_relocs
|| info
->shared
)
8701 (*_bfd_error_handler
) (_("non-dynamic relocations refer to "
8702 "dynamic symbol %s"),
8703 h
->root
.root
.string
);
8704 bfd_set_error (bfd_error_bad_value
);
8708 /* We must allocate the symbol in our .dynbss section, which will
8709 become part of the .bss section of the executable. There will be
8710 an entry for this symbol in the .dynsym section. The dynamic
8711 object will contain position independent code, so all references
8712 from the dynamic object to this symbol will go through the global
8713 offset table. The dynamic linker will use the .dynsym entry to
8714 determine the address it must put in the global offset table, so
8715 both the dynamic object and the regular object will refer to the
8716 same memory location for the variable. */
8718 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0)
8720 if (htab
->is_vxworks
)
8721 htab
->srelbss
->size
+= sizeof (Elf32_External_Rela
);
8723 mips_elf_allocate_dynamic_relocations (dynobj
, info
, 1);
8727 /* All relocations against this symbol that could have been made
8728 dynamic will now refer to the local copy instead. */
8729 hmips
->possibly_dynamic_relocs
= 0;
8731 return _bfd_elf_adjust_dynamic_copy (h
, htab
->sdynbss
);
8734 /* This function is called after all the input files have been read,
8735 and the input sections have been assigned to output sections. We
8736 check for any mips16 stub sections that we can discard. */
8739 _bfd_mips_elf_always_size_sections (bfd
*output_bfd
,
8740 struct bfd_link_info
*info
)
8743 struct mips_elf_link_hash_table
*htab
;
8744 struct mips_htab_traverse_info hti
;
8746 htab
= mips_elf_hash_table (info
);
8747 BFD_ASSERT (htab
!= NULL
);
8749 /* The .reginfo section has a fixed size. */
8750 ri
= bfd_get_section_by_name (output_bfd
, ".reginfo");
8752 bfd_set_section_size (output_bfd
, ri
, sizeof (Elf32_External_RegInfo
));
8755 hti
.output_bfd
= output_bfd
;
8757 mips_elf_link_hash_traverse (mips_elf_hash_table (info
),
8758 mips_elf_check_symbols
, &hti
);
8765 /* If the link uses a GOT, lay it out and work out its size. */
8768 mips_elf_lay_out_got (bfd
*output_bfd
, struct bfd_link_info
*info
)
8772 struct mips_got_info
*g
;
8773 bfd_size_type loadable_size
= 0;
8774 bfd_size_type page_gotno
;
8776 struct mips_elf_traverse_got_arg tga
;
8777 struct mips_elf_link_hash_table
*htab
;
8779 htab
= mips_elf_hash_table (info
);
8780 BFD_ASSERT (htab
!= NULL
);
8786 dynobj
= elf_hash_table (info
)->dynobj
;
8789 /* Allocate room for the reserved entries. VxWorks always reserves
8790 3 entries; other objects only reserve 2 entries. */
8791 BFD_ASSERT (g
->assigned_gotno
== 0);
8792 if (htab
->is_vxworks
)
8793 htab
->reserved_gotno
= 3;
8795 htab
->reserved_gotno
= 2;
8796 g
->local_gotno
+= htab
->reserved_gotno
;
8797 g
->assigned_gotno
= htab
->reserved_gotno
;
8799 /* Decide which symbols need to go in the global part of the GOT and
8800 count the number of reloc-only GOT symbols. */
8801 mips_elf_link_hash_traverse (htab
, mips_elf_count_got_symbols
, info
);
8803 if (!mips_elf_resolve_final_got_entries (info
, g
))
8806 /* Calculate the total loadable size of the output. That
8807 will give us the maximum number of GOT_PAGE entries
8809 for (ibfd
= info
->input_bfds
; ibfd
; ibfd
= ibfd
->link_next
)
8811 asection
*subsection
;
8813 for (subsection
= ibfd
->sections
;
8815 subsection
= subsection
->next
)
8817 if ((subsection
->flags
& SEC_ALLOC
) == 0)
8819 loadable_size
+= ((subsection
->size
+ 0xf)
8820 &~ (bfd_size_type
) 0xf);
8824 if (htab
->is_vxworks
)
8825 /* There's no need to allocate page entries for VxWorks; R_MIPS*_GOT16
8826 relocations against local symbols evaluate to "G", and the EABI does
8827 not include R_MIPS_GOT_PAGE. */
8830 /* Assume there are two loadable segments consisting of contiguous
8831 sections. Is 5 enough? */
8832 page_gotno
= (loadable_size
>> 16) + 5;
8834 /* Choose the smaller of the two page estimates; both are intended to be
8836 if (page_gotno
> g
->page_gotno
)
8837 page_gotno
= g
->page_gotno
;
8839 g
->local_gotno
+= page_gotno
;
8841 s
->size
+= g
->local_gotno
* MIPS_ELF_GOT_SIZE (output_bfd
);
8842 s
->size
+= g
->global_gotno
* MIPS_ELF_GOT_SIZE (output_bfd
);
8843 s
->size
+= g
->tls_gotno
* MIPS_ELF_GOT_SIZE (output_bfd
);
8845 /* VxWorks does not support multiple GOTs. It initializes $gp to
8846 __GOTT_BASE__[__GOTT_INDEX__], the value of which is set by the
8848 if (!htab
->is_vxworks
&& s
->size
> MIPS_ELF_GOT_MAX_SIZE (info
))
8850 if (!mips_elf_multi_got (output_bfd
, info
, s
, page_gotno
))
8855 /* Record that all bfds use G. This also has the effect of freeing
8856 the per-bfd GOTs, which we no longer need. */
8857 for (ibfd
= info
->input_bfds
; ibfd
; ibfd
= ibfd
->link_next
)
8858 if (mips_elf_bfd_got (ibfd
, FALSE
))
8859 mips_elf_replace_bfd_got (ibfd
, g
);
8860 mips_elf_replace_bfd_got (output_bfd
, g
);
8862 /* Set up TLS entries. */
8863 g
->tls_assigned_gotno
= g
->global_gotno
+ g
->local_gotno
;
8866 tga
.value
= MIPS_ELF_GOT_SIZE (output_bfd
);
8867 htab_traverse (g
->got_entries
, mips_elf_initialize_tls_index
, &tga
);
8870 BFD_ASSERT (g
->tls_assigned_gotno
8871 == g
->global_gotno
+ g
->local_gotno
+ g
->tls_gotno
);
8873 /* Each VxWorks GOT entry needs an explicit relocation. */
8874 if (htab
->is_vxworks
&& info
->shared
)
8875 g
->relocs
+= g
->global_gotno
+ g
->local_gotno
- htab
->reserved_gotno
;
8877 /* Allocate room for the TLS relocations. */
8879 mips_elf_allocate_dynamic_relocations (dynobj
, info
, g
->relocs
);
8885 /* Estimate the size of the .MIPS.stubs section. */
8888 mips_elf_estimate_stub_size (bfd
*output_bfd
, struct bfd_link_info
*info
)
8890 struct mips_elf_link_hash_table
*htab
;
8891 bfd_size_type dynsymcount
;
8893 htab
= mips_elf_hash_table (info
);
8894 BFD_ASSERT (htab
!= NULL
);
8896 if (htab
->lazy_stub_count
== 0)
8899 /* IRIX rld assumes that a function stub isn't at the end of the .text
8900 section, so add a dummy entry to the end. */
8901 htab
->lazy_stub_count
++;
8903 /* Get a worst-case estimate of the number of dynamic symbols needed.
8904 At this point, dynsymcount does not account for section symbols
8905 and count_section_dynsyms may overestimate the number that will
8907 dynsymcount
= (elf_hash_table (info
)->dynsymcount
8908 + count_section_dynsyms (output_bfd
, info
));
8910 /* Determine the size of one stub entry. */
8911 htab
->function_stub_size
= (dynsymcount
> 0x10000
8912 ? MIPS_FUNCTION_STUB_BIG_SIZE
8913 : MIPS_FUNCTION_STUB_NORMAL_SIZE
);
8915 htab
->sstubs
->size
= htab
->lazy_stub_count
* htab
->function_stub_size
;
8918 /* A mips_elf_link_hash_traverse callback for which DATA points to the
8919 MIPS hash table. If H needs a traditional MIPS lazy-binding stub,
8920 allocate an entry in the stubs section. */
8923 mips_elf_allocate_lazy_stub (struct mips_elf_link_hash_entry
*h
, void *data
)
8925 struct mips_elf_link_hash_table
*htab
;
8927 htab
= (struct mips_elf_link_hash_table
*) data
;
8928 if (h
->needs_lazy_stub
)
8930 h
->root
.root
.u
.def
.section
= htab
->sstubs
;
8931 h
->root
.root
.u
.def
.value
= htab
->sstubs
->size
;
8932 h
->root
.plt
.offset
= htab
->sstubs
->size
;
8933 htab
->sstubs
->size
+= htab
->function_stub_size
;
8938 /* Allocate offsets in the stubs section to each symbol that needs one.
8939 Set the final size of the .MIPS.stub section. */
8942 mips_elf_lay_out_lazy_stubs (struct bfd_link_info
*info
)
8944 struct mips_elf_link_hash_table
*htab
;
8946 htab
= mips_elf_hash_table (info
);
8947 BFD_ASSERT (htab
!= NULL
);
8949 if (htab
->lazy_stub_count
== 0)
8952 htab
->sstubs
->size
= 0;
8953 mips_elf_link_hash_traverse (htab
, mips_elf_allocate_lazy_stub
, htab
);
8954 htab
->sstubs
->size
+= htab
->function_stub_size
;
8955 BFD_ASSERT (htab
->sstubs
->size
8956 == htab
->lazy_stub_count
* htab
->function_stub_size
);
8959 /* Set the sizes of the dynamic sections. */
8962 _bfd_mips_elf_size_dynamic_sections (bfd
*output_bfd
,
8963 struct bfd_link_info
*info
)
8966 asection
*s
, *sreldyn
;
8967 bfd_boolean reltext
;
8968 struct mips_elf_link_hash_table
*htab
;
8970 htab
= mips_elf_hash_table (info
);
8971 BFD_ASSERT (htab
!= NULL
);
8972 dynobj
= elf_hash_table (info
)->dynobj
;
8973 BFD_ASSERT (dynobj
!= NULL
);
8975 if (elf_hash_table (info
)->dynamic_sections_created
)
8977 /* Set the contents of the .interp section to the interpreter. */
8978 if (info
->executable
)
8980 s
= bfd_get_linker_section (dynobj
, ".interp");
8981 BFD_ASSERT (s
!= NULL
);
8983 = strlen (ELF_DYNAMIC_INTERPRETER (output_bfd
)) + 1;
8985 = (bfd_byte
*) ELF_DYNAMIC_INTERPRETER (output_bfd
);
8988 /* Create a symbol for the PLT, if we know that we are using it. */
8989 if (htab
->splt
&& htab
->splt
->size
> 0 && htab
->root
.hplt
== NULL
)
8991 struct elf_link_hash_entry
*h
;
8993 BFD_ASSERT (htab
->use_plts_and_copy_relocs
);
8995 h
= _bfd_elf_define_linkage_sym (dynobj
, info
, htab
->splt
,
8996 "_PROCEDURE_LINKAGE_TABLE_");
8997 htab
->root
.hplt
= h
;
9004 /* Allocate space for global sym dynamic relocs. */
9005 elf_link_hash_traverse (&htab
->root
, allocate_dynrelocs
, info
);
9007 mips_elf_estimate_stub_size (output_bfd
, info
);
9009 if (!mips_elf_lay_out_got (output_bfd
, info
))
9012 mips_elf_lay_out_lazy_stubs (info
);
9014 /* The check_relocs and adjust_dynamic_symbol entry points have
9015 determined the sizes of the various dynamic sections. Allocate
9018 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
9022 /* It's OK to base decisions on the section name, because none
9023 of the dynobj section names depend upon the input files. */
9024 name
= bfd_get_section_name (dynobj
, s
);
9026 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
9029 if (CONST_STRNEQ (name
, ".rel"))
9033 const char *outname
;
9036 /* If this relocation section applies to a read only
9037 section, then we probably need a DT_TEXTREL entry.
9038 If the relocation section is .rel(a).dyn, we always
9039 assert a DT_TEXTREL entry rather than testing whether
9040 there exists a relocation to a read only section or
9042 outname
= bfd_get_section_name (output_bfd
,
9044 target
= bfd_get_section_by_name (output_bfd
, outname
+ 4);
9046 && (target
->flags
& SEC_READONLY
) != 0
9047 && (target
->flags
& SEC_ALLOC
) != 0)
9048 || strcmp (outname
, MIPS_ELF_REL_DYN_NAME (info
)) == 0)
9051 /* We use the reloc_count field as a counter if we need
9052 to copy relocs into the output file. */
9053 if (strcmp (name
, MIPS_ELF_REL_DYN_NAME (info
)) != 0)
9056 /* If combreloc is enabled, elf_link_sort_relocs() will
9057 sort relocations, but in a different way than we do,
9058 and before we're done creating relocations. Also, it
9059 will move them around between input sections'
9060 relocation's contents, so our sorting would be
9061 broken, so don't let it run. */
9062 info
->combreloc
= 0;
9065 else if (! info
->shared
9066 && ! mips_elf_hash_table (info
)->use_rld_obj_head
9067 && CONST_STRNEQ (name
, ".rld_map"))
9069 /* We add a room for __rld_map. It will be filled in by the
9070 rtld to contain a pointer to the _r_debug structure. */
9071 s
->size
+= MIPS_ELF_RLD_MAP_SIZE (output_bfd
);
9073 else if (SGI_COMPAT (output_bfd
)
9074 && CONST_STRNEQ (name
, ".compact_rel"))
9075 s
->size
+= mips_elf_hash_table (info
)->compact_rel_size
;
9076 else if (s
== htab
->splt
)
9078 /* If the last PLT entry has a branch delay slot, allocate
9079 room for an extra nop to fill the delay slot. This is
9080 for CPUs without load interlocking. */
9081 if (! LOAD_INTERLOCKS_P (output_bfd
)
9082 && ! htab
->is_vxworks
&& s
->size
> 0)
9085 else if (! CONST_STRNEQ (name
, ".init")
9087 && s
!= htab
->sgotplt
9088 && s
!= htab
->sstubs
9089 && s
!= htab
->sdynbss
)
9091 /* It's not one of our sections, so don't allocate space. */
9097 s
->flags
|= SEC_EXCLUDE
;
9101 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0)
9104 /* Allocate memory for the section contents. */
9105 s
->contents
= bfd_zalloc (dynobj
, s
->size
);
9106 if (s
->contents
== NULL
)
9108 bfd_set_error (bfd_error_no_memory
);
9113 if (elf_hash_table (info
)->dynamic_sections_created
)
9115 /* Add some entries to the .dynamic section. We fill in the
9116 values later, in _bfd_mips_elf_finish_dynamic_sections, but we
9117 must add the entries now so that we get the correct size for
9118 the .dynamic section. */
9120 /* SGI object has the equivalence of DT_DEBUG in the
9121 DT_MIPS_RLD_MAP entry. This must come first because glibc
9122 only fills in DT_MIPS_RLD_MAP (not DT_DEBUG) and some tools
9123 may only look at the first one they see. */
9125 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_RLD_MAP
, 0))
9128 /* The DT_DEBUG entry may be filled in by the dynamic linker and
9129 used by the debugger. */
9130 if (info
->executable
9131 && !SGI_COMPAT (output_bfd
)
9132 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_DEBUG
, 0))
9135 if (reltext
&& (SGI_COMPAT (output_bfd
) || htab
->is_vxworks
))
9136 info
->flags
|= DF_TEXTREL
;
9138 if ((info
->flags
& DF_TEXTREL
) != 0)
9140 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_TEXTREL
, 0))
9143 /* Clear the DF_TEXTREL flag. It will be set again if we
9144 write out an actual text relocation; we may not, because
9145 at this point we do not know whether e.g. any .eh_frame
9146 absolute relocations have been converted to PC-relative. */
9147 info
->flags
&= ~DF_TEXTREL
;
9150 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_PLTGOT
, 0))
9153 sreldyn
= mips_elf_rel_dyn_section (info
, FALSE
);
9154 if (htab
->is_vxworks
)
9156 /* VxWorks uses .rela.dyn instead of .rel.dyn. It does not
9157 use any of the DT_MIPS_* tags. */
9158 if (sreldyn
&& sreldyn
->size
> 0)
9160 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_RELA
, 0))
9163 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_RELASZ
, 0))
9166 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_RELAENT
, 0))
9172 if (sreldyn
&& sreldyn
->size
> 0)
9174 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_REL
, 0))
9177 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_RELSZ
, 0))
9180 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_RELENT
, 0))
9184 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_RLD_VERSION
, 0))
9187 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_FLAGS
, 0))
9190 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_BASE_ADDRESS
, 0))
9193 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_LOCAL_GOTNO
, 0))
9196 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_SYMTABNO
, 0))
9199 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_UNREFEXTNO
, 0))
9202 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_GOTSYM
, 0))
9205 if (IRIX_COMPAT (dynobj
) == ict_irix5
9206 && ! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_HIPAGENO
, 0))
9209 if (IRIX_COMPAT (dynobj
) == ict_irix6
9210 && (bfd_get_section_by_name
9211 (output_bfd
, MIPS_ELF_OPTIONS_SECTION_NAME (dynobj
)))
9212 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_OPTIONS
, 0))
9215 if (htab
->splt
->size
> 0)
9217 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_PLTREL
, 0))
9220 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_JMPREL
, 0))
9223 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_PLTRELSZ
, 0))
9226 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_PLTGOT
, 0))
9229 if (htab
->is_vxworks
9230 && !elf_vxworks_add_dynamic_entries (output_bfd
, info
))
9237 /* REL is a relocation in INPUT_BFD that is being copied to OUTPUT_BFD.
9238 Adjust its R_ADDEND field so that it is correct for the output file.
9239 LOCAL_SYMS and LOCAL_SECTIONS are arrays of INPUT_BFD's local symbols
9240 and sections respectively; both use symbol indexes. */
9243 mips_elf_adjust_addend (bfd
*output_bfd
, struct bfd_link_info
*info
,
9244 bfd
*input_bfd
, Elf_Internal_Sym
*local_syms
,
9245 asection
**local_sections
, Elf_Internal_Rela
*rel
)
9247 unsigned int r_type
, r_symndx
;
9248 Elf_Internal_Sym
*sym
;
9251 if (mips_elf_local_relocation_p (input_bfd
, rel
, local_sections
))
9253 r_type
= ELF_R_TYPE (output_bfd
, rel
->r_info
);
9254 if (gprel16_reloc_p (r_type
)
9255 || r_type
== R_MIPS_GPREL32
9256 || literal_reloc_p (r_type
))
9258 rel
->r_addend
+= _bfd_get_gp_value (input_bfd
);
9259 rel
->r_addend
-= _bfd_get_gp_value (output_bfd
);
9262 r_symndx
= ELF_R_SYM (output_bfd
, rel
->r_info
);
9263 sym
= local_syms
+ r_symndx
;
9265 /* Adjust REL's addend to account for section merging. */
9266 if (!info
->relocatable
)
9268 sec
= local_sections
[r_symndx
];
9269 _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
9272 /* This would normally be done by the rela_normal code in elflink.c. */
9273 if (ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
9274 rel
->r_addend
+= local_sections
[r_symndx
]->output_offset
;
9278 /* Handle relocations against symbols from removed linkonce sections,
9279 or sections discarded by a linker script. We use this wrapper around
9280 RELOC_AGAINST_DISCARDED_SECTION to handle triplets of compound relocs
9281 on 64-bit ELF targets. In this case for any relocation handled, which
9282 always be the first in a triplet, the remaining two have to be processed
9283 together with the first, even if they are R_MIPS_NONE. It is the symbol
9284 index referred by the first reloc that applies to all the three and the
9285 remaining two never refer to an object symbol. And it is the final
9286 relocation (the last non-null one) that determines the output field of
9287 the whole relocation so retrieve the corresponding howto structure for
9288 the relocatable field to be cleared by RELOC_AGAINST_DISCARDED_SECTION.
9290 Note that RELOC_AGAINST_DISCARDED_SECTION is a macro that uses "continue"
9291 and therefore requires to be pasted in a loop. It also defines a block
9292 and does not protect any of its arguments, hence the extra brackets. */
9295 mips_reloc_against_discarded_section (bfd
*output_bfd
,
9296 struct bfd_link_info
*info
,
9297 bfd
*input_bfd
, asection
*input_section
,
9298 Elf_Internal_Rela
**rel
,
9299 const Elf_Internal_Rela
**relend
,
9300 bfd_boolean rel_reloc
,
9301 reloc_howto_type
*howto
,
9304 const struct elf_backend_data
*bed
= get_elf_backend_data (output_bfd
);
9305 int count
= bed
->s
->int_rels_per_ext_rel
;
9306 unsigned int r_type
;
9309 for (i
= count
- 1; i
> 0; i
--)
9311 r_type
= ELF_R_TYPE (output_bfd
, (*rel
)[i
].r_info
);
9312 if (r_type
!= R_MIPS_NONE
)
9314 howto
= MIPS_ELF_RTYPE_TO_HOWTO (input_bfd
, r_type
, !rel_reloc
);
9320 RELOC_AGAINST_DISCARDED_SECTION (info
, input_bfd
, input_section
,
9321 (*rel
), count
, (*relend
),
9322 howto
, i
, contents
);
9327 /* Relocate a MIPS ELF section. */
9330 _bfd_mips_elf_relocate_section (bfd
*output_bfd
, struct bfd_link_info
*info
,
9331 bfd
*input_bfd
, asection
*input_section
,
9332 bfd_byte
*contents
, Elf_Internal_Rela
*relocs
,
9333 Elf_Internal_Sym
*local_syms
,
9334 asection
**local_sections
)
9336 Elf_Internal_Rela
*rel
;
9337 const Elf_Internal_Rela
*relend
;
9339 bfd_boolean use_saved_addend_p
= FALSE
;
9340 const struct elf_backend_data
*bed
;
9342 bed
= get_elf_backend_data (output_bfd
);
9343 relend
= relocs
+ input_section
->reloc_count
* bed
->s
->int_rels_per_ext_rel
;
9344 for (rel
= relocs
; rel
< relend
; ++rel
)
9348 reloc_howto_type
*howto
;
9349 bfd_boolean cross_mode_jump_p
;
9350 /* TRUE if the relocation is a RELA relocation, rather than a
9352 bfd_boolean rela_relocation_p
= TRUE
;
9353 unsigned int r_type
= ELF_R_TYPE (output_bfd
, rel
->r_info
);
9355 unsigned long r_symndx
;
9357 Elf_Internal_Shdr
*symtab_hdr
;
9358 struct elf_link_hash_entry
*h
;
9359 bfd_boolean rel_reloc
;
9361 rel_reloc
= (NEWABI_P (input_bfd
)
9362 && mips_elf_rel_relocation_p (input_bfd
, input_section
,
9364 /* Find the relocation howto for this relocation. */
9365 howto
= MIPS_ELF_RTYPE_TO_HOWTO (input_bfd
, r_type
, !rel_reloc
);
9367 r_symndx
= ELF_R_SYM (input_bfd
, rel
->r_info
);
9368 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
9369 if (mips_elf_local_relocation_p (input_bfd
, rel
, local_sections
))
9371 sec
= local_sections
[r_symndx
];
9376 unsigned long extsymoff
;
9379 if (!elf_bad_symtab (input_bfd
))
9380 extsymoff
= symtab_hdr
->sh_info
;
9381 h
= elf_sym_hashes (input_bfd
) [r_symndx
- extsymoff
];
9382 while (h
->root
.type
== bfd_link_hash_indirect
9383 || h
->root
.type
== bfd_link_hash_warning
)
9384 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
9387 if (h
->root
.type
== bfd_link_hash_defined
9388 || h
->root
.type
== bfd_link_hash_defweak
)
9389 sec
= h
->root
.u
.def
.section
;
9392 if (sec
!= NULL
&& discarded_section (sec
))
9394 mips_reloc_against_discarded_section (output_bfd
, info
, input_bfd
,
9395 input_section
, &rel
, &relend
,
9396 rel_reloc
, howto
, contents
);
9400 if (r_type
== R_MIPS_64
&& ! NEWABI_P (input_bfd
))
9402 /* Some 32-bit code uses R_MIPS_64. In particular, people use
9403 64-bit code, but make sure all their addresses are in the
9404 lowermost or uppermost 32-bit section of the 64-bit address
9405 space. Thus, when they use an R_MIPS_64 they mean what is
9406 usually meant by R_MIPS_32, with the exception that the
9407 stored value is sign-extended to 64 bits. */
9408 howto
= MIPS_ELF_RTYPE_TO_HOWTO (input_bfd
, R_MIPS_32
, FALSE
);
9410 /* On big-endian systems, we need to lie about the position
9412 if (bfd_big_endian (input_bfd
))
9416 if (!use_saved_addend_p
)
9418 /* If these relocations were originally of the REL variety,
9419 we must pull the addend out of the field that will be
9420 relocated. Otherwise, we simply use the contents of the
9422 if (mips_elf_rel_relocation_p (input_bfd
, input_section
,
9425 rela_relocation_p
= FALSE
;
9426 addend
= mips_elf_read_rel_addend (input_bfd
, rel
,
9428 if (hi16_reloc_p (r_type
)
9429 || (got16_reloc_p (r_type
)
9430 && mips_elf_local_relocation_p (input_bfd
, rel
,
9433 if (!mips_elf_add_lo16_rel_addend (input_bfd
, rel
, relend
,
9437 name
= h
->root
.root
.string
;
9439 name
= bfd_elf_sym_name (input_bfd
, symtab_hdr
,
9440 local_syms
+ r_symndx
,
9442 (*_bfd_error_handler
)
9443 (_("%B: Can't find matching LO16 reloc against `%s' for %s at 0x%lx in section `%A'"),
9444 input_bfd
, input_section
, name
, howto
->name
,
9449 addend
<<= howto
->rightshift
;
9452 addend
= rel
->r_addend
;
9453 mips_elf_adjust_addend (output_bfd
, info
, input_bfd
,
9454 local_syms
, local_sections
, rel
);
9457 if (info
->relocatable
)
9459 if (r_type
== R_MIPS_64
&& ! NEWABI_P (output_bfd
)
9460 && bfd_big_endian (input_bfd
))
9463 if (!rela_relocation_p
&& rel
->r_addend
)
9465 addend
+= rel
->r_addend
;
9466 if (hi16_reloc_p (r_type
) || got16_reloc_p (r_type
))
9467 addend
= mips_elf_high (addend
);
9468 else if (r_type
== R_MIPS_HIGHER
)
9469 addend
= mips_elf_higher (addend
);
9470 else if (r_type
== R_MIPS_HIGHEST
)
9471 addend
= mips_elf_highest (addend
);
9473 addend
>>= howto
->rightshift
;
9475 /* We use the source mask, rather than the destination
9476 mask because the place to which we are writing will be
9477 source of the addend in the final link. */
9478 addend
&= howto
->src_mask
;
9480 if (r_type
== R_MIPS_64
&& ! NEWABI_P (output_bfd
))
9481 /* See the comment above about using R_MIPS_64 in the 32-bit
9482 ABI. Here, we need to update the addend. It would be
9483 possible to get away with just using the R_MIPS_32 reloc
9484 but for endianness. */
9490 if (addend
& ((bfd_vma
) 1 << 31))
9492 sign_bits
= ((bfd_vma
) 1 << 32) - 1;
9499 /* If we don't know that we have a 64-bit type,
9500 do two separate stores. */
9501 if (bfd_big_endian (input_bfd
))
9503 /* Store the sign-bits (which are most significant)
9505 low_bits
= sign_bits
;
9511 high_bits
= sign_bits
;
9513 bfd_put_32 (input_bfd
, low_bits
,
9514 contents
+ rel
->r_offset
);
9515 bfd_put_32 (input_bfd
, high_bits
,
9516 contents
+ rel
->r_offset
+ 4);
9520 if (! mips_elf_perform_relocation (info
, howto
, rel
, addend
,
9521 input_bfd
, input_section
,
9526 /* Go on to the next relocation. */
9530 /* In the N32 and 64-bit ABIs there may be multiple consecutive
9531 relocations for the same offset. In that case we are
9532 supposed to treat the output of each relocation as the addend
9534 if (rel
+ 1 < relend
9535 && rel
->r_offset
== rel
[1].r_offset
9536 && ELF_R_TYPE (input_bfd
, rel
[1].r_info
) != R_MIPS_NONE
)
9537 use_saved_addend_p
= TRUE
;
9539 use_saved_addend_p
= FALSE
;
9541 /* Figure out what value we are supposed to relocate. */
9542 switch (mips_elf_calculate_relocation (output_bfd
, input_bfd
,
9543 input_section
, info
, rel
,
9544 addend
, howto
, local_syms
,
9545 local_sections
, &value
,
9546 &name
, &cross_mode_jump_p
,
9547 use_saved_addend_p
))
9549 case bfd_reloc_continue
:
9550 /* There's nothing to do. */
9553 case bfd_reloc_undefined
:
9554 /* mips_elf_calculate_relocation already called the
9555 undefined_symbol callback. There's no real point in
9556 trying to perform the relocation at this point, so we
9557 just skip ahead to the next relocation. */
9560 case bfd_reloc_notsupported
:
9561 msg
= _("internal error: unsupported relocation error");
9562 info
->callbacks
->warning
9563 (info
, msg
, name
, input_bfd
, input_section
, rel
->r_offset
);
9566 case bfd_reloc_overflow
:
9567 if (use_saved_addend_p
)
9568 /* Ignore overflow until we reach the last relocation for
9569 a given location. */
9573 struct mips_elf_link_hash_table
*htab
;
9575 htab
= mips_elf_hash_table (info
);
9576 BFD_ASSERT (htab
!= NULL
);
9577 BFD_ASSERT (name
!= NULL
);
9578 if (!htab
->small_data_overflow_reported
9579 && (gprel16_reloc_p (howto
->type
)
9580 || literal_reloc_p (howto
->type
)))
9582 msg
= _("small-data section exceeds 64KB;"
9583 " lower small-data size limit (see option -G)");
9585 htab
->small_data_overflow_reported
= TRUE
;
9586 (*info
->callbacks
->einfo
) ("%P: %s\n", msg
);
9588 if (! ((*info
->callbacks
->reloc_overflow
)
9589 (info
, NULL
, name
, howto
->name
, (bfd_vma
) 0,
9590 input_bfd
, input_section
, rel
->r_offset
)))
9598 case bfd_reloc_outofrange
:
9599 if (jal_reloc_p (howto
->type
))
9601 msg
= _("JALX to a non-word-aligned address");
9602 info
->callbacks
->warning
9603 (info
, msg
, name
, input_bfd
, input_section
, rel
->r_offset
);
9613 /* If we've got another relocation for the address, keep going
9614 until we reach the last one. */
9615 if (use_saved_addend_p
)
9621 if (r_type
== R_MIPS_64
&& ! NEWABI_P (output_bfd
))
9622 /* See the comment above about using R_MIPS_64 in the 32-bit
9623 ABI. Until now, we've been using the HOWTO for R_MIPS_32;
9624 that calculated the right value. Now, however, we
9625 sign-extend the 32-bit result to 64-bits, and store it as a
9626 64-bit value. We are especially generous here in that we
9627 go to extreme lengths to support this usage on systems with
9628 only a 32-bit VMA. */
9634 if (value
& ((bfd_vma
) 1 << 31))
9636 sign_bits
= ((bfd_vma
) 1 << 32) - 1;
9643 /* If we don't know that we have a 64-bit type,
9644 do two separate stores. */
9645 if (bfd_big_endian (input_bfd
))
9647 /* Undo what we did above. */
9649 /* Store the sign-bits (which are most significant)
9651 low_bits
= sign_bits
;
9657 high_bits
= sign_bits
;
9659 bfd_put_32 (input_bfd
, low_bits
,
9660 contents
+ rel
->r_offset
);
9661 bfd_put_32 (input_bfd
, high_bits
,
9662 contents
+ rel
->r_offset
+ 4);
9666 /* Actually perform the relocation. */
9667 if (! mips_elf_perform_relocation (info
, howto
, rel
, value
,
9668 input_bfd
, input_section
,
9669 contents
, cross_mode_jump_p
))
9676 /* A function that iterates over each entry in la25_stubs and fills
9677 in the code for each one. DATA points to a mips_htab_traverse_info. */
9680 mips_elf_create_la25_stub (void **slot
, void *data
)
9682 struct mips_htab_traverse_info
*hti
;
9683 struct mips_elf_link_hash_table
*htab
;
9684 struct mips_elf_la25_stub
*stub
;
9687 bfd_vma offset
, target
, target_high
, target_low
;
9689 stub
= (struct mips_elf_la25_stub
*) *slot
;
9690 hti
= (struct mips_htab_traverse_info
*) data
;
9691 htab
= mips_elf_hash_table (hti
->info
);
9692 BFD_ASSERT (htab
!= NULL
);
9694 /* Create the section contents, if we haven't already. */
9695 s
= stub
->stub_section
;
9699 loc
= bfd_malloc (s
->size
);
9708 /* Work out where in the section this stub should go. */
9709 offset
= stub
->offset
;
9711 /* Work out the target address. */
9712 target
= mips_elf_get_la25_target (stub
, &s
);
9713 target
+= s
->output_section
->vma
+ s
->output_offset
;
9715 target_high
= ((target
+ 0x8000) >> 16) & 0xffff;
9716 target_low
= (target
& 0xffff);
9718 if (stub
->stub_section
!= htab
->strampoline
)
9720 /* This is a simple LUI/ADDIU stub. Zero out the beginning
9721 of the section and write the two instructions at the end. */
9722 memset (loc
, 0, offset
);
9724 if (ELF_ST_IS_MICROMIPS (stub
->h
->root
.other
))
9726 bfd_put_micromips_32 (hti
->output_bfd
,
9727 LA25_LUI_MICROMIPS (target_high
),
9729 bfd_put_micromips_32 (hti
->output_bfd
,
9730 LA25_ADDIU_MICROMIPS (target_low
),
9735 bfd_put_32 (hti
->output_bfd
, LA25_LUI (target_high
), loc
);
9736 bfd_put_32 (hti
->output_bfd
, LA25_ADDIU (target_low
), loc
+ 4);
9741 /* This is trampoline. */
9743 if (ELF_ST_IS_MICROMIPS (stub
->h
->root
.other
))
9745 bfd_put_micromips_32 (hti
->output_bfd
,
9746 LA25_LUI_MICROMIPS (target_high
), loc
);
9747 bfd_put_micromips_32 (hti
->output_bfd
,
9748 LA25_J_MICROMIPS (target
), loc
+ 4);
9749 bfd_put_micromips_32 (hti
->output_bfd
,
9750 LA25_ADDIU_MICROMIPS (target_low
), loc
+ 8);
9751 bfd_put_32 (hti
->output_bfd
, 0, loc
+ 12);
9755 bfd_put_32 (hti
->output_bfd
, LA25_LUI (target_high
), loc
);
9756 bfd_put_32 (hti
->output_bfd
, LA25_J (target
), loc
+ 4);
9757 bfd_put_32 (hti
->output_bfd
, LA25_ADDIU (target_low
), loc
+ 8);
9758 bfd_put_32 (hti
->output_bfd
, 0, loc
+ 12);
9764 /* If NAME is one of the special IRIX6 symbols defined by the linker,
9765 adjust it appropriately now. */
9768 mips_elf_irix6_finish_dynamic_symbol (bfd
*abfd ATTRIBUTE_UNUSED
,
9769 const char *name
, Elf_Internal_Sym
*sym
)
9771 /* The linker script takes care of providing names and values for
9772 these, but we must place them into the right sections. */
9773 static const char* const text_section_symbols
[] = {
9776 "__dso_displacement",
9778 "__program_header_table",
9782 static const char* const data_section_symbols
[] = {
9790 const char* const *p
;
9793 for (i
= 0; i
< 2; ++i
)
9794 for (p
= (i
== 0) ? text_section_symbols
: data_section_symbols
;
9797 if (strcmp (*p
, name
) == 0)
9799 /* All of these symbols are given type STT_SECTION by the
9801 sym
->st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
9802 sym
->st_other
= STO_PROTECTED
;
9804 /* The IRIX linker puts these symbols in special sections. */
9806 sym
->st_shndx
= SHN_MIPS_TEXT
;
9808 sym
->st_shndx
= SHN_MIPS_DATA
;
9814 /* Finish up dynamic symbol handling. We set the contents of various
9815 dynamic sections here. */
9818 _bfd_mips_elf_finish_dynamic_symbol (bfd
*output_bfd
,
9819 struct bfd_link_info
*info
,
9820 struct elf_link_hash_entry
*h
,
9821 Elf_Internal_Sym
*sym
)
9825 struct mips_got_info
*g
, *gg
;
9828 struct mips_elf_link_hash_table
*htab
;
9829 struct mips_elf_link_hash_entry
*hmips
;
9831 htab
= mips_elf_hash_table (info
);
9832 BFD_ASSERT (htab
!= NULL
);
9833 dynobj
= elf_hash_table (info
)->dynobj
;
9834 hmips
= (struct mips_elf_link_hash_entry
*) h
;
9836 BFD_ASSERT (!htab
->is_vxworks
);
9838 if (h
->plt
.offset
!= MINUS_ONE
&& hmips
->no_fn_stub
)
9840 /* We've decided to create a PLT entry for this symbol. */
9842 bfd_vma header_address
, plt_index
, got_address
;
9843 bfd_vma got_address_high
, got_address_low
, load
;
9844 const bfd_vma
*plt_entry
;
9846 BFD_ASSERT (htab
->use_plts_and_copy_relocs
);
9847 BFD_ASSERT (h
->dynindx
!= -1);
9848 BFD_ASSERT (htab
->splt
!= NULL
);
9849 BFD_ASSERT (h
->plt
.offset
<= htab
->splt
->size
);
9850 BFD_ASSERT (!h
->def_regular
);
9852 /* Calculate the address of the PLT header. */
9853 header_address
= (htab
->splt
->output_section
->vma
9854 + htab
->splt
->output_offset
);
9856 /* Calculate the index of the entry. */
9857 plt_index
= ((h
->plt
.offset
- htab
->plt_header_size
)
9858 / htab
->plt_entry_size
);
9860 /* Calculate the address of the .got.plt entry. */
9861 got_address
= (htab
->sgotplt
->output_section
->vma
9862 + htab
->sgotplt
->output_offset
9863 + (2 + plt_index
) * MIPS_ELF_GOT_SIZE (dynobj
));
9864 got_address_high
= ((got_address
+ 0x8000) >> 16) & 0xffff;
9865 got_address_low
= got_address
& 0xffff;
9867 /* Initially point the .got.plt entry at the PLT header. */
9868 loc
= (htab
->sgotplt
->contents
9869 + (2 + plt_index
) * MIPS_ELF_GOT_SIZE (dynobj
));
9870 if (ABI_64_P (output_bfd
))
9871 bfd_put_64 (output_bfd
, header_address
, loc
);
9873 bfd_put_32 (output_bfd
, header_address
, loc
);
9875 /* Find out where the .plt entry should go. */
9876 loc
= htab
->splt
->contents
+ h
->plt
.offset
;
9878 /* Pick the load opcode. */
9879 load
= MIPS_ELF_LOAD_WORD (output_bfd
);
9881 /* Fill in the PLT entry itself. */
9882 plt_entry
= mips_exec_plt_entry
;
9883 bfd_put_32 (output_bfd
, plt_entry
[0] | got_address_high
, loc
);
9884 bfd_put_32 (output_bfd
, plt_entry
[1] | got_address_low
| load
, loc
+ 4);
9886 if (! LOAD_INTERLOCKS_P (output_bfd
))
9888 bfd_put_32 (output_bfd
, plt_entry
[2] | got_address_low
, loc
+ 8);
9889 bfd_put_32 (output_bfd
, plt_entry
[3], loc
+ 12);
9893 bfd_put_32 (output_bfd
, plt_entry
[3], loc
+ 8);
9894 bfd_put_32 (output_bfd
, plt_entry
[2] | got_address_low
, loc
+ 12);
9897 /* Emit an R_MIPS_JUMP_SLOT relocation against the .got.plt entry. */
9898 mips_elf_output_dynamic_relocation (output_bfd
, htab
->srelplt
,
9899 plt_index
, h
->dynindx
,
9900 R_MIPS_JUMP_SLOT
, got_address
);
9902 /* We distinguish between PLT entries and lazy-binding stubs by
9903 giving the former an st_other value of STO_MIPS_PLT. Set the
9904 flag and leave the value if there are any relocations in the
9905 binary where pointer equality matters. */
9906 sym
->st_shndx
= SHN_UNDEF
;
9907 if (h
->pointer_equality_needed
)
9908 sym
->st_other
= STO_MIPS_PLT
;
9912 else if (h
->plt
.offset
!= MINUS_ONE
)
9914 /* We've decided to create a lazy-binding stub. */
9915 bfd_byte stub
[MIPS_FUNCTION_STUB_BIG_SIZE
];
9917 /* This symbol has a stub. Set it up. */
9919 BFD_ASSERT (h
->dynindx
!= -1);
9921 BFD_ASSERT ((htab
->function_stub_size
== MIPS_FUNCTION_STUB_BIG_SIZE
)
9922 || (h
->dynindx
<= 0xffff));
9924 /* Values up to 2^31 - 1 are allowed. Larger values would cause
9925 sign extension at runtime in the stub, resulting in a negative
9927 if (h
->dynindx
& ~0x7fffffff)
9930 /* Fill the stub. */
9932 bfd_put_32 (output_bfd
, STUB_LW (output_bfd
), stub
+ idx
);
9934 bfd_put_32 (output_bfd
, STUB_MOVE (output_bfd
), stub
+ idx
);
9936 if (htab
->function_stub_size
== MIPS_FUNCTION_STUB_BIG_SIZE
)
9938 bfd_put_32 (output_bfd
, STUB_LUI ((h
->dynindx
>> 16) & 0x7fff),
9942 bfd_put_32 (output_bfd
, STUB_JALR
, stub
+ idx
);
9945 /* If a large stub is not required and sign extension is not a
9946 problem, then use legacy code in the stub. */
9947 if (htab
->function_stub_size
== MIPS_FUNCTION_STUB_BIG_SIZE
)
9948 bfd_put_32 (output_bfd
, STUB_ORI (h
->dynindx
& 0xffff), stub
+ idx
);
9949 else if (h
->dynindx
& ~0x7fff)
9950 bfd_put_32 (output_bfd
, STUB_LI16U (h
->dynindx
& 0xffff), stub
+ idx
);
9952 bfd_put_32 (output_bfd
, STUB_LI16S (output_bfd
, h
->dynindx
),
9955 BFD_ASSERT (h
->plt
.offset
<= htab
->sstubs
->size
);
9956 memcpy (htab
->sstubs
->contents
+ h
->plt
.offset
,
9957 stub
, htab
->function_stub_size
);
9959 /* Mark the symbol as undefined. plt.offset != -1 occurs
9960 only for the referenced symbol. */
9961 sym
->st_shndx
= SHN_UNDEF
;
9963 /* The run-time linker uses the st_value field of the symbol
9964 to reset the global offset table entry for this external
9965 to its stub address when unlinking a shared object. */
9966 sym
->st_value
= (htab
->sstubs
->output_section
->vma
9967 + htab
->sstubs
->output_offset
9971 /* If we have a MIPS16 function with a stub, the dynamic symbol must
9972 refer to the stub, since only the stub uses the standard calling
9974 if (h
->dynindx
!= -1 && hmips
->fn_stub
!= NULL
)
9976 BFD_ASSERT (hmips
->need_fn_stub
);
9977 sym
->st_value
= (hmips
->fn_stub
->output_section
->vma
9978 + hmips
->fn_stub
->output_offset
);
9979 sym
->st_size
= hmips
->fn_stub
->size
;
9980 sym
->st_other
= ELF_ST_VISIBILITY (sym
->st_other
);
9983 BFD_ASSERT (h
->dynindx
!= -1
9984 || h
->forced_local
);
9988 BFD_ASSERT (g
!= NULL
);
9990 /* Run through the global symbol table, creating GOT entries for all
9991 the symbols that need them. */
9992 if (hmips
->global_got_area
!= GGA_NONE
)
9997 value
= sym
->st_value
;
9998 offset
= mips_elf_primary_global_got_index (output_bfd
, info
, h
);
9999 MIPS_ELF_PUT_WORD (output_bfd
, value
, sgot
->contents
+ offset
);
10002 if (hmips
->global_got_area
!= GGA_NONE
&& g
->next
)
10004 struct mips_got_entry e
, *p
;
10010 e
.abfd
= output_bfd
;
10013 e
.tls_type
= GOT_TLS_NONE
;
10015 for (g
= g
->next
; g
->next
!= gg
; g
= g
->next
)
10018 && (p
= (struct mips_got_entry
*) htab_find (g
->got_entries
,
10021 offset
= p
->gotidx
;
10022 BFD_ASSERT (offset
> 0 && offset
< htab
->sgot
->size
);
10024 || (elf_hash_table (info
)->dynamic_sections_created
10026 && p
->d
.h
->root
.def_dynamic
10027 && !p
->d
.h
->root
.def_regular
))
10029 /* Create an R_MIPS_REL32 relocation for this entry. Due to
10030 the various compatibility problems, it's easier to mock
10031 up an R_MIPS_32 or R_MIPS_64 relocation and leave
10032 mips_elf_create_dynamic_relocation to calculate the
10033 appropriate addend. */
10034 Elf_Internal_Rela rel
[3];
10036 memset (rel
, 0, sizeof (rel
));
10037 if (ABI_64_P (output_bfd
))
10038 rel
[0].r_info
= ELF_R_INFO (output_bfd
, 0, R_MIPS_64
);
10040 rel
[0].r_info
= ELF_R_INFO (output_bfd
, 0, R_MIPS_32
);
10041 rel
[0].r_offset
= rel
[1].r_offset
= rel
[2].r_offset
= offset
;
10044 if (! (mips_elf_create_dynamic_relocation
10045 (output_bfd
, info
, rel
,
10046 e
.d
.h
, NULL
, sym
->st_value
, &entry
, sgot
)))
10050 entry
= sym
->st_value
;
10051 MIPS_ELF_PUT_WORD (output_bfd
, entry
, sgot
->contents
+ offset
);
10056 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
10057 name
= h
->root
.root
.string
;
10058 if (h
== elf_hash_table (info
)->hdynamic
10059 || h
== elf_hash_table (info
)->hgot
)
10060 sym
->st_shndx
= SHN_ABS
;
10061 else if (strcmp (name
, "_DYNAMIC_LINK") == 0
10062 || strcmp (name
, "_DYNAMIC_LINKING") == 0)
10064 sym
->st_shndx
= SHN_ABS
;
10065 sym
->st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
10068 else if (strcmp (name
, "_gp_disp") == 0 && ! NEWABI_P (output_bfd
))
10070 sym
->st_shndx
= SHN_ABS
;
10071 sym
->st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
10072 sym
->st_value
= elf_gp (output_bfd
);
10074 else if (SGI_COMPAT (output_bfd
))
10076 if (strcmp (name
, mips_elf_dynsym_rtproc_names
[0]) == 0
10077 || strcmp (name
, mips_elf_dynsym_rtproc_names
[1]) == 0)
10079 sym
->st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
10080 sym
->st_other
= STO_PROTECTED
;
10082 sym
->st_shndx
= SHN_MIPS_DATA
;
10084 else if (strcmp (name
, mips_elf_dynsym_rtproc_names
[2]) == 0)
10086 sym
->st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
10087 sym
->st_other
= STO_PROTECTED
;
10088 sym
->st_value
= mips_elf_hash_table (info
)->procedure_count
;
10089 sym
->st_shndx
= SHN_ABS
;
10091 else if (sym
->st_shndx
!= SHN_UNDEF
&& sym
->st_shndx
!= SHN_ABS
)
10093 if (h
->type
== STT_FUNC
)
10094 sym
->st_shndx
= SHN_MIPS_TEXT
;
10095 else if (h
->type
== STT_OBJECT
)
10096 sym
->st_shndx
= SHN_MIPS_DATA
;
10100 /* Emit a copy reloc, if needed. */
10106 BFD_ASSERT (h
->dynindx
!= -1);
10107 BFD_ASSERT (htab
->use_plts_and_copy_relocs
);
10109 s
= mips_elf_rel_dyn_section (info
, FALSE
);
10110 symval
= (h
->root
.u
.def
.section
->output_section
->vma
10111 + h
->root
.u
.def
.section
->output_offset
10112 + h
->root
.u
.def
.value
);
10113 mips_elf_output_dynamic_relocation (output_bfd
, s
, s
->reloc_count
++,
10114 h
->dynindx
, R_MIPS_COPY
, symval
);
10117 /* Handle the IRIX6-specific symbols. */
10118 if (IRIX_COMPAT (output_bfd
) == ict_irix6
)
10119 mips_elf_irix6_finish_dynamic_symbol (output_bfd
, name
, sym
);
10121 /* Keep dynamic compressed symbols odd. This allows the dynamic linker
10122 to treat compressed symbols like any other. */
10123 if (ELF_ST_IS_MIPS16 (sym
->st_other
))
10125 BFD_ASSERT (sym
->st_value
& 1);
10126 sym
->st_other
-= STO_MIPS16
;
10128 else if (ELF_ST_IS_MICROMIPS (sym
->st_other
))
10130 BFD_ASSERT (sym
->st_value
& 1);
10131 sym
->st_other
-= STO_MICROMIPS
;
10137 /* Likewise, for VxWorks. */
10140 _bfd_mips_vxworks_finish_dynamic_symbol (bfd
*output_bfd
,
10141 struct bfd_link_info
*info
,
10142 struct elf_link_hash_entry
*h
,
10143 Elf_Internal_Sym
*sym
)
10147 struct mips_got_info
*g
;
10148 struct mips_elf_link_hash_table
*htab
;
10149 struct mips_elf_link_hash_entry
*hmips
;
10151 htab
= mips_elf_hash_table (info
);
10152 BFD_ASSERT (htab
!= NULL
);
10153 dynobj
= elf_hash_table (info
)->dynobj
;
10154 hmips
= (struct mips_elf_link_hash_entry
*) h
;
10156 if (h
->plt
.offset
!= (bfd_vma
) -1)
10159 bfd_vma plt_address
, plt_index
, got_address
, got_offset
, branch_offset
;
10160 Elf_Internal_Rela rel
;
10161 static const bfd_vma
*plt_entry
;
10163 BFD_ASSERT (h
->dynindx
!= -1);
10164 BFD_ASSERT (htab
->splt
!= NULL
);
10165 BFD_ASSERT (h
->plt
.offset
<= htab
->splt
->size
);
10167 /* Calculate the address of the .plt entry. */
10168 plt_address
= (htab
->splt
->output_section
->vma
10169 + htab
->splt
->output_offset
10172 /* Calculate the index of the entry. */
10173 plt_index
= ((h
->plt
.offset
- htab
->plt_header_size
)
10174 / htab
->plt_entry_size
);
10176 /* Calculate the address of the .got.plt entry. */
10177 got_address
= (htab
->sgotplt
->output_section
->vma
10178 + htab
->sgotplt
->output_offset
10181 /* Calculate the offset of the .got.plt entry from
10182 _GLOBAL_OFFSET_TABLE_. */
10183 got_offset
= mips_elf_gotplt_index (info
, h
);
10185 /* Calculate the offset for the branch at the start of the PLT
10186 entry. The branch jumps to the beginning of .plt. */
10187 branch_offset
= -(h
->plt
.offset
/ 4 + 1) & 0xffff;
10189 /* Fill in the initial value of the .got.plt entry. */
10190 bfd_put_32 (output_bfd
, plt_address
,
10191 htab
->sgotplt
->contents
+ plt_index
* 4);
10193 /* Find out where the .plt entry should go. */
10194 loc
= htab
->splt
->contents
+ h
->plt
.offset
;
10198 plt_entry
= mips_vxworks_shared_plt_entry
;
10199 bfd_put_32 (output_bfd
, plt_entry
[0] | branch_offset
, loc
);
10200 bfd_put_32 (output_bfd
, plt_entry
[1] | plt_index
, loc
+ 4);
10204 bfd_vma got_address_high
, got_address_low
;
10206 plt_entry
= mips_vxworks_exec_plt_entry
;
10207 got_address_high
= ((got_address
+ 0x8000) >> 16) & 0xffff;
10208 got_address_low
= got_address
& 0xffff;
10210 bfd_put_32 (output_bfd
, plt_entry
[0] | branch_offset
, loc
);
10211 bfd_put_32 (output_bfd
, plt_entry
[1] | plt_index
, loc
+ 4);
10212 bfd_put_32 (output_bfd
, plt_entry
[2] | got_address_high
, loc
+ 8);
10213 bfd_put_32 (output_bfd
, plt_entry
[3] | got_address_low
, loc
+ 12);
10214 bfd_put_32 (output_bfd
, plt_entry
[4], loc
+ 16);
10215 bfd_put_32 (output_bfd
, plt_entry
[5], loc
+ 20);
10216 bfd_put_32 (output_bfd
, plt_entry
[6], loc
+ 24);
10217 bfd_put_32 (output_bfd
, plt_entry
[7], loc
+ 28);
10219 loc
= (htab
->srelplt2
->contents
10220 + (plt_index
* 3 + 2) * sizeof (Elf32_External_Rela
));
10222 /* Emit a relocation for the .got.plt entry. */
10223 rel
.r_offset
= got_address
;
10224 rel
.r_info
= ELF32_R_INFO (htab
->root
.hplt
->indx
, R_MIPS_32
);
10225 rel
.r_addend
= h
->plt
.offset
;
10226 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
10228 /* Emit a relocation for the lui of %hi(<.got.plt slot>). */
10229 loc
+= sizeof (Elf32_External_Rela
);
10230 rel
.r_offset
= plt_address
+ 8;
10231 rel
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_HI16
);
10232 rel
.r_addend
= got_offset
;
10233 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
10235 /* Emit a relocation for the addiu of %lo(<.got.plt slot>). */
10236 loc
+= sizeof (Elf32_External_Rela
);
10238 rel
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_LO16
);
10239 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
10242 /* Emit an R_MIPS_JUMP_SLOT relocation against the .got.plt entry. */
10243 loc
= htab
->srelplt
->contents
+ plt_index
* sizeof (Elf32_External_Rela
);
10244 rel
.r_offset
= got_address
;
10245 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MIPS_JUMP_SLOT
);
10247 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
10249 if (!h
->def_regular
)
10250 sym
->st_shndx
= SHN_UNDEF
;
10253 BFD_ASSERT (h
->dynindx
!= -1 || h
->forced_local
);
10256 g
= htab
->got_info
;
10257 BFD_ASSERT (g
!= NULL
);
10259 /* See if this symbol has an entry in the GOT. */
10260 if (hmips
->global_got_area
!= GGA_NONE
)
10263 Elf_Internal_Rela outrel
;
10267 /* Install the symbol value in the GOT. */
10268 offset
= mips_elf_primary_global_got_index (output_bfd
, info
, h
);
10269 MIPS_ELF_PUT_WORD (output_bfd
, sym
->st_value
, sgot
->contents
+ offset
);
10271 /* Add a dynamic relocation for it. */
10272 s
= mips_elf_rel_dyn_section (info
, FALSE
);
10273 loc
= s
->contents
+ (s
->reloc_count
++ * sizeof (Elf32_External_Rela
));
10274 outrel
.r_offset
= (sgot
->output_section
->vma
10275 + sgot
->output_offset
10277 outrel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MIPS_32
);
10278 outrel
.r_addend
= 0;
10279 bfd_elf32_swap_reloca_out (dynobj
, &outrel
, loc
);
10282 /* Emit a copy reloc, if needed. */
10285 Elf_Internal_Rela rel
;
10287 BFD_ASSERT (h
->dynindx
!= -1);
10289 rel
.r_offset
= (h
->root
.u
.def
.section
->output_section
->vma
10290 + h
->root
.u
.def
.section
->output_offset
10291 + h
->root
.u
.def
.value
);
10292 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MIPS_COPY
);
10294 bfd_elf32_swap_reloca_out (output_bfd
, &rel
,
10295 htab
->srelbss
->contents
10296 + (htab
->srelbss
->reloc_count
10297 * sizeof (Elf32_External_Rela
)));
10298 ++htab
->srelbss
->reloc_count
;
10301 /* If this is a mips16/microMIPS symbol, force the value to be even. */
10302 if (ELF_ST_IS_COMPRESSED (sym
->st_other
))
10303 sym
->st_value
&= ~1;
10308 /* Write out a plt0 entry to the beginning of .plt. */
10311 mips_finish_exec_plt (bfd
*output_bfd
, struct bfd_link_info
*info
)
10314 bfd_vma gotplt_value
, gotplt_value_high
, gotplt_value_low
;
10315 static const bfd_vma
*plt_entry
;
10316 struct mips_elf_link_hash_table
*htab
;
10318 htab
= mips_elf_hash_table (info
);
10319 BFD_ASSERT (htab
!= NULL
);
10321 if (ABI_64_P (output_bfd
))
10322 plt_entry
= mips_n64_exec_plt0_entry
;
10323 else if (ABI_N32_P (output_bfd
))
10324 plt_entry
= mips_n32_exec_plt0_entry
;
10326 plt_entry
= mips_o32_exec_plt0_entry
;
10328 /* Calculate the value of .got.plt. */
10329 gotplt_value
= (htab
->sgotplt
->output_section
->vma
10330 + htab
->sgotplt
->output_offset
);
10331 gotplt_value_high
= ((gotplt_value
+ 0x8000) >> 16) & 0xffff;
10332 gotplt_value_low
= gotplt_value
& 0xffff;
10334 /* The PLT sequence is not safe for N64 if .got.plt's address can
10335 not be loaded in two instructions. */
10336 BFD_ASSERT ((gotplt_value
& ~(bfd_vma
) 0x7fffffff) == 0
10337 || ~(gotplt_value
| 0x7fffffff) == 0);
10339 /* Install the PLT header. */
10340 loc
= htab
->splt
->contents
;
10341 bfd_put_32 (output_bfd
, plt_entry
[0] | gotplt_value_high
, loc
);
10342 bfd_put_32 (output_bfd
, plt_entry
[1] | gotplt_value_low
, loc
+ 4);
10343 bfd_put_32 (output_bfd
, plt_entry
[2] | gotplt_value_low
, loc
+ 8);
10344 bfd_put_32 (output_bfd
, plt_entry
[3], loc
+ 12);
10345 bfd_put_32 (output_bfd
, plt_entry
[4], loc
+ 16);
10346 bfd_put_32 (output_bfd
, plt_entry
[5], loc
+ 20);
10347 bfd_put_32 (output_bfd
, plt_entry
[6], loc
+ 24);
10348 bfd_put_32 (output_bfd
, plt_entry
[7], loc
+ 28);
10351 /* Install the PLT header for a VxWorks executable and finalize the
10352 contents of .rela.plt.unloaded. */
10355 mips_vxworks_finish_exec_plt (bfd
*output_bfd
, struct bfd_link_info
*info
)
10357 Elf_Internal_Rela rela
;
10359 bfd_vma got_value
, got_value_high
, got_value_low
, plt_address
;
10360 static const bfd_vma
*plt_entry
;
10361 struct mips_elf_link_hash_table
*htab
;
10363 htab
= mips_elf_hash_table (info
);
10364 BFD_ASSERT (htab
!= NULL
);
10366 plt_entry
= mips_vxworks_exec_plt0_entry
;
10368 /* Calculate the value of _GLOBAL_OFFSET_TABLE_. */
10369 got_value
= (htab
->root
.hgot
->root
.u
.def
.section
->output_section
->vma
10370 + htab
->root
.hgot
->root
.u
.def
.section
->output_offset
10371 + htab
->root
.hgot
->root
.u
.def
.value
);
10373 got_value_high
= ((got_value
+ 0x8000) >> 16) & 0xffff;
10374 got_value_low
= got_value
& 0xffff;
10376 /* Calculate the address of the PLT header. */
10377 plt_address
= htab
->splt
->output_section
->vma
+ htab
->splt
->output_offset
;
10379 /* Install the PLT header. */
10380 loc
= htab
->splt
->contents
;
10381 bfd_put_32 (output_bfd
, plt_entry
[0] | got_value_high
, loc
);
10382 bfd_put_32 (output_bfd
, plt_entry
[1] | got_value_low
, loc
+ 4);
10383 bfd_put_32 (output_bfd
, plt_entry
[2], loc
+ 8);
10384 bfd_put_32 (output_bfd
, plt_entry
[3], loc
+ 12);
10385 bfd_put_32 (output_bfd
, plt_entry
[4], loc
+ 16);
10386 bfd_put_32 (output_bfd
, plt_entry
[5], loc
+ 20);
10388 /* Output the relocation for the lui of %hi(_GLOBAL_OFFSET_TABLE_). */
10389 loc
= htab
->srelplt2
->contents
;
10390 rela
.r_offset
= plt_address
;
10391 rela
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_HI16
);
10393 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
10394 loc
+= sizeof (Elf32_External_Rela
);
10396 /* Output the relocation for the following addiu of
10397 %lo(_GLOBAL_OFFSET_TABLE_). */
10398 rela
.r_offset
+= 4;
10399 rela
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_LO16
);
10400 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
10401 loc
+= sizeof (Elf32_External_Rela
);
10403 /* Fix up the remaining relocations. They may have the wrong
10404 symbol index for _G_O_T_ or _P_L_T_ depending on the order
10405 in which symbols were output. */
10406 while (loc
< htab
->srelplt2
->contents
+ htab
->srelplt2
->size
)
10408 Elf_Internal_Rela rel
;
10410 bfd_elf32_swap_reloca_in (output_bfd
, loc
, &rel
);
10411 rel
.r_info
= ELF32_R_INFO (htab
->root
.hplt
->indx
, R_MIPS_32
);
10412 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
10413 loc
+= sizeof (Elf32_External_Rela
);
10415 bfd_elf32_swap_reloca_in (output_bfd
, loc
, &rel
);
10416 rel
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_HI16
);
10417 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
10418 loc
+= sizeof (Elf32_External_Rela
);
10420 bfd_elf32_swap_reloca_in (output_bfd
, loc
, &rel
);
10421 rel
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_LO16
);
10422 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
10423 loc
+= sizeof (Elf32_External_Rela
);
10427 /* Install the PLT header for a VxWorks shared library. */
10430 mips_vxworks_finish_shared_plt (bfd
*output_bfd
, struct bfd_link_info
*info
)
10433 struct mips_elf_link_hash_table
*htab
;
10435 htab
= mips_elf_hash_table (info
);
10436 BFD_ASSERT (htab
!= NULL
);
10438 /* We just need to copy the entry byte-by-byte. */
10439 for (i
= 0; i
< ARRAY_SIZE (mips_vxworks_shared_plt0_entry
); i
++)
10440 bfd_put_32 (output_bfd
, mips_vxworks_shared_plt0_entry
[i
],
10441 htab
->splt
->contents
+ i
* 4);
10444 /* Finish up the dynamic sections. */
10447 _bfd_mips_elf_finish_dynamic_sections (bfd
*output_bfd
,
10448 struct bfd_link_info
*info
)
10453 struct mips_got_info
*gg
, *g
;
10454 struct mips_elf_link_hash_table
*htab
;
10456 htab
= mips_elf_hash_table (info
);
10457 BFD_ASSERT (htab
!= NULL
);
10459 dynobj
= elf_hash_table (info
)->dynobj
;
10461 sdyn
= bfd_get_linker_section (dynobj
, ".dynamic");
10464 gg
= htab
->got_info
;
10466 if (elf_hash_table (info
)->dynamic_sections_created
)
10469 int dyn_to_skip
= 0, dyn_skipped
= 0;
10471 BFD_ASSERT (sdyn
!= NULL
);
10472 BFD_ASSERT (gg
!= NULL
);
10474 g
= mips_elf_bfd_got (output_bfd
, FALSE
);
10475 BFD_ASSERT (g
!= NULL
);
10477 for (b
= sdyn
->contents
;
10478 b
< sdyn
->contents
+ sdyn
->size
;
10479 b
+= MIPS_ELF_DYN_SIZE (dynobj
))
10481 Elf_Internal_Dyn dyn
;
10485 bfd_boolean swap_out_p
;
10487 /* Read in the current dynamic entry. */
10488 (*get_elf_backend_data (dynobj
)->s
->swap_dyn_in
) (dynobj
, b
, &dyn
);
10490 /* Assume that we're going to modify it and write it out. */
10496 dyn
.d_un
.d_val
= MIPS_ELF_REL_SIZE (dynobj
);
10500 BFD_ASSERT (htab
->is_vxworks
);
10501 dyn
.d_un
.d_val
= MIPS_ELF_RELA_SIZE (dynobj
);
10505 /* Rewrite DT_STRSZ. */
10507 _bfd_elf_strtab_size (elf_hash_table (info
)->dynstr
);
10512 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
;
10515 case DT_MIPS_PLTGOT
:
10517 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
;
10520 case DT_MIPS_RLD_VERSION
:
10521 dyn
.d_un
.d_val
= 1; /* XXX */
10524 case DT_MIPS_FLAGS
:
10525 dyn
.d_un
.d_val
= RHF_NOTPOT
; /* XXX */
10528 case DT_MIPS_TIME_STAMP
:
10532 dyn
.d_un
.d_val
= t
;
10536 case DT_MIPS_ICHECKSUM
:
10538 swap_out_p
= FALSE
;
10541 case DT_MIPS_IVERSION
:
10543 swap_out_p
= FALSE
;
10546 case DT_MIPS_BASE_ADDRESS
:
10547 s
= output_bfd
->sections
;
10548 BFD_ASSERT (s
!= NULL
);
10549 dyn
.d_un
.d_ptr
= s
->vma
& ~(bfd_vma
) 0xffff;
10552 case DT_MIPS_LOCAL_GOTNO
:
10553 dyn
.d_un
.d_val
= g
->local_gotno
;
10556 case DT_MIPS_UNREFEXTNO
:
10557 /* The index into the dynamic symbol table which is the
10558 entry of the first external symbol that is not
10559 referenced within the same object. */
10560 dyn
.d_un
.d_val
= bfd_count_sections (output_bfd
) + 1;
10563 case DT_MIPS_GOTSYM
:
10564 if (htab
->global_gotsym
)
10566 dyn
.d_un
.d_val
= htab
->global_gotsym
->dynindx
;
10569 /* In case if we don't have global got symbols we default
10570 to setting DT_MIPS_GOTSYM to the same value as
10571 DT_MIPS_SYMTABNO, so we just fall through. */
10573 case DT_MIPS_SYMTABNO
:
10575 elemsize
= MIPS_ELF_SYM_SIZE (output_bfd
);
10576 s
= bfd_get_section_by_name (output_bfd
, name
);
10577 BFD_ASSERT (s
!= NULL
);
10579 dyn
.d_un
.d_val
= s
->size
/ elemsize
;
10582 case DT_MIPS_HIPAGENO
:
10583 dyn
.d_un
.d_val
= g
->local_gotno
- htab
->reserved_gotno
;
10586 case DT_MIPS_RLD_MAP
:
10588 struct elf_link_hash_entry
*h
;
10589 h
= mips_elf_hash_table (info
)->rld_symbol
;
10592 dyn_to_skip
= MIPS_ELF_DYN_SIZE (dynobj
);
10593 swap_out_p
= FALSE
;
10596 s
= h
->root
.u
.def
.section
;
10597 dyn
.d_un
.d_ptr
= (s
->output_section
->vma
+ s
->output_offset
10598 + h
->root
.u
.def
.value
);
10602 case DT_MIPS_OPTIONS
:
10603 s
= (bfd_get_section_by_name
10604 (output_bfd
, MIPS_ELF_OPTIONS_SECTION_NAME (output_bfd
)));
10605 dyn
.d_un
.d_ptr
= s
->vma
;
10609 BFD_ASSERT (htab
->is_vxworks
);
10610 /* The count does not include the JUMP_SLOT relocations. */
10612 dyn
.d_un
.d_val
-= htab
->srelplt
->size
;
10616 BFD_ASSERT (htab
->use_plts_and_copy_relocs
);
10617 if (htab
->is_vxworks
)
10618 dyn
.d_un
.d_val
= DT_RELA
;
10620 dyn
.d_un
.d_val
= DT_REL
;
10624 BFD_ASSERT (htab
->use_plts_and_copy_relocs
);
10625 dyn
.d_un
.d_val
= htab
->srelplt
->size
;
10629 BFD_ASSERT (htab
->use_plts_and_copy_relocs
);
10630 dyn
.d_un
.d_ptr
= (htab
->srelplt
->output_section
->vma
10631 + htab
->srelplt
->output_offset
);
10635 /* If we didn't need any text relocations after all, delete
10636 the dynamic tag. */
10637 if (!(info
->flags
& DF_TEXTREL
))
10639 dyn_to_skip
= MIPS_ELF_DYN_SIZE (dynobj
);
10640 swap_out_p
= FALSE
;
10645 /* If we didn't need any text relocations after all, clear
10646 DF_TEXTREL from DT_FLAGS. */
10647 if (!(info
->flags
& DF_TEXTREL
))
10648 dyn
.d_un
.d_val
&= ~DF_TEXTREL
;
10650 swap_out_p
= FALSE
;
10654 swap_out_p
= FALSE
;
10655 if (htab
->is_vxworks
10656 && elf_vxworks_finish_dynamic_entry (output_bfd
, &dyn
))
10661 if (swap_out_p
|| dyn_skipped
)
10662 (*get_elf_backend_data (dynobj
)->s
->swap_dyn_out
)
10663 (dynobj
, &dyn
, b
- dyn_skipped
);
10667 dyn_skipped
+= dyn_to_skip
;
10672 /* Wipe out any trailing entries if we shifted down a dynamic tag. */
10673 if (dyn_skipped
> 0)
10674 memset (b
- dyn_skipped
, 0, dyn_skipped
);
10677 if (sgot
!= NULL
&& sgot
->size
> 0
10678 && !bfd_is_abs_section (sgot
->output_section
))
10680 if (htab
->is_vxworks
)
10682 /* The first entry of the global offset table points to the
10683 ".dynamic" section. The second is initialized by the
10684 loader and contains the shared library identifier.
10685 The third is also initialized by the loader and points
10686 to the lazy resolution stub. */
10687 MIPS_ELF_PUT_WORD (output_bfd
,
10688 sdyn
->output_offset
+ sdyn
->output_section
->vma
,
10690 MIPS_ELF_PUT_WORD (output_bfd
, 0,
10691 sgot
->contents
+ MIPS_ELF_GOT_SIZE (output_bfd
));
10692 MIPS_ELF_PUT_WORD (output_bfd
, 0,
10694 + 2 * MIPS_ELF_GOT_SIZE (output_bfd
));
10698 /* The first entry of the global offset table will be filled at
10699 runtime. The second entry will be used by some runtime loaders.
10700 This isn't the case of IRIX rld. */
10701 MIPS_ELF_PUT_WORD (output_bfd
, (bfd_vma
) 0, sgot
->contents
);
10702 MIPS_ELF_PUT_WORD (output_bfd
, MIPS_ELF_GNU_GOT1_MASK (output_bfd
),
10703 sgot
->contents
+ MIPS_ELF_GOT_SIZE (output_bfd
));
10706 elf_section_data (sgot
->output_section
)->this_hdr
.sh_entsize
10707 = MIPS_ELF_GOT_SIZE (output_bfd
);
10710 /* Generate dynamic relocations for the non-primary gots. */
10711 if (gg
!= NULL
&& gg
->next
)
10713 Elf_Internal_Rela rel
[3];
10714 bfd_vma addend
= 0;
10716 memset (rel
, 0, sizeof (rel
));
10717 rel
[0].r_info
= ELF_R_INFO (output_bfd
, 0, R_MIPS_REL32
);
10719 for (g
= gg
->next
; g
->next
!= gg
; g
= g
->next
)
10721 bfd_vma got_index
= g
->next
->local_gotno
+ g
->next
->global_gotno
10722 + g
->next
->tls_gotno
;
10724 MIPS_ELF_PUT_WORD (output_bfd
, 0, sgot
->contents
10725 + got_index
++ * MIPS_ELF_GOT_SIZE (output_bfd
));
10726 MIPS_ELF_PUT_WORD (output_bfd
, MIPS_ELF_GNU_GOT1_MASK (output_bfd
),
10728 + got_index
++ * MIPS_ELF_GOT_SIZE (output_bfd
));
10730 if (! info
->shared
)
10733 while (got_index
< g
->assigned_gotno
)
10735 rel
[0].r_offset
= rel
[1].r_offset
= rel
[2].r_offset
10736 = got_index
++ * MIPS_ELF_GOT_SIZE (output_bfd
);
10737 if (!(mips_elf_create_dynamic_relocation
10738 (output_bfd
, info
, rel
, NULL
,
10739 bfd_abs_section_ptr
,
10740 0, &addend
, sgot
)))
10742 BFD_ASSERT (addend
== 0);
10747 /* The generation of dynamic relocations for the non-primary gots
10748 adds more dynamic relocations. We cannot count them until
10751 if (elf_hash_table (info
)->dynamic_sections_created
)
10754 bfd_boolean swap_out_p
;
10756 BFD_ASSERT (sdyn
!= NULL
);
10758 for (b
= sdyn
->contents
;
10759 b
< sdyn
->contents
+ sdyn
->size
;
10760 b
+= MIPS_ELF_DYN_SIZE (dynobj
))
10762 Elf_Internal_Dyn dyn
;
10765 /* Read in the current dynamic entry. */
10766 (*get_elf_backend_data (dynobj
)->s
->swap_dyn_in
) (dynobj
, b
, &dyn
);
10768 /* Assume that we're going to modify it and write it out. */
10774 /* Reduce DT_RELSZ to account for any relocations we
10775 decided not to make. This is for the n64 irix rld,
10776 which doesn't seem to apply any relocations if there
10777 are trailing null entries. */
10778 s
= mips_elf_rel_dyn_section (info
, FALSE
);
10779 dyn
.d_un
.d_val
= (s
->reloc_count
10780 * (ABI_64_P (output_bfd
)
10781 ? sizeof (Elf64_Mips_External_Rel
)
10782 : sizeof (Elf32_External_Rel
)));
10783 /* Adjust the section size too. Tools like the prelinker
10784 can reasonably expect the values to the same. */
10785 elf_section_data (s
->output_section
)->this_hdr
.sh_size
10790 swap_out_p
= FALSE
;
10795 (*get_elf_backend_data (dynobj
)->s
->swap_dyn_out
)
10802 Elf32_compact_rel cpt
;
10804 if (SGI_COMPAT (output_bfd
))
10806 /* Write .compact_rel section out. */
10807 s
= bfd_get_linker_section (dynobj
, ".compact_rel");
10811 cpt
.num
= s
->reloc_count
;
10813 cpt
.offset
= (s
->output_section
->filepos
10814 + sizeof (Elf32_External_compact_rel
));
10817 bfd_elf32_swap_compact_rel_out (output_bfd
, &cpt
,
10818 ((Elf32_External_compact_rel
*)
10821 /* Clean up a dummy stub function entry in .text. */
10822 if (htab
->sstubs
!= NULL
)
10824 file_ptr dummy_offset
;
10826 BFD_ASSERT (htab
->sstubs
->size
>= htab
->function_stub_size
);
10827 dummy_offset
= htab
->sstubs
->size
- htab
->function_stub_size
;
10828 memset (htab
->sstubs
->contents
+ dummy_offset
, 0,
10829 htab
->function_stub_size
);
10834 /* The psABI says that the dynamic relocations must be sorted in
10835 increasing order of r_symndx. The VxWorks EABI doesn't require
10836 this, and because the code below handles REL rather than RELA
10837 relocations, using it for VxWorks would be outright harmful. */
10838 if (!htab
->is_vxworks
)
10840 s
= mips_elf_rel_dyn_section (info
, FALSE
);
10842 && s
->size
> (bfd_vma
)2 * MIPS_ELF_REL_SIZE (output_bfd
))
10844 reldyn_sorting_bfd
= output_bfd
;
10846 if (ABI_64_P (output_bfd
))
10847 qsort ((Elf64_External_Rel
*) s
->contents
+ 1,
10848 s
->reloc_count
- 1, sizeof (Elf64_Mips_External_Rel
),
10849 sort_dynamic_relocs_64
);
10851 qsort ((Elf32_External_Rel
*) s
->contents
+ 1,
10852 s
->reloc_count
- 1, sizeof (Elf32_External_Rel
),
10853 sort_dynamic_relocs
);
10858 if (htab
->splt
&& htab
->splt
->size
> 0)
10860 if (htab
->is_vxworks
)
10863 mips_vxworks_finish_shared_plt (output_bfd
, info
);
10865 mips_vxworks_finish_exec_plt (output_bfd
, info
);
10869 BFD_ASSERT (!info
->shared
);
10870 mips_finish_exec_plt (output_bfd
, info
);
10877 /* Set ABFD's EF_MIPS_ARCH and EF_MIPS_MACH flags. */
10880 mips_set_isa_flags (bfd
*abfd
)
10884 switch (bfd_get_mach (abfd
))
10887 case bfd_mach_mips3000
:
10888 val
= E_MIPS_ARCH_1
;
10891 case bfd_mach_mips3900
:
10892 val
= E_MIPS_ARCH_1
| E_MIPS_MACH_3900
;
10895 case bfd_mach_mips6000
:
10896 val
= E_MIPS_ARCH_2
;
10899 case bfd_mach_mips4000
:
10900 case bfd_mach_mips4300
:
10901 case bfd_mach_mips4400
:
10902 case bfd_mach_mips4600
:
10903 val
= E_MIPS_ARCH_3
;
10906 case bfd_mach_mips4010
:
10907 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_4010
;
10910 case bfd_mach_mips4100
:
10911 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_4100
;
10914 case bfd_mach_mips4111
:
10915 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_4111
;
10918 case bfd_mach_mips4120
:
10919 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_4120
;
10922 case bfd_mach_mips4650
:
10923 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_4650
;
10926 case bfd_mach_mips5400
:
10927 val
= E_MIPS_ARCH_4
| E_MIPS_MACH_5400
;
10930 case bfd_mach_mips5500
:
10931 val
= E_MIPS_ARCH_4
| E_MIPS_MACH_5500
;
10934 case bfd_mach_mips5900
:
10935 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_5900
;
10938 case bfd_mach_mips9000
:
10939 val
= E_MIPS_ARCH_4
| E_MIPS_MACH_9000
;
10942 case bfd_mach_mips5000
:
10943 case bfd_mach_mips7000
:
10944 case bfd_mach_mips8000
:
10945 case bfd_mach_mips10000
:
10946 case bfd_mach_mips12000
:
10947 case bfd_mach_mips14000
:
10948 case bfd_mach_mips16000
:
10949 val
= E_MIPS_ARCH_4
;
10952 case bfd_mach_mips5
:
10953 val
= E_MIPS_ARCH_5
;
10956 case bfd_mach_mips_loongson_2e
:
10957 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_LS2E
;
10960 case bfd_mach_mips_loongson_2f
:
10961 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_LS2F
;
10964 case bfd_mach_mips_sb1
:
10965 val
= E_MIPS_ARCH_64
| E_MIPS_MACH_SB1
;
10968 case bfd_mach_mips_loongson_3a
:
10969 val
= E_MIPS_ARCH_64
| E_MIPS_MACH_LS3A
;
10972 case bfd_mach_mips_octeon
:
10973 case bfd_mach_mips_octeonp
:
10974 val
= E_MIPS_ARCH_64R2
| E_MIPS_MACH_OCTEON
;
10977 case bfd_mach_mips_xlr
:
10978 val
= E_MIPS_ARCH_64
| E_MIPS_MACH_XLR
;
10981 case bfd_mach_mips_octeon2
:
10982 val
= E_MIPS_ARCH_64R2
| E_MIPS_MACH_OCTEON2
;
10985 case bfd_mach_mipsisa32
:
10986 val
= E_MIPS_ARCH_32
;
10989 case bfd_mach_mipsisa64
:
10990 val
= E_MIPS_ARCH_64
;
10993 case bfd_mach_mipsisa32r2
:
10994 val
= E_MIPS_ARCH_32R2
;
10997 case bfd_mach_mipsisa64r2
:
10998 val
= E_MIPS_ARCH_64R2
;
11001 elf_elfheader (abfd
)->e_flags
&= ~(EF_MIPS_ARCH
| EF_MIPS_MACH
);
11002 elf_elfheader (abfd
)->e_flags
|= val
;
11007 /* The final processing done just before writing out a MIPS ELF object
11008 file. This gets the MIPS architecture right based on the machine
11009 number. This is used by both the 32-bit and the 64-bit ABI. */
11012 _bfd_mips_elf_final_write_processing (bfd
*abfd
,
11013 bfd_boolean linker ATTRIBUTE_UNUSED
)
11016 Elf_Internal_Shdr
**hdrpp
;
11020 /* Keep the existing EF_MIPS_MACH and EF_MIPS_ARCH flags if the former
11021 is nonzero. This is for compatibility with old objects, which used
11022 a combination of a 32-bit EF_MIPS_ARCH and a 64-bit EF_MIPS_MACH. */
11023 if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_MACH
) == 0)
11024 mips_set_isa_flags (abfd
);
11026 /* Set the sh_info field for .gptab sections and other appropriate
11027 info for each special section. */
11028 for (i
= 1, hdrpp
= elf_elfsections (abfd
) + 1;
11029 i
< elf_numsections (abfd
);
11032 switch ((*hdrpp
)->sh_type
)
11034 case SHT_MIPS_MSYM
:
11035 case SHT_MIPS_LIBLIST
:
11036 sec
= bfd_get_section_by_name (abfd
, ".dynstr");
11038 (*hdrpp
)->sh_link
= elf_section_data (sec
)->this_idx
;
11041 case SHT_MIPS_GPTAB
:
11042 BFD_ASSERT ((*hdrpp
)->bfd_section
!= NULL
);
11043 name
= bfd_get_section_name (abfd
, (*hdrpp
)->bfd_section
);
11044 BFD_ASSERT (name
!= NULL
11045 && CONST_STRNEQ (name
, ".gptab."));
11046 sec
= bfd_get_section_by_name (abfd
, name
+ sizeof ".gptab" - 1);
11047 BFD_ASSERT (sec
!= NULL
);
11048 (*hdrpp
)->sh_info
= elf_section_data (sec
)->this_idx
;
11051 case SHT_MIPS_CONTENT
:
11052 BFD_ASSERT ((*hdrpp
)->bfd_section
!= NULL
);
11053 name
= bfd_get_section_name (abfd
, (*hdrpp
)->bfd_section
);
11054 BFD_ASSERT (name
!= NULL
11055 && CONST_STRNEQ (name
, ".MIPS.content"));
11056 sec
= bfd_get_section_by_name (abfd
,
11057 name
+ sizeof ".MIPS.content" - 1);
11058 BFD_ASSERT (sec
!= NULL
);
11059 (*hdrpp
)->sh_link
= elf_section_data (sec
)->this_idx
;
11062 case SHT_MIPS_SYMBOL_LIB
:
11063 sec
= bfd_get_section_by_name (abfd
, ".dynsym");
11065 (*hdrpp
)->sh_link
= elf_section_data (sec
)->this_idx
;
11066 sec
= bfd_get_section_by_name (abfd
, ".liblist");
11068 (*hdrpp
)->sh_info
= elf_section_data (sec
)->this_idx
;
11071 case SHT_MIPS_EVENTS
:
11072 BFD_ASSERT ((*hdrpp
)->bfd_section
!= NULL
);
11073 name
= bfd_get_section_name (abfd
, (*hdrpp
)->bfd_section
);
11074 BFD_ASSERT (name
!= NULL
);
11075 if (CONST_STRNEQ (name
, ".MIPS.events"))
11076 sec
= bfd_get_section_by_name (abfd
,
11077 name
+ sizeof ".MIPS.events" - 1);
11080 BFD_ASSERT (CONST_STRNEQ (name
, ".MIPS.post_rel"));
11081 sec
= bfd_get_section_by_name (abfd
,
11083 + sizeof ".MIPS.post_rel" - 1));
11085 BFD_ASSERT (sec
!= NULL
);
11086 (*hdrpp
)->sh_link
= elf_section_data (sec
)->this_idx
;
11093 /* When creating an IRIX5 executable, we need REGINFO and RTPROC
11097 _bfd_mips_elf_additional_program_headers (bfd
*abfd
,
11098 struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
11103 /* See if we need a PT_MIPS_REGINFO segment. */
11104 s
= bfd_get_section_by_name (abfd
, ".reginfo");
11105 if (s
&& (s
->flags
& SEC_LOAD
))
11108 /* See if we need a PT_MIPS_OPTIONS segment. */
11109 if (IRIX_COMPAT (abfd
) == ict_irix6
11110 && bfd_get_section_by_name (abfd
,
11111 MIPS_ELF_OPTIONS_SECTION_NAME (abfd
)))
11114 /* See if we need a PT_MIPS_RTPROC segment. */
11115 if (IRIX_COMPAT (abfd
) == ict_irix5
11116 && bfd_get_section_by_name (abfd
, ".dynamic")
11117 && bfd_get_section_by_name (abfd
, ".mdebug"))
11120 /* Allocate a PT_NULL header in dynamic objects. See
11121 _bfd_mips_elf_modify_segment_map for details. */
11122 if (!SGI_COMPAT (abfd
)
11123 && bfd_get_section_by_name (abfd
, ".dynamic"))
11129 /* Modify the segment map for an IRIX5 executable. */
11132 _bfd_mips_elf_modify_segment_map (bfd
*abfd
,
11133 struct bfd_link_info
*info
)
11136 struct elf_segment_map
*m
, **pm
;
11139 /* If there is a .reginfo section, we need a PT_MIPS_REGINFO
11141 s
= bfd_get_section_by_name (abfd
, ".reginfo");
11142 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0)
11144 for (m
= elf_seg_map (abfd
); m
!= NULL
; m
= m
->next
)
11145 if (m
->p_type
== PT_MIPS_REGINFO
)
11150 m
= bfd_zalloc (abfd
, amt
);
11154 m
->p_type
= PT_MIPS_REGINFO
;
11156 m
->sections
[0] = s
;
11158 /* We want to put it after the PHDR and INTERP segments. */
11159 pm
= &elf_seg_map (abfd
);
11161 && ((*pm
)->p_type
== PT_PHDR
11162 || (*pm
)->p_type
== PT_INTERP
))
11170 /* For IRIX 6, we don't have .mdebug sections, nor does anything but
11171 .dynamic end up in PT_DYNAMIC. However, we do have to insert a
11172 PT_MIPS_OPTIONS segment immediately following the program header
11174 if (NEWABI_P (abfd
)
11175 /* On non-IRIX6 new abi, we'll have already created a segment
11176 for this section, so don't create another. I'm not sure this
11177 is not also the case for IRIX 6, but I can't test it right
11179 && IRIX_COMPAT (abfd
) == ict_irix6
)
11181 for (s
= abfd
->sections
; s
; s
= s
->next
)
11182 if (elf_section_data (s
)->this_hdr
.sh_type
== SHT_MIPS_OPTIONS
)
11187 struct elf_segment_map
*options_segment
;
11189 pm
= &elf_seg_map (abfd
);
11191 && ((*pm
)->p_type
== PT_PHDR
11192 || (*pm
)->p_type
== PT_INTERP
))
11195 if (*pm
== NULL
|| (*pm
)->p_type
!= PT_MIPS_OPTIONS
)
11197 amt
= sizeof (struct elf_segment_map
);
11198 options_segment
= bfd_zalloc (abfd
, amt
);
11199 options_segment
->next
= *pm
;
11200 options_segment
->p_type
= PT_MIPS_OPTIONS
;
11201 options_segment
->p_flags
= PF_R
;
11202 options_segment
->p_flags_valid
= TRUE
;
11203 options_segment
->count
= 1;
11204 options_segment
->sections
[0] = s
;
11205 *pm
= options_segment
;
11211 if (IRIX_COMPAT (abfd
) == ict_irix5
)
11213 /* If there are .dynamic and .mdebug sections, we make a room
11214 for the RTPROC header. FIXME: Rewrite without section names. */
11215 if (bfd_get_section_by_name (abfd
, ".interp") == NULL
11216 && bfd_get_section_by_name (abfd
, ".dynamic") != NULL
11217 && bfd_get_section_by_name (abfd
, ".mdebug") != NULL
)
11219 for (m
= elf_seg_map (abfd
); m
!= NULL
; m
= m
->next
)
11220 if (m
->p_type
== PT_MIPS_RTPROC
)
11225 m
= bfd_zalloc (abfd
, amt
);
11229 m
->p_type
= PT_MIPS_RTPROC
;
11231 s
= bfd_get_section_by_name (abfd
, ".rtproc");
11236 m
->p_flags_valid
= 1;
11241 m
->sections
[0] = s
;
11244 /* We want to put it after the DYNAMIC segment. */
11245 pm
= &elf_seg_map (abfd
);
11246 while (*pm
!= NULL
&& (*pm
)->p_type
!= PT_DYNAMIC
)
11256 /* On IRIX5, the PT_DYNAMIC segment includes the .dynamic,
11257 .dynstr, .dynsym, and .hash sections, and everything in
11259 for (pm
= &elf_seg_map (abfd
); *pm
!= NULL
;
11261 if ((*pm
)->p_type
== PT_DYNAMIC
)
11264 if (m
!= NULL
&& IRIX_COMPAT (abfd
) == ict_none
)
11266 /* For a normal mips executable the permissions for the PT_DYNAMIC
11267 segment are read, write and execute. We do that here since
11268 the code in elf.c sets only the read permission. This matters
11269 sometimes for the dynamic linker. */
11270 if (bfd_get_section_by_name (abfd
, ".dynamic") != NULL
)
11272 m
->p_flags
= PF_R
| PF_W
| PF_X
;
11273 m
->p_flags_valid
= 1;
11276 /* GNU/Linux binaries do not need the extended PT_DYNAMIC section.
11277 glibc's dynamic linker has traditionally derived the number of
11278 tags from the p_filesz field, and sometimes allocates stack
11279 arrays of that size. An overly-big PT_DYNAMIC segment can
11280 be actively harmful in such cases. Making PT_DYNAMIC contain
11281 other sections can also make life hard for the prelinker,
11282 which might move one of the other sections to a different
11283 PT_LOAD segment. */
11284 if (SGI_COMPAT (abfd
)
11287 && strcmp (m
->sections
[0]->name
, ".dynamic") == 0)
11289 static const char *sec_names
[] =
11291 ".dynamic", ".dynstr", ".dynsym", ".hash"
11295 struct elf_segment_map
*n
;
11297 low
= ~(bfd_vma
) 0;
11299 for (i
= 0; i
< sizeof sec_names
/ sizeof sec_names
[0]; i
++)
11301 s
= bfd_get_section_by_name (abfd
, sec_names
[i
]);
11302 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0)
11309 if (high
< s
->vma
+ sz
)
11310 high
= s
->vma
+ sz
;
11315 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
11316 if ((s
->flags
& SEC_LOAD
) != 0
11318 && s
->vma
+ s
->size
<= high
)
11321 amt
= sizeof *n
+ (bfd_size_type
) (c
- 1) * sizeof (asection
*);
11322 n
= bfd_zalloc (abfd
, amt
);
11329 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
11331 if ((s
->flags
& SEC_LOAD
) != 0
11333 && s
->vma
+ s
->size
<= high
)
11335 n
->sections
[i
] = s
;
11344 /* Allocate a spare program header in dynamic objects so that tools
11345 like the prelinker can add an extra PT_LOAD entry.
11347 If the prelinker needs to make room for a new PT_LOAD entry, its
11348 standard procedure is to move the first (read-only) sections into
11349 the new (writable) segment. However, the MIPS ABI requires
11350 .dynamic to be in a read-only segment, and the section will often
11351 start within sizeof (ElfNN_Phdr) bytes of the last program header.
11353 Although the prelinker could in principle move .dynamic to a
11354 writable segment, it seems better to allocate a spare program
11355 header instead, and avoid the need to move any sections.
11356 There is a long tradition of allocating spare dynamic tags,
11357 so allocating a spare program header seems like a natural
11360 If INFO is NULL, we may be copying an already prelinked binary
11361 with objcopy or strip, so do not add this header. */
11363 && !SGI_COMPAT (abfd
)
11364 && bfd_get_section_by_name (abfd
, ".dynamic"))
11366 for (pm
= &elf_seg_map (abfd
); *pm
!= NULL
; pm
= &(*pm
)->next
)
11367 if ((*pm
)->p_type
== PT_NULL
)
11371 m
= bfd_zalloc (abfd
, sizeof (*m
));
11375 m
->p_type
= PT_NULL
;
11383 /* Return the section that should be marked against GC for a given
11387 _bfd_mips_elf_gc_mark_hook (asection
*sec
,
11388 struct bfd_link_info
*info
,
11389 Elf_Internal_Rela
*rel
,
11390 struct elf_link_hash_entry
*h
,
11391 Elf_Internal_Sym
*sym
)
11393 /* ??? Do mips16 stub sections need to be handled special? */
11396 switch (ELF_R_TYPE (sec
->owner
, rel
->r_info
))
11398 case R_MIPS_GNU_VTINHERIT
:
11399 case R_MIPS_GNU_VTENTRY
:
11403 return _bfd_elf_gc_mark_hook (sec
, info
, rel
, h
, sym
);
11406 /* Update the got entry reference counts for the section being removed. */
11409 _bfd_mips_elf_gc_sweep_hook (bfd
*abfd ATTRIBUTE_UNUSED
,
11410 struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
11411 asection
*sec ATTRIBUTE_UNUSED
,
11412 const Elf_Internal_Rela
*relocs ATTRIBUTE_UNUSED
)
11415 Elf_Internal_Shdr
*symtab_hdr
;
11416 struct elf_link_hash_entry
**sym_hashes
;
11417 bfd_signed_vma
*local_got_refcounts
;
11418 const Elf_Internal_Rela
*rel
, *relend
;
11419 unsigned long r_symndx
;
11420 struct elf_link_hash_entry
*h
;
11422 if (info
->relocatable
)
11425 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
11426 sym_hashes
= elf_sym_hashes (abfd
);
11427 local_got_refcounts
= elf_local_got_refcounts (abfd
);
11429 relend
= relocs
+ sec
->reloc_count
;
11430 for (rel
= relocs
; rel
< relend
; rel
++)
11431 switch (ELF_R_TYPE (abfd
, rel
->r_info
))
11433 case R_MIPS16_GOT16
:
11434 case R_MIPS16_CALL16
:
11436 case R_MIPS_CALL16
:
11437 case R_MIPS_CALL_HI16
:
11438 case R_MIPS_CALL_LO16
:
11439 case R_MIPS_GOT_HI16
:
11440 case R_MIPS_GOT_LO16
:
11441 case R_MIPS_GOT_DISP
:
11442 case R_MIPS_GOT_PAGE
:
11443 case R_MIPS_GOT_OFST
:
11444 case R_MICROMIPS_GOT16
:
11445 case R_MICROMIPS_CALL16
:
11446 case R_MICROMIPS_CALL_HI16
:
11447 case R_MICROMIPS_CALL_LO16
:
11448 case R_MICROMIPS_GOT_HI16
:
11449 case R_MICROMIPS_GOT_LO16
:
11450 case R_MICROMIPS_GOT_DISP
:
11451 case R_MICROMIPS_GOT_PAGE
:
11452 case R_MICROMIPS_GOT_OFST
:
11453 /* ??? It would seem that the existing MIPS code does no sort
11454 of reference counting or whatnot on its GOT and PLT entries,
11455 so it is not possible to garbage collect them at this time. */
11466 /* Copy data from a MIPS ELF indirect symbol to its direct symbol,
11467 hiding the old indirect symbol. Process additional relocation
11468 information. Also called for weakdefs, in which case we just let
11469 _bfd_elf_link_hash_copy_indirect copy the flags for us. */
11472 _bfd_mips_elf_copy_indirect_symbol (struct bfd_link_info
*info
,
11473 struct elf_link_hash_entry
*dir
,
11474 struct elf_link_hash_entry
*ind
)
11476 struct mips_elf_link_hash_entry
*dirmips
, *indmips
;
11478 _bfd_elf_link_hash_copy_indirect (info
, dir
, ind
);
11480 dirmips
= (struct mips_elf_link_hash_entry
*) dir
;
11481 indmips
= (struct mips_elf_link_hash_entry
*) ind
;
11482 /* Any absolute non-dynamic relocations against an indirect or weak
11483 definition will be against the target symbol. */
11484 if (indmips
->has_static_relocs
)
11485 dirmips
->has_static_relocs
= TRUE
;
11487 if (ind
->root
.type
!= bfd_link_hash_indirect
)
11490 dirmips
->possibly_dynamic_relocs
+= indmips
->possibly_dynamic_relocs
;
11491 if (indmips
->readonly_reloc
)
11492 dirmips
->readonly_reloc
= TRUE
;
11493 if (indmips
->no_fn_stub
)
11494 dirmips
->no_fn_stub
= TRUE
;
11495 if (indmips
->fn_stub
)
11497 dirmips
->fn_stub
= indmips
->fn_stub
;
11498 indmips
->fn_stub
= NULL
;
11500 if (indmips
->need_fn_stub
)
11502 dirmips
->need_fn_stub
= TRUE
;
11503 indmips
->need_fn_stub
= FALSE
;
11505 if (indmips
->call_stub
)
11507 dirmips
->call_stub
= indmips
->call_stub
;
11508 indmips
->call_stub
= NULL
;
11510 if (indmips
->call_fp_stub
)
11512 dirmips
->call_fp_stub
= indmips
->call_fp_stub
;
11513 indmips
->call_fp_stub
= NULL
;
11515 if (indmips
->global_got_area
< dirmips
->global_got_area
)
11516 dirmips
->global_got_area
= indmips
->global_got_area
;
11517 if (indmips
->global_got_area
< GGA_NONE
)
11518 indmips
->global_got_area
= GGA_NONE
;
11519 if (indmips
->has_nonpic_branches
)
11520 dirmips
->has_nonpic_branches
= TRUE
;
11523 #define PDR_SIZE 32
11526 _bfd_mips_elf_discard_info (bfd
*abfd
, struct elf_reloc_cookie
*cookie
,
11527 struct bfd_link_info
*info
)
11530 bfd_boolean ret
= FALSE
;
11531 unsigned char *tdata
;
11534 o
= bfd_get_section_by_name (abfd
, ".pdr");
11539 if (o
->size
% PDR_SIZE
!= 0)
11541 if (o
->output_section
!= NULL
11542 && bfd_is_abs_section (o
->output_section
))
11545 tdata
= bfd_zmalloc (o
->size
/ PDR_SIZE
);
11549 cookie
->rels
= _bfd_elf_link_read_relocs (abfd
, o
, NULL
, NULL
,
11550 info
->keep_memory
);
11557 cookie
->rel
= cookie
->rels
;
11558 cookie
->relend
= cookie
->rels
+ o
->reloc_count
;
11560 for (i
= 0, skip
= 0; i
< o
->size
/ PDR_SIZE
; i
++)
11562 if (bfd_elf_reloc_symbol_deleted_p (i
* PDR_SIZE
, cookie
))
11571 mips_elf_section_data (o
)->u
.tdata
= tdata
;
11572 o
->size
-= skip
* PDR_SIZE
;
11578 if (! info
->keep_memory
)
11579 free (cookie
->rels
);
11585 _bfd_mips_elf_ignore_discarded_relocs (asection
*sec
)
11587 if (strcmp (sec
->name
, ".pdr") == 0)
11593 _bfd_mips_elf_write_section (bfd
*output_bfd
,
11594 struct bfd_link_info
*link_info ATTRIBUTE_UNUSED
,
11595 asection
*sec
, bfd_byte
*contents
)
11597 bfd_byte
*to
, *from
, *end
;
11600 if (strcmp (sec
->name
, ".pdr") != 0)
11603 if (mips_elf_section_data (sec
)->u
.tdata
== NULL
)
11607 end
= contents
+ sec
->size
;
11608 for (from
= contents
, i
= 0;
11610 from
+= PDR_SIZE
, i
++)
11612 if ((mips_elf_section_data (sec
)->u
.tdata
)[i
] == 1)
11615 memcpy (to
, from
, PDR_SIZE
);
11618 bfd_set_section_contents (output_bfd
, sec
->output_section
, contents
,
11619 sec
->output_offset
, sec
->size
);
11623 /* microMIPS code retains local labels for linker relaxation. Omit them
11624 from output by default for clarity. */
11627 _bfd_mips_elf_is_target_special_symbol (bfd
*abfd
, asymbol
*sym
)
11629 return _bfd_elf_is_local_label_name (abfd
, sym
->name
);
11632 /* MIPS ELF uses a special find_nearest_line routine in order the
11633 handle the ECOFF debugging information. */
11635 struct mips_elf_find_line
11637 struct ecoff_debug_info d
;
11638 struct ecoff_find_line i
;
11642 _bfd_mips_elf_find_nearest_line (bfd
*abfd
, asection
*section
,
11643 asymbol
**symbols
, bfd_vma offset
,
11644 const char **filename_ptr
,
11645 const char **functionname_ptr
,
11646 unsigned int *line_ptr
)
11650 if (_bfd_dwarf1_find_nearest_line (abfd
, section
, symbols
, offset
,
11651 filename_ptr
, functionname_ptr
,
11655 if (_bfd_dwarf2_find_nearest_line (abfd
, dwarf_debug_sections
,
11656 section
, symbols
, offset
,
11657 filename_ptr
, functionname_ptr
,
11658 line_ptr
, NULL
, ABI_64_P (abfd
) ? 8 : 0,
11659 &elf_tdata (abfd
)->dwarf2_find_line_info
))
11662 msec
= bfd_get_section_by_name (abfd
, ".mdebug");
11665 flagword origflags
;
11666 struct mips_elf_find_line
*fi
;
11667 const struct ecoff_debug_swap
* const swap
=
11668 get_elf_backend_data (abfd
)->elf_backend_ecoff_debug_swap
;
11670 /* If we are called during a link, mips_elf_final_link may have
11671 cleared the SEC_HAS_CONTENTS field. We force it back on here
11672 if appropriate (which it normally will be). */
11673 origflags
= msec
->flags
;
11674 if (elf_section_data (msec
)->this_hdr
.sh_type
!= SHT_NOBITS
)
11675 msec
->flags
|= SEC_HAS_CONTENTS
;
11677 fi
= mips_elf_tdata (abfd
)->find_line_info
;
11680 bfd_size_type external_fdr_size
;
11683 struct fdr
*fdr_ptr
;
11684 bfd_size_type amt
= sizeof (struct mips_elf_find_line
);
11686 fi
= bfd_zalloc (abfd
, amt
);
11689 msec
->flags
= origflags
;
11693 if (! _bfd_mips_elf_read_ecoff_info (abfd
, msec
, &fi
->d
))
11695 msec
->flags
= origflags
;
11699 /* Swap in the FDR information. */
11700 amt
= fi
->d
.symbolic_header
.ifdMax
* sizeof (struct fdr
);
11701 fi
->d
.fdr
= bfd_alloc (abfd
, amt
);
11702 if (fi
->d
.fdr
== NULL
)
11704 msec
->flags
= origflags
;
11707 external_fdr_size
= swap
->external_fdr_size
;
11708 fdr_ptr
= fi
->d
.fdr
;
11709 fraw_src
= (char *) fi
->d
.external_fdr
;
11710 fraw_end
= (fraw_src
11711 + fi
->d
.symbolic_header
.ifdMax
* external_fdr_size
);
11712 for (; fraw_src
< fraw_end
; fraw_src
+= external_fdr_size
, fdr_ptr
++)
11713 (*swap
->swap_fdr_in
) (abfd
, fraw_src
, fdr_ptr
);
11715 mips_elf_tdata (abfd
)->find_line_info
= fi
;
11717 /* Note that we don't bother to ever free this information.
11718 find_nearest_line is either called all the time, as in
11719 objdump -l, so the information should be saved, or it is
11720 rarely called, as in ld error messages, so the memory
11721 wasted is unimportant. Still, it would probably be a
11722 good idea for free_cached_info to throw it away. */
11725 if (_bfd_ecoff_locate_line (abfd
, section
, offset
, &fi
->d
, swap
,
11726 &fi
->i
, filename_ptr
, functionname_ptr
,
11729 msec
->flags
= origflags
;
11733 msec
->flags
= origflags
;
11736 /* Fall back on the generic ELF find_nearest_line routine. */
11738 return _bfd_elf_find_nearest_line (abfd
, section
, symbols
, offset
,
11739 filename_ptr
, functionname_ptr
,
11744 _bfd_mips_elf_find_inliner_info (bfd
*abfd
,
11745 const char **filename_ptr
,
11746 const char **functionname_ptr
,
11747 unsigned int *line_ptr
)
11750 found
= _bfd_dwarf2_find_inliner_info (abfd
, filename_ptr
,
11751 functionname_ptr
, line_ptr
,
11752 & elf_tdata (abfd
)->dwarf2_find_line_info
);
11757 /* When are writing out the .options or .MIPS.options section,
11758 remember the bytes we are writing out, so that we can install the
11759 GP value in the section_processing routine. */
11762 _bfd_mips_elf_set_section_contents (bfd
*abfd
, sec_ptr section
,
11763 const void *location
,
11764 file_ptr offset
, bfd_size_type count
)
11766 if (MIPS_ELF_OPTIONS_SECTION_NAME_P (section
->name
))
11770 if (elf_section_data (section
) == NULL
)
11772 bfd_size_type amt
= sizeof (struct bfd_elf_section_data
);
11773 section
->used_by_bfd
= bfd_zalloc (abfd
, amt
);
11774 if (elf_section_data (section
) == NULL
)
11777 c
= mips_elf_section_data (section
)->u
.tdata
;
11780 c
= bfd_zalloc (abfd
, section
->size
);
11783 mips_elf_section_data (section
)->u
.tdata
= c
;
11786 memcpy (c
+ offset
, location
, count
);
11789 return _bfd_elf_set_section_contents (abfd
, section
, location
, offset
,
11793 /* This is almost identical to bfd_generic_get_... except that some
11794 MIPS relocations need to be handled specially. Sigh. */
11797 _bfd_elf_mips_get_relocated_section_contents
11799 struct bfd_link_info
*link_info
,
11800 struct bfd_link_order
*link_order
,
11802 bfd_boolean relocatable
,
11805 /* Get enough memory to hold the stuff */
11806 bfd
*input_bfd
= link_order
->u
.indirect
.section
->owner
;
11807 asection
*input_section
= link_order
->u
.indirect
.section
;
11810 long reloc_size
= bfd_get_reloc_upper_bound (input_bfd
, input_section
);
11811 arelent
**reloc_vector
= NULL
;
11814 if (reloc_size
< 0)
11817 reloc_vector
= bfd_malloc (reloc_size
);
11818 if (reloc_vector
== NULL
&& reloc_size
!= 0)
11821 /* read in the section */
11822 sz
= input_section
->rawsize
? input_section
->rawsize
: input_section
->size
;
11823 if (!bfd_get_section_contents (input_bfd
, input_section
, data
, 0, sz
))
11826 reloc_count
= bfd_canonicalize_reloc (input_bfd
,
11830 if (reloc_count
< 0)
11833 if (reloc_count
> 0)
11838 bfd_vma gp
= 0x12345678; /* initialize just to shut gcc up */
11841 struct bfd_hash_entry
*h
;
11842 struct bfd_link_hash_entry
*lh
;
11843 /* Skip all this stuff if we aren't mixing formats. */
11844 if (abfd
&& input_bfd
11845 && abfd
->xvec
== input_bfd
->xvec
)
11849 h
= bfd_hash_lookup (&link_info
->hash
->table
, "_gp", FALSE
, FALSE
);
11850 lh
= (struct bfd_link_hash_entry
*) h
;
11857 case bfd_link_hash_undefined
:
11858 case bfd_link_hash_undefweak
:
11859 case bfd_link_hash_common
:
11862 case bfd_link_hash_defined
:
11863 case bfd_link_hash_defweak
:
11865 gp
= lh
->u
.def
.value
;
11867 case bfd_link_hash_indirect
:
11868 case bfd_link_hash_warning
:
11870 /* @@FIXME ignoring warning for now */
11872 case bfd_link_hash_new
:
11881 for (parent
= reloc_vector
; *parent
!= NULL
; parent
++)
11883 char *error_message
= NULL
;
11884 bfd_reloc_status_type r
;
11886 /* Specific to MIPS: Deal with relocation types that require
11887 knowing the gp of the output bfd. */
11888 asymbol
*sym
= *(*parent
)->sym_ptr_ptr
;
11890 /* If we've managed to find the gp and have a special
11891 function for the relocation then go ahead, else default
11892 to the generic handling. */
11894 && (*parent
)->howto
->special_function
11895 == _bfd_mips_elf32_gprel16_reloc
)
11896 r
= _bfd_mips_elf_gprel16_with_gp (input_bfd
, sym
, *parent
,
11897 input_section
, relocatable
,
11900 r
= bfd_perform_relocation (input_bfd
, *parent
, data
,
11902 relocatable
? abfd
: NULL
,
11907 asection
*os
= input_section
->output_section
;
11909 /* A partial link, so keep the relocs */
11910 os
->orelocation
[os
->reloc_count
] = *parent
;
11914 if (r
!= bfd_reloc_ok
)
11918 case bfd_reloc_undefined
:
11919 if (!((*link_info
->callbacks
->undefined_symbol
)
11920 (link_info
, bfd_asymbol_name (*(*parent
)->sym_ptr_ptr
),
11921 input_bfd
, input_section
, (*parent
)->address
, TRUE
)))
11924 case bfd_reloc_dangerous
:
11925 BFD_ASSERT (error_message
!= NULL
);
11926 if (!((*link_info
->callbacks
->reloc_dangerous
)
11927 (link_info
, error_message
, input_bfd
, input_section
,
11928 (*parent
)->address
)))
11931 case bfd_reloc_overflow
:
11932 if (!((*link_info
->callbacks
->reloc_overflow
)
11934 bfd_asymbol_name (*(*parent
)->sym_ptr_ptr
),
11935 (*parent
)->howto
->name
, (*parent
)->addend
,
11936 input_bfd
, input_section
, (*parent
)->address
)))
11939 case bfd_reloc_outofrange
:
11948 if (reloc_vector
!= NULL
)
11949 free (reloc_vector
);
11953 if (reloc_vector
!= NULL
)
11954 free (reloc_vector
);
11959 mips_elf_relax_delete_bytes (bfd
*abfd
,
11960 asection
*sec
, bfd_vma addr
, int count
)
11962 Elf_Internal_Shdr
*symtab_hdr
;
11963 unsigned int sec_shndx
;
11964 bfd_byte
*contents
;
11965 Elf_Internal_Rela
*irel
, *irelend
;
11966 Elf_Internal_Sym
*isym
;
11967 Elf_Internal_Sym
*isymend
;
11968 struct elf_link_hash_entry
**sym_hashes
;
11969 struct elf_link_hash_entry
**end_hashes
;
11970 struct elf_link_hash_entry
**start_hashes
;
11971 unsigned int symcount
;
11973 sec_shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
11974 contents
= elf_section_data (sec
)->this_hdr
.contents
;
11976 irel
= elf_section_data (sec
)->relocs
;
11977 irelend
= irel
+ sec
->reloc_count
;
11979 /* Actually delete the bytes. */
11980 memmove (contents
+ addr
, contents
+ addr
+ count
,
11981 (size_t) (sec
->size
- addr
- count
));
11982 sec
->size
-= count
;
11984 /* Adjust all the relocs. */
11985 for (irel
= elf_section_data (sec
)->relocs
; irel
< irelend
; irel
++)
11987 /* Get the new reloc address. */
11988 if (irel
->r_offset
> addr
)
11989 irel
->r_offset
-= count
;
11992 BFD_ASSERT (addr
% 2 == 0);
11993 BFD_ASSERT (count
% 2 == 0);
11995 /* Adjust the local symbols defined in this section. */
11996 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
11997 isym
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
11998 for (isymend
= isym
+ symtab_hdr
->sh_info
; isym
< isymend
; isym
++)
11999 if (isym
->st_shndx
== sec_shndx
&& isym
->st_value
> addr
)
12000 isym
->st_value
-= count
;
12002 /* Now adjust the global symbols defined in this section. */
12003 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
12004 - symtab_hdr
->sh_info
);
12005 sym_hashes
= start_hashes
= elf_sym_hashes (abfd
);
12006 end_hashes
= sym_hashes
+ symcount
;
12008 for (; sym_hashes
< end_hashes
; sym_hashes
++)
12010 struct elf_link_hash_entry
*sym_hash
= *sym_hashes
;
12012 if ((sym_hash
->root
.type
== bfd_link_hash_defined
12013 || sym_hash
->root
.type
== bfd_link_hash_defweak
)
12014 && sym_hash
->root
.u
.def
.section
== sec
)
12016 bfd_vma value
= sym_hash
->root
.u
.def
.value
;
12018 if (ELF_ST_IS_MICROMIPS (sym_hash
->other
))
12019 value
&= MINUS_TWO
;
12021 sym_hash
->root
.u
.def
.value
-= count
;
12029 /* Opcodes needed for microMIPS relaxation as found in
12030 opcodes/micromips-opc.c. */
12032 struct opcode_descriptor
{
12033 unsigned long match
;
12034 unsigned long mask
;
12037 /* The $ra register aka $31. */
12041 /* 32-bit instruction format register fields. */
12043 #define OP32_SREG(opcode) (((opcode) >> 16) & 0x1f)
12044 #define OP32_TREG(opcode) (((opcode) >> 21) & 0x1f)
12046 /* Check if a 5-bit register index can be abbreviated to 3 bits. */
12048 #define OP16_VALID_REG(r) \
12049 ((2 <= (r) && (r) <= 7) || (16 <= (r) && (r) <= 17))
12052 /* 32-bit and 16-bit branches. */
12054 static const struct opcode_descriptor b_insns_32
[] = {
12055 { /* "b", "p", */ 0x40400000, 0xffff0000 }, /* bgez 0 */
12056 { /* "b", "p", */ 0x94000000, 0xffff0000 }, /* beq 0, 0 */
12057 { 0, 0 } /* End marker for find_match(). */
12060 static const struct opcode_descriptor bc_insn_32
=
12061 { /* "bc(1|2)(ft)", "N,p", */ 0x42800000, 0xfec30000 };
12063 static const struct opcode_descriptor bz_insn_32
=
12064 { /* "b(g|l)(e|t)z", "s,p", */ 0x40000000, 0xff200000 };
12066 static const struct opcode_descriptor bzal_insn_32
=
12067 { /* "b(ge|lt)zal", "s,p", */ 0x40200000, 0xffa00000 };
12069 static const struct opcode_descriptor beq_insn_32
=
12070 { /* "b(eq|ne)", "s,t,p", */ 0x94000000, 0xdc000000 };
12072 static const struct opcode_descriptor b_insn_16
=
12073 { /* "b", "mD", */ 0xcc00, 0xfc00 };
12075 static const struct opcode_descriptor bz_insn_16
=
12076 { /* "b(eq|ne)z", "md,mE", */ 0x8c00, 0xdc00 };
12079 /* 32-bit and 16-bit branch EQ and NE zero. */
12081 /* NOTE: All opcode tables have BEQ/BNE in the same order: first the
12082 eq and second the ne. This convention is used when replacing a
12083 32-bit BEQ/BNE with the 16-bit version. */
12085 #define BZC32_REG_FIELD(r) (((r) & 0x1f) << 16)
12087 static const struct opcode_descriptor bz_rs_insns_32
[] = {
12088 { /* "beqz", "s,p", */ 0x94000000, 0xffe00000 },
12089 { /* "bnez", "s,p", */ 0xb4000000, 0xffe00000 },
12090 { 0, 0 } /* End marker for find_match(). */
12093 static const struct opcode_descriptor bz_rt_insns_32
[] = {
12094 { /* "beqz", "t,p", */ 0x94000000, 0xfc01f000 },
12095 { /* "bnez", "t,p", */ 0xb4000000, 0xfc01f000 },
12096 { 0, 0 } /* End marker for find_match(). */
12099 static const struct opcode_descriptor bzc_insns_32
[] = {
12100 { /* "beqzc", "s,p", */ 0x40e00000, 0xffe00000 },
12101 { /* "bnezc", "s,p", */ 0x40a00000, 0xffe00000 },
12102 { 0, 0 } /* End marker for find_match(). */
12105 static const struct opcode_descriptor bz_insns_16
[] = {
12106 { /* "beqz", "md,mE", */ 0x8c00, 0xfc00 },
12107 { /* "bnez", "md,mE", */ 0xac00, 0xfc00 },
12108 { 0, 0 } /* End marker for find_match(). */
12111 /* Switch between a 5-bit register index and its 3-bit shorthand. */
12113 #define BZ16_REG(opcode) ((((((opcode) >> 7) & 7) + 0x1e) & 0x17) + 2)
12114 #define BZ16_REG_FIELD(r) \
12115 (((2 <= (r) && (r) <= 7) ? (r) : ((r) - 16)) << 7)
12118 /* 32-bit instructions with a delay slot. */
12120 static const struct opcode_descriptor jal_insn_32_bd16
=
12121 { /* "jals", "a", */ 0x74000000, 0xfc000000 };
12123 static const struct opcode_descriptor jal_insn_32_bd32
=
12124 { /* "jal", "a", */ 0xf4000000, 0xfc000000 };
12126 static const struct opcode_descriptor jal_x_insn_32_bd32
=
12127 { /* "jal[x]", "a", */ 0xf0000000, 0xf8000000 };
12129 static const struct opcode_descriptor j_insn_32
=
12130 { /* "j", "a", */ 0xd4000000, 0xfc000000 };
12132 static const struct opcode_descriptor jalr_insn_32
=
12133 { /* "jalr[.hb]", "t,s", */ 0x00000f3c, 0xfc00efff };
12135 /* This table can be compacted, because no opcode replacement is made. */
12137 static const struct opcode_descriptor ds_insns_32_bd16
[] = {
12138 { /* "jals", "a", */ 0x74000000, 0xfc000000 },
12140 { /* "jalrs[.hb]", "t,s", */ 0x00004f3c, 0xfc00efff },
12141 { /* "b(ge|lt)zals", "s,p", */ 0x42200000, 0xffa00000 },
12143 { /* "b(g|l)(e|t)z", "s,p", */ 0x40000000, 0xff200000 },
12144 { /* "b(eq|ne)", "s,t,p", */ 0x94000000, 0xdc000000 },
12145 { /* "j", "a", */ 0xd4000000, 0xfc000000 },
12146 { 0, 0 } /* End marker for find_match(). */
12149 /* This table can be compacted, because no opcode replacement is made. */
12151 static const struct opcode_descriptor ds_insns_32_bd32
[] = {
12152 { /* "jal[x]", "a", */ 0xf0000000, 0xf8000000 },
12154 { /* "jalr[.hb]", "t,s", */ 0x00000f3c, 0xfc00efff },
12155 { /* "b(ge|lt)zal", "s,p", */ 0x40200000, 0xffa00000 },
12156 { 0, 0 } /* End marker for find_match(). */
12160 /* 16-bit instructions with a delay slot. */
12162 static const struct opcode_descriptor jalr_insn_16_bd16
=
12163 { /* "jalrs", "my,mj", */ 0x45e0, 0xffe0 };
12165 static const struct opcode_descriptor jalr_insn_16_bd32
=
12166 { /* "jalr", "my,mj", */ 0x45c0, 0xffe0 };
12168 static const struct opcode_descriptor jr_insn_16
=
12169 { /* "jr", "mj", */ 0x4580, 0xffe0 };
12171 #define JR16_REG(opcode) ((opcode) & 0x1f)
12173 /* This table can be compacted, because no opcode replacement is made. */
12175 static const struct opcode_descriptor ds_insns_16_bd16
[] = {
12176 { /* "jalrs", "my,mj", */ 0x45e0, 0xffe0 },
12178 { /* "b", "mD", */ 0xcc00, 0xfc00 },
12179 { /* "b(eq|ne)z", "md,mE", */ 0x8c00, 0xdc00 },
12180 { /* "jr", "mj", */ 0x4580, 0xffe0 },
12181 { 0, 0 } /* End marker for find_match(). */
12185 /* LUI instruction. */
12187 static const struct opcode_descriptor lui_insn
=
12188 { /* "lui", "s,u", */ 0x41a00000, 0xffe00000 };
12191 /* ADDIU instruction. */
12193 static const struct opcode_descriptor addiu_insn
=
12194 { /* "addiu", "t,r,j", */ 0x30000000, 0xfc000000 };
12196 static const struct opcode_descriptor addiupc_insn
=
12197 { /* "addiu", "mb,$pc,mQ", */ 0x78000000, 0xfc000000 };
12199 #define ADDIUPC_REG_FIELD(r) \
12200 (((2 <= (r) && (r) <= 7) ? (r) : ((r) - 16)) << 23)
12203 /* Relaxable instructions in a JAL delay slot: MOVE. */
12205 /* The 16-bit move has rd in 9:5 and rs in 4:0. The 32-bit moves
12206 (ADDU, OR) have rd in 15:11 and rs in 10:16. */
12207 #define MOVE32_RD(opcode) (((opcode) >> 11) & 0x1f)
12208 #define MOVE32_RS(opcode) (((opcode) >> 16) & 0x1f)
12210 #define MOVE16_RD_FIELD(r) (((r) & 0x1f) << 5)
12211 #define MOVE16_RS_FIELD(r) (((r) & 0x1f) )
12213 static const struct opcode_descriptor move_insns_32
[] = {
12214 { /* "move", "d,s", */ 0x00000150, 0xffe007ff }, /* addu d,s,$0 */
12215 { /* "move", "d,s", */ 0x00000290, 0xffe007ff }, /* or d,s,$0 */
12216 { 0, 0 } /* End marker for find_match(). */
12219 static const struct opcode_descriptor move_insn_16
=
12220 { /* "move", "mp,mj", */ 0x0c00, 0xfc00 };
12223 /* NOP instructions. */
12225 static const struct opcode_descriptor nop_insn_32
=
12226 { /* "nop", "", */ 0x00000000, 0xffffffff };
12228 static const struct opcode_descriptor nop_insn_16
=
12229 { /* "nop", "", */ 0x0c00, 0xffff };
12232 /* Instruction match support. */
12234 #define MATCH(opcode, insn) ((opcode & insn.mask) == insn.match)
12237 find_match (unsigned long opcode
, const struct opcode_descriptor insn
[])
12239 unsigned long indx
;
12241 for (indx
= 0; insn
[indx
].mask
!= 0; indx
++)
12242 if (MATCH (opcode
, insn
[indx
]))
12249 /* Branch and delay slot decoding support. */
12251 /* If PTR points to what *might* be a 16-bit branch or jump, then
12252 return the minimum length of its delay slot, otherwise return 0.
12253 Non-zero results are not definitive as we might be checking against
12254 the second half of another instruction. */
12257 check_br16_dslot (bfd
*abfd
, bfd_byte
*ptr
)
12259 unsigned long opcode
;
12262 opcode
= bfd_get_16 (abfd
, ptr
);
12263 if (MATCH (opcode
, jalr_insn_16_bd32
) != 0)
12264 /* 16-bit branch/jump with a 32-bit delay slot. */
12266 else if (MATCH (opcode
, jalr_insn_16_bd16
) != 0
12267 || find_match (opcode
, ds_insns_16_bd16
) >= 0)
12268 /* 16-bit branch/jump with a 16-bit delay slot. */
12271 /* No delay slot. */
12277 /* If PTR points to what *might* be a 32-bit branch or jump, then
12278 return the minimum length of its delay slot, otherwise return 0.
12279 Non-zero results are not definitive as we might be checking against
12280 the second half of another instruction. */
12283 check_br32_dslot (bfd
*abfd
, bfd_byte
*ptr
)
12285 unsigned long opcode
;
12288 opcode
= bfd_get_micromips_32 (abfd
, ptr
);
12289 if (find_match (opcode
, ds_insns_32_bd32
) >= 0)
12290 /* 32-bit branch/jump with a 32-bit delay slot. */
12292 else if (find_match (opcode
, ds_insns_32_bd16
) >= 0)
12293 /* 32-bit branch/jump with a 16-bit delay slot. */
12296 /* No delay slot. */
12302 /* If PTR points to a 16-bit branch or jump with a 32-bit delay slot
12303 that doesn't fiddle with REG, then return TRUE, otherwise FALSE. */
12306 check_br16 (bfd
*abfd
, bfd_byte
*ptr
, unsigned long reg
)
12308 unsigned long opcode
;
12310 opcode
= bfd_get_16 (abfd
, ptr
);
12311 if (MATCH (opcode
, b_insn_16
)
12313 || (MATCH (opcode
, jr_insn_16
) && reg
!= JR16_REG (opcode
))
12315 || (MATCH (opcode
, bz_insn_16
) && reg
!= BZ16_REG (opcode
))
12316 /* BEQZ16, BNEZ16 */
12317 || (MATCH (opcode
, jalr_insn_16_bd32
)
12319 && reg
!= JR16_REG (opcode
) && reg
!= RA
))
12325 /* If PTR points to a 32-bit branch or jump that doesn't fiddle with REG,
12326 then return TRUE, otherwise FALSE. */
12329 check_br32 (bfd
*abfd
, bfd_byte
*ptr
, unsigned long reg
)
12331 unsigned long opcode
;
12333 opcode
= bfd_get_micromips_32 (abfd
, ptr
);
12334 if (MATCH (opcode
, j_insn_32
)
12336 || MATCH (opcode
, bc_insn_32
)
12337 /* BC1F, BC1T, BC2F, BC2T */
12338 || (MATCH (opcode
, jal_x_insn_32_bd32
) && reg
!= RA
)
12340 || (MATCH (opcode
, bz_insn_32
) && reg
!= OP32_SREG (opcode
))
12341 /* BGEZ, BGTZ, BLEZ, BLTZ */
12342 || (MATCH (opcode
, bzal_insn_32
)
12343 /* BGEZAL, BLTZAL */
12344 && reg
!= OP32_SREG (opcode
) && reg
!= RA
)
12345 || ((MATCH (opcode
, jalr_insn_32
) || MATCH (opcode
, beq_insn_32
))
12346 /* JALR, JALR.HB, BEQ, BNE */
12347 && reg
!= OP32_SREG (opcode
) && reg
!= OP32_TREG (opcode
)))
12353 /* If the instruction encoding at PTR and relocations [INTERNAL_RELOCS,
12354 IRELEND) at OFFSET indicate that there must be a compact branch there,
12355 then return TRUE, otherwise FALSE. */
12358 check_relocated_bzc (bfd
*abfd
, const bfd_byte
*ptr
, bfd_vma offset
,
12359 const Elf_Internal_Rela
*internal_relocs
,
12360 const Elf_Internal_Rela
*irelend
)
12362 const Elf_Internal_Rela
*irel
;
12363 unsigned long opcode
;
12365 opcode
= bfd_get_micromips_32 (abfd
, ptr
);
12366 if (find_match (opcode
, bzc_insns_32
) < 0)
12369 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
12370 if (irel
->r_offset
== offset
12371 && ELF32_R_TYPE (irel
->r_info
) == R_MICROMIPS_PC16_S1
)
12377 /* Bitsize checking. */
12378 #define IS_BITSIZE(val, N) \
12379 (((((val) & ((1ULL << (N)) - 1)) ^ (1ULL << ((N) - 1))) \
12380 - (1ULL << ((N) - 1))) == (val))
12384 _bfd_mips_elf_relax_section (bfd
*abfd
, asection
*sec
,
12385 struct bfd_link_info
*link_info
,
12386 bfd_boolean
*again
)
12388 Elf_Internal_Shdr
*symtab_hdr
;
12389 Elf_Internal_Rela
*internal_relocs
;
12390 Elf_Internal_Rela
*irel
, *irelend
;
12391 bfd_byte
*contents
= NULL
;
12392 Elf_Internal_Sym
*isymbuf
= NULL
;
12394 /* Assume nothing changes. */
12397 /* We don't have to do anything for a relocatable link, if
12398 this section does not have relocs, or if this is not a
12401 if (link_info
->relocatable
12402 || (sec
->flags
& SEC_RELOC
) == 0
12403 || sec
->reloc_count
== 0
12404 || (sec
->flags
& SEC_CODE
) == 0)
12407 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
12409 /* Get a copy of the native relocations. */
12410 internal_relocs
= (_bfd_elf_link_read_relocs
12411 (abfd
, sec
, NULL
, (Elf_Internal_Rela
*) NULL
,
12412 link_info
->keep_memory
));
12413 if (internal_relocs
== NULL
)
12416 /* Walk through them looking for relaxing opportunities. */
12417 irelend
= internal_relocs
+ sec
->reloc_count
;
12418 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
12420 unsigned long r_symndx
= ELF32_R_SYM (irel
->r_info
);
12421 unsigned int r_type
= ELF32_R_TYPE (irel
->r_info
);
12422 bfd_boolean target_is_micromips_code_p
;
12423 unsigned long opcode
;
12429 /* The number of bytes to delete for relaxation and from where
12430 to delete these bytes starting at irel->r_offset. */
12434 /* If this isn't something that can be relaxed, then ignore
12436 if (r_type
!= R_MICROMIPS_HI16
12437 && r_type
!= R_MICROMIPS_PC16_S1
12438 && r_type
!= R_MICROMIPS_26_S1
)
12441 /* Get the section contents if we haven't done so already. */
12442 if (contents
== NULL
)
12444 /* Get cached copy if it exists. */
12445 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
12446 contents
= elf_section_data (sec
)->this_hdr
.contents
;
12447 /* Go get them off disk. */
12448 else if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
12451 ptr
= contents
+ irel
->r_offset
;
12453 /* Read this BFD's local symbols if we haven't done so already. */
12454 if (isymbuf
== NULL
&& symtab_hdr
->sh_info
!= 0)
12456 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
12457 if (isymbuf
== NULL
)
12458 isymbuf
= bfd_elf_get_elf_syms (abfd
, symtab_hdr
,
12459 symtab_hdr
->sh_info
, 0,
12461 if (isymbuf
== NULL
)
12465 /* Get the value of the symbol referred to by the reloc. */
12466 if (r_symndx
< symtab_hdr
->sh_info
)
12468 /* A local symbol. */
12469 Elf_Internal_Sym
*isym
;
12472 isym
= isymbuf
+ r_symndx
;
12473 if (isym
->st_shndx
== SHN_UNDEF
)
12474 sym_sec
= bfd_und_section_ptr
;
12475 else if (isym
->st_shndx
== SHN_ABS
)
12476 sym_sec
= bfd_abs_section_ptr
;
12477 else if (isym
->st_shndx
== SHN_COMMON
)
12478 sym_sec
= bfd_com_section_ptr
;
12480 sym_sec
= bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
12481 symval
= (isym
->st_value
12482 + sym_sec
->output_section
->vma
12483 + sym_sec
->output_offset
);
12484 target_is_micromips_code_p
= ELF_ST_IS_MICROMIPS (isym
->st_other
);
12488 unsigned long indx
;
12489 struct elf_link_hash_entry
*h
;
12491 /* An external symbol. */
12492 indx
= r_symndx
- symtab_hdr
->sh_info
;
12493 h
= elf_sym_hashes (abfd
)[indx
];
12494 BFD_ASSERT (h
!= NULL
);
12496 if (h
->root
.type
!= bfd_link_hash_defined
12497 && h
->root
.type
!= bfd_link_hash_defweak
)
12498 /* This appears to be a reference to an undefined
12499 symbol. Just ignore it -- it will be caught by the
12500 regular reloc processing. */
12503 symval
= (h
->root
.u
.def
.value
12504 + h
->root
.u
.def
.section
->output_section
->vma
12505 + h
->root
.u
.def
.section
->output_offset
);
12506 target_is_micromips_code_p
= (!h
->needs_plt
12507 && ELF_ST_IS_MICROMIPS (h
->other
));
12511 /* For simplicity of coding, we are going to modify the
12512 section contents, the section relocs, and the BFD symbol
12513 table. We must tell the rest of the code not to free up this
12514 information. It would be possible to instead create a table
12515 of changes which have to be made, as is done in coff-mips.c;
12516 that would be more work, but would require less memory when
12517 the linker is run. */
12519 /* Only 32-bit instructions relaxed. */
12520 if (irel
->r_offset
+ 4 > sec
->size
)
12523 opcode
= bfd_get_micromips_32 (abfd
, ptr
);
12525 /* This is the pc-relative distance from the instruction the
12526 relocation is applied to, to the symbol referred. */
12528 - (sec
->output_section
->vma
+ sec
->output_offset
)
12531 /* R_MICROMIPS_HI16 / LUI relaxation to nil, performing relaxation
12532 of corresponding R_MICROMIPS_LO16 to R_MICROMIPS_HI0_LO16 or
12533 R_MICROMIPS_PC23_S2. The R_MICROMIPS_PC23_S2 condition is
12535 (symval % 4 == 0 && IS_BITSIZE (pcrval, 25))
12537 where pcrval has first to be adjusted to apply against the LO16
12538 location (we make the adjustment later on, when we have figured
12539 out the offset). */
12540 if (r_type
== R_MICROMIPS_HI16
&& MATCH (opcode
, lui_insn
))
12542 bfd_boolean bzc
= FALSE
;
12543 unsigned long nextopc
;
12547 /* Give up if the previous reloc was a HI16 against this symbol
12549 if (irel
> internal_relocs
12550 && ELF32_R_TYPE (irel
[-1].r_info
) == R_MICROMIPS_HI16
12551 && ELF32_R_SYM (irel
[-1].r_info
) == r_symndx
)
12554 /* Or if the next reloc is not a LO16 against this symbol. */
12555 if (irel
+ 1 >= irelend
12556 || ELF32_R_TYPE (irel
[1].r_info
) != R_MICROMIPS_LO16
12557 || ELF32_R_SYM (irel
[1].r_info
) != r_symndx
)
12560 /* Or if the second next reloc is a LO16 against this symbol too. */
12561 if (irel
+ 2 >= irelend
12562 && ELF32_R_TYPE (irel
[2].r_info
) == R_MICROMIPS_LO16
12563 && ELF32_R_SYM (irel
[2].r_info
) == r_symndx
)
12566 /* See if the LUI instruction *might* be in a branch delay slot.
12567 We check whether what looks like a 16-bit branch or jump is
12568 actually an immediate argument to a compact branch, and let
12569 it through if so. */
12570 if (irel
->r_offset
>= 2
12571 && check_br16_dslot (abfd
, ptr
- 2)
12572 && !(irel
->r_offset
>= 4
12573 && (bzc
= check_relocated_bzc (abfd
,
12574 ptr
- 4, irel
->r_offset
- 4,
12575 internal_relocs
, irelend
))))
12577 if (irel
->r_offset
>= 4
12579 && check_br32_dslot (abfd
, ptr
- 4))
12582 reg
= OP32_SREG (opcode
);
12584 /* We only relax adjacent instructions or ones separated with
12585 a branch or jump that has a delay slot. The branch or jump
12586 must not fiddle with the register used to hold the address.
12587 Subtract 4 for the LUI itself. */
12588 offset
= irel
[1].r_offset
- irel
[0].r_offset
;
12589 switch (offset
- 4)
12594 if (check_br16 (abfd
, ptr
+ 4, reg
))
12598 if (check_br32 (abfd
, ptr
+ 4, reg
))
12605 nextopc
= bfd_get_micromips_32 (abfd
, contents
+ irel
[1].r_offset
);
12607 /* Give up unless the same register is used with both
12609 if (OP32_SREG (nextopc
) != reg
)
12612 /* Now adjust pcrval, subtracting the offset to the LO16 reloc
12613 and rounding up to take masking of the two LSBs into account. */
12614 pcrval
= ((pcrval
- offset
+ 3) | 3) ^ 3;
12616 /* R_MICROMIPS_LO16 relaxation to R_MICROMIPS_HI0_LO16. */
12617 if (IS_BITSIZE (symval
, 16))
12619 /* Fix the relocation's type. */
12620 irel
[1].r_info
= ELF32_R_INFO (r_symndx
, R_MICROMIPS_HI0_LO16
);
12622 /* Instructions using R_MICROMIPS_LO16 have the base or
12623 source register in bits 20:16. This register becomes $0
12624 (zero) as the result of the R_MICROMIPS_HI16 being 0. */
12625 nextopc
&= ~0x001f0000;
12626 bfd_put_16 (abfd
, (nextopc
>> 16) & 0xffff,
12627 contents
+ irel
[1].r_offset
);
12630 /* R_MICROMIPS_LO16 / ADDIU relaxation to R_MICROMIPS_PC23_S2.
12631 We add 4 to take LUI deletion into account while checking
12632 the PC-relative distance. */
12633 else if (symval
% 4 == 0
12634 && IS_BITSIZE (pcrval
+ 4, 25)
12635 && MATCH (nextopc
, addiu_insn
)
12636 && OP32_TREG (nextopc
) == OP32_SREG (nextopc
)
12637 && OP16_VALID_REG (OP32_TREG (nextopc
)))
12639 /* Fix the relocation's type. */
12640 irel
[1].r_info
= ELF32_R_INFO (r_symndx
, R_MICROMIPS_PC23_S2
);
12642 /* Replace ADDIU with the ADDIUPC version. */
12643 nextopc
= (addiupc_insn
.match
12644 | ADDIUPC_REG_FIELD (OP32_TREG (nextopc
)));
12646 bfd_put_micromips_32 (abfd
, nextopc
,
12647 contents
+ irel
[1].r_offset
);
12650 /* Can't do anything, give up, sigh... */
12654 /* Fix the relocation's type. */
12655 irel
->r_info
= ELF32_R_INFO (r_symndx
, R_MIPS_NONE
);
12657 /* Delete the LUI instruction: 4 bytes at irel->r_offset. */
12662 /* Compact branch relaxation -- due to the multitude of macros
12663 employed by the compiler/assembler, compact branches are not
12664 always generated. Obviously, this can/will be fixed elsewhere,
12665 but there is no drawback in double checking it here. */
12666 else if (r_type
== R_MICROMIPS_PC16_S1
12667 && irel
->r_offset
+ 5 < sec
->size
12668 && ((fndopc
= find_match (opcode
, bz_rs_insns_32
)) >= 0
12669 || (fndopc
= find_match (opcode
, bz_rt_insns_32
)) >= 0)
12670 && MATCH (bfd_get_16 (abfd
, ptr
+ 4), nop_insn_16
))
12674 reg
= OP32_SREG (opcode
) ? OP32_SREG (opcode
) : OP32_TREG (opcode
);
12676 /* Replace BEQZ/BNEZ with the compact version. */
12677 opcode
= (bzc_insns_32
[fndopc
].match
12678 | BZC32_REG_FIELD (reg
)
12679 | (opcode
& 0xffff)); /* Addend value. */
12681 bfd_put_micromips_32 (abfd
, opcode
, ptr
);
12683 /* Delete the 16-bit delay slot NOP: two bytes from
12684 irel->offset + 4. */
12689 /* R_MICROMIPS_PC16_S1 relaxation to R_MICROMIPS_PC10_S1. We need
12690 to check the distance from the next instruction, so subtract 2. */
12691 else if (r_type
== R_MICROMIPS_PC16_S1
12692 && IS_BITSIZE (pcrval
- 2, 11)
12693 && find_match (opcode
, b_insns_32
) >= 0)
12695 /* Fix the relocation's type. */
12696 irel
->r_info
= ELF32_R_INFO (r_symndx
, R_MICROMIPS_PC10_S1
);
12698 /* Replace the 32-bit opcode with a 16-bit opcode. */
12701 | (opcode
& 0x3ff)), /* Addend value. */
12704 /* Delete 2 bytes from irel->r_offset + 2. */
12709 /* R_MICROMIPS_PC16_S1 relaxation to R_MICROMIPS_PC7_S1. We need
12710 to check the distance from the next instruction, so subtract 2. */
12711 else if (r_type
== R_MICROMIPS_PC16_S1
12712 && IS_BITSIZE (pcrval
- 2, 8)
12713 && (((fndopc
= find_match (opcode
, bz_rs_insns_32
)) >= 0
12714 && OP16_VALID_REG (OP32_SREG (opcode
)))
12715 || ((fndopc
= find_match (opcode
, bz_rt_insns_32
)) >= 0
12716 && OP16_VALID_REG (OP32_TREG (opcode
)))))
12720 reg
= OP32_SREG (opcode
) ? OP32_SREG (opcode
) : OP32_TREG (opcode
);
12722 /* Fix the relocation's type. */
12723 irel
->r_info
= ELF32_R_INFO (r_symndx
, R_MICROMIPS_PC7_S1
);
12725 /* Replace the 32-bit opcode with a 16-bit opcode. */
12727 (bz_insns_16
[fndopc
].match
12728 | BZ16_REG_FIELD (reg
)
12729 | (opcode
& 0x7f)), /* Addend value. */
12732 /* Delete 2 bytes from irel->r_offset + 2. */
12737 /* R_MICROMIPS_26_S1 -- JAL to JALS relaxation for microMIPS targets. */
12738 else if (r_type
== R_MICROMIPS_26_S1
12739 && target_is_micromips_code_p
12740 && irel
->r_offset
+ 7 < sec
->size
12741 && MATCH (opcode
, jal_insn_32_bd32
))
12743 unsigned long n32opc
;
12744 bfd_boolean relaxed
= FALSE
;
12746 n32opc
= bfd_get_micromips_32 (abfd
, ptr
+ 4);
12748 if (MATCH (n32opc
, nop_insn_32
))
12750 /* Replace delay slot 32-bit NOP with a 16-bit NOP. */
12751 bfd_put_16 (abfd
, nop_insn_16
.match
, ptr
+ 4);
12755 else if (find_match (n32opc
, move_insns_32
) >= 0)
12757 /* Replace delay slot 32-bit MOVE with 16-bit MOVE. */
12759 (move_insn_16
.match
12760 | MOVE16_RD_FIELD (MOVE32_RD (n32opc
))
12761 | MOVE16_RS_FIELD (MOVE32_RS (n32opc
))),
12766 /* Other 32-bit instructions relaxable to 16-bit
12767 instructions will be handled here later. */
12771 /* JAL with 32-bit delay slot that is changed to a JALS
12772 with 16-bit delay slot. */
12773 bfd_put_micromips_32 (abfd
, jal_insn_32_bd16
.match
, ptr
);
12775 /* Delete 2 bytes from irel->r_offset + 6. */
12783 /* Note that we've changed the relocs, section contents, etc. */
12784 elf_section_data (sec
)->relocs
= internal_relocs
;
12785 elf_section_data (sec
)->this_hdr
.contents
= contents
;
12786 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
12788 /* Delete bytes depending on the delcnt and deloff. */
12789 if (!mips_elf_relax_delete_bytes (abfd
, sec
,
12790 irel
->r_offset
+ deloff
, delcnt
))
12793 /* That will change things, so we should relax again.
12794 Note that this is not required, and it may be slow. */
12799 if (isymbuf
!= NULL
12800 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
12802 if (! link_info
->keep_memory
)
12806 /* Cache the symbols for elf_link_input_bfd. */
12807 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
12811 if (contents
!= NULL
12812 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
12814 if (! link_info
->keep_memory
)
12818 /* Cache the section contents for elf_link_input_bfd. */
12819 elf_section_data (sec
)->this_hdr
.contents
= contents
;
12823 if (internal_relocs
!= NULL
12824 && elf_section_data (sec
)->relocs
!= internal_relocs
)
12825 free (internal_relocs
);
12830 if (isymbuf
!= NULL
12831 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
12833 if (contents
!= NULL
12834 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
12836 if (internal_relocs
!= NULL
12837 && elf_section_data (sec
)->relocs
!= internal_relocs
)
12838 free (internal_relocs
);
12843 /* Create a MIPS ELF linker hash table. */
12845 struct bfd_link_hash_table
*
12846 _bfd_mips_elf_link_hash_table_create (bfd
*abfd
)
12848 struct mips_elf_link_hash_table
*ret
;
12849 bfd_size_type amt
= sizeof (struct mips_elf_link_hash_table
);
12851 ret
= bfd_zmalloc (amt
);
12855 if (!_bfd_elf_link_hash_table_init (&ret
->root
, abfd
,
12856 mips_elf_link_hash_newfunc
,
12857 sizeof (struct mips_elf_link_hash_entry
),
12864 return &ret
->root
.root
;
12867 /* Likewise, but indicate that the target is VxWorks. */
12869 struct bfd_link_hash_table
*
12870 _bfd_mips_vxworks_link_hash_table_create (bfd
*abfd
)
12872 struct bfd_link_hash_table
*ret
;
12874 ret
= _bfd_mips_elf_link_hash_table_create (abfd
);
12877 struct mips_elf_link_hash_table
*htab
;
12879 htab
= (struct mips_elf_link_hash_table
*) ret
;
12880 htab
->use_plts_and_copy_relocs
= TRUE
;
12881 htab
->is_vxworks
= TRUE
;
12886 /* A function that the linker calls if we are allowed to use PLTs
12887 and copy relocs. */
12890 _bfd_mips_elf_use_plts_and_copy_relocs (struct bfd_link_info
*info
)
12892 mips_elf_hash_table (info
)->use_plts_and_copy_relocs
= TRUE
;
12895 /* We need to use a special link routine to handle the .reginfo and
12896 the .mdebug sections. We need to merge all instances of these
12897 sections together, not write them all out sequentially. */
12900 _bfd_mips_elf_final_link (bfd
*abfd
, struct bfd_link_info
*info
)
12903 struct bfd_link_order
*p
;
12904 asection
*reginfo_sec
, *mdebug_sec
, *gptab_data_sec
, *gptab_bss_sec
;
12905 asection
*rtproc_sec
;
12906 Elf32_RegInfo reginfo
;
12907 struct ecoff_debug_info debug
;
12908 struct mips_htab_traverse_info hti
;
12909 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
12910 const struct ecoff_debug_swap
*swap
= bed
->elf_backend_ecoff_debug_swap
;
12911 HDRR
*symhdr
= &debug
.symbolic_header
;
12912 void *mdebug_handle
= NULL
;
12917 struct mips_elf_link_hash_table
*htab
;
12919 static const char * const secname
[] =
12921 ".text", ".init", ".fini", ".data",
12922 ".rodata", ".sdata", ".sbss", ".bss"
12924 static const int sc
[] =
12926 scText
, scInit
, scFini
, scData
,
12927 scRData
, scSData
, scSBss
, scBss
12930 /* Sort the dynamic symbols so that those with GOT entries come after
12932 htab
= mips_elf_hash_table (info
);
12933 BFD_ASSERT (htab
!= NULL
);
12935 if (!mips_elf_sort_hash_table (abfd
, info
))
12938 /* Create any scheduled LA25 stubs. */
12940 hti
.output_bfd
= abfd
;
12942 htab_traverse (htab
->la25_stubs
, mips_elf_create_la25_stub
, &hti
);
12946 /* Get a value for the GP register. */
12947 if (elf_gp (abfd
) == 0)
12949 struct bfd_link_hash_entry
*h
;
12951 h
= bfd_link_hash_lookup (info
->hash
, "_gp", FALSE
, FALSE
, TRUE
);
12952 if (h
!= NULL
&& h
->type
== bfd_link_hash_defined
)
12953 elf_gp (abfd
) = (h
->u
.def
.value
12954 + h
->u
.def
.section
->output_section
->vma
12955 + h
->u
.def
.section
->output_offset
);
12956 else if (htab
->is_vxworks
12957 && (h
= bfd_link_hash_lookup (info
->hash
,
12958 "_GLOBAL_OFFSET_TABLE_",
12959 FALSE
, FALSE
, TRUE
))
12960 && h
->type
== bfd_link_hash_defined
)
12961 elf_gp (abfd
) = (h
->u
.def
.section
->output_section
->vma
12962 + h
->u
.def
.section
->output_offset
12964 else if (info
->relocatable
)
12966 bfd_vma lo
= MINUS_ONE
;
12968 /* Find the GP-relative section with the lowest offset. */
12969 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
12971 && (elf_section_data (o
)->this_hdr
.sh_flags
& SHF_MIPS_GPREL
))
12974 /* And calculate GP relative to that. */
12975 elf_gp (abfd
) = lo
+ ELF_MIPS_GP_OFFSET (info
);
12979 /* If the relocate_section function needs to do a reloc
12980 involving the GP value, it should make a reloc_dangerous
12981 callback to warn that GP is not defined. */
12985 /* Go through the sections and collect the .reginfo and .mdebug
12987 reginfo_sec
= NULL
;
12989 gptab_data_sec
= NULL
;
12990 gptab_bss_sec
= NULL
;
12991 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
12993 if (strcmp (o
->name
, ".reginfo") == 0)
12995 memset (®info
, 0, sizeof reginfo
);
12997 /* We have found the .reginfo section in the output file.
12998 Look through all the link_orders comprising it and merge
12999 the information together. */
13000 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
13002 asection
*input_section
;
13004 Elf32_External_RegInfo ext
;
13007 if (p
->type
!= bfd_indirect_link_order
)
13009 if (p
->type
== bfd_data_link_order
)
13014 input_section
= p
->u
.indirect
.section
;
13015 input_bfd
= input_section
->owner
;
13017 if (! bfd_get_section_contents (input_bfd
, input_section
,
13018 &ext
, 0, sizeof ext
))
13021 bfd_mips_elf32_swap_reginfo_in (input_bfd
, &ext
, &sub
);
13023 reginfo
.ri_gprmask
|= sub
.ri_gprmask
;
13024 reginfo
.ri_cprmask
[0] |= sub
.ri_cprmask
[0];
13025 reginfo
.ri_cprmask
[1] |= sub
.ri_cprmask
[1];
13026 reginfo
.ri_cprmask
[2] |= sub
.ri_cprmask
[2];
13027 reginfo
.ri_cprmask
[3] |= sub
.ri_cprmask
[3];
13029 /* ri_gp_value is set by the function
13030 mips_elf32_section_processing when the section is
13031 finally written out. */
13033 /* Hack: reset the SEC_HAS_CONTENTS flag so that
13034 elf_link_input_bfd ignores this section. */
13035 input_section
->flags
&= ~SEC_HAS_CONTENTS
;
13038 /* Size has been set in _bfd_mips_elf_always_size_sections. */
13039 BFD_ASSERT(o
->size
== sizeof (Elf32_External_RegInfo
));
13041 /* Skip this section later on (I don't think this currently
13042 matters, but someday it might). */
13043 o
->map_head
.link_order
= NULL
;
13048 if (strcmp (o
->name
, ".mdebug") == 0)
13050 struct extsym_info einfo
;
13053 /* We have found the .mdebug section in the output file.
13054 Look through all the link_orders comprising it and merge
13055 the information together. */
13056 symhdr
->magic
= swap
->sym_magic
;
13057 /* FIXME: What should the version stamp be? */
13058 symhdr
->vstamp
= 0;
13059 symhdr
->ilineMax
= 0;
13060 symhdr
->cbLine
= 0;
13061 symhdr
->idnMax
= 0;
13062 symhdr
->ipdMax
= 0;
13063 symhdr
->isymMax
= 0;
13064 symhdr
->ioptMax
= 0;
13065 symhdr
->iauxMax
= 0;
13066 symhdr
->issMax
= 0;
13067 symhdr
->issExtMax
= 0;
13068 symhdr
->ifdMax
= 0;
13070 symhdr
->iextMax
= 0;
13072 /* We accumulate the debugging information itself in the
13073 debug_info structure. */
13075 debug
.external_dnr
= NULL
;
13076 debug
.external_pdr
= NULL
;
13077 debug
.external_sym
= NULL
;
13078 debug
.external_opt
= NULL
;
13079 debug
.external_aux
= NULL
;
13081 debug
.ssext
= debug
.ssext_end
= NULL
;
13082 debug
.external_fdr
= NULL
;
13083 debug
.external_rfd
= NULL
;
13084 debug
.external_ext
= debug
.external_ext_end
= NULL
;
13086 mdebug_handle
= bfd_ecoff_debug_init (abfd
, &debug
, swap
, info
);
13087 if (mdebug_handle
== NULL
)
13091 esym
.cobol_main
= 0;
13095 esym
.asym
.iss
= issNil
;
13096 esym
.asym
.st
= stLocal
;
13097 esym
.asym
.reserved
= 0;
13098 esym
.asym
.index
= indexNil
;
13100 for (i
= 0; i
< sizeof (secname
) / sizeof (secname
[0]); i
++)
13102 esym
.asym
.sc
= sc
[i
];
13103 s
= bfd_get_section_by_name (abfd
, secname
[i
]);
13106 esym
.asym
.value
= s
->vma
;
13107 last
= s
->vma
+ s
->size
;
13110 esym
.asym
.value
= last
;
13111 if (!bfd_ecoff_debug_one_external (abfd
, &debug
, swap
,
13112 secname
[i
], &esym
))
13116 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
13118 asection
*input_section
;
13120 const struct ecoff_debug_swap
*input_swap
;
13121 struct ecoff_debug_info input_debug
;
13125 if (p
->type
!= bfd_indirect_link_order
)
13127 if (p
->type
== bfd_data_link_order
)
13132 input_section
= p
->u
.indirect
.section
;
13133 input_bfd
= input_section
->owner
;
13135 if (!is_mips_elf (input_bfd
))
13137 /* I don't know what a non MIPS ELF bfd would be
13138 doing with a .mdebug section, but I don't really
13139 want to deal with it. */
13143 input_swap
= (get_elf_backend_data (input_bfd
)
13144 ->elf_backend_ecoff_debug_swap
);
13146 BFD_ASSERT (p
->size
== input_section
->size
);
13148 /* The ECOFF linking code expects that we have already
13149 read in the debugging information and set up an
13150 ecoff_debug_info structure, so we do that now. */
13151 if (! _bfd_mips_elf_read_ecoff_info (input_bfd
, input_section
,
13155 if (! (bfd_ecoff_debug_accumulate
13156 (mdebug_handle
, abfd
, &debug
, swap
, input_bfd
,
13157 &input_debug
, input_swap
, info
)))
13160 /* Loop through the external symbols. For each one with
13161 interesting information, try to find the symbol in
13162 the linker global hash table and save the information
13163 for the output external symbols. */
13164 eraw_src
= input_debug
.external_ext
;
13165 eraw_end
= (eraw_src
13166 + (input_debug
.symbolic_header
.iextMax
13167 * input_swap
->external_ext_size
));
13169 eraw_src
< eraw_end
;
13170 eraw_src
+= input_swap
->external_ext_size
)
13174 struct mips_elf_link_hash_entry
*h
;
13176 (*input_swap
->swap_ext_in
) (input_bfd
, eraw_src
, &ext
);
13177 if (ext
.asym
.sc
== scNil
13178 || ext
.asym
.sc
== scUndefined
13179 || ext
.asym
.sc
== scSUndefined
)
13182 name
= input_debug
.ssext
+ ext
.asym
.iss
;
13183 h
= mips_elf_link_hash_lookup (mips_elf_hash_table (info
),
13184 name
, FALSE
, FALSE
, TRUE
);
13185 if (h
== NULL
|| h
->esym
.ifd
!= -2)
13190 BFD_ASSERT (ext
.ifd
13191 < input_debug
.symbolic_header
.ifdMax
);
13192 ext
.ifd
= input_debug
.ifdmap
[ext
.ifd
];
13198 /* Free up the information we just read. */
13199 free (input_debug
.line
);
13200 free (input_debug
.external_dnr
);
13201 free (input_debug
.external_pdr
);
13202 free (input_debug
.external_sym
);
13203 free (input_debug
.external_opt
);
13204 free (input_debug
.external_aux
);
13205 free (input_debug
.ss
);
13206 free (input_debug
.ssext
);
13207 free (input_debug
.external_fdr
);
13208 free (input_debug
.external_rfd
);
13209 free (input_debug
.external_ext
);
13211 /* Hack: reset the SEC_HAS_CONTENTS flag so that
13212 elf_link_input_bfd ignores this section. */
13213 input_section
->flags
&= ~SEC_HAS_CONTENTS
;
13216 if (SGI_COMPAT (abfd
) && info
->shared
)
13218 /* Create .rtproc section. */
13219 rtproc_sec
= bfd_get_linker_section (abfd
, ".rtproc");
13220 if (rtproc_sec
== NULL
)
13222 flagword flags
= (SEC_HAS_CONTENTS
| SEC_IN_MEMORY
13223 | SEC_LINKER_CREATED
| SEC_READONLY
);
13225 rtproc_sec
= bfd_make_section_anyway_with_flags (abfd
,
13228 if (rtproc_sec
== NULL
13229 || ! bfd_set_section_alignment (abfd
, rtproc_sec
, 4))
13233 if (! mips_elf_create_procedure_table (mdebug_handle
, abfd
,
13239 /* Build the external symbol information. */
13242 einfo
.debug
= &debug
;
13244 einfo
.failed
= FALSE
;
13245 mips_elf_link_hash_traverse (mips_elf_hash_table (info
),
13246 mips_elf_output_extsym
, &einfo
);
13250 /* Set the size of the .mdebug section. */
13251 o
->size
= bfd_ecoff_debug_size (abfd
, &debug
, swap
);
13253 /* Skip this section later on (I don't think this currently
13254 matters, but someday it might). */
13255 o
->map_head
.link_order
= NULL
;
13260 if (CONST_STRNEQ (o
->name
, ".gptab."))
13262 const char *subname
;
13265 Elf32_External_gptab
*ext_tab
;
13268 /* The .gptab.sdata and .gptab.sbss sections hold
13269 information describing how the small data area would
13270 change depending upon the -G switch. These sections
13271 not used in executables files. */
13272 if (! info
->relocatable
)
13274 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
13276 asection
*input_section
;
13278 if (p
->type
!= bfd_indirect_link_order
)
13280 if (p
->type
== bfd_data_link_order
)
13285 input_section
= p
->u
.indirect
.section
;
13287 /* Hack: reset the SEC_HAS_CONTENTS flag so that
13288 elf_link_input_bfd ignores this section. */
13289 input_section
->flags
&= ~SEC_HAS_CONTENTS
;
13292 /* Skip this section later on (I don't think this
13293 currently matters, but someday it might). */
13294 o
->map_head
.link_order
= NULL
;
13296 /* Really remove the section. */
13297 bfd_section_list_remove (abfd
, o
);
13298 --abfd
->section_count
;
13303 /* There is one gptab for initialized data, and one for
13304 uninitialized data. */
13305 if (strcmp (o
->name
, ".gptab.sdata") == 0)
13306 gptab_data_sec
= o
;
13307 else if (strcmp (o
->name
, ".gptab.sbss") == 0)
13311 (*_bfd_error_handler
)
13312 (_("%s: illegal section name `%s'"),
13313 bfd_get_filename (abfd
), o
->name
);
13314 bfd_set_error (bfd_error_nonrepresentable_section
);
13318 /* The linker script always combines .gptab.data and
13319 .gptab.sdata into .gptab.sdata, and likewise for
13320 .gptab.bss and .gptab.sbss. It is possible that there is
13321 no .sdata or .sbss section in the output file, in which
13322 case we must change the name of the output section. */
13323 subname
= o
->name
+ sizeof ".gptab" - 1;
13324 if (bfd_get_section_by_name (abfd
, subname
) == NULL
)
13326 if (o
== gptab_data_sec
)
13327 o
->name
= ".gptab.data";
13329 o
->name
= ".gptab.bss";
13330 subname
= o
->name
+ sizeof ".gptab" - 1;
13331 BFD_ASSERT (bfd_get_section_by_name (abfd
, subname
) != NULL
);
13334 /* Set up the first entry. */
13336 amt
= c
* sizeof (Elf32_gptab
);
13337 tab
= bfd_malloc (amt
);
13340 tab
[0].gt_header
.gt_current_g_value
= elf_gp_size (abfd
);
13341 tab
[0].gt_header
.gt_unused
= 0;
13343 /* Combine the input sections. */
13344 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
13346 asection
*input_section
;
13348 bfd_size_type size
;
13349 unsigned long last
;
13350 bfd_size_type gpentry
;
13352 if (p
->type
!= bfd_indirect_link_order
)
13354 if (p
->type
== bfd_data_link_order
)
13359 input_section
= p
->u
.indirect
.section
;
13360 input_bfd
= input_section
->owner
;
13362 /* Combine the gptab entries for this input section one
13363 by one. We know that the input gptab entries are
13364 sorted by ascending -G value. */
13365 size
= input_section
->size
;
13367 for (gpentry
= sizeof (Elf32_External_gptab
);
13369 gpentry
+= sizeof (Elf32_External_gptab
))
13371 Elf32_External_gptab ext_gptab
;
13372 Elf32_gptab int_gptab
;
13378 if (! (bfd_get_section_contents
13379 (input_bfd
, input_section
, &ext_gptab
, gpentry
,
13380 sizeof (Elf32_External_gptab
))))
13386 bfd_mips_elf32_swap_gptab_in (input_bfd
, &ext_gptab
,
13388 val
= int_gptab
.gt_entry
.gt_g_value
;
13389 add
= int_gptab
.gt_entry
.gt_bytes
- last
;
13392 for (look
= 1; look
< c
; look
++)
13394 if (tab
[look
].gt_entry
.gt_g_value
>= val
)
13395 tab
[look
].gt_entry
.gt_bytes
+= add
;
13397 if (tab
[look
].gt_entry
.gt_g_value
== val
)
13403 Elf32_gptab
*new_tab
;
13406 /* We need a new table entry. */
13407 amt
= (bfd_size_type
) (c
+ 1) * sizeof (Elf32_gptab
);
13408 new_tab
= bfd_realloc (tab
, amt
);
13409 if (new_tab
== NULL
)
13415 tab
[c
].gt_entry
.gt_g_value
= val
;
13416 tab
[c
].gt_entry
.gt_bytes
= add
;
13418 /* Merge in the size for the next smallest -G
13419 value, since that will be implied by this new
13422 for (look
= 1; look
< c
; look
++)
13424 if (tab
[look
].gt_entry
.gt_g_value
< val
13426 || (tab
[look
].gt_entry
.gt_g_value
13427 > tab
[max
].gt_entry
.gt_g_value
)))
13431 tab
[c
].gt_entry
.gt_bytes
+=
13432 tab
[max
].gt_entry
.gt_bytes
;
13437 last
= int_gptab
.gt_entry
.gt_bytes
;
13440 /* Hack: reset the SEC_HAS_CONTENTS flag so that
13441 elf_link_input_bfd ignores this section. */
13442 input_section
->flags
&= ~SEC_HAS_CONTENTS
;
13445 /* The table must be sorted by -G value. */
13447 qsort (tab
+ 1, c
- 1, sizeof (tab
[0]), gptab_compare
);
13449 /* Swap out the table. */
13450 amt
= (bfd_size_type
) c
* sizeof (Elf32_External_gptab
);
13451 ext_tab
= bfd_alloc (abfd
, amt
);
13452 if (ext_tab
== NULL
)
13458 for (j
= 0; j
< c
; j
++)
13459 bfd_mips_elf32_swap_gptab_out (abfd
, tab
+ j
, ext_tab
+ j
);
13462 o
->size
= c
* sizeof (Elf32_External_gptab
);
13463 o
->contents
= (bfd_byte
*) ext_tab
;
13465 /* Skip this section later on (I don't think this currently
13466 matters, but someday it might). */
13467 o
->map_head
.link_order
= NULL
;
13471 /* Invoke the regular ELF backend linker to do all the work. */
13472 if (!bfd_elf_final_link (abfd
, info
))
13475 /* Now write out the computed sections. */
13477 if (reginfo_sec
!= NULL
)
13479 Elf32_External_RegInfo ext
;
13481 bfd_mips_elf32_swap_reginfo_out (abfd
, ®info
, &ext
);
13482 if (! bfd_set_section_contents (abfd
, reginfo_sec
, &ext
, 0, sizeof ext
))
13486 if (mdebug_sec
!= NULL
)
13488 BFD_ASSERT (abfd
->output_has_begun
);
13489 if (! bfd_ecoff_write_accumulated_debug (mdebug_handle
, abfd
, &debug
,
13491 mdebug_sec
->filepos
))
13494 bfd_ecoff_debug_free (mdebug_handle
, abfd
, &debug
, swap
, info
);
13497 if (gptab_data_sec
!= NULL
)
13499 if (! bfd_set_section_contents (abfd
, gptab_data_sec
,
13500 gptab_data_sec
->contents
,
13501 0, gptab_data_sec
->size
))
13505 if (gptab_bss_sec
!= NULL
)
13507 if (! bfd_set_section_contents (abfd
, gptab_bss_sec
,
13508 gptab_bss_sec
->contents
,
13509 0, gptab_bss_sec
->size
))
13513 if (SGI_COMPAT (abfd
))
13515 rtproc_sec
= bfd_get_section_by_name (abfd
, ".rtproc");
13516 if (rtproc_sec
!= NULL
)
13518 if (! bfd_set_section_contents (abfd
, rtproc_sec
,
13519 rtproc_sec
->contents
,
13520 0, rtproc_sec
->size
))
13528 /* Structure for saying that BFD machine EXTENSION extends BASE. */
13530 struct mips_mach_extension
{
13531 unsigned long extension
, base
;
13535 /* An array describing how BFD machines relate to one another. The entries
13536 are ordered topologically with MIPS I extensions listed last. */
13538 static const struct mips_mach_extension mips_mach_extensions
[] = {
13539 /* MIPS64r2 extensions. */
13540 { bfd_mach_mips_octeon2
, bfd_mach_mips_octeonp
},
13541 { bfd_mach_mips_octeonp
, bfd_mach_mips_octeon
},
13542 { bfd_mach_mips_octeon
, bfd_mach_mipsisa64r2
},
13544 /* MIPS64 extensions. */
13545 { bfd_mach_mipsisa64r2
, bfd_mach_mipsisa64
},
13546 { bfd_mach_mips_sb1
, bfd_mach_mipsisa64
},
13547 { bfd_mach_mips_xlr
, bfd_mach_mipsisa64
},
13548 { bfd_mach_mips_loongson_3a
, bfd_mach_mipsisa64
},
13550 /* MIPS V extensions. */
13551 { bfd_mach_mipsisa64
, bfd_mach_mips5
},
13553 /* R10000 extensions. */
13554 { bfd_mach_mips12000
, bfd_mach_mips10000
},
13555 { bfd_mach_mips14000
, bfd_mach_mips10000
},
13556 { bfd_mach_mips16000
, bfd_mach_mips10000
},
13558 /* R5000 extensions. Note: the vr5500 ISA is an extension of the core
13559 vr5400 ISA, but doesn't include the multimedia stuff. It seems
13560 better to allow vr5400 and vr5500 code to be merged anyway, since
13561 many libraries will just use the core ISA. Perhaps we could add
13562 some sort of ASE flag if this ever proves a problem. */
13563 { bfd_mach_mips5500
, bfd_mach_mips5400
},
13564 { bfd_mach_mips5400
, bfd_mach_mips5000
},
13566 /* MIPS IV extensions. */
13567 { bfd_mach_mips5
, bfd_mach_mips8000
},
13568 { bfd_mach_mips10000
, bfd_mach_mips8000
},
13569 { bfd_mach_mips5000
, bfd_mach_mips8000
},
13570 { bfd_mach_mips7000
, bfd_mach_mips8000
},
13571 { bfd_mach_mips9000
, bfd_mach_mips8000
},
13573 /* VR4100 extensions. */
13574 { bfd_mach_mips4120
, bfd_mach_mips4100
},
13575 { bfd_mach_mips4111
, bfd_mach_mips4100
},
13577 /* MIPS III extensions. */
13578 { bfd_mach_mips_loongson_2e
, bfd_mach_mips4000
},
13579 { bfd_mach_mips_loongson_2f
, bfd_mach_mips4000
},
13580 { bfd_mach_mips8000
, bfd_mach_mips4000
},
13581 { bfd_mach_mips4650
, bfd_mach_mips4000
},
13582 { bfd_mach_mips4600
, bfd_mach_mips4000
},
13583 { bfd_mach_mips4400
, bfd_mach_mips4000
},
13584 { bfd_mach_mips4300
, bfd_mach_mips4000
},
13585 { bfd_mach_mips4100
, bfd_mach_mips4000
},
13586 { bfd_mach_mips4010
, bfd_mach_mips4000
},
13587 { bfd_mach_mips5900
, bfd_mach_mips4000
},
13589 /* MIPS32 extensions. */
13590 { bfd_mach_mipsisa32r2
, bfd_mach_mipsisa32
},
13592 /* MIPS II extensions. */
13593 { bfd_mach_mips4000
, bfd_mach_mips6000
},
13594 { bfd_mach_mipsisa32
, bfd_mach_mips6000
},
13596 /* MIPS I extensions. */
13597 { bfd_mach_mips6000
, bfd_mach_mips3000
},
13598 { bfd_mach_mips3900
, bfd_mach_mips3000
}
13602 /* Return true if bfd machine EXTENSION is an extension of machine BASE. */
13605 mips_mach_extends_p (unsigned long base
, unsigned long extension
)
13609 if (extension
== base
)
13612 if (base
== bfd_mach_mipsisa32
13613 && mips_mach_extends_p (bfd_mach_mipsisa64
, extension
))
13616 if (base
== bfd_mach_mipsisa32r2
13617 && mips_mach_extends_p (bfd_mach_mipsisa64r2
, extension
))
13620 for (i
= 0; i
< ARRAY_SIZE (mips_mach_extensions
); i
++)
13621 if (extension
== mips_mach_extensions
[i
].extension
)
13623 extension
= mips_mach_extensions
[i
].base
;
13624 if (extension
== base
)
13632 /* Return true if the given ELF header flags describe a 32-bit binary. */
13635 mips_32bit_flags_p (flagword flags
)
13637 return ((flags
& EF_MIPS_32BITMODE
) != 0
13638 || (flags
& EF_MIPS_ABI
) == E_MIPS_ABI_O32
13639 || (flags
& EF_MIPS_ABI
) == E_MIPS_ABI_EABI32
13640 || (flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_1
13641 || (flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_2
13642 || (flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_32
13643 || (flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_32R2
);
13647 /* Merge object attributes from IBFD into OBFD. Raise an error if
13648 there are conflicting attributes. */
13650 mips_elf_merge_obj_attributes (bfd
*ibfd
, bfd
*obfd
)
13652 obj_attribute
*in_attr
;
13653 obj_attribute
*out_attr
;
13656 abi_fp_bfd
= mips_elf_tdata (obfd
)->abi_fp_bfd
;
13657 in_attr
= elf_known_obj_attributes (ibfd
)[OBJ_ATTR_GNU
];
13658 if (!abi_fp_bfd
&& in_attr
[Tag_GNU_MIPS_ABI_FP
].i
!= 0)
13659 mips_elf_tdata (obfd
)->abi_fp_bfd
= ibfd
;
13661 if (!elf_known_obj_attributes_proc (obfd
)[0].i
)
13663 /* This is the first object. Copy the attributes. */
13664 _bfd_elf_copy_obj_attributes (ibfd
, obfd
);
13666 /* Use the Tag_null value to indicate the attributes have been
13668 elf_known_obj_attributes_proc (obfd
)[0].i
= 1;
13673 /* Check for conflicting Tag_GNU_MIPS_ABI_FP attributes and merge
13674 non-conflicting ones. */
13675 out_attr
= elf_known_obj_attributes (obfd
)[OBJ_ATTR_GNU
];
13676 if (in_attr
[Tag_GNU_MIPS_ABI_FP
].i
!= out_attr
[Tag_GNU_MIPS_ABI_FP
].i
)
13678 out_attr
[Tag_GNU_MIPS_ABI_FP
].type
= 1;
13679 if (out_attr
[Tag_GNU_MIPS_ABI_FP
].i
== 0)
13680 out_attr
[Tag_GNU_MIPS_ABI_FP
].i
= in_attr
[Tag_GNU_MIPS_ABI_FP
].i
;
13681 else if (in_attr
[Tag_GNU_MIPS_ABI_FP
].i
!= 0)
13682 switch (out_attr
[Tag_GNU_MIPS_ABI_FP
].i
)
13685 switch (in_attr
[Tag_GNU_MIPS_ABI_FP
].i
)
13689 (_("Warning: %B uses %s (set by %B), %B uses %s"),
13690 obfd
, abi_fp_bfd
, ibfd
, "-mdouble-float", "-msingle-float");
13695 (_("Warning: %B uses %s (set by %B), %B uses %s"),
13696 obfd
, abi_fp_bfd
, ibfd
, "-mhard-float", "-msoft-float");
13701 (_("Warning: %B uses %s (set by %B), %B uses %s"),
13702 obfd
, abi_fp_bfd
, ibfd
,
13703 "-mdouble-float", "-mips32r2 -mfp64");
13708 (_("Warning: %B uses %s (set by %B), "
13709 "%B uses unknown floating point ABI %d"),
13710 obfd
, abi_fp_bfd
, ibfd
,
13711 "-mdouble-float", in_attr
[Tag_GNU_MIPS_ABI_FP
].i
);
13717 switch (in_attr
[Tag_GNU_MIPS_ABI_FP
].i
)
13721 (_("Warning: %B uses %s (set by %B), %B uses %s"),
13722 obfd
, abi_fp_bfd
, ibfd
, "-msingle-float", "-mdouble-float");
13727 (_("Warning: %B uses %s (set by %B), %B uses %s"),
13728 obfd
, abi_fp_bfd
, ibfd
, "-mhard-float", "-msoft-float");
13733 (_("Warning: %B uses %s (set by %B), %B uses %s"),
13734 obfd
, abi_fp_bfd
, ibfd
,
13735 "-msingle-float", "-mips32r2 -mfp64");
13740 (_("Warning: %B uses %s (set by %B), "
13741 "%B uses unknown floating point ABI %d"),
13742 obfd
, abi_fp_bfd
, ibfd
,
13743 "-msingle-float", in_attr
[Tag_GNU_MIPS_ABI_FP
].i
);
13749 switch (in_attr
[Tag_GNU_MIPS_ABI_FP
].i
)
13755 (_("Warning: %B uses %s (set by %B), %B uses %s"),
13756 obfd
, abi_fp_bfd
, ibfd
, "-msoft-float", "-mhard-float");
13761 (_("Warning: %B uses %s (set by %B), "
13762 "%B uses unknown floating point ABI %d"),
13763 obfd
, abi_fp_bfd
, ibfd
,
13764 "-msoft-float", in_attr
[Tag_GNU_MIPS_ABI_FP
].i
);
13770 switch (in_attr
[Tag_GNU_MIPS_ABI_FP
].i
)
13774 (_("Warning: %B uses %s (set by %B), %B uses %s"),
13775 obfd
, abi_fp_bfd
, ibfd
,
13776 "-mips32r2 -mfp64", "-mdouble-float");
13781 (_("Warning: %B uses %s (set by %B), %B uses %s"),
13782 obfd
, abi_fp_bfd
, ibfd
,
13783 "-mips32r2 -mfp64", "-msingle-float");
13788 (_("Warning: %B uses %s (set by %B), %B uses %s"),
13789 obfd
, abi_fp_bfd
, ibfd
, "-mhard-float", "-msoft-float");
13794 (_("Warning: %B uses %s (set by %B), "
13795 "%B uses unknown floating point ABI %d"),
13796 obfd
, abi_fp_bfd
, ibfd
,
13797 "-mips32r2 -mfp64", in_attr
[Tag_GNU_MIPS_ABI_FP
].i
);
13803 switch (in_attr
[Tag_GNU_MIPS_ABI_FP
].i
)
13807 (_("Warning: %B uses unknown floating point ABI %d "
13808 "(set by %B), %B uses %s"),
13809 obfd
, abi_fp_bfd
, ibfd
,
13810 out_attr
[Tag_GNU_MIPS_ABI_FP
].i
, "-mdouble-float");
13815 (_("Warning: %B uses unknown floating point ABI %d "
13816 "(set by %B), %B uses %s"),
13817 obfd
, abi_fp_bfd
, ibfd
,
13818 out_attr
[Tag_GNU_MIPS_ABI_FP
].i
, "-msingle-float");
13823 (_("Warning: %B uses unknown floating point ABI %d "
13824 "(set by %B), %B uses %s"),
13825 obfd
, abi_fp_bfd
, ibfd
,
13826 out_attr
[Tag_GNU_MIPS_ABI_FP
].i
, "-msoft-float");
13831 (_("Warning: %B uses unknown floating point ABI %d "
13832 "(set by %B), %B uses %s"),
13833 obfd
, abi_fp_bfd
, ibfd
,
13834 out_attr
[Tag_GNU_MIPS_ABI_FP
].i
, "-mips32r2 -mfp64");
13839 (_("Warning: %B uses unknown floating point ABI %d "
13840 "(set by %B), %B uses unknown floating point ABI %d"),
13841 obfd
, abi_fp_bfd
, ibfd
,
13842 out_attr
[Tag_GNU_MIPS_ABI_FP
].i
,
13843 in_attr
[Tag_GNU_MIPS_ABI_FP
].i
);
13850 /* Merge Tag_compatibility attributes and any common GNU ones. */
13851 _bfd_elf_merge_object_attributes (ibfd
, obfd
);
13856 /* Merge backend specific data from an object file to the output
13857 object file when linking. */
13860 _bfd_mips_elf_merge_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
13862 flagword old_flags
;
13863 flagword new_flags
;
13865 bfd_boolean null_input_bfd
= TRUE
;
13868 /* Check if we have the same endianness. */
13869 if (! _bfd_generic_verify_endian_match (ibfd
, obfd
))
13871 (*_bfd_error_handler
)
13872 (_("%B: endianness incompatible with that of the selected emulation"),
13877 if (!is_mips_elf (ibfd
) || !is_mips_elf (obfd
))
13880 if (strcmp (bfd_get_target (ibfd
), bfd_get_target (obfd
)) != 0)
13882 (*_bfd_error_handler
)
13883 (_("%B: ABI is incompatible with that of the selected emulation"),
13888 if (!mips_elf_merge_obj_attributes (ibfd
, obfd
))
13891 new_flags
= elf_elfheader (ibfd
)->e_flags
;
13892 elf_elfheader (obfd
)->e_flags
|= new_flags
& EF_MIPS_NOREORDER
;
13893 old_flags
= elf_elfheader (obfd
)->e_flags
;
13895 if (! elf_flags_init (obfd
))
13897 elf_flags_init (obfd
) = TRUE
;
13898 elf_elfheader (obfd
)->e_flags
= new_flags
;
13899 elf_elfheader (obfd
)->e_ident
[EI_CLASS
]
13900 = elf_elfheader (ibfd
)->e_ident
[EI_CLASS
];
13902 if (bfd_get_arch (obfd
) == bfd_get_arch (ibfd
)
13903 && (bfd_get_arch_info (obfd
)->the_default
13904 || mips_mach_extends_p (bfd_get_mach (obfd
),
13905 bfd_get_mach (ibfd
))))
13907 if (! bfd_set_arch_mach (obfd
, bfd_get_arch (ibfd
),
13908 bfd_get_mach (ibfd
)))
13915 /* Check flag compatibility. */
13917 new_flags
&= ~EF_MIPS_NOREORDER
;
13918 old_flags
&= ~EF_MIPS_NOREORDER
;
13920 /* Some IRIX 6 BSD-compatibility objects have this bit set. It
13921 doesn't seem to matter. */
13922 new_flags
&= ~EF_MIPS_XGOT
;
13923 old_flags
&= ~EF_MIPS_XGOT
;
13925 /* MIPSpro generates ucode info in n64 objects. Again, we should
13926 just be able to ignore this. */
13927 new_flags
&= ~EF_MIPS_UCODE
;
13928 old_flags
&= ~EF_MIPS_UCODE
;
13930 /* DSOs should only be linked with CPIC code. */
13931 if ((ibfd
->flags
& DYNAMIC
) != 0)
13932 new_flags
|= EF_MIPS_PIC
| EF_MIPS_CPIC
;
13934 if (new_flags
== old_flags
)
13937 /* Check to see if the input BFD actually contains any sections.
13938 If not, its flags may not have been initialised either, but it cannot
13939 actually cause any incompatibility. */
13940 for (sec
= ibfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
13942 /* Ignore synthetic sections and empty .text, .data and .bss sections
13943 which are automatically generated by gas. Also ignore fake
13944 (s)common sections, since merely defining a common symbol does
13945 not affect compatibility. */
13946 if ((sec
->flags
& SEC_IS_COMMON
) == 0
13947 && strcmp (sec
->name
, ".reginfo")
13948 && strcmp (sec
->name
, ".mdebug")
13950 || (strcmp (sec
->name
, ".text")
13951 && strcmp (sec
->name
, ".data")
13952 && strcmp (sec
->name
, ".bss"))))
13954 null_input_bfd
= FALSE
;
13958 if (null_input_bfd
)
13963 if (((new_flags
& (EF_MIPS_PIC
| EF_MIPS_CPIC
)) != 0)
13964 != ((old_flags
& (EF_MIPS_PIC
| EF_MIPS_CPIC
)) != 0))
13966 (*_bfd_error_handler
)
13967 (_("%B: warning: linking abicalls files with non-abicalls files"),
13972 if (new_flags
& (EF_MIPS_PIC
| EF_MIPS_CPIC
))
13973 elf_elfheader (obfd
)->e_flags
|= EF_MIPS_CPIC
;
13974 if (! (new_flags
& EF_MIPS_PIC
))
13975 elf_elfheader (obfd
)->e_flags
&= ~EF_MIPS_PIC
;
13977 new_flags
&= ~ (EF_MIPS_PIC
| EF_MIPS_CPIC
);
13978 old_flags
&= ~ (EF_MIPS_PIC
| EF_MIPS_CPIC
);
13980 /* Compare the ISAs. */
13981 if (mips_32bit_flags_p (old_flags
) != mips_32bit_flags_p (new_flags
))
13983 (*_bfd_error_handler
)
13984 (_("%B: linking 32-bit code with 64-bit code"),
13988 else if (!mips_mach_extends_p (bfd_get_mach (ibfd
), bfd_get_mach (obfd
)))
13990 /* OBFD's ISA isn't the same as, or an extension of, IBFD's. */
13991 if (mips_mach_extends_p (bfd_get_mach (obfd
), bfd_get_mach (ibfd
)))
13993 /* Copy the architecture info from IBFD to OBFD. Also copy
13994 the 32-bit flag (if set) so that we continue to recognise
13995 OBFD as a 32-bit binary. */
13996 bfd_set_arch_info (obfd
, bfd_get_arch_info (ibfd
));
13997 elf_elfheader (obfd
)->e_flags
&= ~(EF_MIPS_ARCH
| EF_MIPS_MACH
);
13998 elf_elfheader (obfd
)->e_flags
13999 |= new_flags
& (EF_MIPS_ARCH
| EF_MIPS_MACH
| EF_MIPS_32BITMODE
);
14001 /* Copy across the ABI flags if OBFD doesn't use them
14002 and if that was what caused us to treat IBFD as 32-bit. */
14003 if ((old_flags
& EF_MIPS_ABI
) == 0
14004 && mips_32bit_flags_p (new_flags
)
14005 && !mips_32bit_flags_p (new_flags
& ~EF_MIPS_ABI
))
14006 elf_elfheader (obfd
)->e_flags
|= new_flags
& EF_MIPS_ABI
;
14010 /* The ISAs aren't compatible. */
14011 (*_bfd_error_handler
)
14012 (_("%B: linking %s module with previous %s modules"),
14014 bfd_printable_name (ibfd
),
14015 bfd_printable_name (obfd
));
14020 new_flags
&= ~(EF_MIPS_ARCH
| EF_MIPS_MACH
| EF_MIPS_32BITMODE
);
14021 old_flags
&= ~(EF_MIPS_ARCH
| EF_MIPS_MACH
| EF_MIPS_32BITMODE
);
14023 /* Compare ABIs. The 64-bit ABI does not use EF_MIPS_ABI. But, it
14024 does set EI_CLASS differently from any 32-bit ABI. */
14025 if ((new_flags
& EF_MIPS_ABI
) != (old_flags
& EF_MIPS_ABI
)
14026 || (elf_elfheader (ibfd
)->e_ident
[EI_CLASS
]
14027 != elf_elfheader (obfd
)->e_ident
[EI_CLASS
]))
14029 /* Only error if both are set (to different values). */
14030 if (((new_flags
& EF_MIPS_ABI
) && (old_flags
& EF_MIPS_ABI
))
14031 || (elf_elfheader (ibfd
)->e_ident
[EI_CLASS
]
14032 != elf_elfheader (obfd
)->e_ident
[EI_CLASS
]))
14034 (*_bfd_error_handler
)
14035 (_("%B: ABI mismatch: linking %s module with previous %s modules"),
14037 elf_mips_abi_name (ibfd
),
14038 elf_mips_abi_name (obfd
));
14041 new_flags
&= ~EF_MIPS_ABI
;
14042 old_flags
&= ~EF_MIPS_ABI
;
14045 /* Compare ASEs. Forbid linking MIPS16 and microMIPS ASE modules together
14046 and allow arbitrary mixing of the remaining ASEs (retain the union). */
14047 if ((new_flags
& EF_MIPS_ARCH_ASE
) != (old_flags
& EF_MIPS_ARCH_ASE
))
14049 int old_micro
= old_flags
& EF_MIPS_ARCH_ASE_MICROMIPS
;
14050 int new_micro
= new_flags
& EF_MIPS_ARCH_ASE_MICROMIPS
;
14051 int old_m16
= old_flags
& EF_MIPS_ARCH_ASE_M16
;
14052 int new_m16
= new_flags
& EF_MIPS_ARCH_ASE_M16
;
14053 int micro_mis
= old_m16
&& new_micro
;
14054 int m16_mis
= old_micro
&& new_m16
;
14056 if (m16_mis
|| micro_mis
)
14058 (*_bfd_error_handler
)
14059 (_("%B: ASE mismatch: linking %s module with previous %s modules"),
14061 m16_mis
? "MIPS16" : "microMIPS",
14062 m16_mis
? "microMIPS" : "MIPS16");
14066 elf_elfheader (obfd
)->e_flags
|= new_flags
& EF_MIPS_ARCH_ASE
;
14068 new_flags
&= ~ EF_MIPS_ARCH_ASE
;
14069 old_flags
&= ~ EF_MIPS_ARCH_ASE
;
14072 /* Warn about any other mismatches */
14073 if (new_flags
!= old_flags
)
14075 (*_bfd_error_handler
)
14076 (_("%B: uses different e_flags (0x%lx) fields than previous modules (0x%lx)"),
14077 ibfd
, (unsigned long) new_flags
,
14078 (unsigned long) old_flags
);
14084 bfd_set_error (bfd_error_bad_value
);
14091 /* Function to keep MIPS specific file flags like as EF_MIPS_PIC. */
14094 _bfd_mips_elf_set_private_flags (bfd
*abfd
, flagword flags
)
14096 BFD_ASSERT (!elf_flags_init (abfd
)
14097 || elf_elfheader (abfd
)->e_flags
== flags
);
14099 elf_elfheader (abfd
)->e_flags
= flags
;
14100 elf_flags_init (abfd
) = TRUE
;
14105 _bfd_mips_elf_get_target_dtag (bfd_vma dtag
)
14109 default: return "";
14110 case DT_MIPS_RLD_VERSION
:
14111 return "MIPS_RLD_VERSION";
14112 case DT_MIPS_TIME_STAMP
:
14113 return "MIPS_TIME_STAMP";
14114 case DT_MIPS_ICHECKSUM
:
14115 return "MIPS_ICHECKSUM";
14116 case DT_MIPS_IVERSION
:
14117 return "MIPS_IVERSION";
14118 case DT_MIPS_FLAGS
:
14119 return "MIPS_FLAGS";
14120 case DT_MIPS_BASE_ADDRESS
:
14121 return "MIPS_BASE_ADDRESS";
14123 return "MIPS_MSYM";
14124 case DT_MIPS_CONFLICT
:
14125 return "MIPS_CONFLICT";
14126 case DT_MIPS_LIBLIST
:
14127 return "MIPS_LIBLIST";
14128 case DT_MIPS_LOCAL_GOTNO
:
14129 return "MIPS_LOCAL_GOTNO";
14130 case DT_MIPS_CONFLICTNO
:
14131 return "MIPS_CONFLICTNO";
14132 case DT_MIPS_LIBLISTNO
:
14133 return "MIPS_LIBLISTNO";
14134 case DT_MIPS_SYMTABNO
:
14135 return "MIPS_SYMTABNO";
14136 case DT_MIPS_UNREFEXTNO
:
14137 return "MIPS_UNREFEXTNO";
14138 case DT_MIPS_GOTSYM
:
14139 return "MIPS_GOTSYM";
14140 case DT_MIPS_HIPAGENO
:
14141 return "MIPS_HIPAGENO";
14142 case DT_MIPS_RLD_MAP
:
14143 return "MIPS_RLD_MAP";
14144 case DT_MIPS_DELTA_CLASS
:
14145 return "MIPS_DELTA_CLASS";
14146 case DT_MIPS_DELTA_CLASS_NO
:
14147 return "MIPS_DELTA_CLASS_NO";
14148 case DT_MIPS_DELTA_INSTANCE
:
14149 return "MIPS_DELTA_INSTANCE";
14150 case DT_MIPS_DELTA_INSTANCE_NO
:
14151 return "MIPS_DELTA_INSTANCE_NO";
14152 case DT_MIPS_DELTA_RELOC
:
14153 return "MIPS_DELTA_RELOC";
14154 case DT_MIPS_DELTA_RELOC_NO
:
14155 return "MIPS_DELTA_RELOC_NO";
14156 case DT_MIPS_DELTA_SYM
:
14157 return "MIPS_DELTA_SYM";
14158 case DT_MIPS_DELTA_SYM_NO
:
14159 return "MIPS_DELTA_SYM_NO";
14160 case DT_MIPS_DELTA_CLASSSYM
:
14161 return "MIPS_DELTA_CLASSSYM";
14162 case DT_MIPS_DELTA_CLASSSYM_NO
:
14163 return "MIPS_DELTA_CLASSSYM_NO";
14164 case DT_MIPS_CXX_FLAGS
:
14165 return "MIPS_CXX_FLAGS";
14166 case DT_MIPS_PIXIE_INIT
:
14167 return "MIPS_PIXIE_INIT";
14168 case DT_MIPS_SYMBOL_LIB
:
14169 return "MIPS_SYMBOL_LIB";
14170 case DT_MIPS_LOCALPAGE_GOTIDX
:
14171 return "MIPS_LOCALPAGE_GOTIDX";
14172 case DT_MIPS_LOCAL_GOTIDX
:
14173 return "MIPS_LOCAL_GOTIDX";
14174 case DT_MIPS_HIDDEN_GOTIDX
:
14175 return "MIPS_HIDDEN_GOTIDX";
14176 case DT_MIPS_PROTECTED_GOTIDX
:
14177 return "MIPS_PROTECTED_GOT_IDX";
14178 case DT_MIPS_OPTIONS
:
14179 return "MIPS_OPTIONS";
14180 case DT_MIPS_INTERFACE
:
14181 return "MIPS_INTERFACE";
14182 case DT_MIPS_DYNSTR_ALIGN
:
14183 return "DT_MIPS_DYNSTR_ALIGN";
14184 case DT_MIPS_INTERFACE_SIZE
:
14185 return "DT_MIPS_INTERFACE_SIZE";
14186 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR
:
14187 return "DT_MIPS_RLD_TEXT_RESOLVE_ADDR";
14188 case DT_MIPS_PERF_SUFFIX
:
14189 return "DT_MIPS_PERF_SUFFIX";
14190 case DT_MIPS_COMPACT_SIZE
:
14191 return "DT_MIPS_COMPACT_SIZE";
14192 case DT_MIPS_GP_VALUE
:
14193 return "DT_MIPS_GP_VALUE";
14194 case DT_MIPS_AUX_DYNAMIC
:
14195 return "DT_MIPS_AUX_DYNAMIC";
14196 case DT_MIPS_PLTGOT
:
14197 return "DT_MIPS_PLTGOT";
14198 case DT_MIPS_RWPLT
:
14199 return "DT_MIPS_RWPLT";
14204 _bfd_mips_elf_print_private_bfd_data (bfd
*abfd
, void *ptr
)
14208 BFD_ASSERT (abfd
!= NULL
&& ptr
!= NULL
);
14210 /* Print normal ELF private data. */
14211 _bfd_elf_print_private_bfd_data (abfd
, ptr
);
14213 /* xgettext:c-format */
14214 fprintf (file
, _("private flags = %lx:"), elf_elfheader (abfd
)->e_flags
);
14216 if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_O32
)
14217 fprintf (file
, _(" [abi=O32]"));
14218 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_O64
)
14219 fprintf (file
, _(" [abi=O64]"));
14220 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_EABI32
)
14221 fprintf (file
, _(" [abi=EABI32]"));
14222 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_EABI64
)
14223 fprintf (file
, _(" [abi=EABI64]"));
14224 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
))
14225 fprintf (file
, _(" [abi unknown]"));
14226 else if (ABI_N32_P (abfd
))
14227 fprintf (file
, _(" [abi=N32]"));
14228 else if (ABI_64_P (abfd
))
14229 fprintf (file
, _(" [abi=64]"));
14231 fprintf (file
, _(" [no abi set]"));
14233 if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_1
)
14234 fprintf (file
, " [mips1]");
14235 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_2
)
14236 fprintf (file
, " [mips2]");
14237 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_3
)
14238 fprintf (file
, " [mips3]");
14239 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_4
)
14240 fprintf (file
, " [mips4]");
14241 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_5
)
14242 fprintf (file
, " [mips5]");
14243 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_32
)
14244 fprintf (file
, " [mips32]");
14245 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_64
)
14246 fprintf (file
, " [mips64]");
14247 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_32R2
)
14248 fprintf (file
, " [mips32r2]");
14249 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_64R2
)
14250 fprintf (file
, " [mips64r2]");
14252 fprintf (file
, _(" [unknown ISA]"));
14254 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH_ASE_MDMX
)
14255 fprintf (file
, " [mdmx]");
14257 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH_ASE_M16
)
14258 fprintf (file
, " [mips16]");
14260 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH_ASE_MICROMIPS
)
14261 fprintf (file
, " [micromips]");
14263 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_32BITMODE
)
14264 fprintf (file
, " [32bitmode]");
14266 fprintf (file
, _(" [not 32bitmode]"));
14268 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_NOREORDER
)
14269 fprintf (file
, " [noreorder]");
14271 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_PIC
)
14272 fprintf (file
, " [PIC]");
14274 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_CPIC
)
14275 fprintf (file
, " [CPIC]");
14277 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_XGOT
)
14278 fprintf (file
, " [XGOT]");
14280 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_UCODE
)
14281 fprintf (file
, " [UCODE]");
14283 fputc ('\n', file
);
14288 const struct bfd_elf_special_section _bfd_mips_elf_special_sections
[] =
14290 { STRING_COMMA_LEN (".lit4"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_MIPS_GPREL
},
14291 { STRING_COMMA_LEN (".lit8"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_MIPS_GPREL
},
14292 { STRING_COMMA_LEN (".mdebug"), 0, SHT_MIPS_DEBUG
, 0 },
14293 { STRING_COMMA_LEN (".sbss"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_MIPS_GPREL
},
14294 { STRING_COMMA_LEN (".sdata"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_MIPS_GPREL
},
14295 { STRING_COMMA_LEN (".ucode"), 0, SHT_MIPS_UCODE
, 0 },
14296 { NULL
, 0, 0, 0, 0 }
14299 /* Merge non visibility st_other attributes. Ensure that the
14300 STO_OPTIONAL flag is copied into h->other, even if this is not a
14301 definiton of the symbol. */
14303 _bfd_mips_elf_merge_symbol_attribute (struct elf_link_hash_entry
*h
,
14304 const Elf_Internal_Sym
*isym
,
14305 bfd_boolean definition
,
14306 bfd_boolean dynamic ATTRIBUTE_UNUSED
)
14308 if ((isym
->st_other
& ~ELF_ST_VISIBILITY (-1)) != 0)
14310 unsigned char other
;
14312 other
= (definition
? isym
->st_other
: h
->other
);
14313 other
&= ~ELF_ST_VISIBILITY (-1);
14314 h
->other
= other
| ELF_ST_VISIBILITY (h
->other
);
14318 && ELF_MIPS_IS_OPTIONAL (isym
->st_other
))
14319 h
->other
|= STO_OPTIONAL
;
14322 /* Decide whether an undefined symbol is special and can be ignored.
14323 This is the case for OPTIONAL symbols on IRIX. */
14325 _bfd_mips_elf_ignore_undef_symbol (struct elf_link_hash_entry
*h
)
14327 return ELF_MIPS_IS_OPTIONAL (h
->other
) ? TRUE
: FALSE
;
14331 _bfd_mips_elf_common_definition (Elf_Internal_Sym
*sym
)
14333 return (sym
->st_shndx
== SHN_COMMON
14334 || sym
->st_shndx
== SHN_MIPS_ACOMMON
14335 || sym
->st_shndx
== SHN_MIPS_SCOMMON
);
14338 /* Return address for Ith PLT stub in section PLT, for relocation REL
14339 or (bfd_vma) -1 if it should not be included. */
14342 _bfd_mips_elf_plt_sym_val (bfd_vma i
, const asection
*plt
,
14343 const arelent
*rel ATTRIBUTE_UNUSED
)
14346 + 4 * ARRAY_SIZE (mips_o32_exec_plt0_entry
)
14347 + i
* 4 * ARRAY_SIZE (mips_exec_plt_entry
));
14351 _bfd_mips_post_process_headers (bfd
*abfd
, struct bfd_link_info
*link_info
)
14353 struct mips_elf_link_hash_table
*htab
;
14354 Elf_Internal_Ehdr
*i_ehdrp
;
14356 i_ehdrp
= elf_elfheader (abfd
);
14359 htab
= mips_elf_hash_table (link_info
);
14360 BFD_ASSERT (htab
!= NULL
);
14362 if (htab
->use_plts_and_copy_relocs
&& !htab
->is_vxworks
)
14363 i_ehdrp
->e_ident
[EI_ABIVERSION
] = 1;