1 /* MIPS-specific support for ELF
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
5 Most of the information added by Ian Lance Taylor, Cygnus Support,
7 N32/64 ABI support added by Mark Mitchell, CodeSourcery, LLC.
8 <mark@codesourcery.com>
9 Traditional MIPS targets support added by Koundinya.K, Dansk Data
10 Elektronik & Operations Research Group. <kk@ddeorg.soft.net>
12 This file is part of BFD, the Binary File Descriptor library.
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 2 of the License, or
17 (at your option) any later version.
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
28 /* This file handles functionality common to the different MIPS ABI's. */
33 #include "libiberty.h"
35 #include "elfxx-mips.h"
37 #include "elf-vxworks.h"
39 /* Get the ECOFF swapping routines. */
41 #include "coff/symconst.h"
42 #include "coff/ecoff.h"
43 #include "coff/mips.h"
47 /* This structure is used to hold information about one GOT entry.
48 There are three types of entry:
50 (1) absolute addresses
52 (2) SYMBOL + OFFSET addresses, where SYMBOL is local to an input bfd
53 (abfd != NULL, symndx >= 0)
54 (3) global and forced-local symbols
55 (abfd != NULL, symndx == -1)
57 Type (3) entries are treated differently for different types of GOT.
58 In the "master" GOT -- i.e. the one that describes every GOT
59 reference needed in the link -- the mips_got_entry is keyed on both
60 the symbol and the input bfd that references it. If it turns out
61 that we need multiple GOTs, we can then use this information to
62 create separate GOTs for each input bfd.
64 However, we want each of these separate GOTs to have at most one
65 entry for a given symbol, so their type (3) entries are keyed only
66 on the symbol. The input bfd given by the "abfd" field is somewhat
67 arbitrary in this case.
69 This means that when there are multiple GOTs, each GOT has a unique
70 mips_got_entry for every symbol within it. We can therefore use the
71 mips_got_entry fields (tls_type and gotidx) to track the symbol's
74 However, if it turns out that we need only a single GOT, we continue
75 to use the master GOT to describe it. There may therefore be several
76 mips_got_entries for the same symbol, each with a different input bfd.
77 We want to make sure that each symbol gets a unique GOT entry, so when
78 there's a single GOT, we use the symbol's hash entry, not the
79 mips_got_entry fields, to track a symbol's GOT index. */
82 /* The input bfd in which the symbol is defined. */
84 /* The index of the symbol, as stored in the relocation r_info, if
85 we have a local symbol; -1 otherwise. */
89 /* If abfd == NULL, an address that must be stored in the got. */
91 /* If abfd != NULL && symndx != -1, the addend of the relocation
92 that should be added to the symbol value. */
94 /* If abfd != NULL && symndx == -1, the hash table entry
95 corresponding to a global symbol in the got (or, local, if
97 struct mips_elf_link_hash_entry
*h
;
100 /* The TLS types included in this GOT entry (specifically, GD and
101 IE). The GD and IE flags can be added as we encounter new
102 relocations. LDM can also be set; it will always be alone, not
103 combined with any GD or IE flags. An LDM GOT entry will be
104 a local symbol entry with r_symndx == 0. */
105 unsigned char tls_type
;
107 /* The offset from the beginning of the .got section to the entry
108 corresponding to this symbol+addend. If it's a global symbol
109 whose offset is yet to be decided, it's going to be -1. */
113 /* This structure is used to hold .got information when linking. */
117 /* The global symbol in the GOT with the lowest index in the dynamic
119 struct elf_link_hash_entry
*global_gotsym
;
120 /* The number of global .got entries. */
121 unsigned int global_gotno
;
122 /* The number of .got slots used for TLS. */
123 unsigned int tls_gotno
;
124 /* The first unused TLS .got entry. Used only during
125 mips_elf_initialize_tls_index. */
126 unsigned int tls_assigned_gotno
;
127 /* The number of local .got entries. */
128 unsigned int local_gotno
;
129 /* The number of local .got entries we have used. */
130 unsigned int assigned_gotno
;
131 /* A hash table holding members of the got. */
132 struct htab
*got_entries
;
133 /* A hash table mapping input bfds to other mips_got_info. NULL
134 unless multi-got was necessary. */
135 struct htab
*bfd2got
;
136 /* In multi-got links, a pointer to the next got (err, rather, most
137 of the time, it points to the previous got). */
138 struct mips_got_info
*next
;
139 /* This is the GOT index of the TLS LDM entry for the GOT, MINUS_ONE
140 for none, or MINUS_TWO for not yet assigned. This is needed
141 because a single-GOT link may have multiple hash table entries
142 for the LDM. It does not get initialized in multi-GOT mode. */
143 bfd_vma tls_ldm_offset
;
146 /* Map an input bfd to a got in a multi-got link. */
148 struct mips_elf_bfd2got_hash
{
150 struct mips_got_info
*g
;
153 /* Structure passed when traversing the bfd2got hash table, used to
154 create and merge bfd's gots. */
156 struct mips_elf_got_per_bfd_arg
158 /* A hashtable that maps bfds to gots. */
160 /* The output bfd. */
162 /* The link information. */
163 struct bfd_link_info
*info
;
164 /* A pointer to the primary got, i.e., the one that's going to get
165 the implicit relocations from DT_MIPS_LOCAL_GOTNO and
167 struct mips_got_info
*primary
;
168 /* A non-primary got we're trying to merge with other input bfd's
170 struct mips_got_info
*current
;
171 /* The maximum number of got entries that can be addressed with a
173 unsigned int max_count
;
174 /* The number of local and global entries in the primary got. */
175 unsigned int primary_count
;
176 /* The number of local and global entries in the current got. */
177 unsigned int current_count
;
178 /* The total number of global entries which will live in the
179 primary got and be automatically relocated. This includes
180 those not referenced by the primary GOT but included in
182 unsigned int global_count
;
185 /* Another structure used to pass arguments for got entries traversal. */
187 struct mips_elf_set_global_got_offset_arg
189 struct mips_got_info
*g
;
191 unsigned int needed_relocs
;
192 struct bfd_link_info
*info
;
195 /* A structure used to count TLS relocations or GOT entries, for GOT
196 entry or ELF symbol table traversal. */
198 struct mips_elf_count_tls_arg
200 struct bfd_link_info
*info
;
204 struct _mips_elf_section_data
206 struct bfd_elf_section_data elf
;
209 struct mips_got_info
*got_info
;
214 #define mips_elf_section_data(sec) \
215 ((struct _mips_elf_section_data *) elf_section_data (sec))
217 /* This structure is passed to mips_elf_sort_hash_table_f when sorting
218 the dynamic symbols. */
220 struct mips_elf_hash_sort_data
222 /* The symbol in the global GOT with the lowest dynamic symbol table
224 struct elf_link_hash_entry
*low
;
225 /* The least dynamic symbol table index corresponding to a non-TLS
226 symbol with a GOT entry. */
227 long min_got_dynindx
;
228 /* The greatest dynamic symbol table index corresponding to a symbol
229 with a GOT entry that is not referenced (e.g., a dynamic symbol
230 with dynamic relocations pointing to it from non-primary GOTs). */
231 long max_unref_got_dynindx
;
232 /* The greatest dynamic symbol table index not corresponding to a
233 symbol without a GOT entry. */
234 long max_non_got_dynindx
;
237 /* The MIPS ELF linker needs additional information for each symbol in
238 the global hash table. */
240 struct mips_elf_link_hash_entry
242 struct elf_link_hash_entry root
;
244 /* External symbol information. */
247 /* Number of R_MIPS_32, R_MIPS_REL32, or R_MIPS_64 relocs against
249 unsigned int possibly_dynamic_relocs
;
251 /* If the R_MIPS_32, R_MIPS_REL32, or R_MIPS_64 reloc is against
252 a readonly section. */
253 bfd_boolean readonly_reloc
;
255 /* We must not create a stub for a symbol that has relocations
256 related to taking the function's address, i.e. any but
257 R_MIPS_CALL*16 ones -- see "MIPS ABI Supplement, 3rd Edition",
259 bfd_boolean no_fn_stub
;
261 /* If there is a stub that 32 bit functions should use to call this
262 16 bit function, this points to the section containing the stub. */
265 /* Whether we need the fn_stub; this is set if this symbol appears
266 in any relocs other than a 16 bit call. */
267 bfd_boolean need_fn_stub
;
269 /* If there is a stub that 16 bit functions should use to call this
270 32 bit function, this points to the section containing the stub. */
273 /* This is like the call_stub field, but it is used if the function
274 being called returns a floating point value. */
275 asection
*call_fp_stub
;
277 /* Are we forced local? This will only be set if we have converted
278 the initial global GOT entry to a local GOT entry. */
279 bfd_boolean forced_local
;
281 /* Are we referenced by some kind of relocation? */
282 bfd_boolean is_relocation_target
;
284 /* Are we referenced by branch relocations? */
285 bfd_boolean is_branch_target
;
289 #define GOT_TLS_LDM 2
291 #define GOT_TLS_OFFSET_DONE 0x40
292 #define GOT_TLS_DONE 0x80
293 unsigned char tls_type
;
294 /* This is only used in single-GOT mode; in multi-GOT mode there
295 is one mips_got_entry per GOT entry, so the offset is stored
296 there. In single-GOT mode there may be many mips_got_entry
297 structures all referring to the same GOT slot. It might be
298 possible to use root.got.offset instead, but that field is
299 overloaded already. */
300 bfd_vma tls_got_offset
;
303 /* MIPS ELF linker hash table. */
305 struct mips_elf_link_hash_table
307 struct elf_link_hash_table root
;
309 /* We no longer use this. */
310 /* String section indices for the dynamic section symbols. */
311 bfd_size_type dynsym_sec_strindex
[SIZEOF_MIPS_DYNSYM_SECNAMES
];
313 /* The number of .rtproc entries. */
314 bfd_size_type procedure_count
;
315 /* The size of the .compact_rel section (if SGI_COMPAT). */
316 bfd_size_type compact_rel_size
;
317 /* This flag indicates that the value of DT_MIPS_RLD_MAP dynamic
318 entry is set to the address of __rld_obj_head as in IRIX5. */
319 bfd_boolean use_rld_obj_head
;
320 /* This is the value of the __rld_map or __rld_obj_head symbol. */
322 /* This is set if we see any mips16 stub sections. */
323 bfd_boolean mips16_stubs_seen
;
324 /* True if we're generating code for VxWorks. */
325 bfd_boolean is_vxworks
;
326 /* Shortcuts to some dynamic sections, or NULL if they are not
334 /* The size of the PLT header in bytes (VxWorks only). */
335 bfd_vma plt_header_size
;
336 /* The size of a PLT entry in bytes (VxWorks only). */
337 bfd_vma plt_entry_size
;
340 #define TLS_RELOC_P(r_type) \
341 (r_type == R_MIPS_TLS_DTPMOD32 \
342 || r_type == R_MIPS_TLS_DTPMOD64 \
343 || r_type == R_MIPS_TLS_DTPREL32 \
344 || r_type == R_MIPS_TLS_DTPREL64 \
345 || r_type == R_MIPS_TLS_GD \
346 || r_type == R_MIPS_TLS_LDM \
347 || r_type == R_MIPS_TLS_DTPREL_HI16 \
348 || r_type == R_MIPS_TLS_DTPREL_LO16 \
349 || r_type == R_MIPS_TLS_GOTTPREL \
350 || r_type == R_MIPS_TLS_TPREL32 \
351 || r_type == R_MIPS_TLS_TPREL64 \
352 || r_type == R_MIPS_TLS_TPREL_HI16 \
353 || r_type == R_MIPS_TLS_TPREL_LO16)
355 /* Structure used to pass information to mips_elf_output_extsym. */
360 struct bfd_link_info
*info
;
361 struct ecoff_debug_info
*debug
;
362 const struct ecoff_debug_swap
*swap
;
366 /* The names of the runtime procedure table symbols used on IRIX5. */
368 static const char * const mips_elf_dynsym_rtproc_names
[] =
371 "_procedure_string_table",
372 "_procedure_table_size",
376 /* These structures are used to generate the .compact_rel section on
381 unsigned long id1
; /* Always one? */
382 unsigned long num
; /* Number of compact relocation entries. */
383 unsigned long id2
; /* Always two? */
384 unsigned long offset
; /* The file offset of the first relocation. */
385 unsigned long reserved0
; /* Zero? */
386 unsigned long reserved1
; /* Zero? */
395 bfd_byte reserved0
[4];
396 bfd_byte reserved1
[4];
397 } Elf32_External_compact_rel
;
401 unsigned int ctype
: 1; /* 1: long 0: short format. See below. */
402 unsigned int rtype
: 4; /* Relocation types. See below. */
403 unsigned int dist2to
: 8;
404 unsigned int relvaddr
: 19; /* (VADDR - vaddr of the previous entry)/ 4 */
405 unsigned long konst
; /* KONST field. See below. */
406 unsigned long vaddr
; /* VADDR to be relocated. */
411 unsigned int ctype
: 1; /* 1: long 0: short format. See below. */
412 unsigned int rtype
: 4; /* Relocation types. See below. */
413 unsigned int dist2to
: 8;
414 unsigned int relvaddr
: 19; /* (VADDR - vaddr of the previous entry)/ 4 */
415 unsigned long konst
; /* KONST field. See below. */
423 } Elf32_External_crinfo
;
429 } Elf32_External_crinfo2
;
431 /* These are the constants used to swap the bitfields in a crinfo. */
433 #define CRINFO_CTYPE (0x1)
434 #define CRINFO_CTYPE_SH (31)
435 #define CRINFO_RTYPE (0xf)
436 #define CRINFO_RTYPE_SH (27)
437 #define CRINFO_DIST2TO (0xff)
438 #define CRINFO_DIST2TO_SH (19)
439 #define CRINFO_RELVADDR (0x7ffff)
440 #define CRINFO_RELVADDR_SH (0)
442 /* A compact relocation info has long (3 words) or short (2 words)
443 formats. A short format doesn't have VADDR field and relvaddr
444 fields contains ((VADDR - vaddr of the previous entry) >> 2). */
445 #define CRF_MIPS_LONG 1
446 #define CRF_MIPS_SHORT 0
448 /* There are 4 types of compact relocation at least. The value KONST
449 has different meaning for each type:
452 CT_MIPS_REL32 Address in data
453 CT_MIPS_WORD Address in word (XXX)
454 CT_MIPS_GPHI_LO GP - vaddr
455 CT_MIPS_JMPAD Address to jump
458 #define CRT_MIPS_REL32 0xa
459 #define CRT_MIPS_WORD 0xb
460 #define CRT_MIPS_GPHI_LO 0xc
461 #define CRT_MIPS_JMPAD 0xd
463 #define mips_elf_set_cr_format(x,format) ((x).ctype = (format))
464 #define mips_elf_set_cr_type(x,type) ((x).rtype = (type))
465 #define mips_elf_set_cr_dist2to(x,v) ((x).dist2to = (v))
466 #define mips_elf_set_cr_relvaddr(x,d) ((x).relvaddr = (d)<<2)
468 /* The structure of the runtime procedure descriptor created by the
469 loader for use by the static exception system. */
471 typedef struct runtime_pdr
{
472 bfd_vma adr
; /* Memory address of start of procedure. */
473 long regmask
; /* Save register mask. */
474 long regoffset
; /* Save register offset. */
475 long fregmask
; /* Save floating point register mask. */
476 long fregoffset
; /* Save floating point register offset. */
477 long frameoffset
; /* Frame size. */
478 short framereg
; /* Frame pointer register. */
479 short pcreg
; /* Offset or reg of return pc. */
480 long irpss
; /* Index into the runtime string table. */
482 struct exception_info
*exception_info
;/* Pointer to exception array. */
484 #define cbRPDR sizeof (RPDR)
485 #define rpdNil ((pRPDR) 0)
487 static struct mips_got_entry
*mips_elf_create_local_got_entry
488 (bfd
*, struct bfd_link_info
*, bfd
*, struct mips_got_info
*, asection
*,
489 asection
*, bfd_vma
, unsigned long, struct mips_elf_link_hash_entry
*, int);
490 static bfd_boolean mips_elf_sort_hash_table_f
491 (struct mips_elf_link_hash_entry
*, void *);
492 static bfd_vma mips_elf_high
494 static bfd_boolean mips_elf_stub_section_p
496 static bfd_boolean mips_elf_create_dynamic_relocation
497 (bfd
*, struct bfd_link_info
*, const Elf_Internal_Rela
*,
498 struct mips_elf_link_hash_entry
*, asection
*, bfd_vma
,
499 bfd_vma
*, asection
*);
500 static hashval_t mips_elf_got_entry_hash
502 static bfd_vma mips_elf_adjust_gp
503 (bfd
*, struct mips_got_info
*, bfd
*);
504 static struct mips_got_info
*mips_elf_got_for_ibfd
505 (struct mips_got_info
*, bfd
*);
507 /* This will be used when we sort the dynamic relocation records. */
508 static bfd
*reldyn_sorting_bfd
;
510 /* Nonzero if ABFD is using the N32 ABI. */
511 #define ABI_N32_P(abfd) \
512 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI2) != 0)
514 /* Nonzero if ABFD is using the N64 ABI. */
515 #define ABI_64_P(abfd) \
516 (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64)
518 /* Nonzero if ABFD is using NewABI conventions. */
519 #define NEWABI_P(abfd) (ABI_N32_P (abfd) || ABI_64_P (abfd))
521 /* The IRIX compatibility level we are striving for. */
522 #define IRIX_COMPAT(abfd) \
523 (get_elf_backend_data (abfd)->elf_backend_mips_irix_compat (abfd))
525 /* Whether we are trying to be compatible with IRIX at all. */
526 #define SGI_COMPAT(abfd) \
527 (IRIX_COMPAT (abfd) != ict_none)
529 /* The name of the options section. */
530 #define MIPS_ELF_OPTIONS_SECTION_NAME(abfd) \
531 (NEWABI_P (abfd) ? ".MIPS.options" : ".options")
533 /* True if NAME is the recognized name of any SHT_MIPS_OPTIONS section.
534 Some IRIX system files do not use MIPS_ELF_OPTIONS_SECTION_NAME. */
535 #define MIPS_ELF_OPTIONS_SECTION_NAME_P(NAME) \
536 (strcmp (NAME, ".MIPS.options") == 0 || strcmp (NAME, ".options") == 0)
538 /* Whether the section is readonly. */
539 #define MIPS_ELF_READONLY_SECTION(sec) \
540 ((sec->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY)) \
541 == (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
543 /* The name of the stub section. */
544 #define MIPS_ELF_STUB_SECTION_NAME(abfd) ".MIPS.stubs"
546 /* The size of an external REL relocation. */
547 #define MIPS_ELF_REL_SIZE(abfd) \
548 (get_elf_backend_data (abfd)->s->sizeof_rel)
550 /* The size of an external RELA relocation. */
551 #define MIPS_ELF_RELA_SIZE(abfd) \
552 (get_elf_backend_data (abfd)->s->sizeof_rela)
554 /* The size of an external dynamic table entry. */
555 #define MIPS_ELF_DYN_SIZE(abfd) \
556 (get_elf_backend_data (abfd)->s->sizeof_dyn)
558 /* The size of a GOT entry. */
559 #define MIPS_ELF_GOT_SIZE(abfd) \
560 (get_elf_backend_data (abfd)->s->arch_size / 8)
562 /* The size of a symbol-table entry. */
563 #define MIPS_ELF_SYM_SIZE(abfd) \
564 (get_elf_backend_data (abfd)->s->sizeof_sym)
566 /* The default alignment for sections, as a power of two. */
567 #define MIPS_ELF_LOG_FILE_ALIGN(abfd) \
568 (get_elf_backend_data (abfd)->s->log_file_align)
570 /* Get word-sized data. */
571 #define MIPS_ELF_GET_WORD(abfd, ptr) \
572 (ABI_64_P (abfd) ? bfd_get_64 (abfd, ptr) : bfd_get_32 (abfd, ptr))
574 /* Put out word-sized data. */
575 #define MIPS_ELF_PUT_WORD(abfd, val, ptr) \
577 ? bfd_put_64 (abfd, val, ptr) \
578 : bfd_put_32 (abfd, val, ptr))
580 /* Add a dynamic symbol table-entry. */
581 #define MIPS_ELF_ADD_DYNAMIC_ENTRY(info, tag, val) \
582 _bfd_elf_add_dynamic_entry (info, tag, val)
584 #define MIPS_ELF_RTYPE_TO_HOWTO(abfd, rtype, rela) \
585 (get_elf_backend_data (abfd)->elf_backend_mips_rtype_to_howto (rtype, rela))
587 /* Determine whether the internal relocation of index REL_IDX is REL
588 (zero) or RELA (non-zero). The assumption is that, if there are
589 two relocation sections for this section, one of them is REL and
590 the other is RELA. If the index of the relocation we're testing is
591 in range for the first relocation section, check that the external
592 relocation size is that for RELA. It is also assumed that, if
593 rel_idx is not in range for the first section, and this first
594 section contains REL relocs, then the relocation is in the second
595 section, that is RELA. */
596 #define MIPS_RELOC_RELA_P(abfd, sec, rel_idx) \
597 ((NUM_SHDR_ENTRIES (&elf_section_data (sec)->rel_hdr) \
598 * get_elf_backend_data (abfd)->s->int_rels_per_ext_rel \
599 > (bfd_vma)(rel_idx)) \
600 == (elf_section_data (sec)->rel_hdr.sh_entsize \
601 == (ABI_64_P (abfd) ? sizeof (Elf64_External_Rela) \
602 : sizeof (Elf32_External_Rela))))
604 /* The name of the dynamic relocation section. */
605 #define MIPS_ELF_REL_DYN_NAME(INFO) \
606 (mips_elf_hash_table (INFO)->is_vxworks ? ".rela.dyn" : ".rel.dyn")
608 /* In case we're on a 32-bit machine, construct a 64-bit "-1" value
609 from smaller values. Start with zero, widen, *then* decrement. */
610 #define MINUS_ONE (((bfd_vma)0) - 1)
611 #define MINUS_TWO (((bfd_vma)0) - 2)
613 /* The number of local .got entries we reserve. */
614 #define MIPS_RESERVED_GOTNO(INFO) \
615 (mips_elf_hash_table (INFO)->is_vxworks ? 3 : 2)
617 /* The offset of $gp from the beginning of the .got section. */
618 #define ELF_MIPS_GP_OFFSET(INFO) \
619 (mips_elf_hash_table (INFO)->is_vxworks ? 0x0 : 0x7ff0)
621 /* The maximum size of the GOT for it to be addressable using 16-bit
623 #define MIPS_ELF_GOT_MAX_SIZE(INFO) (ELF_MIPS_GP_OFFSET (INFO) + 0x7fff)
625 /* Instructions which appear in a stub. */
626 #define STUB_LW(abfd) \
628 ? 0xdf998010 /* ld t9,0x8010(gp) */ \
629 : 0x8f998010)) /* lw t9,0x8010(gp) */
630 #define STUB_MOVE(abfd) \
632 ? 0x03e0782d /* daddu t7,ra */ \
633 : 0x03e07821)) /* addu t7,ra */
634 #define STUB_JALR 0x0320f809 /* jalr t9,ra */
635 #define STUB_LI16(abfd) \
637 ? 0x64180000 /* daddiu t8,zero,0 */ \
638 : 0x24180000)) /* addiu t8,zero,0 */
639 #define MIPS_FUNCTION_STUB_SIZE (16)
641 /* The name of the dynamic interpreter. This is put in the .interp
644 #define ELF_DYNAMIC_INTERPRETER(abfd) \
645 (ABI_N32_P (abfd) ? "/usr/lib32/libc.so.1" \
646 : ABI_64_P (abfd) ? "/usr/lib64/libc.so.1" \
647 : "/usr/lib/libc.so.1")
650 #define MNAME(bfd,pre,pos) \
651 (ABI_64_P (bfd) ? CONCAT4 (pre,64,_,pos) : CONCAT4 (pre,32,_,pos))
652 #define ELF_R_SYM(bfd, i) \
653 (ABI_64_P (bfd) ? ELF64_R_SYM (i) : ELF32_R_SYM (i))
654 #define ELF_R_TYPE(bfd, i) \
655 (ABI_64_P (bfd) ? ELF64_MIPS_R_TYPE (i) : ELF32_R_TYPE (i))
656 #define ELF_R_INFO(bfd, s, t) \
657 (ABI_64_P (bfd) ? ELF64_R_INFO (s, t) : ELF32_R_INFO (s, t))
659 #define MNAME(bfd,pre,pos) CONCAT4 (pre,32,_,pos)
660 #define ELF_R_SYM(bfd, i) \
662 #define ELF_R_TYPE(bfd, i) \
664 #define ELF_R_INFO(bfd, s, t) \
665 (ELF32_R_INFO (s, t))
668 /* The mips16 compiler uses a couple of special sections to handle
669 floating point arguments.
671 Section names that look like .mips16.fn.FNNAME contain stubs that
672 copy floating point arguments from the fp regs to the gp regs and
673 then jump to FNNAME. If any 32 bit function calls FNNAME, the
674 call should be redirected to the stub instead. If no 32 bit
675 function calls FNNAME, the stub should be discarded. We need to
676 consider any reference to the function, not just a call, because
677 if the address of the function is taken we will need the stub,
678 since the address might be passed to a 32 bit function.
680 Section names that look like .mips16.call.FNNAME contain stubs
681 that copy floating point arguments from the gp regs to the fp
682 regs and then jump to FNNAME. If FNNAME is a 32 bit function,
683 then any 16 bit function that calls FNNAME should be redirected
684 to the stub instead. If FNNAME is not a 32 bit function, the
685 stub should be discarded.
687 .mips16.call.fp.FNNAME sections are similar, but contain stubs
688 which call FNNAME and then copy the return value from the fp regs
689 to the gp regs. These stubs store the return value in $18 while
690 calling FNNAME; any function which might call one of these stubs
691 must arrange to save $18 around the call. (This case is not
692 needed for 32 bit functions that call 16 bit functions, because
693 16 bit functions always return floating point values in both
696 Note that in all cases FNNAME might be defined statically.
697 Therefore, FNNAME is not used literally. Instead, the relocation
698 information will indicate which symbol the section is for.
700 We record any stubs that we find in the symbol table. */
702 #define FN_STUB ".mips16.fn."
703 #define CALL_STUB ".mips16.call."
704 #define CALL_FP_STUB ".mips16.call.fp."
706 /* The format of the first PLT entry in a VxWorks executable. */
707 static const bfd_vma mips_vxworks_exec_plt0_entry
[] = {
708 0x3c190000, /* lui t9, %hi(_GLOBAL_OFFSET_TABLE_) */
709 0x27390000, /* addiu t9, t9, %lo(_GLOBAL_OFFSET_TABLE_) */
710 0x8f390008, /* lw t9, 8(t9) */
711 0x00000000, /* nop */
712 0x03200008, /* jr t9 */
716 /* The format of subsequent PLT entries. */
717 static const bfd_vma mips_vxworks_exec_plt_entry
[] = {
718 0x10000000, /* b .PLT_resolver */
719 0x24180000, /* li t8, <pltindex> */
720 0x3c190000, /* lui t9, %hi(<.got.plt slot>) */
721 0x27390000, /* addiu t9, t9, %lo(<.got.plt slot>) */
722 0x8f390000, /* lw t9, 0(t9) */
723 0x00000000, /* nop */
724 0x03200008, /* jr t9 */
728 /* The format of the first PLT entry in a VxWorks shared object. */
729 static const bfd_vma mips_vxworks_shared_plt0_entry
[] = {
730 0x8f990008, /* lw t9, 8(gp) */
731 0x00000000, /* nop */
732 0x03200008, /* jr t9 */
733 0x00000000, /* nop */
734 0x00000000, /* nop */
738 /* The format of subsequent PLT entries. */
739 static const bfd_vma mips_vxworks_shared_plt_entry
[] = {
740 0x10000000, /* b .PLT_resolver */
741 0x24180000 /* li t8, <pltindex> */
744 /* Look up an entry in a MIPS ELF linker hash table. */
746 #define mips_elf_link_hash_lookup(table, string, create, copy, follow) \
747 ((struct mips_elf_link_hash_entry *) \
748 elf_link_hash_lookup (&(table)->root, (string), (create), \
751 /* Traverse a MIPS ELF linker hash table. */
753 #define mips_elf_link_hash_traverse(table, func, info) \
754 (elf_link_hash_traverse \
756 (bfd_boolean (*) (struct elf_link_hash_entry *, void *)) (func), \
759 /* Get the MIPS ELF linker hash table from a link_info structure. */
761 #define mips_elf_hash_table(p) \
762 ((struct mips_elf_link_hash_table *) ((p)->hash))
764 /* Find the base offsets for thread-local storage in this object,
765 for GD/LD and IE/LE respectively. */
767 #define TP_OFFSET 0x7000
768 #define DTP_OFFSET 0x8000
771 dtprel_base (struct bfd_link_info
*info
)
773 /* If tls_sec is NULL, we should have signalled an error already. */
774 if (elf_hash_table (info
)->tls_sec
== NULL
)
776 return elf_hash_table (info
)->tls_sec
->vma
+ DTP_OFFSET
;
780 tprel_base (struct bfd_link_info
*info
)
782 /* If tls_sec is NULL, we should have signalled an error already. */
783 if (elf_hash_table (info
)->tls_sec
== NULL
)
785 return elf_hash_table (info
)->tls_sec
->vma
+ TP_OFFSET
;
788 /* Create an entry in a MIPS ELF linker hash table. */
790 static struct bfd_hash_entry
*
791 mips_elf_link_hash_newfunc (struct bfd_hash_entry
*entry
,
792 struct bfd_hash_table
*table
, const char *string
)
794 struct mips_elf_link_hash_entry
*ret
=
795 (struct mips_elf_link_hash_entry
*) entry
;
797 /* Allocate the structure if it has not already been allocated by a
800 ret
= bfd_hash_allocate (table
, sizeof (struct mips_elf_link_hash_entry
));
802 return (struct bfd_hash_entry
*) ret
;
804 /* Call the allocation method of the superclass. */
805 ret
= ((struct mips_elf_link_hash_entry
*)
806 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
810 /* Set local fields. */
811 memset (&ret
->esym
, 0, sizeof (EXTR
));
812 /* We use -2 as a marker to indicate that the information has
813 not been set. -1 means there is no associated ifd. */
815 ret
->possibly_dynamic_relocs
= 0;
816 ret
->readonly_reloc
= FALSE
;
817 ret
->no_fn_stub
= FALSE
;
819 ret
->need_fn_stub
= FALSE
;
820 ret
->call_stub
= NULL
;
821 ret
->call_fp_stub
= NULL
;
822 ret
->forced_local
= FALSE
;
823 ret
->is_branch_target
= FALSE
;
824 ret
->is_relocation_target
= FALSE
;
825 ret
->tls_type
= GOT_NORMAL
;
828 return (struct bfd_hash_entry
*) ret
;
832 _bfd_mips_elf_new_section_hook (bfd
*abfd
, asection
*sec
)
834 if (!sec
->used_by_bfd
)
836 struct _mips_elf_section_data
*sdata
;
837 bfd_size_type amt
= sizeof (*sdata
);
839 sdata
= bfd_zalloc (abfd
, amt
);
842 sec
->used_by_bfd
= sdata
;
845 return _bfd_elf_new_section_hook (abfd
, sec
);
848 /* Read ECOFF debugging information from a .mdebug section into a
849 ecoff_debug_info structure. */
852 _bfd_mips_elf_read_ecoff_info (bfd
*abfd
, asection
*section
,
853 struct ecoff_debug_info
*debug
)
856 const struct ecoff_debug_swap
*swap
;
859 swap
= get_elf_backend_data (abfd
)->elf_backend_ecoff_debug_swap
;
860 memset (debug
, 0, sizeof (*debug
));
862 ext_hdr
= bfd_malloc (swap
->external_hdr_size
);
863 if (ext_hdr
== NULL
&& swap
->external_hdr_size
!= 0)
866 if (! bfd_get_section_contents (abfd
, section
, ext_hdr
, 0,
867 swap
->external_hdr_size
))
870 symhdr
= &debug
->symbolic_header
;
871 (*swap
->swap_hdr_in
) (abfd
, ext_hdr
, symhdr
);
873 /* The symbolic header contains absolute file offsets and sizes to
875 #define READ(ptr, offset, count, size, type) \
876 if (symhdr->count == 0) \
880 bfd_size_type amt = (bfd_size_type) size * symhdr->count; \
881 debug->ptr = bfd_malloc (amt); \
882 if (debug->ptr == NULL) \
884 if (bfd_seek (abfd, symhdr->offset, SEEK_SET) != 0 \
885 || bfd_bread (debug->ptr, amt, abfd) != amt) \
889 READ (line
, cbLineOffset
, cbLine
, sizeof (unsigned char), unsigned char *);
890 READ (external_dnr
, cbDnOffset
, idnMax
, swap
->external_dnr_size
, void *);
891 READ (external_pdr
, cbPdOffset
, ipdMax
, swap
->external_pdr_size
, void *);
892 READ (external_sym
, cbSymOffset
, isymMax
, swap
->external_sym_size
, void *);
893 READ (external_opt
, cbOptOffset
, ioptMax
, swap
->external_opt_size
, void *);
894 READ (external_aux
, cbAuxOffset
, iauxMax
, sizeof (union aux_ext
),
896 READ (ss
, cbSsOffset
, issMax
, sizeof (char), char *);
897 READ (ssext
, cbSsExtOffset
, issExtMax
, sizeof (char), char *);
898 READ (external_fdr
, cbFdOffset
, ifdMax
, swap
->external_fdr_size
, void *);
899 READ (external_rfd
, cbRfdOffset
, crfd
, swap
->external_rfd_size
, void *);
900 READ (external_ext
, cbExtOffset
, iextMax
, swap
->external_ext_size
, void *);
910 if (debug
->line
!= NULL
)
912 if (debug
->external_dnr
!= NULL
)
913 free (debug
->external_dnr
);
914 if (debug
->external_pdr
!= NULL
)
915 free (debug
->external_pdr
);
916 if (debug
->external_sym
!= NULL
)
917 free (debug
->external_sym
);
918 if (debug
->external_opt
!= NULL
)
919 free (debug
->external_opt
);
920 if (debug
->external_aux
!= NULL
)
921 free (debug
->external_aux
);
922 if (debug
->ss
!= NULL
)
924 if (debug
->ssext
!= NULL
)
926 if (debug
->external_fdr
!= NULL
)
927 free (debug
->external_fdr
);
928 if (debug
->external_rfd
!= NULL
)
929 free (debug
->external_rfd
);
930 if (debug
->external_ext
!= NULL
)
931 free (debug
->external_ext
);
935 /* Swap RPDR (runtime procedure table entry) for output. */
938 ecoff_swap_rpdr_out (bfd
*abfd
, const RPDR
*in
, struct rpdr_ext
*ex
)
940 H_PUT_S32 (abfd
, in
->adr
, ex
->p_adr
);
941 H_PUT_32 (abfd
, in
->regmask
, ex
->p_regmask
);
942 H_PUT_32 (abfd
, in
->regoffset
, ex
->p_regoffset
);
943 H_PUT_32 (abfd
, in
->fregmask
, ex
->p_fregmask
);
944 H_PUT_32 (abfd
, in
->fregoffset
, ex
->p_fregoffset
);
945 H_PUT_32 (abfd
, in
->frameoffset
, ex
->p_frameoffset
);
947 H_PUT_16 (abfd
, in
->framereg
, ex
->p_framereg
);
948 H_PUT_16 (abfd
, in
->pcreg
, ex
->p_pcreg
);
950 H_PUT_32 (abfd
, in
->irpss
, ex
->p_irpss
);
953 /* Create a runtime procedure table from the .mdebug section. */
956 mips_elf_create_procedure_table (void *handle
, bfd
*abfd
,
957 struct bfd_link_info
*info
, asection
*s
,
958 struct ecoff_debug_info
*debug
)
960 const struct ecoff_debug_swap
*swap
;
961 HDRR
*hdr
= &debug
->symbolic_header
;
963 struct rpdr_ext
*erp
;
965 struct pdr_ext
*epdr
;
966 struct sym_ext
*esym
;
971 unsigned long sindex
;
975 const char *no_name_func
= _("static procedure (no name)");
983 swap
= get_elf_backend_data (abfd
)->elf_backend_ecoff_debug_swap
;
985 sindex
= strlen (no_name_func
) + 1;
989 size
= swap
->external_pdr_size
;
991 epdr
= bfd_malloc (size
* count
);
995 if (! _bfd_ecoff_get_accumulated_pdr (handle
, (bfd_byte
*) epdr
))
998 size
= sizeof (RPDR
);
999 rp
= rpdr
= bfd_malloc (size
* count
);
1003 size
= sizeof (char *);
1004 sv
= bfd_malloc (size
* count
);
1008 count
= hdr
->isymMax
;
1009 size
= swap
->external_sym_size
;
1010 esym
= bfd_malloc (size
* count
);
1014 if (! _bfd_ecoff_get_accumulated_sym (handle
, (bfd_byte
*) esym
))
1017 count
= hdr
->issMax
;
1018 ss
= bfd_malloc (count
);
1021 if (! _bfd_ecoff_get_accumulated_ss (handle
, (bfd_byte
*) ss
))
1024 count
= hdr
->ipdMax
;
1025 for (i
= 0; i
< (unsigned long) count
; i
++, rp
++)
1027 (*swap
->swap_pdr_in
) (abfd
, epdr
+ i
, &pdr
);
1028 (*swap
->swap_sym_in
) (abfd
, &esym
[pdr
.isym
], &sym
);
1029 rp
->adr
= sym
.value
;
1030 rp
->regmask
= pdr
.regmask
;
1031 rp
->regoffset
= pdr
.regoffset
;
1032 rp
->fregmask
= pdr
.fregmask
;
1033 rp
->fregoffset
= pdr
.fregoffset
;
1034 rp
->frameoffset
= pdr
.frameoffset
;
1035 rp
->framereg
= pdr
.framereg
;
1036 rp
->pcreg
= pdr
.pcreg
;
1038 sv
[i
] = ss
+ sym
.iss
;
1039 sindex
+= strlen (sv
[i
]) + 1;
1043 size
= sizeof (struct rpdr_ext
) * (count
+ 2) + sindex
;
1044 size
= BFD_ALIGN (size
, 16);
1045 rtproc
= bfd_alloc (abfd
, size
);
1048 mips_elf_hash_table (info
)->procedure_count
= 0;
1052 mips_elf_hash_table (info
)->procedure_count
= count
+ 2;
1055 memset (erp
, 0, sizeof (struct rpdr_ext
));
1057 str
= (char *) rtproc
+ sizeof (struct rpdr_ext
) * (count
+ 2);
1058 strcpy (str
, no_name_func
);
1059 str
+= strlen (no_name_func
) + 1;
1060 for (i
= 0; i
< count
; i
++)
1062 ecoff_swap_rpdr_out (abfd
, rpdr
+ i
, erp
+ i
);
1063 strcpy (str
, sv
[i
]);
1064 str
+= strlen (sv
[i
]) + 1;
1066 H_PUT_S32 (abfd
, -1, (erp
+ count
)->p_adr
);
1068 /* Set the size and contents of .rtproc section. */
1070 s
->contents
= rtproc
;
1072 /* Skip this section later on (I don't think this currently
1073 matters, but someday it might). */
1074 s
->map_head
.link_order
= NULL
;
1103 /* Check the mips16 stubs for a particular symbol, and see if we can
1107 mips_elf_check_mips16_stubs (struct mips_elf_link_hash_entry
*h
,
1108 void *data ATTRIBUTE_UNUSED
)
1110 if (h
->root
.root
.type
== bfd_link_hash_warning
)
1111 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
1113 if (h
->fn_stub
!= NULL
1114 && ! h
->need_fn_stub
)
1116 /* We don't need the fn_stub; the only references to this symbol
1117 are 16 bit calls. Clobber the size to 0 to prevent it from
1118 being included in the link. */
1119 h
->fn_stub
->size
= 0;
1120 h
->fn_stub
->flags
&= ~SEC_RELOC
;
1121 h
->fn_stub
->reloc_count
= 0;
1122 h
->fn_stub
->flags
|= SEC_EXCLUDE
;
1125 if (h
->call_stub
!= NULL
1126 && h
->root
.other
== STO_MIPS16
)
1128 /* We don't need the call_stub; this is a 16 bit function, so
1129 calls from other 16 bit functions are OK. Clobber the size
1130 to 0 to prevent it from being included in the link. */
1131 h
->call_stub
->size
= 0;
1132 h
->call_stub
->flags
&= ~SEC_RELOC
;
1133 h
->call_stub
->reloc_count
= 0;
1134 h
->call_stub
->flags
|= SEC_EXCLUDE
;
1137 if (h
->call_fp_stub
!= NULL
1138 && h
->root
.other
== STO_MIPS16
)
1140 /* We don't need the call_stub; this is a 16 bit function, so
1141 calls from other 16 bit functions are OK. Clobber the size
1142 to 0 to prevent it from being included in the link. */
1143 h
->call_fp_stub
->size
= 0;
1144 h
->call_fp_stub
->flags
&= ~SEC_RELOC
;
1145 h
->call_fp_stub
->reloc_count
= 0;
1146 h
->call_fp_stub
->flags
|= SEC_EXCLUDE
;
1152 /* R_MIPS16_26 is used for the mips16 jal and jalx instructions.
1153 Most mips16 instructions are 16 bits, but these instructions
1156 The format of these instructions is:
1158 +--------------+--------------------------------+
1159 | JALX | X| Imm 20:16 | Imm 25:21 |
1160 +--------------+--------------------------------+
1162 +-----------------------------------------------+
1164 JALX is the 5-bit value 00011. X is 0 for jal, 1 for jalx.
1165 Note that the immediate value in the first word is swapped.
1167 When producing a relocatable object file, R_MIPS16_26 is
1168 handled mostly like R_MIPS_26. In particular, the addend is
1169 stored as a straight 26-bit value in a 32-bit instruction.
1170 (gas makes life simpler for itself by never adjusting a
1171 R_MIPS16_26 reloc to be against a section, so the addend is
1172 always zero). However, the 32 bit instruction is stored as 2
1173 16-bit values, rather than a single 32-bit value. In a
1174 big-endian file, the result is the same; in a little-endian
1175 file, the two 16-bit halves of the 32 bit value are swapped.
1176 This is so that a disassembler can recognize the jal
1179 When doing a final link, R_MIPS16_26 is treated as a 32 bit
1180 instruction stored as two 16-bit values. The addend A is the
1181 contents of the targ26 field. The calculation is the same as
1182 R_MIPS_26. When storing the calculated value, reorder the
1183 immediate value as shown above, and don't forget to store the
1184 value as two 16-bit values.
1186 To put it in MIPS ABI terms, the relocation field is T-targ26-16,
1190 +--------+----------------------+
1194 +--------+----------------------+
1197 +----------+------+-------------+
1201 +----------+--------------------+
1202 where targ26-16 is sub1 followed by sub2 (i.e., the addend field A is
1203 ((sub1 << 16) | sub2)).
1205 When producing a relocatable object file, the calculation is
1206 (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
1207 When producing a fully linked file, the calculation is
1208 let R = (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
1209 ((R & 0x1f0000) << 5) | ((R & 0x3e00000) >> 5) | (R & 0xffff)
1211 R_MIPS16_GPREL is used for GP-relative addressing in mips16
1212 mode. A typical instruction will have a format like this:
1214 +--------------+--------------------------------+
1215 | EXTEND | Imm 10:5 | Imm 15:11 |
1216 +--------------+--------------------------------+
1217 | Major | rx | ry | Imm 4:0 |
1218 +--------------+--------------------------------+
1220 EXTEND is the five bit value 11110. Major is the instruction
1223 This is handled exactly like R_MIPS_GPREL16, except that the
1224 addend is retrieved and stored as shown in this diagram; that
1225 is, the Imm fields above replace the V-rel16 field.
1227 All we need to do here is shuffle the bits appropriately. As
1228 above, the two 16-bit halves must be swapped on a
1229 little-endian system.
1231 R_MIPS16_HI16 and R_MIPS16_LO16 are used in mips16 mode to
1232 access data when neither GP-relative nor PC-relative addressing
1233 can be used. They are handled like R_MIPS_HI16 and R_MIPS_LO16,
1234 except that the addend is retrieved and stored as shown above
1238 _bfd_mips16_elf_reloc_unshuffle (bfd
*abfd
, int r_type
,
1239 bfd_boolean jal_shuffle
, bfd_byte
*data
)
1241 bfd_vma extend
, insn
, val
;
1243 if (r_type
!= R_MIPS16_26
&& r_type
!= R_MIPS16_GPREL
1244 && r_type
!= R_MIPS16_HI16
&& r_type
!= R_MIPS16_LO16
)
1247 /* Pick up the mips16 extend instruction and the real instruction. */
1248 extend
= bfd_get_16 (abfd
, data
);
1249 insn
= bfd_get_16 (abfd
, data
+ 2);
1250 if (r_type
== R_MIPS16_26
)
1253 val
= ((extend
& 0xfc00) << 16) | ((extend
& 0x3e0) << 11)
1254 | ((extend
& 0x1f) << 21) | insn
;
1256 val
= extend
<< 16 | insn
;
1259 val
= ((extend
& 0xf800) << 16) | ((insn
& 0xffe0) << 11)
1260 | ((extend
& 0x1f) << 11) | (extend
& 0x7e0) | (insn
& 0x1f);
1261 bfd_put_32 (abfd
, val
, data
);
1265 _bfd_mips16_elf_reloc_shuffle (bfd
*abfd
, int r_type
,
1266 bfd_boolean jal_shuffle
, bfd_byte
*data
)
1268 bfd_vma extend
, insn
, val
;
1270 if (r_type
!= R_MIPS16_26
&& r_type
!= R_MIPS16_GPREL
1271 && r_type
!= R_MIPS16_HI16
&& r_type
!= R_MIPS16_LO16
)
1274 val
= bfd_get_32 (abfd
, data
);
1275 if (r_type
== R_MIPS16_26
)
1279 insn
= val
& 0xffff;
1280 extend
= ((val
>> 16) & 0xfc00) | ((val
>> 11) & 0x3e0)
1281 | ((val
>> 21) & 0x1f);
1285 insn
= val
& 0xffff;
1291 insn
= ((val
>> 11) & 0xffe0) | (val
& 0x1f);
1292 extend
= ((val
>> 16) & 0xf800) | ((val
>> 11) & 0x1f) | (val
& 0x7e0);
1294 bfd_put_16 (abfd
, insn
, data
+ 2);
1295 bfd_put_16 (abfd
, extend
, data
);
1298 bfd_reloc_status_type
1299 _bfd_mips_elf_gprel16_with_gp (bfd
*abfd
, asymbol
*symbol
,
1300 arelent
*reloc_entry
, asection
*input_section
,
1301 bfd_boolean relocatable
, void *data
, bfd_vma gp
)
1305 bfd_reloc_status_type status
;
1307 if (bfd_is_com_section (symbol
->section
))
1310 relocation
= symbol
->value
;
1312 relocation
+= symbol
->section
->output_section
->vma
;
1313 relocation
+= symbol
->section
->output_offset
;
1315 if (reloc_entry
->address
> bfd_get_section_limit (abfd
, input_section
))
1316 return bfd_reloc_outofrange
;
1318 /* Set val to the offset into the section or symbol. */
1319 val
= reloc_entry
->addend
;
1321 _bfd_mips_elf_sign_extend (val
, 16);
1323 /* Adjust val for the final section location and GP value. If we
1324 are producing relocatable output, we don't want to do this for
1325 an external symbol. */
1327 || (symbol
->flags
& BSF_SECTION_SYM
) != 0)
1328 val
+= relocation
- gp
;
1330 if (reloc_entry
->howto
->partial_inplace
)
1332 status
= _bfd_relocate_contents (reloc_entry
->howto
, abfd
, val
,
1334 + reloc_entry
->address
);
1335 if (status
!= bfd_reloc_ok
)
1339 reloc_entry
->addend
= val
;
1342 reloc_entry
->address
+= input_section
->output_offset
;
1344 return bfd_reloc_ok
;
1347 /* Used to store a REL high-part relocation such as R_MIPS_HI16 or
1348 R_MIPS_GOT16. REL is the relocation, INPUT_SECTION is the section
1349 that contains the relocation field and DATA points to the start of
1354 struct mips_hi16
*next
;
1356 asection
*input_section
;
1360 /* FIXME: This should not be a static variable. */
1362 static struct mips_hi16
*mips_hi16_list
;
1364 /* A howto special_function for REL *HI16 relocations. We can only
1365 calculate the correct value once we've seen the partnering
1366 *LO16 relocation, so just save the information for later.
1368 The ABI requires that the *LO16 immediately follow the *HI16.
1369 However, as a GNU extension, we permit an arbitrary number of
1370 *HI16s to be associated with a single *LO16. This significantly
1371 simplies the relocation handling in gcc. */
1373 bfd_reloc_status_type
1374 _bfd_mips_elf_hi16_reloc (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*reloc_entry
,
1375 asymbol
*symbol ATTRIBUTE_UNUSED
, void *data
,
1376 asection
*input_section
, bfd
*output_bfd
,
1377 char **error_message ATTRIBUTE_UNUSED
)
1379 struct mips_hi16
*n
;
1381 if (reloc_entry
->address
> bfd_get_section_limit (abfd
, input_section
))
1382 return bfd_reloc_outofrange
;
1384 n
= bfd_malloc (sizeof *n
);
1386 return bfd_reloc_outofrange
;
1388 n
->next
= mips_hi16_list
;
1390 n
->input_section
= input_section
;
1391 n
->rel
= *reloc_entry
;
1394 if (output_bfd
!= NULL
)
1395 reloc_entry
->address
+= input_section
->output_offset
;
1397 return bfd_reloc_ok
;
1400 /* A howto special_function for REL R_MIPS_GOT16 relocations. This is just
1401 like any other 16-bit relocation when applied to global symbols, but is
1402 treated in the same as R_MIPS_HI16 when applied to local symbols. */
1404 bfd_reloc_status_type
1405 _bfd_mips_elf_got16_reloc (bfd
*abfd
, arelent
*reloc_entry
, asymbol
*symbol
,
1406 void *data
, asection
*input_section
,
1407 bfd
*output_bfd
, char **error_message
)
1409 if ((symbol
->flags
& (BSF_GLOBAL
| BSF_WEAK
)) != 0
1410 || bfd_is_und_section (bfd_get_section (symbol
))
1411 || bfd_is_com_section (bfd_get_section (symbol
)))
1412 /* The relocation is against a global symbol. */
1413 return _bfd_mips_elf_generic_reloc (abfd
, reloc_entry
, symbol
, data
,
1414 input_section
, output_bfd
,
1417 return _bfd_mips_elf_hi16_reloc (abfd
, reloc_entry
, symbol
, data
,
1418 input_section
, output_bfd
, error_message
);
1421 /* A howto special_function for REL *LO16 relocations. The *LO16 itself
1422 is a straightforward 16 bit inplace relocation, but we must deal with
1423 any partnering high-part relocations as well. */
1425 bfd_reloc_status_type
1426 _bfd_mips_elf_lo16_reloc (bfd
*abfd
, arelent
*reloc_entry
, asymbol
*symbol
,
1427 void *data
, asection
*input_section
,
1428 bfd
*output_bfd
, char **error_message
)
1431 bfd_byte
*location
= (bfd_byte
*) data
+ reloc_entry
->address
;
1433 if (reloc_entry
->address
> bfd_get_section_limit (abfd
, input_section
))
1434 return bfd_reloc_outofrange
;
1436 _bfd_mips16_elf_reloc_unshuffle (abfd
, reloc_entry
->howto
->type
, FALSE
,
1438 vallo
= bfd_get_32 (abfd
, location
);
1439 _bfd_mips16_elf_reloc_shuffle (abfd
, reloc_entry
->howto
->type
, FALSE
,
1442 while (mips_hi16_list
!= NULL
)
1444 bfd_reloc_status_type ret
;
1445 struct mips_hi16
*hi
;
1447 hi
= mips_hi16_list
;
1449 /* R_MIPS_GOT16 relocations are something of a special case. We
1450 want to install the addend in the same way as for a R_MIPS_HI16
1451 relocation (with a rightshift of 16). However, since GOT16
1452 relocations can also be used with global symbols, their howto
1453 has a rightshift of 0. */
1454 if (hi
->rel
.howto
->type
== R_MIPS_GOT16
)
1455 hi
->rel
.howto
= MIPS_ELF_RTYPE_TO_HOWTO (abfd
, R_MIPS_HI16
, FALSE
);
1457 /* VALLO is a signed 16-bit number. Bias it by 0x8000 so that any
1458 carry or borrow will induce a change of +1 or -1 in the high part. */
1459 hi
->rel
.addend
+= (vallo
+ 0x8000) & 0xffff;
1461 ret
= _bfd_mips_elf_generic_reloc (abfd
, &hi
->rel
, symbol
, hi
->data
,
1462 hi
->input_section
, output_bfd
,
1464 if (ret
!= bfd_reloc_ok
)
1467 mips_hi16_list
= hi
->next
;
1471 return _bfd_mips_elf_generic_reloc (abfd
, reloc_entry
, symbol
, data
,
1472 input_section
, output_bfd
,
1476 /* A generic howto special_function. This calculates and installs the
1477 relocation itself, thus avoiding the oft-discussed problems in
1478 bfd_perform_relocation and bfd_install_relocation. */
1480 bfd_reloc_status_type
1481 _bfd_mips_elf_generic_reloc (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*reloc_entry
,
1482 asymbol
*symbol
, void *data ATTRIBUTE_UNUSED
,
1483 asection
*input_section
, bfd
*output_bfd
,
1484 char **error_message ATTRIBUTE_UNUSED
)
1487 bfd_reloc_status_type status
;
1488 bfd_boolean relocatable
;
1490 relocatable
= (output_bfd
!= NULL
);
1492 if (reloc_entry
->address
> bfd_get_section_limit (abfd
, input_section
))
1493 return bfd_reloc_outofrange
;
1495 /* Build up the field adjustment in VAL. */
1497 if (!relocatable
|| (symbol
->flags
& BSF_SECTION_SYM
) != 0)
1499 /* Either we're calculating the final field value or we have a
1500 relocation against a section symbol. Add in the section's
1501 offset or address. */
1502 val
+= symbol
->section
->output_section
->vma
;
1503 val
+= symbol
->section
->output_offset
;
1508 /* We're calculating the final field value. Add in the symbol's value
1509 and, if pc-relative, subtract the address of the field itself. */
1510 val
+= symbol
->value
;
1511 if (reloc_entry
->howto
->pc_relative
)
1513 val
-= input_section
->output_section
->vma
;
1514 val
-= input_section
->output_offset
;
1515 val
-= reloc_entry
->address
;
1519 /* VAL is now the final adjustment. If we're keeping this relocation
1520 in the output file, and if the relocation uses a separate addend,
1521 we just need to add VAL to that addend. Otherwise we need to add
1522 VAL to the relocation field itself. */
1523 if (relocatable
&& !reloc_entry
->howto
->partial_inplace
)
1524 reloc_entry
->addend
+= val
;
1527 bfd_byte
*location
= (bfd_byte
*) data
+ reloc_entry
->address
;
1529 /* Add in the separate addend, if any. */
1530 val
+= reloc_entry
->addend
;
1532 /* Add VAL to the relocation field. */
1533 _bfd_mips16_elf_reloc_unshuffle (abfd
, reloc_entry
->howto
->type
, FALSE
,
1535 status
= _bfd_relocate_contents (reloc_entry
->howto
, abfd
, val
,
1537 _bfd_mips16_elf_reloc_shuffle (abfd
, reloc_entry
->howto
->type
, FALSE
,
1540 if (status
!= bfd_reloc_ok
)
1545 reloc_entry
->address
+= input_section
->output_offset
;
1547 return bfd_reloc_ok
;
1550 /* Swap an entry in a .gptab section. Note that these routines rely
1551 on the equivalence of the two elements of the union. */
1554 bfd_mips_elf32_swap_gptab_in (bfd
*abfd
, const Elf32_External_gptab
*ex
,
1557 in
->gt_entry
.gt_g_value
= H_GET_32 (abfd
, ex
->gt_entry
.gt_g_value
);
1558 in
->gt_entry
.gt_bytes
= H_GET_32 (abfd
, ex
->gt_entry
.gt_bytes
);
1562 bfd_mips_elf32_swap_gptab_out (bfd
*abfd
, const Elf32_gptab
*in
,
1563 Elf32_External_gptab
*ex
)
1565 H_PUT_32 (abfd
, in
->gt_entry
.gt_g_value
, ex
->gt_entry
.gt_g_value
);
1566 H_PUT_32 (abfd
, in
->gt_entry
.gt_bytes
, ex
->gt_entry
.gt_bytes
);
1570 bfd_elf32_swap_compact_rel_out (bfd
*abfd
, const Elf32_compact_rel
*in
,
1571 Elf32_External_compact_rel
*ex
)
1573 H_PUT_32 (abfd
, in
->id1
, ex
->id1
);
1574 H_PUT_32 (abfd
, in
->num
, ex
->num
);
1575 H_PUT_32 (abfd
, in
->id2
, ex
->id2
);
1576 H_PUT_32 (abfd
, in
->offset
, ex
->offset
);
1577 H_PUT_32 (abfd
, in
->reserved0
, ex
->reserved0
);
1578 H_PUT_32 (abfd
, in
->reserved1
, ex
->reserved1
);
1582 bfd_elf32_swap_crinfo_out (bfd
*abfd
, const Elf32_crinfo
*in
,
1583 Elf32_External_crinfo
*ex
)
1587 l
= (((in
->ctype
& CRINFO_CTYPE
) << CRINFO_CTYPE_SH
)
1588 | ((in
->rtype
& CRINFO_RTYPE
) << CRINFO_RTYPE_SH
)
1589 | ((in
->dist2to
& CRINFO_DIST2TO
) << CRINFO_DIST2TO_SH
)
1590 | ((in
->relvaddr
& CRINFO_RELVADDR
) << CRINFO_RELVADDR_SH
));
1591 H_PUT_32 (abfd
, l
, ex
->info
);
1592 H_PUT_32 (abfd
, in
->konst
, ex
->konst
);
1593 H_PUT_32 (abfd
, in
->vaddr
, ex
->vaddr
);
1596 /* A .reginfo section holds a single Elf32_RegInfo structure. These
1597 routines swap this structure in and out. They are used outside of
1598 BFD, so they are globally visible. */
1601 bfd_mips_elf32_swap_reginfo_in (bfd
*abfd
, const Elf32_External_RegInfo
*ex
,
1604 in
->ri_gprmask
= H_GET_32 (abfd
, ex
->ri_gprmask
);
1605 in
->ri_cprmask
[0] = H_GET_32 (abfd
, ex
->ri_cprmask
[0]);
1606 in
->ri_cprmask
[1] = H_GET_32 (abfd
, ex
->ri_cprmask
[1]);
1607 in
->ri_cprmask
[2] = H_GET_32 (abfd
, ex
->ri_cprmask
[2]);
1608 in
->ri_cprmask
[3] = H_GET_32 (abfd
, ex
->ri_cprmask
[3]);
1609 in
->ri_gp_value
= H_GET_32 (abfd
, ex
->ri_gp_value
);
1613 bfd_mips_elf32_swap_reginfo_out (bfd
*abfd
, const Elf32_RegInfo
*in
,
1614 Elf32_External_RegInfo
*ex
)
1616 H_PUT_32 (abfd
, in
->ri_gprmask
, ex
->ri_gprmask
);
1617 H_PUT_32 (abfd
, in
->ri_cprmask
[0], ex
->ri_cprmask
[0]);
1618 H_PUT_32 (abfd
, in
->ri_cprmask
[1], ex
->ri_cprmask
[1]);
1619 H_PUT_32 (abfd
, in
->ri_cprmask
[2], ex
->ri_cprmask
[2]);
1620 H_PUT_32 (abfd
, in
->ri_cprmask
[3], ex
->ri_cprmask
[3]);
1621 H_PUT_32 (abfd
, in
->ri_gp_value
, ex
->ri_gp_value
);
1624 /* In the 64 bit ABI, the .MIPS.options section holds register
1625 information in an Elf64_Reginfo structure. These routines swap
1626 them in and out. They are globally visible because they are used
1627 outside of BFD. These routines are here so that gas can call them
1628 without worrying about whether the 64 bit ABI has been included. */
1631 bfd_mips_elf64_swap_reginfo_in (bfd
*abfd
, const Elf64_External_RegInfo
*ex
,
1632 Elf64_Internal_RegInfo
*in
)
1634 in
->ri_gprmask
= H_GET_32 (abfd
, ex
->ri_gprmask
);
1635 in
->ri_pad
= H_GET_32 (abfd
, ex
->ri_pad
);
1636 in
->ri_cprmask
[0] = H_GET_32 (abfd
, ex
->ri_cprmask
[0]);
1637 in
->ri_cprmask
[1] = H_GET_32 (abfd
, ex
->ri_cprmask
[1]);
1638 in
->ri_cprmask
[2] = H_GET_32 (abfd
, ex
->ri_cprmask
[2]);
1639 in
->ri_cprmask
[3] = H_GET_32 (abfd
, ex
->ri_cprmask
[3]);
1640 in
->ri_gp_value
= H_GET_64 (abfd
, ex
->ri_gp_value
);
1644 bfd_mips_elf64_swap_reginfo_out (bfd
*abfd
, const Elf64_Internal_RegInfo
*in
,
1645 Elf64_External_RegInfo
*ex
)
1647 H_PUT_32 (abfd
, in
->ri_gprmask
, ex
->ri_gprmask
);
1648 H_PUT_32 (abfd
, in
->ri_pad
, ex
->ri_pad
);
1649 H_PUT_32 (abfd
, in
->ri_cprmask
[0], ex
->ri_cprmask
[0]);
1650 H_PUT_32 (abfd
, in
->ri_cprmask
[1], ex
->ri_cprmask
[1]);
1651 H_PUT_32 (abfd
, in
->ri_cprmask
[2], ex
->ri_cprmask
[2]);
1652 H_PUT_32 (abfd
, in
->ri_cprmask
[3], ex
->ri_cprmask
[3]);
1653 H_PUT_64 (abfd
, in
->ri_gp_value
, ex
->ri_gp_value
);
1656 /* Swap in an options header. */
1659 bfd_mips_elf_swap_options_in (bfd
*abfd
, const Elf_External_Options
*ex
,
1660 Elf_Internal_Options
*in
)
1662 in
->kind
= H_GET_8 (abfd
, ex
->kind
);
1663 in
->size
= H_GET_8 (abfd
, ex
->size
);
1664 in
->section
= H_GET_16 (abfd
, ex
->section
);
1665 in
->info
= H_GET_32 (abfd
, ex
->info
);
1668 /* Swap out an options header. */
1671 bfd_mips_elf_swap_options_out (bfd
*abfd
, const Elf_Internal_Options
*in
,
1672 Elf_External_Options
*ex
)
1674 H_PUT_8 (abfd
, in
->kind
, ex
->kind
);
1675 H_PUT_8 (abfd
, in
->size
, ex
->size
);
1676 H_PUT_16 (abfd
, in
->section
, ex
->section
);
1677 H_PUT_32 (abfd
, in
->info
, ex
->info
);
1680 /* This function is called via qsort() to sort the dynamic relocation
1681 entries by increasing r_symndx value. */
1684 sort_dynamic_relocs (const void *arg1
, const void *arg2
)
1686 Elf_Internal_Rela int_reloc1
;
1687 Elf_Internal_Rela int_reloc2
;
1689 bfd_elf32_swap_reloc_in (reldyn_sorting_bfd
, arg1
, &int_reloc1
);
1690 bfd_elf32_swap_reloc_in (reldyn_sorting_bfd
, arg2
, &int_reloc2
);
1692 return ELF32_R_SYM (int_reloc1
.r_info
) - ELF32_R_SYM (int_reloc2
.r_info
);
1695 /* Like sort_dynamic_relocs, but used for elf64 relocations. */
1698 sort_dynamic_relocs_64 (const void *arg1 ATTRIBUTE_UNUSED
,
1699 const void *arg2 ATTRIBUTE_UNUSED
)
1702 Elf_Internal_Rela int_reloc1
[3];
1703 Elf_Internal_Rela int_reloc2
[3];
1705 (*get_elf_backend_data (reldyn_sorting_bfd
)->s
->swap_reloc_in
)
1706 (reldyn_sorting_bfd
, arg1
, int_reloc1
);
1707 (*get_elf_backend_data (reldyn_sorting_bfd
)->s
->swap_reloc_in
)
1708 (reldyn_sorting_bfd
, arg2
, int_reloc2
);
1710 return (ELF64_R_SYM (int_reloc1
[0].r_info
)
1711 - ELF64_R_SYM (int_reloc2
[0].r_info
));
1718 /* This routine is used to write out ECOFF debugging external symbol
1719 information. It is called via mips_elf_link_hash_traverse. The
1720 ECOFF external symbol information must match the ELF external
1721 symbol information. Unfortunately, at this point we don't know
1722 whether a symbol is required by reloc information, so the two
1723 tables may wind up being different. We must sort out the external
1724 symbol information before we can set the final size of the .mdebug
1725 section, and we must set the size of the .mdebug section before we
1726 can relocate any sections, and we can't know which symbols are
1727 required by relocation until we relocate the sections.
1728 Fortunately, it is relatively unlikely that any symbol will be
1729 stripped but required by a reloc. In particular, it can not happen
1730 when generating a final executable. */
1733 mips_elf_output_extsym (struct mips_elf_link_hash_entry
*h
, void *data
)
1735 struct extsym_info
*einfo
= data
;
1737 asection
*sec
, *output_section
;
1739 if (h
->root
.root
.type
== bfd_link_hash_warning
)
1740 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
1742 if (h
->root
.indx
== -2)
1744 else if ((h
->root
.def_dynamic
1745 || h
->root
.ref_dynamic
1746 || h
->root
.type
== bfd_link_hash_new
)
1747 && !h
->root
.def_regular
1748 && !h
->root
.ref_regular
)
1750 else if (einfo
->info
->strip
== strip_all
1751 || (einfo
->info
->strip
== strip_some
1752 && bfd_hash_lookup (einfo
->info
->keep_hash
,
1753 h
->root
.root
.root
.string
,
1754 FALSE
, FALSE
) == NULL
))
1762 if (h
->esym
.ifd
== -2)
1765 h
->esym
.cobol_main
= 0;
1766 h
->esym
.weakext
= 0;
1767 h
->esym
.reserved
= 0;
1768 h
->esym
.ifd
= ifdNil
;
1769 h
->esym
.asym
.value
= 0;
1770 h
->esym
.asym
.st
= stGlobal
;
1772 if (h
->root
.root
.type
== bfd_link_hash_undefined
1773 || h
->root
.root
.type
== bfd_link_hash_undefweak
)
1777 /* Use undefined class. Also, set class and type for some
1779 name
= h
->root
.root
.root
.string
;
1780 if (strcmp (name
, mips_elf_dynsym_rtproc_names
[0]) == 0
1781 || strcmp (name
, mips_elf_dynsym_rtproc_names
[1]) == 0)
1783 h
->esym
.asym
.sc
= scData
;
1784 h
->esym
.asym
.st
= stLabel
;
1785 h
->esym
.asym
.value
= 0;
1787 else if (strcmp (name
, mips_elf_dynsym_rtproc_names
[2]) == 0)
1789 h
->esym
.asym
.sc
= scAbs
;
1790 h
->esym
.asym
.st
= stLabel
;
1791 h
->esym
.asym
.value
=
1792 mips_elf_hash_table (einfo
->info
)->procedure_count
;
1794 else if (strcmp (name
, "_gp_disp") == 0 && ! NEWABI_P (einfo
->abfd
))
1796 h
->esym
.asym
.sc
= scAbs
;
1797 h
->esym
.asym
.st
= stLabel
;
1798 h
->esym
.asym
.value
= elf_gp (einfo
->abfd
);
1801 h
->esym
.asym
.sc
= scUndefined
;
1803 else if (h
->root
.root
.type
!= bfd_link_hash_defined
1804 && h
->root
.root
.type
!= bfd_link_hash_defweak
)
1805 h
->esym
.asym
.sc
= scAbs
;
1810 sec
= h
->root
.root
.u
.def
.section
;
1811 output_section
= sec
->output_section
;
1813 /* When making a shared library and symbol h is the one from
1814 the another shared library, OUTPUT_SECTION may be null. */
1815 if (output_section
== NULL
)
1816 h
->esym
.asym
.sc
= scUndefined
;
1819 name
= bfd_section_name (output_section
->owner
, output_section
);
1821 if (strcmp (name
, ".text") == 0)
1822 h
->esym
.asym
.sc
= scText
;
1823 else if (strcmp (name
, ".data") == 0)
1824 h
->esym
.asym
.sc
= scData
;
1825 else if (strcmp (name
, ".sdata") == 0)
1826 h
->esym
.asym
.sc
= scSData
;
1827 else if (strcmp (name
, ".rodata") == 0
1828 || strcmp (name
, ".rdata") == 0)
1829 h
->esym
.asym
.sc
= scRData
;
1830 else if (strcmp (name
, ".bss") == 0)
1831 h
->esym
.asym
.sc
= scBss
;
1832 else if (strcmp (name
, ".sbss") == 0)
1833 h
->esym
.asym
.sc
= scSBss
;
1834 else if (strcmp (name
, ".init") == 0)
1835 h
->esym
.asym
.sc
= scInit
;
1836 else if (strcmp (name
, ".fini") == 0)
1837 h
->esym
.asym
.sc
= scFini
;
1839 h
->esym
.asym
.sc
= scAbs
;
1843 h
->esym
.asym
.reserved
= 0;
1844 h
->esym
.asym
.index
= indexNil
;
1847 if (h
->root
.root
.type
== bfd_link_hash_common
)
1848 h
->esym
.asym
.value
= h
->root
.root
.u
.c
.size
;
1849 else if (h
->root
.root
.type
== bfd_link_hash_defined
1850 || h
->root
.root
.type
== bfd_link_hash_defweak
)
1852 if (h
->esym
.asym
.sc
== scCommon
)
1853 h
->esym
.asym
.sc
= scBss
;
1854 else if (h
->esym
.asym
.sc
== scSCommon
)
1855 h
->esym
.asym
.sc
= scSBss
;
1857 sec
= h
->root
.root
.u
.def
.section
;
1858 output_section
= sec
->output_section
;
1859 if (output_section
!= NULL
)
1860 h
->esym
.asym
.value
= (h
->root
.root
.u
.def
.value
1861 + sec
->output_offset
1862 + output_section
->vma
);
1864 h
->esym
.asym
.value
= 0;
1866 else if (h
->root
.needs_plt
)
1868 struct mips_elf_link_hash_entry
*hd
= h
;
1869 bfd_boolean no_fn_stub
= h
->no_fn_stub
;
1871 while (hd
->root
.root
.type
== bfd_link_hash_indirect
)
1873 hd
= (struct mips_elf_link_hash_entry
*)h
->root
.root
.u
.i
.link
;
1874 no_fn_stub
= no_fn_stub
|| hd
->no_fn_stub
;
1879 /* Set type and value for a symbol with a function stub. */
1880 h
->esym
.asym
.st
= stProc
;
1881 sec
= hd
->root
.root
.u
.def
.section
;
1883 h
->esym
.asym
.value
= 0;
1886 output_section
= sec
->output_section
;
1887 if (output_section
!= NULL
)
1888 h
->esym
.asym
.value
= (hd
->root
.plt
.offset
1889 + sec
->output_offset
1890 + output_section
->vma
);
1892 h
->esym
.asym
.value
= 0;
1897 if (! bfd_ecoff_debug_one_external (einfo
->abfd
, einfo
->debug
, einfo
->swap
,
1898 h
->root
.root
.root
.string
,
1901 einfo
->failed
= TRUE
;
1908 /* A comparison routine used to sort .gptab entries. */
1911 gptab_compare (const void *p1
, const void *p2
)
1913 const Elf32_gptab
*a1
= p1
;
1914 const Elf32_gptab
*a2
= p2
;
1916 return a1
->gt_entry
.gt_g_value
- a2
->gt_entry
.gt_g_value
;
1919 /* Functions to manage the got entry hash table. */
1921 /* Use all 64 bits of a bfd_vma for the computation of a 32-bit
1924 static INLINE hashval_t
1925 mips_elf_hash_bfd_vma (bfd_vma addr
)
1928 return addr
+ (addr
>> 32);
1934 /* got_entries only match if they're identical, except for gotidx, so
1935 use all fields to compute the hash, and compare the appropriate
1939 mips_elf_got_entry_hash (const void *entry_
)
1941 const struct mips_got_entry
*entry
= (struct mips_got_entry
*)entry_
;
1943 return entry
->symndx
1944 + ((entry
->tls_type
& GOT_TLS_LDM
) << 17)
1945 + (! entry
->abfd
? mips_elf_hash_bfd_vma (entry
->d
.address
)
1947 + (entry
->symndx
>= 0 ? mips_elf_hash_bfd_vma (entry
->d
.addend
)
1948 : entry
->d
.h
->root
.root
.root
.hash
));
1952 mips_elf_got_entry_eq (const void *entry1
, const void *entry2
)
1954 const struct mips_got_entry
*e1
= (struct mips_got_entry
*)entry1
;
1955 const struct mips_got_entry
*e2
= (struct mips_got_entry
*)entry2
;
1957 /* An LDM entry can only match another LDM entry. */
1958 if ((e1
->tls_type
^ e2
->tls_type
) & GOT_TLS_LDM
)
1961 return e1
->abfd
== e2
->abfd
&& e1
->symndx
== e2
->symndx
1962 && (! e1
->abfd
? e1
->d
.address
== e2
->d
.address
1963 : e1
->symndx
>= 0 ? e1
->d
.addend
== e2
->d
.addend
1964 : e1
->d
.h
== e2
->d
.h
);
1967 /* multi_got_entries are still a match in the case of global objects,
1968 even if the input bfd in which they're referenced differs, so the
1969 hash computation and compare functions are adjusted
1973 mips_elf_multi_got_entry_hash (const void *entry_
)
1975 const struct mips_got_entry
*entry
= (struct mips_got_entry
*)entry_
;
1977 return entry
->symndx
1979 ? mips_elf_hash_bfd_vma (entry
->d
.address
)
1980 : entry
->symndx
>= 0
1981 ? ((entry
->tls_type
& GOT_TLS_LDM
)
1982 ? (GOT_TLS_LDM
<< 17)
1984 + mips_elf_hash_bfd_vma (entry
->d
.addend
)))
1985 : entry
->d
.h
->root
.root
.root
.hash
);
1989 mips_elf_multi_got_entry_eq (const void *entry1
, const void *entry2
)
1991 const struct mips_got_entry
*e1
= (struct mips_got_entry
*)entry1
;
1992 const struct mips_got_entry
*e2
= (struct mips_got_entry
*)entry2
;
1994 /* Any two LDM entries match. */
1995 if (e1
->tls_type
& e2
->tls_type
& GOT_TLS_LDM
)
1998 /* Nothing else matches an LDM entry. */
1999 if ((e1
->tls_type
^ e2
->tls_type
) & GOT_TLS_LDM
)
2002 return e1
->symndx
== e2
->symndx
2003 && (e1
->symndx
>= 0 ? e1
->abfd
== e2
->abfd
&& e1
->d
.addend
== e2
->d
.addend
2004 : e1
->abfd
== NULL
|| e2
->abfd
== NULL
2005 ? e1
->abfd
== e2
->abfd
&& e1
->d
.address
== e2
->d
.address
2006 : e1
->d
.h
== e2
->d
.h
);
2009 /* Return the dynamic relocation section. If it doesn't exist, try to
2010 create a new it if CREATE_P, otherwise return NULL. Also return NULL
2011 if creation fails. */
2014 mips_elf_rel_dyn_section (struct bfd_link_info
*info
, bfd_boolean create_p
)
2020 dname
= MIPS_ELF_REL_DYN_NAME (info
);
2021 dynobj
= elf_hash_table (info
)->dynobj
;
2022 sreloc
= bfd_get_section_by_name (dynobj
, dname
);
2023 if (sreloc
== NULL
&& create_p
)
2025 sreloc
= bfd_make_section_with_flags (dynobj
, dname
,
2030 | SEC_LINKER_CREATED
2033 || ! bfd_set_section_alignment (dynobj
, sreloc
,
2034 MIPS_ELF_LOG_FILE_ALIGN (dynobj
)))
2040 /* Returns the GOT section for ABFD. */
2043 mips_elf_got_section (bfd
*abfd
, bfd_boolean maybe_excluded
)
2045 asection
*sgot
= bfd_get_section_by_name (abfd
, ".got");
2047 || (! maybe_excluded
&& (sgot
->flags
& SEC_EXCLUDE
) != 0))
2052 /* Returns the GOT information associated with the link indicated by
2053 INFO. If SGOTP is non-NULL, it is filled in with the GOT
2056 static struct mips_got_info
*
2057 mips_elf_got_info (bfd
*abfd
, asection
**sgotp
)
2060 struct mips_got_info
*g
;
2062 sgot
= mips_elf_got_section (abfd
, TRUE
);
2063 BFD_ASSERT (sgot
!= NULL
);
2064 BFD_ASSERT (mips_elf_section_data (sgot
) != NULL
);
2065 g
= mips_elf_section_data (sgot
)->u
.got_info
;
2066 BFD_ASSERT (g
!= NULL
);
2069 *sgotp
= (sgot
->flags
& SEC_EXCLUDE
) == 0 ? sgot
: NULL
;
2074 /* Count the number of relocations needed for a TLS GOT entry, with
2075 access types from TLS_TYPE, and symbol H (or a local symbol if H
2079 mips_tls_got_relocs (struct bfd_link_info
*info
, unsigned char tls_type
,
2080 struct elf_link_hash_entry
*h
)
2084 bfd_boolean need_relocs
= FALSE
;
2085 bfd_boolean dyn
= elf_hash_table (info
)->dynamic_sections_created
;
2087 if (h
&& WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, h
)
2088 && (!info
->shared
|| !SYMBOL_REFERENCES_LOCAL (info
, h
)))
2091 if ((info
->shared
|| indx
!= 0)
2093 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
2094 || h
->root
.type
!= bfd_link_hash_undefweak
))
2100 if (tls_type
& GOT_TLS_GD
)
2107 if (tls_type
& GOT_TLS_IE
)
2110 if ((tls_type
& GOT_TLS_LDM
) && info
->shared
)
2116 /* Count the number of TLS relocations required for the GOT entry in
2117 ARG1, if it describes a local symbol. */
2120 mips_elf_count_local_tls_relocs (void **arg1
, void *arg2
)
2122 struct mips_got_entry
*entry
= * (struct mips_got_entry
**) arg1
;
2123 struct mips_elf_count_tls_arg
*arg
= arg2
;
2125 if (entry
->abfd
!= NULL
&& entry
->symndx
!= -1)
2126 arg
->needed
+= mips_tls_got_relocs (arg
->info
, entry
->tls_type
, NULL
);
2131 /* Count the number of TLS GOT entries required for the global (or
2132 forced-local) symbol in ARG1. */
2135 mips_elf_count_global_tls_entries (void *arg1
, void *arg2
)
2137 struct mips_elf_link_hash_entry
*hm
2138 = (struct mips_elf_link_hash_entry
*) arg1
;
2139 struct mips_elf_count_tls_arg
*arg
= arg2
;
2141 if (hm
->tls_type
& GOT_TLS_GD
)
2143 if (hm
->tls_type
& GOT_TLS_IE
)
2149 /* Count the number of TLS relocations required for the global (or
2150 forced-local) symbol in ARG1. */
2153 mips_elf_count_global_tls_relocs (void *arg1
, void *arg2
)
2155 struct mips_elf_link_hash_entry
*hm
2156 = (struct mips_elf_link_hash_entry
*) arg1
;
2157 struct mips_elf_count_tls_arg
*arg
= arg2
;
2159 arg
->needed
+= mips_tls_got_relocs (arg
->info
, hm
->tls_type
, &hm
->root
);
2164 /* Output a simple dynamic relocation into SRELOC. */
2167 mips_elf_output_dynamic_relocation (bfd
*output_bfd
,
2173 Elf_Internal_Rela rel
[3];
2175 memset (rel
, 0, sizeof (rel
));
2177 rel
[0].r_info
= ELF_R_INFO (output_bfd
, indx
, r_type
);
2178 rel
[0].r_offset
= rel
[1].r_offset
= rel
[2].r_offset
= offset
;
2180 if (ABI_64_P (output_bfd
))
2182 (*get_elf_backend_data (output_bfd
)->s
->swap_reloc_out
)
2183 (output_bfd
, &rel
[0],
2185 + sreloc
->reloc_count
* sizeof (Elf64_Mips_External_Rel
)));
2188 bfd_elf32_swap_reloc_out
2189 (output_bfd
, &rel
[0],
2191 + sreloc
->reloc_count
* sizeof (Elf32_External_Rel
)));
2192 ++sreloc
->reloc_count
;
2195 /* Initialize a set of TLS GOT entries for one symbol. */
2198 mips_elf_initialize_tls_slots (bfd
*abfd
, bfd_vma got_offset
,
2199 unsigned char *tls_type_p
,
2200 struct bfd_link_info
*info
,
2201 struct mips_elf_link_hash_entry
*h
,
2205 asection
*sreloc
, *sgot
;
2206 bfd_vma offset
, offset2
;
2208 bfd_boolean need_relocs
= FALSE
;
2210 dynobj
= elf_hash_table (info
)->dynobj
;
2211 sgot
= mips_elf_got_section (dynobj
, FALSE
);
2216 bfd_boolean dyn
= elf_hash_table (info
)->dynamic_sections_created
;
2218 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, &h
->root
)
2219 && (!info
->shared
|| !SYMBOL_REFERENCES_LOCAL (info
, &h
->root
)))
2220 indx
= h
->root
.dynindx
;
2223 if (*tls_type_p
& GOT_TLS_DONE
)
2226 if ((info
->shared
|| indx
!= 0)
2228 || ELF_ST_VISIBILITY (h
->root
.other
) == STV_DEFAULT
2229 || h
->root
.type
!= bfd_link_hash_undefweak
))
2232 /* MINUS_ONE means the symbol is not defined in this object. It may not
2233 be defined at all; assume that the value doesn't matter in that
2234 case. Otherwise complain if we would use the value. */
2235 BFD_ASSERT (value
!= MINUS_ONE
|| (indx
!= 0 && need_relocs
)
2236 || h
->root
.root
.type
== bfd_link_hash_undefweak
);
2238 /* Emit necessary relocations. */
2239 sreloc
= mips_elf_rel_dyn_section (info
, FALSE
);
2241 /* General Dynamic. */
2242 if (*tls_type_p
& GOT_TLS_GD
)
2244 offset
= got_offset
;
2245 offset2
= offset
+ MIPS_ELF_GOT_SIZE (abfd
);
2249 mips_elf_output_dynamic_relocation
2250 (abfd
, sreloc
, indx
,
2251 ABI_64_P (abfd
) ? R_MIPS_TLS_DTPMOD64
: R_MIPS_TLS_DTPMOD32
,
2252 sgot
->output_offset
+ sgot
->output_section
->vma
+ offset
);
2255 mips_elf_output_dynamic_relocation
2256 (abfd
, sreloc
, indx
,
2257 ABI_64_P (abfd
) ? R_MIPS_TLS_DTPREL64
: R_MIPS_TLS_DTPREL32
,
2258 sgot
->output_offset
+ sgot
->output_section
->vma
+ offset2
);
2260 MIPS_ELF_PUT_WORD (abfd
, value
- dtprel_base (info
),
2261 sgot
->contents
+ offset2
);
2265 MIPS_ELF_PUT_WORD (abfd
, 1,
2266 sgot
->contents
+ offset
);
2267 MIPS_ELF_PUT_WORD (abfd
, value
- dtprel_base (info
),
2268 sgot
->contents
+ offset2
);
2271 got_offset
+= 2 * MIPS_ELF_GOT_SIZE (abfd
);
2274 /* Initial Exec model. */
2275 if (*tls_type_p
& GOT_TLS_IE
)
2277 offset
= got_offset
;
2282 MIPS_ELF_PUT_WORD (abfd
, value
- elf_hash_table (info
)->tls_sec
->vma
,
2283 sgot
->contents
+ offset
);
2285 MIPS_ELF_PUT_WORD (abfd
, 0,
2286 sgot
->contents
+ offset
);
2288 mips_elf_output_dynamic_relocation
2289 (abfd
, sreloc
, indx
,
2290 ABI_64_P (abfd
) ? R_MIPS_TLS_TPREL64
: R_MIPS_TLS_TPREL32
,
2291 sgot
->output_offset
+ sgot
->output_section
->vma
+ offset
);
2294 MIPS_ELF_PUT_WORD (abfd
, value
- tprel_base (info
),
2295 sgot
->contents
+ offset
);
2298 if (*tls_type_p
& GOT_TLS_LDM
)
2300 /* The initial offset is zero, and the LD offsets will include the
2301 bias by DTP_OFFSET. */
2302 MIPS_ELF_PUT_WORD (abfd
, 0,
2303 sgot
->contents
+ got_offset
2304 + MIPS_ELF_GOT_SIZE (abfd
));
2307 MIPS_ELF_PUT_WORD (abfd
, 1,
2308 sgot
->contents
+ got_offset
);
2310 mips_elf_output_dynamic_relocation
2311 (abfd
, sreloc
, indx
,
2312 ABI_64_P (abfd
) ? R_MIPS_TLS_DTPMOD64
: R_MIPS_TLS_DTPMOD32
,
2313 sgot
->output_offset
+ sgot
->output_section
->vma
+ got_offset
);
2316 *tls_type_p
|= GOT_TLS_DONE
;
2319 /* Return the GOT index to use for a relocation of type R_TYPE against
2320 a symbol accessed using TLS_TYPE models. The GOT entries for this
2321 symbol in this GOT start at GOT_INDEX. This function initializes the
2322 GOT entries and corresponding relocations. */
2325 mips_tls_got_index (bfd
*abfd
, bfd_vma got_index
, unsigned char *tls_type
,
2326 int r_type
, struct bfd_link_info
*info
,
2327 struct mips_elf_link_hash_entry
*h
, bfd_vma symbol
)
2329 BFD_ASSERT (r_type
== R_MIPS_TLS_GOTTPREL
|| r_type
== R_MIPS_TLS_GD
2330 || r_type
== R_MIPS_TLS_LDM
);
2332 mips_elf_initialize_tls_slots (abfd
, got_index
, tls_type
, info
, h
, symbol
);
2334 if (r_type
== R_MIPS_TLS_GOTTPREL
)
2336 BFD_ASSERT (*tls_type
& GOT_TLS_IE
);
2337 if (*tls_type
& GOT_TLS_GD
)
2338 return got_index
+ 2 * MIPS_ELF_GOT_SIZE (abfd
);
2343 if (r_type
== R_MIPS_TLS_GD
)
2345 BFD_ASSERT (*tls_type
& GOT_TLS_GD
);
2349 if (r_type
== R_MIPS_TLS_LDM
)
2351 BFD_ASSERT (*tls_type
& GOT_TLS_LDM
);
2358 /* Return the offset from _GLOBAL_OFFSET_TABLE_ of the .got.plt entry
2359 for global symbol H. .got.plt comes before the GOT, so the offset
2360 will be negative. */
2363 mips_elf_gotplt_index (struct bfd_link_info
*info
,
2364 struct elf_link_hash_entry
*h
)
2366 bfd_vma plt_index
, got_address
, got_value
;
2367 struct mips_elf_link_hash_table
*htab
;
2369 htab
= mips_elf_hash_table (info
);
2370 BFD_ASSERT (h
->plt
.offset
!= (bfd_vma
) -1);
2372 /* Calculate the index of the symbol's PLT entry. */
2373 plt_index
= (h
->plt
.offset
- htab
->plt_header_size
) / htab
->plt_entry_size
;
2375 /* Calculate the address of the associated .got.plt entry. */
2376 got_address
= (htab
->sgotplt
->output_section
->vma
2377 + htab
->sgotplt
->output_offset
2380 /* Calculate the value of _GLOBAL_OFFSET_TABLE_. */
2381 got_value
= (htab
->root
.hgot
->root
.u
.def
.section
->output_section
->vma
2382 + htab
->root
.hgot
->root
.u
.def
.section
->output_offset
2383 + htab
->root
.hgot
->root
.u
.def
.value
);
2385 return got_address
- got_value
;
2388 /* Return the GOT offset for address VALUE, which was derived from
2389 a symbol belonging to INPUT_SECTION. If there is not yet a GOT
2390 entry for this value, create one. If R_SYMNDX refers to a TLS symbol,
2391 create a TLS GOT entry instead. Return -1 if no satisfactory GOT
2392 offset can be found. */
2395 mips_elf_local_got_index (bfd
*abfd
, bfd
*ibfd
, struct bfd_link_info
*info
,
2396 asection
*input_section
, bfd_vma value
,
2397 unsigned long r_symndx
,
2398 struct mips_elf_link_hash_entry
*h
, int r_type
)
2401 struct mips_got_info
*g
;
2402 struct mips_got_entry
*entry
;
2404 g
= mips_elf_got_info (elf_hash_table (info
)->dynobj
, &sgot
);
2406 entry
= mips_elf_create_local_got_entry (abfd
, info
, ibfd
, g
, sgot
,
2407 input_section
, value
,
2408 r_symndx
, h
, r_type
);
2412 if (TLS_RELOC_P (r_type
))
2414 if (entry
->symndx
== -1 && g
->next
== NULL
)
2415 /* A type (3) entry in the single-GOT case. We use the symbol's
2416 hash table entry to track the index. */
2417 return mips_tls_got_index (abfd
, h
->tls_got_offset
, &h
->tls_type
,
2418 r_type
, info
, h
, value
);
2420 return mips_tls_got_index (abfd
, entry
->gotidx
, &entry
->tls_type
,
2421 r_type
, info
, h
, value
);
2424 return entry
->gotidx
;
2427 /* Returns the GOT index for the global symbol indicated by H. */
2430 mips_elf_global_got_index (bfd
*abfd
, bfd
*ibfd
, struct elf_link_hash_entry
*h
,
2431 int r_type
, struct bfd_link_info
*info
)
2435 struct mips_got_info
*g
, *gg
;
2436 long global_got_dynindx
= 0;
2438 gg
= g
= mips_elf_got_info (abfd
, &sgot
);
2439 if (g
->bfd2got
&& ibfd
)
2441 struct mips_got_entry e
, *p
;
2443 BFD_ASSERT (h
->dynindx
>= 0);
2445 g
= mips_elf_got_for_ibfd (g
, ibfd
);
2446 if (g
->next
!= gg
|| TLS_RELOC_P (r_type
))
2450 e
.d
.h
= (struct mips_elf_link_hash_entry
*)h
;
2453 p
= htab_find (g
->got_entries
, &e
);
2455 BFD_ASSERT (p
->gotidx
> 0);
2457 if (TLS_RELOC_P (r_type
))
2459 bfd_vma value
= MINUS_ONE
;
2460 if ((h
->root
.type
== bfd_link_hash_defined
2461 || h
->root
.type
== bfd_link_hash_defweak
)
2462 && h
->root
.u
.def
.section
->output_section
)
2463 value
= (h
->root
.u
.def
.value
2464 + h
->root
.u
.def
.section
->output_offset
2465 + h
->root
.u
.def
.section
->output_section
->vma
);
2467 return mips_tls_got_index (abfd
, p
->gotidx
, &p
->tls_type
, r_type
,
2468 info
, e
.d
.h
, value
);
2475 if (gg
->global_gotsym
!= NULL
)
2476 global_got_dynindx
= gg
->global_gotsym
->dynindx
;
2478 if (TLS_RELOC_P (r_type
))
2480 struct mips_elf_link_hash_entry
*hm
2481 = (struct mips_elf_link_hash_entry
*) h
;
2482 bfd_vma value
= MINUS_ONE
;
2484 if ((h
->root
.type
== bfd_link_hash_defined
2485 || h
->root
.type
== bfd_link_hash_defweak
)
2486 && h
->root
.u
.def
.section
->output_section
)
2487 value
= (h
->root
.u
.def
.value
2488 + h
->root
.u
.def
.section
->output_offset
2489 + h
->root
.u
.def
.section
->output_section
->vma
);
2491 index
= mips_tls_got_index (abfd
, hm
->tls_got_offset
, &hm
->tls_type
,
2492 r_type
, info
, hm
, value
);
2496 /* Once we determine the global GOT entry with the lowest dynamic
2497 symbol table index, we must put all dynamic symbols with greater
2498 indices into the GOT. That makes it easy to calculate the GOT
2500 BFD_ASSERT (h
->dynindx
>= global_got_dynindx
);
2501 index
= ((h
->dynindx
- global_got_dynindx
+ g
->local_gotno
)
2502 * MIPS_ELF_GOT_SIZE (abfd
));
2504 BFD_ASSERT (index
< sgot
->size
);
2509 /* Find a GOT page entry that points to within 32KB of VALUE, which was
2510 calculated from a symbol belonging to INPUT_SECTION. These entries
2511 are supposed to be placed at small offsets in the GOT, i.e., within
2512 32KB of GP. Return the index of the GOT entry, or -1 if no entry
2513 could be created. If OFFSETP is nonnull, use it to return the
2514 offset of the GOT entry from VALUE. */
2517 mips_elf_got_page (bfd
*abfd
, bfd
*ibfd
, struct bfd_link_info
*info
,
2518 asection
*input_section
, bfd_vma value
, bfd_vma
*offsetp
)
2521 struct mips_got_info
*g
;
2522 bfd_vma page
, index
;
2523 struct mips_got_entry
*entry
;
2525 g
= mips_elf_got_info (elf_hash_table (info
)->dynobj
, &sgot
);
2527 page
= (value
+ 0x8000) & ~(bfd_vma
) 0xffff;
2528 entry
= mips_elf_create_local_got_entry (abfd
, info
, ibfd
, g
, sgot
,
2529 input_section
, page
, 0,
2530 NULL
, R_MIPS_GOT_PAGE
);
2535 index
= entry
->gotidx
;
2538 *offsetp
= value
- entry
->d
.address
;
2543 /* Find a local GOT entry for an R_MIPS_GOT16 relocation against VALUE,
2544 which was calculated from a symbol belonging to INPUT_SECTION.
2545 EXTERNAL is true if the relocation was against a global symbol
2546 that has been forced local. */
2549 mips_elf_got16_entry (bfd
*abfd
, bfd
*ibfd
, struct bfd_link_info
*info
,
2550 asection
*input_section
, bfd_vma value
,
2551 bfd_boolean external
)
2554 struct mips_got_info
*g
;
2555 struct mips_got_entry
*entry
;
2557 /* GOT16 relocations against local symbols are followed by a LO16
2558 relocation; those against global symbols are not. Thus if the
2559 symbol was originally local, the GOT16 relocation should load the
2560 equivalent of %hi(VALUE), otherwise it should load VALUE itself. */
2562 value
= mips_elf_high (value
) << 16;
2564 g
= mips_elf_got_info (elf_hash_table (info
)->dynobj
, &sgot
);
2566 entry
= mips_elf_create_local_got_entry (abfd
, info
, ibfd
, g
, sgot
,
2567 input_section
, value
, 0,
2568 NULL
, R_MIPS_GOT16
);
2570 return entry
->gotidx
;
2575 /* Returns the offset for the entry at the INDEXth position
2579 mips_elf_got_offset_from_index (bfd
*dynobj
, bfd
*output_bfd
,
2580 bfd
*input_bfd
, bfd_vma index
)
2584 struct mips_got_info
*g
;
2586 g
= mips_elf_got_info (dynobj
, &sgot
);
2587 gp
= _bfd_get_gp_value (output_bfd
)
2588 + mips_elf_adjust_gp (output_bfd
, g
, input_bfd
);
2590 return sgot
->output_section
->vma
+ sgot
->output_offset
+ index
- gp
;
2593 /* Create and return a local GOT entry for VALUE, which was calculated
2594 from a symbol belonging to INPUT_SECTON. Return NULL if it could not
2595 be created. If R_SYMNDX refers to a TLS symbol, create a TLS entry
2598 static struct mips_got_entry
*
2599 mips_elf_create_local_got_entry (bfd
*abfd
, struct bfd_link_info
*info
,
2600 bfd
*ibfd
, struct mips_got_info
*gg
,
2601 asection
*sgot
, asection
*input_section
,
2602 bfd_vma value
, unsigned long r_symndx
,
2603 struct mips_elf_link_hash_entry
*h
,
2606 struct mips_got_entry entry
, **loc
;
2607 struct mips_got_info
*g
;
2608 struct mips_elf_link_hash_table
*htab
;
2610 htab
= mips_elf_hash_table (info
);
2614 entry
.d
.address
= value
;
2617 g
= mips_elf_got_for_ibfd (gg
, ibfd
);
2620 g
= mips_elf_got_for_ibfd (gg
, abfd
);
2621 BFD_ASSERT (g
!= NULL
);
2624 /* We might have a symbol, H, if it has been forced local. Use the
2625 global entry then. It doesn't matter whether an entry is local
2626 or global for TLS, since the dynamic linker does not
2627 automatically relocate TLS GOT entries. */
2628 BFD_ASSERT (h
== NULL
|| h
->root
.forced_local
);
2629 if (TLS_RELOC_P (r_type
))
2631 struct mips_got_entry
*p
;
2634 if (r_type
== R_MIPS_TLS_LDM
)
2636 entry
.tls_type
= GOT_TLS_LDM
;
2642 entry
.symndx
= r_symndx
;
2648 p
= (struct mips_got_entry
*)
2649 htab_find (g
->got_entries
, &entry
);
2655 loc
= (struct mips_got_entry
**) htab_find_slot (g
->got_entries
, &entry
,
2660 entry
.gotidx
= MIPS_ELF_GOT_SIZE (abfd
) * g
->assigned_gotno
++;
2663 *loc
= (struct mips_got_entry
*)bfd_alloc (abfd
, sizeof entry
);
2668 memcpy (*loc
, &entry
, sizeof entry
);
2670 if (g
->assigned_gotno
>= g
->local_gotno
)
2672 (*loc
)->gotidx
= -1;
2673 /* We didn't allocate enough space in the GOT. */
2674 (*_bfd_error_handler
)
2675 (_("not enough GOT space for local GOT entries"));
2676 bfd_set_error (bfd_error_bad_value
);
2680 MIPS_ELF_PUT_WORD (abfd
, value
,
2681 (sgot
->contents
+ entry
.gotidx
));
2683 /* These GOT entries need a dynamic relocation on VxWorks. Because
2684 the offset between segments is not fixed, the relocation must be
2685 against a symbol in the same segment as the original symbol.
2686 The easiest way to do this is to take INPUT_SECTION's output
2687 section and emit a relocation against its section symbol. */
2688 if (htab
->is_vxworks
)
2690 Elf_Internal_Rela outrel
;
2691 asection
*s
, *output_section
;
2693 bfd_vma got_address
;
2696 s
= mips_elf_rel_dyn_section (info
, FALSE
);
2697 output_section
= input_section
->output_section
;
2698 dynindx
= elf_section_data (output_section
)->dynindx
;
2699 got_address
= (sgot
->output_section
->vma
2700 + sgot
->output_offset
2703 loc
= s
->contents
+ (s
->reloc_count
++ * sizeof (Elf32_External_Rela
));
2704 outrel
.r_offset
= got_address
;
2705 outrel
.r_info
= ELF32_R_INFO (dynindx
, R_MIPS_32
);
2706 outrel
.r_addend
= value
- output_section
->vma
;
2707 bfd_elf32_swap_reloca_out (abfd
, &outrel
, loc
);
2713 /* Sort the dynamic symbol table so that symbols that need GOT entries
2714 appear towards the end. This reduces the amount of GOT space
2715 required. MAX_LOCAL is used to set the number of local symbols
2716 known to be in the dynamic symbol table. During
2717 _bfd_mips_elf_size_dynamic_sections, this value is 1. Afterward, the
2718 section symbols are added and the count is higher. */
2721 mips_elf_sort_hash_table (struct bfd_link_info
*info
, unsigned long max_local
)
2723 struct mips_elf_hash_sort_data hsd
;
2724 struct mips_got_info
*g
;
2727 dynobj
= elf_hash_table (info
)->dynobj
;
2729 g
= mips_elf_got_info (dynobj
, NULL
);
2732 hsd
.max_unref_got_dynindx
=
2733 hsd
.min_got_dynindx
= elf_hash_table (info
)->dynsymcount
2734 /* In the multi-got case, assigned_gotno of the master got_info
2735 indicate the number of entries that aren't referenced in the
2736 primary GOT, but that must have entries because there are
2737 dynamic relocations that reference it. Since they aren't
2738 referenced, we move them to the end of the GOT, so that they
2739 don't prevent other entries that are referenced from getting
2740 too large offsets. */
2741 - (g
->next
? g
->assigned_gotno
: 0);
2742 hsd
.max_non_got_dynindx
= max_local
;
2743 mips_elf_link_hash_traverse (((struct mips_elf_link_hash_table
*)
2744 elf_hash_table (info
)),
2745 mips_elf_sort_hash_table_f
,
2748 /* There should have been enough room in the symbol table to
2749 accommodate both the GOT and non-GOT symbols. */
2750 BFD_ASSERT (hsd
.max_non_got_dynindx
<= hsd
.min_got_dynindx
);
2751 BFD_ASSERT ((unsigned long)hsd
.max_unref_got_dynindx
2752 <= elf_hash_table (info
)->dynsymcount
);
2754 /* Now we know which dynamic symbol has the lowest dynamic symbol
2755 table index in the GOT. */
2756 g
->global_gotsym
= hsd
.low
;
2761 /* If H needs a GOT entry, assign it the highest available dynamic
2762 index. Otherwise, assign it the lowest available dynamic
2766 mips_elf_sort_hash_table_f (struct mips_elf_link_hash_entry
*h
, void *data
)
2768 struct mips_elf_hash_sort_data
*hsd
= data
;
2770 if (h
->root
.root
.type
== bfd_link_hash_warning
)
2771 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
2773 /* Symbols without dynamic symbol table entries aren't interesting
2775 if (h
->root
.dynindx
== -1)
2778 /* Global symbols that need GOT entries that are not explicitly
2779 referenced are marked with got offset 2. Those that are
2780 referenced get a 1, and those that don't need GOT entries get
2782 if (h
->root
.got
.offset
== 2)
2784 BFD_ASSERT (h
->tls_type
== GOT_NORMAL
);
2786 if (hsd
->max_unref_got_dynindx
== hsd
->min_got_dynindx
)
2787 hsd
->low
= (struct elf_link_hash_entry
*) h
;
2788 h
->root
.dynindx
= hsd
->max_unref_got_dynindx
++;
2790 else if (h
->root
.got
.offset
!= 1)
2791 h
->root
.dynindx
= hsd
->max_non_got_dynindx
++;
2794 BFD_ASSERT (h
->tls_type
== GOT_NORMAL
);
2796 h
->root
.dynindx
= --hsd
->min_got_dynindx
;
2797 hsd
->low
= (struct elf_link_hash_entry
*) h
;
2803 /* If H is a symbol that needs a global GOT entry, but has a dynamic
2804 symbol table index lower than any we've seen to date, record it for
2808 mips_elf_record_global_got_symbol (struct elf_link_hash_entry
*h
,
2809 bfd
*abfd
, struct bfd_link_info
*info
,
2810 struct mips_got_info
*g
,
2811 unsigned char tls_flag
)
2813 struct mips_got_entry entry
, **loc
;
2815 /* A global symbol in the GOT must also be in the dynamic symbol
2817 if (h
->dynindx
== -1)
2819 switch (ELF_ST_VISIBILITY (h
->other
))
2823 _bfd_mips_elf_hide_symbol (info
, h
, TRUE
);
2826 if (!bfd_elf_link_record_dynamic_symbol (info
, h
))
2830 /* Make sure we have a GOT to put this entry into. */
2831 BFD_ASSERT (g
!= NULL
);
2835 entry
.d
.h
= (struct mips_elf_link_hash_entry
*) h
;
2838 loc
= (struct mips_got_entry
**) htab_find_slot (g
->got_entries
, &entry
,
2841 /* If we've already marked this entry as needing GOT space, we don't
2842 need to do it again. */
2845 (*loc
)->tls_type
|= tls_flag
;
2849 *loc
= (struct mips_got_entry
*)bfd_alloc (abfd
, sizeof entry
);
2855 entry
.tls_type
= tls_flag
;
2857 memcpy (*loc
, &entry
, sizeof entry
);
2859 if (h
->got
.offset
!= MINUS_ONE
)
2862 /* By setting this to a value other than -1, we are indicating that
2863 there needs to be a GOT entry for H. Avoid using zero, as the
2864 generic ELF copy_indirect_symbol tests for <= 0. */
2871 /* Reserve space in G for a GOT entry containing the value of symbol
2872 SYMNDX in input bfd ABDF, plus ADDEND. */
2875 mips_elf_record_local_got_symbol (bfd
*abfd
, long symndx
, bfd_vma addend
,
2876 struct mips_got_info
*g
,
2877 unsigned char tls_flag
)
2879 struct mips_got_entry entry
, **loc
;
2882 entry
.symndx
= symndx
;
2883 entry
.d
.addend
= addend
;
2884 entry
.tls_type
= tls_flag
;
2885 loc
= (struct mips_got_entry
**)
2886 htab_find_slot (g
->got_entries
, &entry
, INSERT
);
2890 if (tls_flag
== GOT_TLS_GD
&& !((*loc
)->tls_type
& GOT_TLS_GD
))
2893 (*loc
)->tls_type
|= tls_flag
;
2895 else if (tls_flag
== GOT_TLS_IE
&& !((*loc
)->tls_type
& GOT_TLS_IE
))
2898 (*loc
)->tls_type
|= tls_flag
;
2906 entry
.tls_type
= tls_flag
;
2907 if (tls_flag
== GOT_TLS_IE
)
2909 else if (tls_flag
== GOT_TLS_GD
)
2911 else if (g
->tls_ldm_offset
== MINUS_ONE
)
2913 g
->tls_ldm_offset
= MINUS_TWO
;
2919 entry
.gotidx
= g
->local_gotno
++;
2923 *loc
= (struct mips_got_entry
*)bfd_alloc (abfd
, sizeof entry
);
2928 memcpy (*loc
, &entry
, sizeof entry
);
2933 /* Compute the hash value of the bfd in a bfd2got hash entry. */
2936 mips_elf_bfd2got_entry_hash (const void *entry_
)
2938 const struct mips_elf_bfd2got_hash
*entry
2939 = (struct mips_elf_bfd2got_hash
*)entry_
;
2941 return entry
->bfd
->id
;
2944 /* Check whether two hash entries have the same bfd. */
2947 mips_elf_bfd2got_entry_eq (const void *entry1
, const void *entry2
)
2949 const struct mips_elf_bfd2got_hash
*e1
2950 = (const struct mips_elf_bfd2got_hash
*)entry1
;
2951 const struct mips_elf_bfd2got_hash
*e2
2952 = (const struct mips_elf_bfd2got_hash
*)entry2
;
2954 return e1
->bfd
== e2
->bfd
;
2957 /* In a multi-got link, determine the GOT to be used for IBFD. G must
2958 be the master GOT data. */
2960 static struct mips_got_info
*
2961 mips_elf_got_for_ibfd (struct mips_got_info
*g
, bfd
*ibfd
)
2963 struct mips_elf_bfd2got_hash e
, *p
;
2969 p
= htab_find (g
->bfd2got
, &e
);
2970 return p
? p
->g
: NULL
;
2973 /* Create one separate got for each bfd that has entries in the global
2974 got, such that we can tell how many local and global entries each
2978 mips_elf_make_got_per_bfd (void **entryp
, void *p
)
2980 struct mips_got_entry
*entry
= (struct mips_got_entry
*)*entryp
;
2981 struct mips_elf_got_per_bfd_arg
*arg
= (struct mips_elf_got_per_bfd_arg
*)p
;
2982 htab_t bfd2got
= arg
->bfd2got
;
2983 struct mips_got_info
*g
;
2984 struct mips_elf_bfd2got_hash bfdgot_entry
, *bfdgot
;
2987 /* Find the got_info for this GOT entry's input bfd. Create one if
2989 bfdgot_entry
.bfd
= entry
->abfd
;
2990 bfdgotp
= htab_find_slot (bfd2got
, &bfdgot_entry
, INSERT
);
2991 bfdgot
= (struct mips_elf_bfd2got_hash
*)*bfdgotp
;
2997 bfdgot
= (struct mips_elf_bfd2got_hash
*)bfd_alloc
2998 (arg
->obfd
, sizeof (struct mips_elf_bfd2got_hash
));
3008 bfdgot
->bfd
= entry
->abfd
;
3009 bfdgot
->g
= g
= (struct mips_got_info
*)
3010 bfd_alloc (arg
->obfd
, sizeof (struct mips_got_info
));
3017 g
->global_gotsym
= NULL
;
3018 g
->global_gotno
= 0;
3020 g
->assigned_gotno
= -1;
3022 g
->tls_assigned_gotno
= 0;
3023 g
->tls_ldm_offset
= MINUS_ONE
;
3024 g
->got_entries
= htab_try_create (1, mips_elf_multi_got_entry_hash
,
3025 mips_elf_multi_got_entry_eq
, NULL
);
3026 if (g
->got_entries
== NULL
)
3036 /* Insert the GOT entry in the bfd's got entry hash table. */
3037 entryp
= htab_find_slot (g
->got_entries
, entry
, INSERT
);
3038 if (*entryp
!= NULL
)
3043 if (entry
->tls_type
)
3045 if (entry
->tls_type
& (GOT_TLS_GD
| GOT_TLS_LDM
))
3047 if (entry
->tls_type
& GOT_TLS_IE
)
3050 else if (entry
->symndx
>= 0 || entry
->d
.h
->forced_local
)
3058 /* Attempt to merge gots of different input bfds. Try to use as much
3059 as possible of the primary got, since it doesn't require explicit
3060 dynamic relocations, but don't use bfds that would reference global
3061 symbols out of the addressable range. Failing the primary got,
3062 attempt to merge with the current got, or finish the current got
3063 and then make make the new got current. */
3066 mips_elf_merge_gots (void **bfd2got_
, void *p
)
3068 struct mips_elf_bfd2got_hash
*bfd2got
3069 = (struct mips_elf_bfd2got_hash
*)*bfd2got_
;
3070 struct mips_elf_got_per_bfd_arg
*arg
= (struct mips_elf_got_per_bfd_arg
*)p
;
3071 unsigned int lcount
= bfd2got
->g
->local_gotno
;
3072 unsigned int gcount
= bfd2got
->g
->global_gotno
;
3073 unsigned int tcount
= bfd2got
->g
->tls_gotno
;
3074 unsigned int maxcnt
= arg
->max_count
;
3075 bfd_boolean too_many_for_tls
= FALSE
;
3077 /* We place TLS GOT entries after both locals and globals. The globals
3078 for the primary GOT may overflow the normal GOT size limit, so be
3079 sure not to merge a GOT which requires TLS with the primary GOT in that
3080 case. This doesn't affect non-primary GOTs. */
3083 unsigned int primary_total
= lcount
+ tcount
+ arg
->global_count
;
3084 if (primary_total
* MIPS_ELF_GOT_SIZE (bfd2got
->bfd
)
3085 >= MIPS_ELF_GOT_MAX_SIZE (arg
->info
))
3086 too_many_for_tls
= TRUE
;
3089 /* If we don't have a primary GOT and this is not too big, use it as
3090 a starting point for the primary GOT. */
3091 if (! arg
->primary
&& lcount
+ gcount
+ tcount
<= maxcnt
3092 && ! too_many_for_tls
)
3094 arg
->primary
= bfd2got
->g
;
3095 arg
->primary_count
= lcount
+ gcount
;
3097 /* If it looks like we can merge this bfd's entries with those of
3098 the primary, merge them. The heuristics is conservative, but we
3099 don't have to squeeze it too hard. */
3100 else if (arg
->primary
&& ! too_many_for_tls
3101 && (arg
->primary_count
+ lcount
+ gcount
+ tcount
) <= maxcnt
)
3103 struct mips_got_info
*g
= bfd2got
->g
;
3104 int old_lcount
= arg
->primary
->local_gotno
;
3105 int old_gcount
= arg
->primary
->global_gotno
;
3106 int old_tcount
= arg
->primary
->tls_gotno
;
3108 bfd2got
->g
= arg
->primary
;
3110 htab_traverse (g
->got_entries
,
3111 mips_elf_make_got_per_bfd
,
3113 if (arg
->obfd
== NULL
)
3116 htab_delete (g
->got_entries
);
3117 /* We don't have to worry about releasing memory of the actual
3118 got entries, since they're all in the master got_entries hash
3121 BFD_ASSERT (old_lcount
+ lcount
>= arg
->primary
->local_gotno
);
3122 BFD_ASSERT (old_gcount
+ gcount
>= arg
->primary
->global_gotno
);
3123 BFD_ASSERT (old_tcount
+ tcount
>= arg
->primary
->tls_gotno
);
3125 arg
->primary_count
= arg
->primary
->local_gotno
3126 + arg
->primary
->global_gotno
+ arg
->primary
->tls_gotno
;
3128 /* If we can merge with the last-created got, do it. */
3129 else if (arg
->current
3130 && arg
->current_count
+ lcount
+ gcount
+ tcount
<= maxcnt
)
3132 struct mips_got_info
*g
= bfd2got
->g
;
3133 int old_lcount
= arg
->current
->local_gotno
;
3134 int old_gcount
= arg
->current
->global_gotno
;
3135 int old_tcount
= arg
->current
->tls_gotno
;
3137 bfd2got
->g
= arg
->current
;
3139 htab_traverse (g
->got_entries
,
3140 mips_elf_make_got_per_bfd
,
3142 if (arg
->obfd
== NULL
)
3145 htab_delete (g
->got_entries
);
3147 BFD_ASSERT (old_lcount
+ lcount
>= arg
->current
->local_gotno
);
3148 BFD_ASSERT (old_gcount
+ gcount
>= arg
->current
->global_gotno
);
3149 BFD_ASSERT (old_tcount
+ tcount
>= arg
->current
->tls_gotno
);
3151 arg
->current_count
= arg
->current
->local_gotno
3152 + arg
->current
->global_gotno
+ arg
->current
->tls_gotno
;
3154 /* Well, we couldn't merge, so create a new GOT. Don't check if it
3155 fits; if it turns out that it doesn't, we'll get relocation
3156 overflows anyway. */
3159 bfd2got
->g
->next
= arg
->current
;
3160 arg
->current
= bfd2got
->g
;
3162 arg
->current_count
= lcount
+ gcount
+ 2 * tcount
;
3168 /* Set the TLS GOT index for the GOT entry in ENTRYP. ENTRYP's NEXT field
3169 is null iff there is just a single GOT. */
3172 mips_elf_initialize_tls_index (void **entryp
, void *p
)
3174 struct mips_got_entry
*entry
= (struct mips_got_entry
*)*entryp
;
3175 struct mips_got_info
*g
= p
;
3178 /* We're only interested in TLS symbols. */
3179 if (entry
->tls_type
== 0)
3182 next_index
= MIPS_ELF_GOT_SIZE (entry
->abfd
) * (long) g
->tls_assigned_gotno
;
3184 if (entry
->symndx
== -1 && g
->next
== NULL
)
3186 /* A type (3) got entry in the single-GOT case. We use the symbol's
3187 hash table entry to track its index. */
3188 if (entry
->d
.h
->tls_type
& GOT_TLS_OFFSET_DONE
)
3190 entry
->d
.h
->tls_type
|= GOT_TLS_OFFSET_DONE
;
3191 entry
->d
.h
->tls_got_offset
= next_index
;
3195 if (entry
->tls_type
& GOT_TLS_LDM
)
3197 /* There are separate mips_got_entry objects for each input bfd
3198 that requires an LDM entry. Make sure that all LDM entries in
3199 a GOT resolve to the same index. */
3200 if (g
->tls_ldm_offset
!= MINUS_TWO
&& g
->tls_ldm_offset
!= MINUS_ONE
)
3202 entry
->gotidx
= g
->tls_ldm_offset
;
3205 g
->tls_ldm_offset
= next_index
;
3207 entry
->gotidx
= next_index
;
3210 /* Account for the entries we've just allocated. */
3211 if (entry
->tls_type
& (GOT_TLS_GD
| GOT_TLS_LDM
))
3212 g
->tls_assigned_gotno
+= 2;
3213 if (entry
->tls_type
& GOT_TLS_IE
)
3214 g
->tls_assigned_gotno
+= 1;
3219 /* If passed a NULL mips_got_info in the argument, set the marker used
3220 to tell whether a global symbol needs a got entry (in the primary
3221 got) to the given VALUE.
3223 If passed a pointer G to a mips_got_info in the argument (it must
3224 not be the primary GOT), compute the offset from the beginning of
3225 the (primary) GOT section to the entry in G corresponding to the
3226 global symbol. G's assigned_gotno must contain the index of the
3227 first available global GOT entry in G. VALUE must contain the size
3228 of a GOT entry in bytes. For each global GOT entry that requires a
3229 dynamic relocation, NEEDED_RELOCS is incremented, and the symbol is
3230 marked as not eligible for lazy resolution through a function
3233 mips_elf_set_global_got_offset (void **entryp
, void *p
)
3235 struct mips_got_entry
*entry
= (struct mips_got_entry
*)*entryp
;
3236 struct mips_elf_set_global_got_offset_arg
*arg
3237 = (struct mips_elf_set_global_got_offset_arg
*)p
;
3238 struct mips_got_info
*g
= arg
->g
;
3240 if (g
&& entry
->tls_type
!= GOT_NORMAL
)
3241 arg
->needed_relocs
+=
3242 mips_tls_got_relocs (arg
->info
, entry
->tls_type
,
3243 entry
->symndx
== -1 ? &entry
->d
.h
->root
: NULL
);
3245 if (entry
->abfd
!= NULL
&& entry
->symndx
== -1
3246 && entry
->d
.h
->root
.dynindx
!= -1
3247 && entry
->d
.h
->tls_type
== GOT_NORMAL
)
3251 BFD_ASSERT (g
->global_gotsym
== NULL
);
3253 entry
->gotidx
= arg
->value
* (long) g
->assigned_gotno
++;
3254 if (arg
->info
->shared
3255 || (elf_hash_table (arg
->info
)->dynamic_sections_created
3256 && entry
->d
.h
->root
.def_dynamic
3257 && !entry
->d
.h
->root
.def_regular
))
3258 ++arg
->needed_relocs
;
3261 entry
->d
.h
->root
.got
.offset
= arg
->value
;
3267 /* Mark any global symbols referenced in the GOT we are iterating over
3268 as inelligible for lazy resolution stubs. */
3270 mips_elf_set_no_stub (void **entryp
, void *p ATTRIBUTE_UNUSED
)
3272 struct mips_got_entry
*entry
= (struct mips_got_entry
*)*entryp
;
3274 if (entry
->abfd
!= NULL
3275 && entry
->symndx
== -1
3276 && entry
->d
.h
->root
.dynindx
!= -1)
3277 entry
->d
.h
->no_fn_stub
= TRUE
;
3282 /* Follow indirect and warning hash entries so that each got entry
3283 points to the final symbol definition. P must point to a pointer
3284 to the hash table we're traversing. Since this traversal may
3285 modify the hash table, we set this pointer to NULL to indicate
3286 we've made a potentially-destructive change to the hash table, so
3287 the traversal must be restarted. */
3289 mips_elf_resolve_final_got_entry (void **entryp
, void *p
)
3291 struct mips_got_entry
*entry
= (struct mips_got_entry
*)*entryp
;
3292 htab_t got_entries
= *(htab_t
*)p
;
3294 if (entry
->abfd
!= NULL
&& entry
->symndx
== -1)
3296 struct mips_elf_link_hash_entry
*h
= entry
->d
.h
;
3298 while (h
->root
.root
.type
== bfd_link_hash_indirect
3299 || h
->root
.root
.type
== bfd_link_hash_warning
)
3300 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
3302 if (entry
->d
.h
== h
)
3307 /* If we can't find this entry with the new bfd hash, re-insert
3308 it, and get the traversal restarted. */
3309 if (! htab_find (got_entries
, entry
))
3311 htab_clear_slot (got_entries
, entryp
);
3312 entryp
= htab_find_slot (got_entries
, entry
, INSERT
);
3315 /* Abort the traversal, since the whole table may have
3316 moved, and leave it up to the parent to restart the
3318 *(htab_t
*)p
= NULL
;
3321 /* We might want to decrement the global_gotno count, but it's
3322 either too early or too late for that at this point. */
3328 /* Turn indirect got entries in a got_entries table into their final
3331 mips_elf_resolve_final_got_entries (struct mips_got_info
*g
)
3337 got_entries
= g
->got_entries
;
3339 htab_traverse (got_entries
,
3340 mips_elf_resolve_final_got_entry
,
3343 while (got_entries
== NULL
);
3346 /* Return the offset of an input bfd IBFD's GOT from the beginning of
3349 mips_elf_adjust_gp (bfd
*abfd
, struct mips_got_info
*g
, bfd
*ibfd
)
3351 if (g
->bfd2got
== NULL
)
3354 g
= mips_elf_got_for_ibfd (g
, ibfd
);
3358 BFD_ASSERT (g
->next
);
3362 return (g
->local_gotno
+ g
->global_gotno
+ g
->tls_gotno
)
3363 * MIPS_ELF_GOT_SIZE (abfd
);
3366 /* Turn a single GOT that is too big for 16-bit addressing into
3367 a sequence of GOTs, each one 16-bit addressable. */
3370 mips_elf_multi_got (bfd
*abfd
, struct bfd_link_info
*info
,
3371 struct mips_got_info
*g
, asection
*got
,
3372 bfd_size_type pages
)
3374 struct mips_elf_got_per_bfd_arg got_per_bfd_arg
;
3375 struct mips_elf_set_global_got_offset_arg set_got_offset_arg
;
3376 struct mips_got_info
*gg
;
3377 unsigned int assign
;
3379 g
->bfd2got
= htab_try_create (1, mips_elf_bfd2got_entry_hash
,
3380 mips_elf_bfd2got_entry_eq
, NULL
);
3381 if (g
->bfd2got
== NULL
)
3384 got_per_bfd_arg
.bfd2got
= g
->bfd2got
;
3385 got_per_bfd_arg
.obfd
= abfd
;
3386 got_per_bfd_arg
.info
= info
;
3388 /* Count how many GOT entries each input bfd requires, creating a
3389 map from bfd to got info while at that. */
3390 htab_traverse (g
->got_entries
, mips_elf_make_got_per_bfd
, &got_per_bfd_arg
);
3391 if (got_per_bfd_arg
.obfd
== NULL
)
3394 got_per_bfd_arg
.current
= NULL
;
3395 got_per_bfd_arg
.primary
= NULL
;
3396 /* Taking out PAGES entries is a worst-case estimate. We could
3397 compute the maximum number of pages that each separate input bfd
3398 uses, but it's probably not worth it. */
3399 got_per_bfd_arg
.max_count
= ((MIPS_ELF_GOT_MAX_SIZE (info
)
3400 / MIPS_ELF_GOT_SIZE (abfd
))
3401 - MIPS_RESERVED_GOTNO (info
) - pages
);
3402 /* The number of globals that will be included in the primary GOT.
3403 See the calls to mips_elf_set_global_got_offset below for more
3405 got_per_bfd_arg
.global_count
= g
->global_gotno
;
3407 /* Try to merge the GOTs of input bfds together, as long as they
3408 don't seem to exceed the maximum GOT size, choosing one of them
3409 to be the primary GOT. */
3410 htab_traverse (g
->bfd2got
, mips_elf_merge_gots
, &got_per_bfd_arg
);
3411 if (got_per_bfd_arg
.obfd
== NULL
)
3414 /* If we do not find any suitable primary GOT, create an empty one. */
3415 if (got_per_bfd_arg
.primary
== NULL
)
3417 g
->next
= (struct mips_got_info
*)
3418 bfd_alloc (abfd
, sizeof (struct mips_got_info
));
3419 if (g
->next
== NULL
)
3422 g
->next
->global_gotsym
= NULL
;
3423 g
->next
->global_gotno
= 0;
3424 g
->next
->local_gotno
= 0;
3425 g
->next
->tls_gotno
= 0;
3426 g
->next
->assigned_gotno
= 0;
3427 g
->next
->tls_assigned_gotno
= 0;
3428 g
->next
->tls_ldm_offset
= MINUS_ONE
;
3429 g
->next
->got_entries
= htab_try_create (1, mips_elf_multi_got_entry_hash
,
3430 mips_elf_multi_got_entry_eq
,
3432 if (g
->next
->got_entries
== NULL
)
3434 g
->next
->bfd2got
= NULL
;
3437 g
->next
= got_per_bfd_arg
.primary
;
3438 g
->next
->next
= got_per_bfd_arg
.current
;
3440 /* GG is now the master GOT, and G is the primary GOT. */
3444 /* Map the output bfd to the primary got. That's what we're going
3445 to use for bfds that use GOT16 or GOT_PAGE relocations that we
3446 didn't mark in check_relocs, and we want a quick way to find it.
3447 We can't just use gg->next because we're going to reverse the
3450 struct mips_elf_bfd2got_hash
*bfdgot
;
3453 bfdgot
= (struct mips_elf_bfd2got_hash
*)bfd_alloc
3454 (abfd
, sizeof (struct mips_elf_bfd2got_hash
));
3461 bfdgotp
= htab_find_slot (gg
->bfd2got
, bfdgot
, INSERT
);
3463 BFD_ASSERT (*bfdgotp
== NULL
);
3467 /* The IRIX dynamic linker requires every symbol that is referenced
3468 in a dynamic relocation to be present in the primary GOT, so
3469 arrange for them to appear after those that are actually
3472 GNU/Linux could very well do without it, but it would slow down
3473 the dynamic linker, since it would have to resolve every dynamic
3474 symbol referenced in other GOTs more than once, without help from
3475 the cache. Also, knowing that every external symbol has a GOT
3476 helps speed up the resolution of local symbols too, so GNU/Linux
3477 follows IRIX's practice.
3479 The number 2 is used by mips_elf_sort_hash_table_f to count
3480 global GOT symbols that are unreferenced in the primary GOT, with
3481 an initial dynamic index computed from gg->assigned_gotno, where
3482 the number of unreferenced global entries in the primary GOT is
3486 gg
->assigned_gotno
= gg
->global_gotno
- g
->global_gotno
;
3487 g
->global_gotno
= gg
->global_gotno
;
3488 set_got_offset_arg
.value
= 2;
3492 /* This could be used for dynamic linkers that don't optimize
3493 symbol resolution while applying relocations so as to use
3494 primary GOT entries or assuming the symbol is locally-defined.
3495 With this code, we assign lower dynamic indices to global
3496 symbols that are not referenced in the primary GOT, so that
3497 their entries can be omitted. */
3498 gg
->assigned_gotno
= 0;
3499 set_got_offset_arg
.value
= -1;
3502 /* Reorder dynamic symbols as described above (which behavior
3503 depends on the setting of VALUE). */
3504 set_got_offset_arg
.g
= NULL
;
3505 htab_traverse (gg
->got_entries
, mips_elf_set_global_got_offset
,
3506 &set_got_offset_arg
);
3507 set_got_offset_arg
.value
= 1;
3508 htab_traverse (g
->got_entries
, mips_elf_set_global_got_offset
,
3509 &set_got_offset_arg
);
3510 if (! mips_elf_sort_hash_table (info
, 1))
3513 /* Now go through the GOTs assigning them offset ranges.
3514 [assigned_gotno, local_gotno[ will be set to the range of local
3515 entries in each GOT. We can then compute the end of a GOT by
3516 adding local_gotno to global_gotno. We reverse the list and make
3517 it circular since then we'll be able to quickly compute the
3518 beginning of a GOT, by computing the end of its predecessor. To
3519 avoid special cases for the primary GOT, while still preserving
3520 assertions that are valid for both single- and multi-got links,
3521 we arrange for the main got struct to have the right number of
3522 global entries, but set its local_gotno such that the initial
3523 offset of the primary GOT is zero. Remember that the primary GOT
3524 will become the last item in the circular linked list, so it
3525 points back to the master GOT. */
3526 gg
->local_gotno
= -g
->global_gotno
;
3527 gg
->global_gotno
= g
->global_gotno
;
3534 struct mips_got_info
*gn
;
3536 assign
+= MIPS_RESERVED_GOTNO (info
);
3537 g
->assigned_gotno
= assign
;
3538 g
->local_gotno
+= assign
+ pages
;
3539 assign
= g
->local_gotno
+ g
->global_gotno
+ g
->tls_gotno
;
3541 /* Take g out of the direct list, and push it onto the reversed
3542 list that gg points to. g->next is guaranteed to be nonnull after
3543 this operation, as required by mips_elf_initialize_tls_index. */
3548 /* Set up any TLS entries. We always place the TLS entries after
3549 all non-TLS entries. */
3550 g
->tls_assigned_gotno
= g
->local_gotno
+ g
->global_gotno
;
3551 htab_traverse (g
->got_entries
, mips_elf_initialize_tls_index
, g
);
3553 /* Move onto the next GOT. It will be a secondary GOT if nonull. */
3556 /* Mark global symbols in every non-primary GOT as ineligible for
3559 htab_traverse (g
->got_entries
, mips_elf_set_no_stub
, NULL
);
3563 got
->size
= (gg
->next
->local_gotno
3564 + gg
->next
->global_gotno
3565 + gg
->next
->tls_gotno
) * MIPS_ELF_GOT_SIZE (abfd
);
3571 /* Returns the first relocation of type r_type found, beginning with
3572 RELOCATION. RELEND is one-past-the-end of the relocation table. */
3574 static const Elf_Internal_Rela
*
3575 mips_elf_next_relocation (bfd
*abfd ATTRIBUTE_UNUSED
, unsigned int r_type
,
3576 const Elf_Internal_Rela
*relocation
,
3577 const Elf_Internal_Rela
*relend
)
3579 while (relocation
< relend
)
3581 if (ELF_R_TYPE (abfd
, relocation
->r_info
) == r_type
)
3587 /* We didn't find it. */
3588 bfd_set_error (bfd_error_bad_value
);
3592 /* Return whether a relocation is against a local symbol. */
3595 mips_elf_local_relocation_p (bfd
*input_bfd
,
3596 const Elf_Internal_Rela
*relocation
,
3597 asection
**local_sections
,
3598 bfd_boolean check_forced
)
3600 unsigned long r_symndx
;
3601 Elf_Internal_Shdr
*symtab_hdr
;
3602 struct mips_elf_link_hash_entry
*h
;
3605 r_symndx
= ELF_R_SYM (input_bfd
, relocation
->r_info
);
3606 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
3607 extsymoff
= (elf_bad_symtab (input_bfd
)) ? 0 : symtab_hdr
->sh_info
;
3609 if (r_symndx
< extsymoff
)
3611 if (elf_bad_symtab (input_bfd
) && local_sections
[r_symndx
] != NULL
)
3616 /* Look up the hash table to check whether the symbol
3617 was forced local. */
3618 h
= (struct mips_elf_link_hash_entry
*)
3619 elf_sym_hashes (input_bfd
) [r_symndx
- extsymoff
];
3620 /* Find the real hash-table entry for this symbol. */
3621 while (h
->root
.root
.type
== bfd_link_hash_indirect
3622 || h
->root
.root
.type
== bfd_link_hash_warning
)
3623 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
3624 if (h
->root
.forced_local
)
3631 /* Sign-extend VALUE, which has the indicated number of BITS. */
3634 _bfd_mips_elf_sign_extend (bfd_vma value
, int bits
)
3636 if (value
& ((bfd_vma
) 1 << (bits
- 1)))
3637 /* VALUE is negative. */
3638 value
|= ((bfd_vma
) - 1) << bits
;
3643 /* Return non-zero if the indicated VALUE has overflowed the maximum
3644 range expressible by a signed number with the indicated number of
3648 mips_elf_overflow_p (bfd_vma value
, int bits
)
3650 bfd_signed_vma svalue
= (bfd_signed_vma
) value
;
3652 if (svalue
> (1 << (bits
- 1)) - 1)
3653 /* The value is too big. */
3655 else if (svalue
< -(1 << (bits
- 1)))
3656 /* The value is too small. */
3663 /* Calculate the %high function. */
3666 mips_elf_high (bfd_vma value
)
3668 return ((value
+ (bfd_vma
) 0x8000) >> 16) & 0xffff;
3671 /* Calculate the %higher function. */
3674 mips_elf_higher (bfd_vma value ATTRIBUTE_UNUSED
)
3677 return ((value
+ (bfd_vma
) 0x80008000) >> 32) & 0xffff;
3684 /* Calculate the %highest function. */
3687 mips_elf_highest (bfd_vma value ATTRIBUTE_UNUSED
)
3690 return ((value
+ (((bfd_vma
) 0x8000 << 32) | 0x80008000)) >> 48) & 0xffff;
3697 /* Create the .compact_rel section. */
3700 mips_elf_create_compact_rel_section
3701 (bfd
*abfd
, struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
3704 register asection
*s
;
3706 if (bfd_get_section_by_name (abfd
, ".compact_rel") == NULL
)
3708 flags
= (SEC_HAS_CONTENTS
| SEC_IN_MEMORY
| SEC_LINKER_CREATED
3711 s
= bfd_make_section_with_flags (abfd
, ".compact_rel", flags
);
3713 || ! bfd_set_section_alignment (abfd
, s
,
3714 MIPS_ELF_LOG_FILE_ALIGN (abfd
)))
3717 s
->size
= sizeof (Elf32_External_compact_rel
);
3723 /* Create the .got section to hold the global offset table. */
3726 mips_elf_create_got_section (bfd
*abfd
, struct bfd_link_info
*info
,
3727 bfd_boolean maybe_exclude
)
3730 register asection
*s
;
3731 struct elf_link_hash_entry
*h
;
3732 struct bfd_link_hash_entry
*bh
;
3733 struct mips_got_info
*g
;
3735 struct mips_elf_link_hash_table
*htab
;
3737 htab
= mips_elf_hash_table (info
);
3739 /* This function may be called more than once. */
3740 s
= mips_elf_got_section (abfd
, TRUE
);
3743 if (! maybe_exclude
)
3744 s
->flags
&= ~SEC_EXCLUDE
;
3748 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
3749 | SEC_LINKER_CREATED
);
3752 flags
|= SEC_EXCLUDE
;
3754 /* We have to use an alignment of 2**4 here because this is hardcoded
3755 in the function stub generation and in the linker script. */
3756 s
= bfd_make_section_with_flags (abfd
, ".got", flags
);
3758 || ! bfd_set_section_alignment (abfd
, s
, 4))
3761 /* Define the symbol _GLOBAL_OFFSET_TABLE_. We don't do this in the
3762 linker script because we don't want to define the symbol if we
3763 are not creating a global offset table. */
3765 if (! (_bfd_generic_link_add_one_symbol
3766 (info
, abfd
, "_GLOBAL_OFFSET_TABLE_", BSF_GLOBAL
, s
,
3767 0, NULL
, FALSE
, get_elf_backend_data (abfd
)->collect
, &bh
)))
3770 h
= (struct elf_link_hash_entry
*) bh
;
3773 h
->type
= STT_OBJECT
;
3774 elf_hash_table (info
)->hgot
= h
;
3777 && ! bfd_elf_link_record_dynamic_symbol (info
, h
))
3780 amt
= sizeof (struct mips_got_info
);
3781 g
= bfd_alloc (abfd
, amt
);
3784 g
->global_gotsym
= NULL
;
3785 g
->global_gotno
= 0;
3787 g
->local_gotno
= MIPS_RESERVED_GOTNO (info
);
3788 g
->assigned_gotno
= MIPS_RESERVED_GOTNO (info
);
3791 g
->tls_ldm_offset
= MINUS_ONE
;
3792 g
->got_entries
= htab_try_create (1, mips_elf_got_entry_hash
,
3793 mips_elf_got_entry_eq
, NULL
);
3794 if (g
->got_entries
== NULL
)
3796 mips_elf_section_data (s
)->u
.got_info
= g
;
3797 mips_elf_section_data (s
)->elf
.this_hdr
.sh_flags
3798 |= SHF_ALLOC
| SHF_WRITE
| SHF_MIPS_GPREL
;
3800 /* VxWorks also needs a .got.plt section. */
3801 if (htab
->is_vxworks
)
3803 s
= bfd_make_section_with_flags (abfd
, ".got.plt",
3804 SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
3805 | SEC_IN_MEMORY
| SEC_LINKER_CREATED
);
3806 if (s
== NULL
|| !bfd_set_section_alignment (abfd
, s
, 4))
3814 /* Return true if H refers to the special VxWorks __GOTT_BASE__ or
3815 __GOTT_INDEX__ symbols. These symbols are only special for
3816 shared objects; they are not used in executables. */
3819 is_gott_symbol (struct bfd_link_info
*info
, struct elf_link_hash_entry
*h
)
3821 return (mips_elf_hash_table (info
)->is_vxworks
3823 && (strcmp (h
->root
.root
.string
, "__GOTT_BASE__") == 0
3824 || strcmp (h
->root
.root
.string
, "__GOTT_INDEX__") == 0));
3827 /* Calculate the value produced by the RELOCATION (which comes from
3828 the INPUT_BFD). The ADDEND is the addend to use for this
3829 RELOCATION; RELOCATION->R_ADDEND is ignored.
3831 The result of the relocation calculation is stored in VALUEP.
3832 REQUIRE_JALXP indicates whether or not the opcode used with this
3833 relocation must be JALX.
3835 This function returns bfd_reloc_continue if the caller need take no
3836 further action regarding this relocation, bfd_reloc_notsupported if
3837 something goes dramatically wrong, bfd_reloc_overflow if an
3838 overflow occurs, and bfd_reloc_ok to indicate success. */
3840 static bfd_reloc_status_type
3841 mips_elf_calculate_relocation (bfd
*abfd
, bfd
*input_bfd
,
3842 asection
*input_section
,
3843 struct bfd_link_info
*info
,
3844 const Elf_Internal_Rela
*relocation
,
3845 bfd_vma addend
, reloc_howto_type
*howto
,
3846 Elf_Internal_Sym
*local_syms
,
3847 asection
**local_sections
, bfd_vma
*valuep
,
3848 const char **namep
, bfd_boolean
*require_jalxp
,
3849 bfd_boolean save_addend
)
3851 /* The eventual value we will return. */
3853 /* The address of the symbol against which the relocation is
3856 /* The final GP value to be used for the relocatable, executable, or
3857 shared object file being produced. */
3858 bfd_vma gp
= MINUS_ONE
;
3859 /* The place (section offset or address) of the storage unit being
3862 /* The value of GP used to create the relocatable object. */
3863 bfd_vma gp0
= MINUS_ONE
;
3864 /* The offset into the global offset table at which the address of
3865 the relocation entry symbol, adjusted by the addend, resides
3866 during execution. */
3867 bfd_vma g
= MINUS_ONE
;
3868 /* The section in which the symbol referenced by the relocation is
3870 asection
*sec
= NULL
;
3871 struct mips_elf_link_hash_entry
*h
= NULL
;
3872 /* TRUE if the symbol referred to by this relocation is a local
3874 bfd_boolean local_p
, was_local_p
;
3875 /* TRUE if the symbol referred to by this relocation is "_gp_disp". */
3876 bfd_boolean gp_disp_p
= FALSE
;
3877 /* TRUE if the symbol referred to by this relocation is
3878 "__gnu_local_gp". */
3879 bfd_boolean gnu_local_gp_p
= FALSE
;
3880 Elf_Internal_Shdr
*symtab_hdr
;
3882 unsigned long r_symndx
;
3884 /* TRUE if overflow occurred during the calculation of the
3885 relocation value. */
3886 bfd_boolean overflowed_p
;
3887 /* TRUE if this relocation refers to a MIPS16 function. */
3888 bfd_boolean target_is_16_bit_code_p
= FALSE
;
3889 struct mips_elf_link_hash_table
*htab
;
3892 dynobj
= elf_hash_table (info
)->dynobj
;
3893 htab
= mips_elf_hash_table (info
);
3895 /* Parse the relocation. */
3896 r_symndx
= ELF_R_SYM (input_bfd
, relocation
->r_info
);
3897 r_type
= ELF_R_TYPE (input_bfd
, relocation
->r_info
);
3898 p
= (input_section
->output_section
->vma
3899 + input_section
->output_offset
3900 + relocation
->r_offset
);
3902 /* Assume that there will be no overflow. */
3903 overflowed_p
= FALSE
;
3905 /* Figure out whether or not the symbol is local, and get the offset
3906 used in the array of hash table entries. */
3907 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
3908 local_p
= mips_elf_local_relocation_p (input_bfd
, relocation
,
3909 local_sections
, FALSE
);
3910 was_local_p
= local_p
;
3911 if (! elf_bad_symtab (input_bfd
))
3912 extsymoff
= symtab_hdr
->sh_info
;
3915 /* The symbol table does not follow the rule that local symbols
3916 must come before globals. */
3920 /* Figure out the value of the symbol. */
3923 Elf_Internal_Sym
*sym
;
3925 sym
= local_syms
+ r_symndx
;
3926 sec
= local_sections
[r_symndx
];
3928 symbol
= sec
->output_section
->vma
+ sec
->output_offset
;
3929 if (ELF_ST_TYPE (sym
->st_info
) != STT_SECTION
3930 || (sec
->flags
& SEC_MERGE
))
3931 symbol
+= sym
->st_value
;
3932 if ((sec
->flags
& SEC_MERGE
)
3933 && ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
3935 addend
= _bfd_elf_rel_local_sym (abfd
, sym
, &sec
, addend
);
3937 addend
+= sec
->output_section
->vma
+ sec
->output_offset
;
3940 /* MIPS16 text labels should be treated as odd. */
3941 if (sym
->st_other
== STO_MIPS16
)
3944 /* Record the name of this symbol, for our caller. */
3945 *namep
= bfd_elf_string_from_elf_section (input_bfd
,
3946 symtab_hdr
->sh_link
,
3949 *namep
= bfd_section_name (input_bfd
, sec
);
3951 target_is_16_bit_code_p
= (sym
->st_other
== STO_MIPS16
);
3955 /* ??? Could we use RELOC_FOR_GLOBAL_SYMBOL here ? */
3957 /* For global symbols we look up the symbol in the hash-table. */
3958 h
= ((struct mips_elf_link_hash_entry
*)
3959 elf_sym_hashes (input_bfd
) [r_symndx
- extsymoff
]);
3960 /* Find the real hash-table entry for this symbol. */
3961 while (h
->root
.root
.type
== bfd_link_hash_indirect
3962 || h
->root
.root
.type
== bfd_link_hash_warning
)
3963 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
3965 /* Record the name of this symbol, for our caller. */
3966 *namep
= h
->root
.root
.root
.string
;
3968 /* See if this is the special _gp_disp symbol. Note that such a
3969 symbol must always be a global symbol. */
3970 if (strcmp (*namep
, "_gp_disp") == 0
3971 && ! NEWABI_P (input_bfd
))
3973 /* Relocations against _gp_disp are permitted only with
3974 R_MIPS_HI16 and R_MIPS_LO16 relocations. */
3975 if (r_type
!= R_MIPS_HI16
&& r_type
!= R_MIPS_LO16
3976 && r_type
!= R_MIPS16_HI16
&& r_type
!= R_MIPS16_LO16
)
3977 return bfd_reloc_notsupported
;
3981 /* See if this is the special _gp symbol. Note that such a
3982 symbol must always be a global symbol. */
3983 else if (strcmp (*namep
, "__gnu_local_gp") == 0)
3984 gnu_local_gp_p
= TRUE
;
3987 /* If this symbol is defined, calculate its address. Note that
3988 _gp_disp is a magic symbol, always implicitly defined by the
3989 linker, so it's inappropriate to check to see whether or not
3991 else if ((h
->root
.root
.type
== bfd_link_hash_defined
3992 || h
->root
.root
.type
== bfd_link_hash_defweak
)
3993 && h
->root
.root
.u
.def
.section
)
3995 sec
= h
->root
.root
.u
.def
.section
;
3996 if (sec
->output_section
)
3997 symbol
= (h
->root
.root
.u
.def
.value
3998 + sec
->output_section
->vma
3999 + sec
->output_offset
);
4001 symbol
= h
->root
.root
.u
.def
.value
;
4003 else if (h
->root
.root
.type
== bfd_link_hash_undefweak
)
4004 /* We allow relocations against undefined weak symbols, giving
4005 it the value zero, so that you can undefined weak functions
4006 and check to see if they exist by looking at their
4009 else if (info
->unresolved_syms_in_objects
== RM_IGNORE
4010 && ELF_ST_VISIBILITY (h
->root
.other
) == STV_DEFAULT
)
4012 else if (strcmp (*namep
, SGI_COMPAT (input_bfd
)
4013 ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING") == 0)
4015 /* If this is a dynamic link, we should have created a
4016 _DYNAMIC_LINK symbol or _DYNAMIC_LINKING(for normal mips) symbol
4017 in in _bfd_mips_elf_create_dynamic_sections.
4018 Otherwise, we should define the symbol with a value of 0.
4019 FIXME: It should probably get into the symbol table
4021 BFD_ASSERT (! info
->shared
);
4022 BFD_ASSERT (bfd_get_section_by_name (abfd
, ".dynamic") == NULL
);
4025 else if (ELF_MIPS_IS_OPTIONAL (h
->root
.other
))
4027 /* This is an optional symbol - an Irix specific extension to the
4028 ELF spec. Ignore it for now.
4029 XXX - FIXME - there is more to the spec for OPTIONAL symbols
4030 than simply ignoring them, but we do not handle this for now.
4031 For information see the "64-bit ELF Object File Specification"
4032 which is available from here:
4033 http://techpubs.sgi.com/library/manuals/4000/007-4658-001/pdf/007-4658-001.pdf */
4038 if (! ((*info
->callbacks
->undefined_symbol
)
4039 (info
, h
->root
.root
.root
.string
, input_bfd
,
4040 input_section
, relocation
->r_offset
,
4041 (info
->unresolved_syms_in_objects
== RM_GENERATE_ERROR
)
4042 || ELF_ST_VISIBILITY (h
->root
.other
))))
4043 return bfd_reloc_undefined
;
4047 target_is_16_bit_code_p
= (h
->root
.other
== STO_MIPS16
);
4050 /* If this is a 32- or 64-bit call to a 16-bit function with a stub, we
4051 need to redirect the call to the stub, unless we're already *in*
4053 if (r_type
!= R_MIPS16_26
&& !info
->relocatable
4054 && ((h
!= NULL
&& h
->fn_stub
!= NULL
)
4055 || (local_p
&& elf_tdata (input_bfd
)->local_stubs
!= NULL
4056 && elf_tdata (input_bfd
)->local_stubs
[r_symndx
] != NULL
))
4057 && !mips_elf_stub_section_p (input_bfd
, input_section
))
4059 /* This is a 32- or 64-bit call to a 16-bit function. We should
4060 have already noticed that we were going to need the
4063 sec
= elf_tdata (input_bfd
)->local_stubs
[r_symndx
];
4066 BFD_ASSERT (h
->need_fn_stub
);
4070 symbol
= sec
->output_section
->vma
+ sec
->output_offset
;
4072 /* If this is a 16-bit call to a 32- or 64-bit function with a stub, we
4073 need to redirect the call to the stub. */
4074 else if (r_type
== R_MIPS16_26
&& !info
->relocatable
4076 && (h
->call_stub
!= NULL
|| h
->call_fp_stub
!= NULL
)
4077 && !target_is_16_bit_code_p
)
4079 /* If both call_stub and call_fp_stub are defined, we can figure
4080 out which one to use by seeing which one appears in the input
4082 if (h
->call_stub
!= NULL
&& h
->call_fp_stub
!= NULL
)
4087 for (o
= input_bfd
->sections
; o
!= NULL
; o
= o
->next
)
4089 if (strncmp (bfd_get_section_name (input_bfd
, o
),
4090 CALL_FP_STUB
, sizeof CALL_FP_STUB
- 1) == 0)
4092 sec
= h
->call_fp_stub
;
4099 else if (h
->call_stub
!= NULL
)
4102 sec
= h
->call_fp_stub
;
4104 BFD_ASSERT (sec
->size
> 0);
4105 symbol
= sec
->output_section
->vma
+ sec
->output_offset
;
4108 /* Calls from 16-bit code to 32-bit code and vice versa require the
4109 special jalx instruction. */
4110 *require_jalxp
= (!info
->relocatable
4111 && (((r_type
== R_MIPS16_26
) && !target_is_16_bit_code_p
)
4112 || ((r_type
== R_MIPS_26
) && target_is_16_bit_code_p
)));
4114 local_p
= mips_elf_local_relocation_p (input_bfd
, relocation
,
4115 local_sections
, TRUE
);
4117 /* If we haven't already determined the GOT offset, or the GP value,
4118 and we're going to need it, get it now. */
4121 case R_MIPS_GOT_PAGE
:
4122 case R_MIPS_GOT_OFST
:
4123 /* We need to decay to GOT_DISP/addend if the symbol doesn't
4125 local_p
= local_p
|| _bfd_elf_symbol_refs_local_p (&h
->root
, info
, 1);
4126 if (local_p
|| r_type
== R_MIPS_GOT_OFST
)
4132 case R_MIPS_GOT_DISP
:
4133 case R_MIPS_GOT_HI16
:
4134 case R_MIPS_CALL_HI16
:
4135 case R_MIPS_GOT_LO16
:
4136 case R_MIPS_CALL_LO16
:
4138 case R_MIPS_TLS_GOTTPREL
:
4139 case R_MIPS_TLS_LDM
:
4140 /* Find the index into the GOT where this value is located. */
4141 if (r_type
== R_MIPS_TLS_LDM
)
4143 g
= mips_elf_local_got_index (abfd
, input_bfd
, info
,
4144 sec
, 0, 0, NULL
, r_type
);
4146 return bfd_reloc_outofrange
;
4150 /* On VxWorks, CALL relocations should refer to the .got.plt
4151 entry, which is initialized to point at the PLT stub. */
4152 if (htab
->is_vxworks
4153 && (r_type
== R_MIPS_CALL_HI16
4154 || r_type
== R_MIPS_CALL_LO16
4155 || r_type
== R_MIPS_CALL16
))
4157 BFD_ASSERT (addend
== 0);
4158 BFD_ASSERT (h
->root
.needs_plt
);
4159 g
= mips_elf_gotplt_index (info
, &h
->root
);
4163 /* GOT_PAGE may take a non-zero addend, that is ignored in a
4164 GOT_PAGE relocation that decays to GOT_DISP because the
4165 symbol turns out to be global. The addend is then added
4167 BFD_ASSERT (addend
== 0 || r_type
== R_MIPS_GOT_PAGE
);
4168 g
= mips_elf_global_got_index (dynobj
, input_bfd
,
4169 &h
->root
, r_type
, info
);
4170 if (h
->tls_type
== GOT_NORMAL
4171 && (! elf_hash_table(info
)->dynamic_sections_created
4173 && (info
->symbolic
|| h
->root
.forced_local
)
4174 && h
->root
.def_regular
)))
4176 /* This is a static link or a -Bsymbolic link. The
4177 symbol is defined locally, or was forced to be local.
4178 We must initialize this entry in the GOT. */
4179 asection
*sgot
= mips_elf_got_section (dynobj
, FALSE
);
4180 MIPS_ELF_PUT_WORD (dynobj
, symbol
, sgot
->contents
+ g
);
4184 else if (!htab
->is_vxworks
4185 && (r_type
== R_MIPS_CALL16
|| (r_type
== R_MIPS_GOT16
)))
4186 /* The calculation below does not involve "g". */
4190 g
= mips_elf_local_got_index (abfd
, input_bfd
, info
, sec
,
4191 symbol
+ addend
, r_symndx
, h
, r_type
);
4193 return bfd_reloc_outofrange
;
4196 /* Convert GOT indices to actual offsets. */
4197 g
= mips_elf_got_offset_from_index (dynobj
, abfd
, input_bfd
, g
);
4202 case R_MIPS_GPREL16
:
4203 case R_MIPS_GPREL32
:
4204 case R_MIPS_LITERAL
:
4207 case R_MIPS16_GPREL
:
4208 gp0
= _bfd_get_gp_value (input_bfd
);
4209 gp
= _bfd_get_gp_value (abfd
);
4211 gp
+= mips_elf_adjust_gp (abfd
, mips_elf_got_info (dynobj
, NULL
),
4222 /* Relocations against the VxWorks __GOTT_BASE__ and __GOTT_INDEX__
4223 symbols are resolved by the loader. Add them to .rela.dyn. */
4224 if (h
!= NULL
&& is_gott_symbol (info
, &h
->root
))
4226 Elf_Internal_Rela outrel
;
4230 s
= mips_elf_rel_dyn_section (info
, FALSE
);
4231 loc
= s
->contents
+ s
->reloc_count
++ * sizeof (Elf32_External_Rela
);
4233 outrel
.r_offset
= (input_section
->output_section
->vma
4234 + input_section
->output_offset
4235 + relocation
->r_offset
);
4236 outrel
.r_info
= ELF32_R_INFO (h
->root
.dynindx
, r_type
);
4237 outrel
.r_addend
= addend
;
4238 bfd_elf32_swap_reloca_out (abfd
, &outrel
, loc
);
4240 return bfd_reloc_ok
;
4243 /* Figure out what kind of relocation is being performed. */
4247 return bfd_reloc_continue
;
4250 value
= symbol
+ _bfd_mips_elf_sign_extend (addend
, 16);
4251 overflowed_p
= mips_elf_overflow_p (value
, 16);
4258 || (!htab
->is_vxworks
4259 && htab
->root
.dynamic_sections_created
4261 && h
->root
.def_dynamic
4262 && !h
->root
.def_regular
))
4264 && (input_section
->flags
& SEC_ALLOC
) != 0)
4266 /* If we're creating a shared library, or this relocation is
4267 against a symbol in a shared library, then we can't know
4268 where the symbol will end up. So, we create a relocation
4269 record in the output, and leave the job up to the dynamic
4272 In VxWorks executables, references to external symbols
4273 are handled using copy relocs or PLT stubs, so there's
4274 no need to add a dynamic relocation here. */
4276 if (!mips_elf_create_dynamic_relocation (abfd
,
4284 return bfd_reloc_undefined
;
4288 if (r_type
!= R_MIPS_REL32
)
4289 value
= symbol
+ addend
;
4293 value
&= howto
->dst_mask
;
4297 value
= symbol
+ addend
- p
;
4298 value
&= howto
->dst_mask
;
4302 /* The calculation for R_MIPS16_26 is just the same as for an
4303 R_MIPS_26. It's only the storage of the relocated field into
4304 the output file that's different. That's handled in
4305 mips_elf_perform_relocation. So, we just fall through to the
4306 R_MIPS_26 case here. */
4309 value
= ((addend
| ((p
+ 4) & 0xf0000000)) + symbol
) >> 2;
4312 value
= (_bfd_mips_elf_sign_extend (addend
, 28) + symbol
) >> 2;
4313 if (h
->root
.root
.type
!= bfd_link_hash_undefweak
)
4314 overflowed_p
= (value
>> 26) != ((p
+ 4) >> 28);
4316 value
&= howto
->dst_mask
;
4319 case R_MIPS_TLS_DTPREL_HI16
:
4320 value
= (mips_elf_high (addend
+ symbol
- dtprel_base (info
))
4324 case R_MIPS_TLS_DTPREL_LO16
:
4325 value
= (symbol
+ addend
- dtprel_base (info
)) & howto
->dst_mask
;
4328 case R_MIPS_TLS_TPREL_HI16
:
4329 value
= (mips_elf_high (addend
+ symbol
- tprel_base (info
))
4333 case R_MIPS_TLS_TPREL_LO16
:
4334 value
= (symbol
+ addend
- tprel_base (info
)) & howto
->dst_mask
;
4341 value
= mips_elf_high (addend
+ symbol
);
4342 value
&= howto
->dst_mask
;
4346 /* For MIPS16 ABI code we generate this sequence
4347 0: li $v0,%hi(_gp_disp)
4348 4: addiupc $v1,%lo(_gp_disp)
4352 So the offsets of hi and lo relocs are the same, but the
4353 $pc is four higher than $t9 would be, so reduce
4354 both reloc addends by 4. */
4355 if (r_type
== R_MIPS16_HI16
)
4356 value
= mips_elf_high (addend
+ gp
- p
- 4);
4358 value
= mips_elf_high (addend
+ gp
- p
);
4359 overflowed_p
= mips_elf_overflow_p (value
, 16);
4366 value
= (symbol
+ addend
) & howto
->dst_mask
;
4369 /* See the comment for R_MIPS16_HI16 above for the reason
4370 for this conditional. */
4371 if (r_type
== R_MIPS16_LO16
)
4372 value
= addend
+ gp
- p
;
4374 value
= addend
+ gp
- p
+ 4;
4375 /* The MIPS ABI requires checking the R_MIPS_LO16 relocation
4376 for overflow. But, on, say, IRIX5, relocations against
4377 _gp_disp are normally generated from the .cpload
4378 pseudo-op. It generates code that normally looks like
4381 lui $gp,%hi(_gp_disp)
4382 addiu $gp,$gp,%lo(_gp_disp)
4385 Here $t9 holds the address of the function being called,
4386 as required by the MIPS ELF ABI. The R_MIPS_LO16
4387 relocation can easily overflow in this situation, but the
4388 R_MIPS_HI16 relocation will handle the overflow.
4389 Therefore, we consider this a bug in the MIPS ABI, and do
4390 not check for overflow here. */
4394 case R_MIPS_LITERAL
:
4395 /* Because we don't merge literal sections, we can handle this
4396 just like R_MIPS_GPREL16. In the long run, we should merge
4397 shared literals, and then we will need to additional work
4402 case R_MIPS16_GPREL
:
4403 /* The R_MIPS16_GPREL performs the same calculation as
4404 R_MIPS_GPREL16, but stores the relocated bits in a different
4405 order. We don't need to do anything special here; the
4406 differences are handled in mips_elf_perform_relocation. */
4407 case R_MIPS_GPREL16
:
4408 /* Only sign-extend the addend if it was extracted from the
4409 instruction. If the addend was separate, leave it alone,
4410 otherwise we may lose significant bits. */
4411 if (howto
->partial_inplace
)
4412 addend
= _bfd_mips_elf_sign_extend (addend
, 16);
4413 value
= symbol
+ addend
- gp
;
4414 /* If the symbol was local, any earlier relocatable links will
4415 have adjusted its addend with the gp offset, so compensate
4416 for that now. Don't do it for symbols forced local in this
4417 link, though, since they won't have had the gp offset applied
4421 overflowed_p
= mips_elf_overflow_p (value
, 16);
4426 /* VxWorks does not have separate local and global semantics for
4427 R_MIPS_GOT16; every relocation evaluates to "G". */
4428 if (!htab
->is_vxworks
&& local_p
)
4432 forced
= ! mips_elf_local_relocation_p (input_bfd
, relocation
,
4433 local_sections
, FALSE
);
4434 value
= mips_elf_got16_entry (abfd
, input_bfd
, info
, sec
,
4435 symbol
+ addend
, forced
);
4436 if (value
== MINUS_ONE
)
4437 return bfd_reloc_outofrange
;
4439 = mips_elf_got_offset_from_index (dynobj
, abfd
, input_bfd
, value
);
4440 overflowed_p
= mips_elf_overflow_p (value
, 16);
4447 case R_MIPS_TLS_GOTTPREL
:
4448 case R_MIPS_TLS_LDM
:
4449 case R_MIPS_GOT_DISP
:
4452 overflowed_p
= mips_elf_overflow_p (value
, 16);
4455 case R_MIPS_GPREL32
:
4456 value
= (addend
+ symbol
+ gp0
- gp
);
4458 value
&= howto
->dst_mask
;
4462 case R_MIPS_GNU_REL16_S2
:
4463 value
= symbol
+ _bfd_mips_elf_sign_extend (addend
, 18) - p
;
4464 overflowed_p
= mips_elf_overflow_p (value
, 18);
4465 value
= (value
>> 2) & howto
->dst_mask
;
4468 case R_MIPS_GOT_HI16
:
4469 case R_MIPS_CALL_HI16
:
4470 /* We're allowed to handle these two relocations identically.
4471 The dynamic linker is allowed to handle the CALL relocations
4472 differently by creating a lazy evaluation stub. */
4474 value
= mips_elf_high (value
);
4475 value
&= howto
->dst_mask
;
4478 case R_MIPS_GOT_LO16
:
4479 case R_MIPS_CALL_LO16
:
4480 value
= g
& howto
->dst_mask
;
4483 case R_MIPS_GOT_PAGE
:
4484 /* GOT_PAGE relocations that reference non-local symbols decay
4485 to GOT_DISP. The corresponding GOT_OFST relocation decays to
4489 value
= mips_elf_got_page (abfd
, input_bfd
, info
, sec
,
4490 symbol
+ addend
, NULL
);
4491 if (value
== MINUS_ONE
)
4492 return bfd_reloc_outofrange
;
4493 value
= mips_elf_got_offset_from_index (dynobj
, abfd
, input_bfd
, value
);
4494 overflowed_p
= mips_elf_overflow_p (value
, 16);
4497 case R_MIPS_GOT_OFST
:
4499 mips_elf_got_page (abfd
, input_bfd
, info
, sec
,
4500 symbol
+ addend
, &value
);
4503 overflowed_p
= mips_elf_overflow_p (value
, 16);
4507 value
= symbol
- addend
;
4508 value
&= howto
->dst_mask
;
4512 value
= mips_elf_higher (addend
+ symbol
);
4513 value
&= howto
->dst_mask
;
4516 case R_MIPS_HIGHEST
:
4517 value
= mips_elf_highest (addend
+ symbol
);
4518 value
&= howto
->dst_mask
;
4521 case R_MIPS_SCN_DISP
:
4522 value
= symbol
+ addend
- sec
->output_offset
;
4523 value
&= howto
->dst_mask
;
4527 /* This relocation is only a hint. In some cases, we optimize
4528 it into a bal instruction. But we don't try to optimize
4529 branches to the PLT; that will wind up wasting time. */
4530 if (h
!= NULL
&& h
->root
.plt
.offset
!= (bfd_vma
) -1)
4531 return bfd_reloc_continue
;
4532 value
= symbol
+ addend
;
4536 case R_MIPS_GNU_VTINHERIT
:
4537 case R_MIPS_GNU_VTENTRY
:
4538 /* We don't do anything with these at present. */
4539 return bfd_reloc_continue
;
4542 /* An unrecognized relocation type. */
4543 return bfd_reloc_notsupported
;
4546 /* Store the VALUE for our caller. */
4548 return overflowed_p
? bfd_reloc_overflow
: bfd_reloc_ok
;
4551 /* Obtain the field relocated by RELOCATION. */
4554 mips_elf_obtain_contents (reloc_howto_type
*howto
,
4555 const Elf_Internal_Rela
*relocation
,
4556 bfd
*input_bfd
, bfd_byte
*contents
)
4559 bfd_byte
*location
= contents
+ relocation
->r_offset
;
4561 /* Obtain the bytes. */
4562 x
= bfd_get ((8 * bfd_get_reloc_size (howto
)), input_bfd
, location
);
4567 /* It has been determined that the result of the RELOCATION is the
4568 VALUE. Use HOWTO to place VALUE into the output file at the
4569 appropriate position. The SECTION is the section to which the
4570 relocation applies. If REQUIRE_JALX is TRUE, then the opcode used
4571 for the relocation must be either JAL or JALX, and it is
4572 unconditionally converted to JALX.
4574 Returns FALSE if anything goes wrong. */
4577 mips_elf_perform_relocation (struct bfd_link_info
*info
,
4578 reloc_howto_type
*howto
,
4579 const Elf_Internal_Rela
*relocation
,
4580 bfd_vma value
, bfd
*input_bfd
,
4581 asection
*input_section
, bfd_byte
*contents
,
4582 bfd_boolean require_jalx
)
4586 int r_type
= ELF_R_TYPE (input_bfd
, relocation
->r_info
);
4588 /* Figure out where the relocation is occurring. */
4589 location
= contents
+ relocation
->r_offset
;
4591 _bfd_mips16_elf_reloc_unshuffle (input_bfd
, r_type
, FALSE
, location
);
4593 /* Obtain the current value. */
4594 x
= mips_elf_obtain_contents (howto
, relocation
, input_bfd
, contents
);
4596 /* Clear the field we are setting. */
4597 x
&= ~howto
->dst_mask
;
4599 /* Set the field. */
4600 x
|= (value
& howto
->dst_mask
);
4602 /* If required, turn JAL into JALX. */
4606 bfd_vma opcode
= x
>> 26;
4607 bfd_vma jalx_opcode
;
4609 /* Check to see if the opcode is already JAL or JALX. */
4610 if (r_type
== R_MIPS16_26
)
4612 ok
= ((opcode
== 0x6) || (opcode
== 0x7));
4617 ok
= ((opcode
== 0x3) || (opcode
== 0x1d));
4621 /* If the opcode is not JAL or JALX, there's a problem. */
4624 (*_bfd_error_handler
)
4625 (_("%B: %A+0x%lx: jump to stub routine which is not jal"),
4628 (unsigned long) relocation
->r_offset
);
4629 bfd_set_error (bfd_error_bad_value
);
4633 /* Make this the JALX opcode. */
4634 x
= (x
& ~(0x3f << 26)) | (jalx_opcode
<< 26);
4637 /* On the RM9000, bal is faster than jal, because bal uses branch
4638 prediction hardware. If we are linking for the RM9000, and we
4639 see jal, and bal fits, use it instead. Note that this
4640 transformation should be safe for all architectures. */
4641 if (bfd_get_mach (input_bfd
) == bfd_mach_mips9000
4642 && !info
->relocatable
4644 && ((r_type
== R_MIPS_26
&& (x
>> 26) == 0x3) /* jal addr */
4645 || (r_type
== R_MIPS_JALR
&& x
== 0x0320f809))) /* jalr t9 */
4651 addr
= (input_section
->output_section
->vma
4652 + input_section
->output_offset
4653 + relocation
->r_offset
4655 if (r_type
== R_MIPS_26
)
4656 dest
= (value
<< 2) | ((addr
>> 28) << 28);
4660 if (off
<= 0x1ffff && off
>= -0x20000)
4661 x
= 0x04110000 | (((bfd_vma
) off
>> 2) & 0xffff); /* bal addr */
4664 /* Put the value into the output. */
4665 bfd_put (8 * bfd_get_reloc_size (howto
), input_bfd
, x
, location
);
4667 _bfd_mips16_elf_reloc_shuffle(input_bfd
, r_type
, !info
->relocatable
,
4673 /* Returns TRUE if SECTION is a MIPS16 stub section. */
4676 mips_elf_stub_section_p (bfd
*abfd ATTRIBUTE_UNUSED
, asection
*section
)
4678 const char *name
= bfd_get_section_name (abfd
, section
);
4680 return (strncmp (name
, FN_STUB
, sizeof FN_STUB
- 1) == 0
4681 || strncmp (name
, CALL_STUB
, sizeof CALL_STUB
- 1) == 0
4682 || strncmp (name
, CALL_FP_STUB
, sizeof CALL_FP_STUB
- 1) == 0);
4685 /* Add room for N relocations to the .rel(a).dyn section in ABFD. */
4688 mips_elf_allocate_dynamic_relocations (bfd
*abfd
, struct bfd_link_info
*info
,
4692 struct mips_elf_link_hash_table
*htab
;
4694 htab
= mips_elf_hash_table (info
);
4695 s
= mips_elf_rel_dyn_section (info
, FALSE
);
4696 BFD_ASSERT (s
!= NULL
);
4698 if (htab
->is_vxworks
)
4699 s
->size
+= n
* MIPS_ELF_RELA_SIZE (abfd
);
4704 /* Make room for a null element. */
4705 s
->size
+= MIPS_ELF_REL_SIZE (abfd
);
4708 s
->size
+= n
* MIPS_ELF_REL_SIZE (abfd
);
4712 /* Create a rel.dyn relocation for the dynamic linker to resolve. REL
4713 is the original relocation, which is now being transformed into a
4714 dynamic relocation. The ADDENDP is adjusted if necessary; the
4715 caller should store the result in place of the original addend. */
4718 mips_elf_create_dynamic_relocation (bfd
*output_bfd
,
4719 struct bfd_link_info
*info
,
4720 const Elf_Internal_Rela
*rel
,
4721 struct mips_elf_link_hash_entry
*h
,
4722 asection
*sec
, bfd_vma symbol
,
4723 bfd_vma
*addendp
, asection
*input_section
)
4725 Elf_Internal_Rela outrel
[3];
4730 bfd_boolean defined_p
;
4731 struct mips_elf_link_hash_table
*htab
;
4733 htab
= mips_elf_hash_table (info
);
4734 r_type
= ELF_R_TYPE (output_bfd
, rel
->r_info
);
4735 dynobj
= elf_hash_table (info
)->dynobj
;
4736 sreloc
= mips_elf_rel_dyn_section (info
, FALSE
);
4737 BFD_ASSERT (sreloc
!= NULL
);
4738 BFD_ASSERT (sreloc
->contents
!= NULL
);
4739 BFD_ASSERT (sreloc
->reloc_count
* MIPS_ELF_REL_SIZE (output_bfd
)
4742 outrel
[0].r_offset
=
4743 _bfd_elf_section_offset (output_bfd
, info
, input_section
, rel
[0].r_offset
);
4744 outrel
[1].r_offset
=
4745 _bfd_elf_section_offset (output_bfd
, info
, input_section
, rel
[1].r_offset
);
4746 outrel
[2].r_offset
=
4747 _bfd_elf_section_offset (output_bfd
, info
, input_section
, rel
[2].r_offset
);
4749 if (outrel
[0].r_offset
== MINUS_ONE
)
4750 /* The relocation field has been deleted. */
4753 if (outrel
[0].r_offset
== MINUS_TWO
)
4755 /* The relocation field has been converted into a relative value of
4756 some sort. Functions like _bfd_elf_write_section_eh_frame expect
4757 the field to be fully relocated, so add in the symbol's value. */
4762 /* We must now calculate the dynamic symbol table index to use
4763 in the relocation. */
4765 && (!h
->root
.def_regular
4766 || (info
->shared
&& !info
->symbolic
&& !h
->root
.forced_local
)))
4768 indx
= h
->root
.dynindx
;
4769 if (SGI_COMPAT (output_bfd
))
4770 defined_p
= h
->root
.def_regular
;
4772 /* ??? glibc's ld.so just adds the final GOT entry to the
4773 relocation field. It therefore treats relocs against
4774 defined symbols in the same way as relocs against
4775 undefined symbols. */
4780 if (sec
!= NULL
&& bfd_is_abs_section (sec
))
4782 else if (sec
== NULL
|| sec
->owner
== NULL
)
4784 bfd_set_error (bfd_error_bad_value
);
4789 indx
= elf_section_data (sec
->output_section
)->dynindx
;
4794 /* Instead of generating a relocation using the section
4795 symbol, we may as well make it a fully relative
4796 relocation. We want to avoid generating relocations to
4797 local symbols because we used to generate them
4798 incorrectly, without adding the original symbol value,
4799 which is mandated by the ABI for section symbols. In
4800 order to give dynamic loaders and applications time to
4801 phase out the incorrect use, we refrain from emitting
4802 section-relative relocations. It's not like they're
4803 useful, after all. This should be a bit more efficient
4805 /* ??? Although this behavior is compatible with glibc's ld.so,
4806 the ABI says that relocations against STN_UNDEF should have
4807 a symbol value of 0. Irix rld honors this, so relocations
4808 against STN_UNDEF have no effect. */
4809 if (!SGI_COMPAT (output_bfd
))
4814 /* If the relocation was previously an absolute relocation and
4815 this symbol will not be referred to by the relocation, we must
4816 adjust it by the value we give it in the dynamic symbol table.
4817 Otherwise leave the job up to the dynamic linker. */
4818 if (defined_p
&& r_type
!= R_MIPS_REL32
)
4821 if (htab
->is_vxworks
)
4822 /* VxWorks uses non-relative relocations for this. */
4823 outrel
[0].r_info
= ELF32_R_INFO (indx
, R_MIPS_32
);
4825 /* The relocation is always an REL32 relocation because we don't
4826 know where the shared library will wind up at load-time. */
4827 outrel
[0].r_info
= ELF_R_INFO (output_bfd
, (unsigned long) indx
,
4830 /* For strict adherence to the ABI specification, we should
4831 generate a R_MIPS_64 relocation record by itself before the
4832 _REL32/_64 record as well, such that the addend is read in as
4833 a 64-bit value (REL32 is a 32-bit relocation, after all).
4834 However, since none of the existing ELF64 MIPS dynamic
4835 loaders seems to care, we don't waste space with these
4836 artificial relocations. If this turns out to not be true,
4837 mips_elf_allocate_dynamic_relocation() should be tweaked so
4838 as to make room for a pair of dynamic relocations per
4839 invocation if ABI_64_P, and here we should generate an
4840 additional relocation record with R_MIPS_64 by itself for a
4841 NULL symbol before this relocation record. */
4842 outrel
[1].r_info
= ELF_R_INFO (output_bfd
, 0,
4843 ABI_64_P (output_bfd
)
4846 outrel
[2].r_info
= ELF_R_INFO (output_bfd
, 0, R_MIPS_NONE
);
4848 /* Adjust the output offset of the relocation to reference the
4849 correct location in the output file. */
4850 outrel
[0].r_offset
+= (input_section
->output_section
->vma
4851 + input_section
->output_offset
);
4852 outrel
[1].r_offset
+= (input_section
->output_section
->vma
4853 + input_section
->output_offset
);
4854 outrel
[2].r_offset
+= (input_section
->output_section
->vma
4855 + input_section
->output_offset
);
4857 /* Put the relocation back out. We have to use the special
4858 relocation outputter in the 64-bit case since the 64-bit
4859 relocation format is non-standard. */
4860 if (ABI_64_P (output_bfd
))
4862 (*get_elf_backend_data (output_bfd
)->s
->swap_reloc_out
)
4863 (output_bfd
, &outrel
[0],
4865 + sreloc
->reloc_count
* sizeof (Elf64_Mips_External_Rel
)));
4867 else if (htab
->is_vxworks
)
4869 /* VxWorks uses RELA rather than REL dynamic relocations. */
4870 outrel
[0].r_addend
= *addendp
;
4871 bfd_elf32_swap_reloca_out
4872 (output_bfd
, &outrel
[0],
4874 + sreloc
->reloc_count
* sizeof (Elf32_External_Rela
)));
4877 bfd_elf32_swap_reloc_out
4878 (output_bfd
, &outrel
[0],
4879 (sreloc
->contents
+ sreloc
->reloc_count
* sizeof (Elf32_External_Rel
)));
4881 /* We've now added another relocation. */
4882 ++sreloc
->reloc_count
;
4884 /* Make sure the output section is writable. The dynamic linker
4885 will be writing to it. */
4886 elf_section_data (input_section
->output_section
)->this_hdr
.sh_flags
4889 /* On IRIX5, make an entry of compact relocation info. */
4890 if (IRIX_COMPAT (output_bfd
) == ict_irix5
)
4892 asection
*scpt
= bfd_get_section_by_name (dynobj
, ".compact_rel");
4897 Elf32_crinfo cptrel
;
4899 mips_elf_set_cr_format (cptrel
, CRF_MIPS_LONG
);
4900 cptrel
.vaddr
= (rel
->r_offset
4901 + input_section
->output_section
->vma
4902 + input_section
->output_offset
);
4903 if (r_type
== R_MIPS_REL32
)
4904 mips_elf_set_cr_type (cptrel
, CRT_MIPS_REL32
);
4906 mips_elf_set_cr_type (cptrel
, CRT_MIPS_WORD
);
4907 mips_elf_set_cr_dist2to (cptrel
, 0);
4908 cptrel
.konst
= *addendp
;
4910 cr
= (scpt
->contents
4911 + sizeof (Elf32_External_compact_rel
));
4912 mips_elf_set_cr_relvaddr (cptrel
, 0);
4913 bfd_elf32_swap_crinfo_out (output_bfd
, &cptrel
,
4914 ((Elf32_External_crinfo
*) cr
4915 + scpt
->reloc_count
));
4916 ++scpt
->reloc_count
;
4920 /* If we've written this relocation for a readonly section,
4921 we need to set DF_TEXTREL again, so that we do not delete the
4923 if (MIPS_ELF_READONLY_SECTION (input_section
))
4924 info
->flags
|= DF_TEXTREL
;
4929 /* Return the MACH for a MIPS e_flags value. */
4932 _bfd_elf_mips_mach (flagword flags
)
4934 switch (flags
& EF_MIPS_MACH
)
4936 case E_MIPS_MACH_3900
:
4937 return bfd_mach_mips3900
;
4939 case E_MIPS_MACH_4010
:
4940 return bfd_mach_mips4010
;
4942 case E_MIPS_MACH_4100
:
4943 return bfd_mach_mips4100
;
4945 case E_MIPS_MACH_4111
:
4946 return bfd_mach_mips4111
;
4948 case E_MIPS_MACH_4120
:
4949 return bfd_mach_mips4120
;
4951 case E_MIPS_MACH_4650
:
4952 return bfd_mach_mips4650
;
4954 case E_MIPS_MACH_5400
:
4955 return bfd_mach_mips5400
;
4957 case E_MIPS_MACH_5500
:
4958 return bfd_mach_mips5500
;
4960 case E_MIPS_MACH_9000
:
4961 return bfd_mach_mips9000
;
4963 case E_MIPS_MACH_SB1
:
4964 return bfd_mach_mips_sb1
;
4967 switch (flags
& EF_MIPS_ARCH
)
4971 return bfd_mach_mips3000
;
4974 return bfd_mach_mips6000
;
4977 return bfd_mach_mips4000
;
4980 return bfd_mach_mips8000
;
4983 return bfd_mach_mips5
;
4985 case E_MIPS_ARCH_32
:
4986 return bfd_mach_mipsisa32
;
4988 case E_MIPS_ARCH_64
:
4989 return bfd_mach_mipsisa64
;
4991 case E_MIPS_ARCH_32R2
:
4992 return bfd_mach_mipsisa32r2
;
4994 case E_MIPS_ARCH_64R2
:
4995 return bfd_mach_mipsisa64r2
;
5002 /* Return printable name for ABI. */
5004 static INLINE
char *
5005 elf_mips_abi_name (bfd
*abfd
)
5009 flags
= elf_elfheader (abfd
)->e_flags
;
5010 switch (flags
& EF_MIPS_ABI
)
5013 if (ABI_N32_P (abfd
))
5015 else if (ABI_64_P (abfd
))
5019 case E_MIPS_ABI_O32
:
5021 case E_MIPS_ABI_O64
:
5023 case E_MIPS_ABI_EABI32
:
5025 case E_MIPS_ABI_EABI64
:
5028 return "unknown abi";
5032 /* MIPS ELF uses two common sections. One is the usual one, and the
5033 other is for small objects. All the small objects are kept
5034 together, and then referenced via the gp pointer, which yields
5035 faster assembler code. This is what we use for the small common
5036 section. This approach is copied from ecoff.c. */
5037 static asection mips_elf_scom_section
;
5038 static asymbol mips_elf_scom_symbol
;
5039 static asymbol
*mips_elf_scom_symbol_ptr
;
5041 /* MIPS ELF also uses an acommon section, which represents an
5042 allocated common symbol which may be overridden by a
5043 definition in a shared library. */
5044 static asection mips_elf_acom_section
;
5045 static asymbol mips_elf_acom_symbol
;
5046 static asymbol
*mips_elf_acom_symbol_ptr
;
5048 /* Handle the special MIPS section numbers that a symbol may use.
5049 This is used for both the 32-bit and the 64-bit ABI. */
5052 _bfd_mips_elf_symbol_processing (bfd
*abfd
, asymbol
*asym
)
5054 elf_symbol_type
*elfsym
;
5056 elfsym
= (elf_symbol_type
*) asym
;
5057 switch (elfsym
->internal_elf_sym
.st_shndx
)
5059 case SHN_MIPS_ACOMMON
:
5060 /* This section is used in a dynamically linked executable file.
5061 It is an allocated common section. The dynamic linker can
5062 either resolve these symbols to something in a shared
5063 library, or it can just leave them here. For our purposes,
5064 we can consider these symbols to be in a new section. */
5065 if (mips_elf_acom_section
.name
== NULL
)
5067 /* Initialize the acommon section. */
5068 mips_elf_acom_section
.name
= ".acommon";
5069 mips_elf_acom_section
.flags
= SEC_ALLOC
;
5070 mips_elf_acom_section
.output_section
= &mips_elf_acom_section
;
5071 mips_elf_acom_section
.symbol
= &mips_elf_acom_symbol
;
5072 mips_elf_acom_section
.symbol_ptr_ptr
= &mips_elf_acom_symbol_ptr
;
5073 mips_elf_acom_symbol
.name
= ".acommon";
5074 mips_elf_acom_symbol
.flags
= BSF_SECTION_SYM
;
5075 mips_elf_acom_symbol
.section
= &mips_elf_acom_section
;
5076 mips_elf_acom_symbol_ptr
= &mips_elf_acom_symbol
;
5078 asym
->section
= &mips_elf_acom_section
;
5082 /* Common symbols less than the GP size are automatically
5083 treated as SHN_MIPS_SCOMMON symbols on IRIX5. */
5084 if (asym
->value
> elf_gp_size (abfd
)
5085 || IRIX_COMPAT (abfd
) == ict_irix6
)
5088 case SHN_MIPS_SCOMMON
:
5089 if (mips_elf_scom_section
.name
== NULL
)
5091 /* Initialize the small common section. */
5092 mips_elf_scom_section
.name
= ".scommon";
5093 mips_elf_scom_section
.flags
= SEC_IS_COMMON
;
5094 mips_elf_scom_section
.output_section
= &mips_elf_scom_section
;
5095 mips_elf_scom_section
.symbol
= &mips_elf_scom_symbol
;
5096 mips_elf_scom_section
.symbol_ptr_ptr
= &mips_elf_scom_symbol_ptr
;
5097 mips_elf_scom_symbol
.name
= ".scommon";
5098 mips_elf_scom_symbol
.flags
= BSF_SECTION_SYM
;
5099 mips_elf_scom_symbol
.section
= &mips_elf_scom_section
;
5100 mips_elf_scom_symbol_ptr
= &mips_elf_scom_symbol
;
5102 asym
->section
= &mips_elf_scom_section
;
5103 asym
->value
= elfsym
->internal_elf_sym
.st_size
;
5106 case SHN_MIPS_SUNDEFINED
:
5107 asym
->section
= bfd_und_section_ptr
;
5112 asection
*section
= bfd_get_section_by_name (abfd
, ".text");
5114 BFD_ASSERT (SGI_COMPAT (abfd
));
5115 if (section
!= NULL
)
5117 asym
->section
= section
;
5118 /* MIPS_TEXT is a bit special, the address is not an offset
5119 to the base of the .text section. So substract the section
5120 base address to make it an offset. */
5121 asym
->value
-= section
->vma
;
5128 asection
*section
= bfd_get_section_by_name (abfd
, ".data");
5130 BFD_ASSERT (SGI_COMPAT (abfd
));
5131 if (section
!= NULL
)
5133 asym
->section
= section
;
5134 /* MIPS_DATA is a bit special, the address is not an offset
5135 to the base of the .data section. So substract the section
5136 base address to make it an offset. */
5137 asym
->value
-= section
->vma
;
5144 /* Implement elf_backend_eh_frame_address_size. This differs from
5145 the default in the way it handles EABI64.
5147 EABI64 was originally specified as an LP64 ABI, and that is what
5148 -mabi=eabi normally gives on a 64-bit target. However, gcc has
5149 historically accepted the combination of -mabi=eabi and -mlong32,
5150 and this ILP32 variation has become semi-official over time.
5151 Both forms use elf32 and have pointer-sized FDE addresses.
5153 If an EABI object was generated by GCC 4.0 or above, it will have
5154 an empty .gcc_compiled_longXX section, where XX is the size of longs
5155 in bits. Unfortunately, ILP32 objects generated by earlier compilers
5156 have no special marking to distinguish them from LP64 objects.
5158 We don't want users of the official LP64 ABI to be punished for the
5159 existence of the ILP32 variant, but at the same time, we don't want
5160 to mistakenly interpret pre-4.0 ILP32 objects as being LP64 objects.
5161 We therefore take the following approach:
5163 - If ABFD contains a .gcc_compiled_longXX section, use it to
5164 determine the pointer size.
5166 - Otherwise check the type of the first relocation. Assume that
5167 the LP64 ABI is being used if the relocation is of type R_MIPS_64.
5171 The second check is enough to detect LP64 objects generated by pre-4.0
5172 compilers because, in the kind of output generated by those compilers,
5173 the first relocation will be associated with either a CIE personality
5174 routine or an FDE start address. Furthermore, the compilers never
5175 used a special (non-pointer) encoding for this ABI.
5177 Checking the relocation type should also be safe because there is no
5178 reason to use R_MIPS_64 in an ILP32 object. Pre-4.0 compilers never
5182 _bfd_mips_elf_eh_frame_address_size (bfd
*abfd
, asection
*sec
)
5184 if (elf_elfheader (abfd
)->e_ident
[EI_CLASS
] == ELFCLASS64
)
5186 if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_EABI64
)
5188 bfd_boolean long32_p
, long64_p
;
5190 long32_p
= bfd_get_section_by_name (abfd
, ".gcc_compiled_long32") != 0;
5191 long64_p
= bfd_get_section_by_name (abfd
, ".gcc_compiled_long64") != 0;
5192 if (long32_p
&& long64_p
)
5199 if (sec
->reloc_count
> 0
5200 && elf_section_data (sec
)->relocs
!= NULL
5201 && (ELF32_R_TYPE (elf_section_data (sec
)->relocs
[0].r_info
)
5210 /* There appears to be a bug in the MIPSpro linker that causes GOT_DISP
5211 relocations against two unnamed section symbols to resolve to the
5212 same address. For example, if we have code like:
5214 lw $4,%got_disp(.data)($gp)
5215 lw $25,%got_disp(.text)($gp)
5218 then the linker will resolve both relocations to .data and the program
5219 will jump there rather than to .text.
5221 We can work around this problem by giving names to local section symbols.
5222 This is also what the MIPSpro tools do. */
5225 _bfd_mips_elf_name_local_section_symbols (bfd
*abfd
)
5227 return SGI_COMPAT (abfd
);
5230 /* Work over a section just before writing it out. This routine is
5231 used by both the 32-bit and the 64-bit ABI. FIXME: We recognize
5232 sections that need the SHF_MIPS_GPREL flag by name; there has to be
5236 _bfd_mips_elf_section_processing (bfd
*abfd
, Elf_Internal_Shdr
*hdr
)
5238 if (hdr
->sh_type
== SHT_MIPS_REGINFO
5239 && hdr
->sh_size
> 0)
5243 BFD_ASSERT (hdr
->sh_size
== sizeof (Elf32_External_RegInfo
));
5244 BFD_ASSERT (hdr
->contents
== NULL
);
5247 hdr
->sh_offset
+ sizeof (Elf32_External_RegInfo
) - 4,
5250 H_PUT_32 (abfd
, elf_gp (abfd
), buf
);
5251 if (bfd_bwrite (buf
, 4, abfd
) != 4)
5255 if (hdr
->sh_type
== SHT_MIPS_OPTIONS
5256 && hdr
->bfd_section
!= NULL
5257 && mips_elf_section_data (hdr
->bfd_section
) != NULL
5258 && mips_elf_section_data (hdr
->bfd_section
)->u
.tdata
!= NULL
)
5260 bfd_byte
*contents
, *l
, *lend
;
5262 /* We stored the section contents in the tdata field in the
5263 set_section_contents routine. We save the section contents
5264 so that we don't have to read them again.
5265 At this point we know that elf_gp is set, so we can look
5266 through the section contents to see if there is an
5267 ODK_REGINFO structure. */
5269 contents
= mips_elf_section_data (hdr
->bfd_section
)->u
.tdata
;
5271 lend
= contents
+ hdr
->sh_size
;
5272 while (l
+ sizeof (Elf_External_Options
) <= lend
)
5274 Elf_Internal_Options intopt
;
5276 bfd_mips_elf_swap_options_in (abfd
, (Elf_External_Options
*) l
,
5278 if (intopt
.size
< sizeof (Elf_External_Options
))
5280 (*_bfd_error_handler
)
5281 (_("%B: Warning: bad `%s' option size %u smaller than its header"),
5282 abfd
, MIPS_ELF_OPTIONS_SECTION_NAME (abfd
), intopt
.size
);
5285 if (ABI_64_P (abfd
) && intopt
.kind
== ODK_REGINFO
)
5292 + sizeof (Elf_External_Options
)
5293 + (sizeof (Elf64_External_RegInfo
) - 8)),
5296 H_PUT_64 (abfd
, elf_gp (abfd
), buf
);
5297 if (bfd_bwrite (buf
, 8, abfd
) != 8)
5300 else if (intopt
.kind
== ODK_REGINFO
)
5307 + sizeof (Elf_External_Options
)
5308 + (sizeof (Elf32_External_RegInfo
) - 4)),
5311 H_PUT_32 (abfd
, elf_gp (abfd
), buf
);
5312 if (bfd_bwrite (buf
, 4, abfd
) != 4)
5319 if (hdr
->bfd_section
!= NULL
)
5321 const char *name
= bfd_get_section_name (abfd
, hdr
->bfd_section
);
5323 if (strcmp (name
, ".sdata") == 0
5324 || strcmp (name
, ".lit8") == 0
5325 || strcmp (name
, ".lit4") == 0)
5327 hdr
->sh_flags
|= SHF_ALLOC
| SHF_WRITE
| SHF_MIPS_GPREL
;
5328 hdr
->sh_type
= SHT_PROGBITS
;
5330 else if (strcmp (name
, ".sbss") == 0)
5332 hdr
->sh_flags
|= SHF_ALLOC
| SHF_WRITE
| SHF_MIPS_GPREL
;
5333 hdr
->sh_type
= SHT_NOBITS
;
5335 else if (strcmp (name
, ".srdata") == 0)
5337 hdr
->sh_flags
|= SHF_ALLOC
| SHF_MIPS_GPREL
;
5338 hdr
->sh_type
= SHT_PROGBITS
;
5340 else if (strcmp (name
, ".compact_rel") == 0)
5343 hdr
->sh_type
= SHT_PROGBITS
;
5345 else if (strcmp (name
, ".rtproc") == 0)
5347 if (hdr
->sh_addralign
!= 0 && hdr
->sh_entsize
== 0)
5349 unsigned int adjust
;
5351 adjust
= hdr
->sh_size
% hdr
->sh_addralign
;
5353 hdr
->sh_size
+= hdr
->sh_addralign
- adjust
;
5361 /* Handle a MIPS specific section when reading an object file. This
5362 is called when elfcode.h finds a section with an unknown type.
5363 This routine supports both the 32-bit and 64-bit ELF ABI.
5365 FIXME: We need to handle the SHF_MIPS_GPREL flag, but I'm not sure
5369 _bfd_mips_elf_section_from_shdr (bfd
*abfd
,
5370 Elf_Internal_Shdr
*hdr
,
5376 /* There ought to be a place to keep ELF backend specific flags, but
5377 at the moment there isn't one. We just keep track of the
5378 sections by their name, instead. Fortunately, the ABI gives
5379 suggested names for all the MIPS specific sections, so we will
5380 probably get away with this. */
5381 switch (hdr
->sh_type
)
5383 case SHT_MIPS_LIBLIST
:
5384 if (strcmp (name
, ".liblist") != 0)
5388 if (strcmp (name
, ".msym") != 0)
5391 case SHT_MIPS_CONFLICT
:
5392 if (strcmp (name
, ".conflict") != 0)
5395 case SHT_MIPS_GPTAB
:
5396 if (strncmp (name
, ".gptab.", sizeof ".gptab." - 1) != 0)
5399 case SHT_MIPS_UCODE
:
5400 if (strcmp (name
, ".ucode") != 0)
5403 case SHT_MIPS_DEBUG
:
5404 if (strcmp (name
, ".mdebug") != 0)
5406 flags
= SEC_DEBUGGING
;
5408 case SHT_MIPS_REGINFO
:
5409 if (strcmp (name
, ".reginfo") != 0
5410 || hdr
->sh_size
!= sizeof (Elf32_External_RegInfo
))
5412 flags
= (SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_SAME_SIZE
);
5414 case SHT_MIPS_IFACE
:
5415 if (strcmp (name
, ".MIPS.interfaces") != 0)
5418 case SHT_MIPS_CONTENT
:
5419 if (strncmp (name
, ".MIPS.content", sizeof ".MIPS.content" - 1) != 0)
5422 case SHT_MIPS_OPTIONS
:
5423 if (!MIPS_ELF_OPTIONS_SECTION_NAME_P (name
))
5426 case SHT_MIPS_DWARF
:
5427 if (strncmp (name
, ".debug_", sizeof ".debug_" - 1) != 0)
5430 case SHT_MIPS_SYMBOL_LIB
:
5431 if (strcmp (name
, ".MIPS.symlib") != 0)
5434 case SHT_MIPS_EVENTS
:
5435 if (strncmp (name
, ".MIPS.events", sizeof ".MIPS.events" - 1) != 0
5436 && strncmp (name
, ".MIPS.post_rel",
5437 sizeof ".MIPS.post_rel" - 1) != 0)
5444 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
5449 if (! bfd_set_section_flags (abfd
, hdr
->bfd_section
,
5450 (bfd_get_section_flags (abfd
,
5456 /* FIXME: We should record sh_info for a .gptab section. */
5458 /* For a .reginfo section, set the gp value in the tdata information
5459 from the contents of this section. We need the gp value while
5460 processing relocs, so we just get it now. The .reginfo section
5461 is not used in the 64-bit MIPS ELF ABI. */
5462 if (hdr
->sh_type
== SHT_MIPS_REGINFO
)
5464 Elf32_External_RegInfo ext
;
5467 if (! bfd_get_section_contents (abfd
, hdr
->bfd_section
,
5468 &ext
, 0, sizeof ext
))
5470 bfd_mips_elf32_swap_reginfo_in (abfd
, &ext
, &s
);
5471 elf_gp (abfd
) = s
.ri_gp_value
;
5474 /* For a SHT_MIPS_OPTIONS section, look for a ODK_REGINFO entry, and
5475 set the gp value based on what we find. We may see both
5476 SHT_MIPS_REGINFO and SHT_MIPS_OPTIONS/ODK_REGINFO; in that case,
5477 they should agree. */
5478 if (hdr
->sh_type
== SHT_MIPS_OPTIONS
)
5480 bfd_byte
*contents
, *l
, *lend
;
5482 contents
= bfd_malloc (hdr
->sh_size
);
5483 if (contents
== NULL
)
5485 if (! bfd_get_section_contents (abfd
, hdr
->bfd_section
, contents
,
5492 lend
= contents
+ hdr
->sh_size
;
5493 while (l
+ sizeof (Elf_External_Options
) <= lend
)
5495 Elf_Internal_Options intopt
;
5497 bfd_mips_elf_swap_options_in (abfd
, (Elf_External_Options
*) l
,
5499 if (intopt
.size
< sizeof (Elf_External_Options
))
5501 (*_bfd_error_handler
)
5502 (_("%B: Warning: bad `%s' option size %u smaller than its header"),
5503 abfd
, MIPS_ELF_OPTIONS_SECTION_NAME (abfd
), intopt
.size
);
5506 if (ABI_64_P (abfd
) && intopt
.kind
== ODK_REGINFO
)
5508 Elf64_Internal_RegInfo intreg
;
5510 bfd_mips_elf64_swap_reginfo_in
5512 ((Elf64_External_RegInfo
*)
5513 (l
+ sizeof (Elf_External_Options
))),
5515 elf_gp (abfd
) = intreg
.ri_gp_value
;
5517 else if (intopt
.kind
== ODK_REGINFO
)
5519 Elf32_RegInfo intreg
;
5521 bfd_mips_elf32_swap_reginfo_in
5523 ((Elf32_External_RegInfo
*)
5524 (l
+ sizeof (Elf_External_Options
))),
5526 elf_gp (abfd
) = intreg
.ri_gp_value
;
5536 /* Set the correct type for a MIPS ELF section. We do this by the
5537 section name, which is a hack, but ought to work. This routine is
5538 used by both the 32-bit and the 64-bit ABI. */
5541 _bfd_mips_elf_fake_sections (bfd
*abfd
, Elf_Internal_Shdr
*hdr
, asection
*sec
)
5543 register const char *name
;
5544 unsigned int sh_type
;
5546 name
= bfd_get_section_name (abfd
, sec
);
5547 sh_type
= hdr
->sh_type
;
5549 if (strcmp (name
, ".liblist") == 0)
5551 hdr
->sh_type
= SHT_MIPS_LIBLIST
;
5552 hdr
->sh_info
= sec
->size
/ sizeof (Elf32_Lib
);
5553 /* The sh_link field is set in final_write_processing. */
5555 else if (strcmp (name
, ".conflict") == 0)
5556 hdr
->sh_type
= SHT_MIPS_CONFLICT
;
5557 else if (strncmp (name
, ".gptab.", sizeof ".gptab." - 1) == 0)
5559 hdr
->sh_type
= SHT_MIPS_GPTAB
;
5560 hdr
->sh_entsize
= sizeof (Elf32_External_gptab
);
5561 /* The sh_info field is set in final_write_processing. */
5563 else if (strcmp (name
, ".ucode") == 0)
5564 hdr
->sh_type
= SHT_MIPS_UCODE
;
5565 else if (strcmp (name
, ".mdebug") == 0)
5567 hdr
->sh_type
= SHT_MIPS_DEBUG
;
5568 /* In a shared object on IRIX 5.3, the .mdebug section has an
5569 entsize of 0. FIXME: Does this matter? */
5570 if (SGI_COMPAT (abfd
) && (abfd
->flags
& DYNAMIC
) != 0)
5571 hdr
->sh_entsize
= 0;
5573 hdr
->sh_entsize
= 1;
5575 else if (strcmp (name
, ".reginfo") == 0)
5577 hdr
->sh_type
= SHT_MIPS_REGINFO
;
5578 /* In a shared object on IRIX 5.3, the .reginfo section has an
5579 entsize of 0x18. FIXME: Does this matter? */
5580 if (SGI_COMPAT (abfd
))
5582 if ((abfd
->flags
& DYNAMIC
) != 0)
5583 hdr
->sh_entsize
= sizeof (Elf32_External_RegInfo
);
5585 hdr
->sh_entsize
= 1;
5588 hdr
->sh_entsize
= sizeof (Elf32_External_RegInfo
);
5590 else if (SGI_COMPAT (abfd
)
5591 && (strcmp (name
, ".hash") == 0
5592 || strcmp (name
, ".dynamic") == 0
5593 || strcmp (name
, ".dynstr") == 0))
5595 if (SGI_COMPAT (abfd
))
5596 hdr
->sh_entsize
= 0;
5598 /* This isn't how the IRIX6 linker behaves. */
5599 hdr
->sh_info
= SIZEOF_MIPS_DYNSYM_SECNAMES
;
5602 else if (strcmp (name
, ".got") == 0
5603 || strcmp (name
, ".srdata") == 0
5604 || strcmp (name
, ".sdata") == 0
5605 || strcmp (name
, ".sbss") == 0
5606 || strcmp (name
, ".lit4") == 0
5607 || strcmp (name
, ".lit8") == 0)
5608 hdr
->sh_flags
|= SHF_MIPS_GPREL
;
5609 else if (strcmp (name
, ".MIPS.interfaces") == 0)
5611 hdr
->sh_type
= SHT_MIPS_IFACE
;
5612 hdr
->sh_flags
|= SHF_MIPS_NOSTRIP
;
5614 else if (strncmp (name
, ".MIPS.content", strlen (".MIPS.content")) == 0)
5616 hdr
->sh_type
= SHT_MIPS_CONTENT
;
5617 hdr
->sh_flags
|= SHF_MIPS_NOSTRIP
;
5618 /* The sh_info field is set in final_write_processing. */
5620 else if (MIPS_ELF_OPTIONS_SECTION_NAME_P (name
))
5622 hdr
->sh_type
= SHT_MIPS_OPTIONS
;
5623 hdr
->sh_entsize
= 1;
5624 hdr
->sh_flags
|= SHF_MIPS_NOSTRIP
;
5626 else if (strncmp (name
, ".debug_", sizeof ".debug_" - 1) == 0)
5627 hdr
->sh_type
= SHT_MIPS_DWARF
;
5628 else if (strcmp (name
, ".MIPS.symlib") == 0)
5630 hdr
->sh_type
= SHT_MIPS_SYMBOL_LIB
;
5631 /* The sh_link and sh_info fields are set in
5632 final_write_processing. */
5634 else if (strncmp (name
, ".MIPS.events", sizeof ".MIPS.events" - 1) == 0
5635 || strncmp (name
, ".MIPS.post_rel",
5636 sizeof ".MIPS.post_rel" - 1) == 0)
5638 hdr
->sh_type
= SHT_MIPS_EVENTS
;
5639 hdr
->sh_flags
|= SHF_MIPS_NOSTRIP
;
5640 /* The sh_link field is set in final_write_processing. */
5642 else if (strcmp (name
, ".msym") == 0)
5644 hdr
->sh_type
= SHT_MIPS_MSYM
;
5645 hdr
->sh_flags
|= SHF_ALLOC
;
5646 hdr
->sh_entsize
= 8;
5649 /* In the unlikely event a special section is empty it has to lose its
5650 special meaning. This may happen e.g. when using `strip' with the
5651 "--only-keep-debug" option. */
5652 if (sec
->size
> 0 && !(sec
->flags
& SEC_HAS_CONTENTS
))
5653 hdr
->sh_type
= sh_type
;
5655 /* The generic elf_fake_sections will set up REL_HDR using the default
5656 kind of relocations. We used to set up a second header for the
5657 non-default kind of relocations here, but only NewABI would use
5658 these, and the IRIX ld doesn't like resulting empty RELA sections.
5659 Thus we create those header only on demand now. */
5664 /* Given a BFD section, try to locate the corresponding ELF section
5665 index. This is used by both the 32-bit and the 64-bit ABI.
5666 Actually, it's not clear to me that the 64-bit ABI supports these,
5667 but for non-PIC objects we will certainly want support for at least
5668 the .scommon section. */
5671 _bfd_mips_elf_section_from_bfd_section (bfd
*abfd ATTRIBUTE_UNUSED
,
5672 asection
*sec
, int *retval
)
5674 if (strcmp (bfd_get_section_name (abfd
, sec
), ".scommon") == 0)
5676 *retval
= SHN_MIPS_SCOMMON
;
5679 if (strcmp (bfd_get_section_name (abfd
, sec
), ".acommon") == 0)
5681 *retval
= SHN_MIPS_ACOMMON
;
5687 /* Hook called by the linker routine which adds symbols from an object
5688 file. We must handle the special MIPS section numbers here. */
5691 _bfd_mips_elf_add_symbol_hook (bfd
*abfd
, struct bfd_link_info
*info
,
5692 Elf_Internal_Sym
*sym
, const char **namep
,
5693 flagword
*flagsp ATTRIBUTE_UNUSED
,
5694 asection
**secp
, bfd_vma
*valp
)
5696 if (SGI_COMPAT (abfd
)
5697 && (abfd
->flags
& DYNAMIC
) != 0
5698 && strcmp (*namep
, "_rld_new_interface") == 0)
5700 /* Skip IRIX5 rld entry name. */
5705 /* Shared objects may have a dynamic symbol '_gp_disp' defined as
5706 a SECTION *ABS*. This causes ld to think it can resolve _gp_disp
5707 by setting a DT_NEEDED for the shared object. Since _gp_disp is
5708 a magic symbol resolved by the linker, we ignore this bogus definition
5709 of _gp_disp. New ABI objects do not suffer from this problem so this
5710 is not done for them. */
5712 && (sym
->st_shndx
== SHN_ABS
)
5713 && (strcmp (*namep
, "_gp_disp") == 0))
5719 switch (sym
->st_shndx
)
5722 /* Common symbols less than the GP size are automatically
5723 treated as SHN_MIPS_SCOMMON symbols. */
5724 if (sym
->st_size
> elf_gp_size (abfd
)
5725 || IRIX_COMPAT (abfd
) == ict_irix6
)
5728 case SHN_MIPS_SCOMMON
:
5729 *secp
= bfd_make_section_old_way (abfd
, ".scommon");
5730 (*secp
)->flags
|= SEC_IS_COMMON
;
5731 *valp
= sym
->st_size
;
5735 /* This section is used in a shared object. */
5736 if (elf_tdata (abfd
)->elf_text_section
== NULL
)
5738 asymbol
*elf_text_symbol
;
5739 asection
*elf_text_section
;
5740 bfd_size_type amt
= sizeof (asection
);
5742 elf_text_section
= bfd_zalloc (abfd
, amt
);
5743 if (elf_text_section
== NULL
)
5746 amt
= sizeof (asymbol
);
5747 elf_text_symbol
= bfd_zalloc (abfd
, amt
);
5748 if (elf_text_symbol
== NULL
)
5751 /* Initialize the section. */
5753 elf_tdata (abfd
)->elf_text_section
= elf_text_section
;
5754 elf_tdata (abfd
)->elf_text_symbol
= elf_text_symbol
;
5756 elf_text_section
->symbol
= elf_text_symbol
;
5757 elf_text_section
->symbol_ptr_ptr
= &elf_tdata (abfd
)->elf_text_symbol
;
5759 elf_text_section
->name
= ".text";
5760 elf_text_section
->flags
= SEC_NO_FLAGS
;
5761 elf_text_section
->output_section
= NULL
;
5762 elf_text_section
->owner
= abfd
;
5763 elf_text_symbol
->name
= ".text";
5764 elf_text_symbol
->flags
= BSF_SECTION_SYM
| BSF_DYNAMIC
;
5765 elf_text_symbol
->section
= elf_text_section
;
5767 /* This code used to do *secp = bfd_und_section_ptr if
5768 info->shared. I don't know why, and that doesn't make sense,
5769 so I took it out. */
5770 *secp
= elf_tdata (abfd
)->elf_text_section
;
5773 case SHN_MIPS_ACOMMON
:
5774 /* Fall through. XXX Can we treat this as allocated data? */
5776 /* This section is used in a shared object. */
5777 if (elf_tdata (abfd
)->elf_data_section
== NULL
)
5779 asymbol
*elf_data_symbol
;
5780 asection
*elf_data_section
;
5781 bfd_size_type amt
= sizeof (asection
);
5783 elf_data_section
= bfd_zalloc (abfd
, amt
);
5784 if (elf_data_section
== NULL
)
5787 amt
= sizeof (asymbol
);
5788 elf_data_symbol
= bfd_zalloc (abfd
, amt
);
5789 if (elf_data_symbol
== NULL
)
5792 /* Initialize the section. */
5794 elf_tdata (abfd
)->elf_data_section
= elf_data_section
;
5795 elf_tdata (abfd
)->elf_data_symbol
= elf_data_symbol
;
5797 elf_data_section
->symbol
= elf_data_symbol
;
5798 elf_data_section
->symbol_ptr_ptr
= &elf_tdata (abfd
)->elf_data_symbol
;
5800 elf_data_section
->name
= ".data";
5801 elf_data_section
->flags
= SEC_NO_FLAGS
;
5802 elf_data_section
->output_section
= NULL
;
5803 elf_data_section
->owner
= abfd
;
5804 elf_data_symbol
->name
= ".data";
5805 elf_data_symbol
->flags
= BSF_SECTION_SYM
| BSF_DYNAMIC
;
5806 elf_data_symbol
->section
= elf_data_section
;
5808 /* This code used to do *secp = bfd_und_section_ptr if
5809 info->shared. I don't know why, and that doesn't make sense,
5810 so I took it out. */
5811 *secp
= elf_tdata (abfd
)->elf_data_section
;
5814 case SHN_MIPS_SUNDEFINED
:
5815 *secp
= bfd_und_section_ptr
;
5819 if (SGI_COMPAT (abfd
)
5821 && info
->hash
->creator
== abfd
->xvec
5822 && strcmp (*namep
, "__rld_obj_head") == 0)
5824 struct elf_link_hash_entry
*h
;
5825 struct bfd_link_hash_entry
*bh
;
5827 /* Mark __rld_obj_head as dynamic. */
5829 if (! (_bfd_generic_link_add_one_symbol
5830 (info
, abfd
, *namep
, BSF_GLOBAL
, *secp
, *valp
, NULL
, FALSE
,
5831 get_elf_backend_data (abfd
)->collect
, &bh
)))
5834 h
= (struct elf_link_hash_entry
*) bh
;
5837 h
->type
= STT_OBJECT
;
5839 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
5842 mips_elf_hash_table (info
)->use_rld_obj_head
= TRUE
;
5845 /* If this is a mips16 text symbol, add 1 to the value to make it
5846 odd. This will cause something like .word SYM to come up with
5847 the right value when it is loaded into the PC. */
5848 if (sym
->st_other
== STO_MIPS16
)
5854 /* This hook function is called before the linker writes out a global
5855 symbol. We mark symbols as small common if appropriate. This is
5856 also where we undo the increment of the value for a mips16 symbol. */
5859 _bfd_mips_elf_link_output_symbol_hook
5860 (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
5861 const char *name ATTRIBUTE_UNUSED
, Elf_Internal_Sym
*sym
,
5862 asection
*input_sec
, struct elf_link_hash_entry
*h ATTRIBUTE_UNUSED
)
5864 /* If we see a common symbol, which implies a relocatable link, then
5865 if a symbol was small common in an input file, mark it as small
5866 common in the output file. */
5867 if (sym
->st_shndx
== SHN_COMMON
5868 && strcmp (input_sec
->name
, ".scommon") == 0)
5869 sym
->st_shndx
= SHN_MIPS_SCOMMON
;
5871 if (sym
->st_other
== STO_MIPS16
)
5872 sym
->st_value
&= ~1;
5877 /* Functions for the dynamic linker. */
5879 /* Create dynamic sections when linking against a dynamic object. */
5882 _bfd_mips_elf_create_dynamic_sections (bfd
*abfd
, struct bfd_link_info
*info
)
5884 struct elf_link_hash_entry
*h
;
5885 struct bfd_link_hash_entry
*bh
;
5887 register asection
*s
;
5888 const char * const *namep
;
5889 struct mips_elf_link_hash_table
*htab
;
5891 htab
= mips_elf_hash_table (info
);
5892 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
5893 | SEC_LINKER_CREATED
| SEC_READONLY
);
5895 /* The psABI requires a read-only .dynamic section, but the VxWorks
5897 if (!htab
->is_vxworks
)
5899 s
= bfd_get_section_by_name (abfd
, ".dynamic");
5902 if (! bfd_set_section_flags (abfd
, s
, flags
))
5907 /* We need to create .got section. */
5908 if (! mips_elf_create_got_section (abfd
, info
, FALSE
))
5911 if (! mips_elf_rel_dyn_section (info
, TRUE
))
5914 /* Create .stub section. */
5915 if (bfd_get_section_by_name (abfd
,
5916 MIPS_ELF_STUB_SECTION_NAME (abfd
)) == NULL
)
5918 s
= bfd_make_section_with_flags (abfd
,
5919 MIPS_ELF_STUB_SECTION_NAME (abfd
),
5922 || ! bfd_set_section_alignment (abfd
, s
,
5923 MIPS_ELF_LOG_FILE_ALIGN (abfd
)))
5927 if ((IRIX_COMPAT (abfd
) == ict_irix5
|| IRIX_COMPAT (abfd
) == ict_none
)
5929 && bfd_get_section_by_name (abfd
, ".rld_map") == NULL
)
5931 s
= bfd_make_section_with_flags (abfd
, ".rld_map",
5932 flags
&~ (flagword
) SEC_READONLY
);
5934 || ! bfd_set_section_alignment (abfd
, s
,
5935 MIPS_ELF_LOG_FILE_ALIGN (abfd
)))
5939 /* On IRIX5, we adjust add some additional symbols and change the
5940 alignments of several sections. There is no ABI documentation
5941 indicating that this is necessary on IRIX6, nor any evidence that
5942 the linker takes such action. */
5943 if (IRIX_COMPAT (abfd
) == ict_irix5
)
5945 for (namep
= mips_elf_dynsym_rtproc_names
; *namep
!= NULL
; namep
++)
5948 if (! (_bfd_generic_link_add_one_symbol
5949 (info
, abfd
, *namep
, BSF_GLOBAL
, bfd_und_section_ptr
, 0,
5950 NULL
, FALSE
, get_elf_backend_data (abfd
)->collect
, &bh
)))
5953 h
= (struct elf_link_hash_entry
*) bh
;
5956 h
->type
= STT_SECTION
;
5958 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
5962 /* We need to create a .compact_rel section. */
5963 if (SGI_COMPAT (abfd
))
5965 if (!mips_elf_create_compact_rel_section (abfd
, info
))
5969 /* Change alignments of some sections. */
5970 s
= bfd_get_section_by_name (abfd
, ".hash");
5972 bfd_set_section_alignment (abfd
, s
, MIPS_ELF_LOG_FILE_ALIGN (abfd
));
5973 s
= bfd_get_section_by_name (abfd
, ".dynsym");
5975 bfd_set_section_alignment (abfd
, s
, MIPS_ELF_LOG_FILE_ALIGN (abfd
));
5976 s
= bfd_get_section_by_name (abfd
, ".dynstr");
5978 bfd_set_section_alignment (abfd
, s
, MIPS_ELF_LOG_FILE_ALIGN (abfd
));
5979 s
= bfd_get_section_by_name (abfd
, ".reginfo");
5981 bfd_set_section_alignment (abfd
, s
, MIPS_ELF_LOG_FILE_ALIGN (abfd
));
5982 s
= bfd_get_section_by_name (abfd
, ".dynamic");
5984 bfd_set_section_alignment (abfd
, s
, MIPS_ELF_LOG_FILE_ALIGN (abfd
));
5991 name
= SGI_COMPAT (abfd
) ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING";
5993 if (!(_bfd_generic_link_add_one_symbol
5994 (info
, abfd
, name
, BSF_GLOBAL
, bfd_abs_section_ptr
, 0,
5995 NULL
, FALSE
, get_elf_backend_data (abfd
)->collect
, &bh
)))
5998 h
= (struct elf_link_hash_entry
*) bh
;
6001 h
->type
= STT_SECTION
;
6003 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
6006 if (! mips_elf_hash_table (info
)->use_rld_obj_head
)
6008 /* __rld_map is a four byte word located in the .data section
6009 and is filled in by the rtld to contain a pointer to
6010 the _r_debug structure. Its symbol value will be set in
6011 _bfd_mips_elf_finish_dynamic_symbol. */
6012 s
= bfd_get_section_by_name (abfd
, ".rld_map");
6013 BFD_ASSERT (s
!= NULL
);
6015 name
= SGI_COMPAT (abfd
) ? "__rld_map" : "__RLD_MAP";
6017 if (!(_bfd_generic_link_add_one_symbol
6018 (info
, abfd
, name
, BSF_GLOBAL
, s
, 0, NULL
, FALSE
,
6019 get_elf_backend_data (abfd
)->collect
, &bh
)))
6022 h
= (struct elf_link_hash_entry
*) bh
;
6025 h
->type
= STT_OBJECT
;
6027 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
6032 if (htab
->is_vxworks
)
6034 /* Create the .plt, .rela.plt, .dynbss and .rela.bss sections.
6035 Also create the _PROCEDURE_LINKAGE_TABLE symbol. */
6036 if (!_bfd_elf_create_dynamic_sections (abfd
, info
))
6039 /* Cache the sections created above. */
6040 htab
->sdynbss
= bfd_get_section_by_name (abfd
, ".dynbss");
6041 htab
->srelbss
= bfd_get_section_by_name (abfd
, ".rela.bss");
6042 htab
->srelplt
= bfd_get_section_by_name (abfd
, ".rela.plt");
6043 htab
->splt
= bfd_get_section_by_name (abfd
, ".plt");
6045 || (!htab
->srelbss
&& !info
->shared
)
6050 /* Do the usual VxWorks handling. */
6051 if (!elf_vxworks_create_dynamic_sections (abfd
, info
, &htab
->srelplt2
))
6054 /* Work out the PLT sizes. */
6057 htab
->plt_header_size
6058 = 4 * ARRAY_SIZE (mips_vxworks_shared_plt0_entry
);
6059 htab
->plt_entry_size
6060 = 4 * ARRAY_SIZE (mips_vxworks_shared_plt_entry
);
6064 htab
->plt_header_size
6065 = 4 * ARRAY_SIZE (mips_vxworks_exec_plt0_entry
);
6066 htab
->plt_entry_size
6067 = 4 * ARRAY_SIZE (mips_vxworks_exec_plt_entry
);
6074 /* Look through the relocs for a section during the first phase, and
6075 allocate space in the global offset table. */
6078 _bfd_mips_elf_check_relocs (bfd
*abfd
, struct bfd_link_info
*info
,
6079 asection
*sec
, const Elf_Internal_Rela
*relocs
)
6083 Elf_Internal_Shdr
*symtab_hdr
;
6084 struct elf_link_hash_entry
**sym_hashes
;
6085 struct mips_got_info
*g
;
6087 const Elf_Internal_Rela
*rel
;
6088 const Elf_Internal_Rela
*rel_end
;
6091 const struct elf_backend_data
*bed
;
6092 struct mips_elf_link_hash_table
*htab
;
6094 if (info
->relocatable
)
6097 htab
= mips_elf_hash_table (info
);
6098 dynobj
= elf_hash_table (info
)->dynobj
;
6099 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
6100 sym_hashes
= elf_sym_hashes (abfd
);
6101 extsymoff
= (elf_bad_symtab (abfd
)) ? 0 : symtab_hdr
->sh_info
;
6103 /* Check for the mips16 stub sections. */
6105 name
= bfd_get_section_name (abfd
, sec
);
6106 if (strncmp (name
, FN_STUB
, sizeof FN_STUB
- 1) == 0)
6108 unsigned long r_symndx
;
6110 /* Look at the relocation information to figure out which symbol
6113 r_symndx
= ELF_R_SYM (abfd
, relocs
->r_info
);
6115 if (r_symndx
< extsymoff
6116 || sym_hashes
[r_symndx
- extsymoff
] == NULL
)
6120 /* This stub is for a local symbol. This stub will only be
6121 needed if there is some relocation in this BFD, other
6122 than a 16 bit function call, which refers to this symbol. */
6123 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
6125 Elf_Internal_Rela
*sec_relocs
;
6126 const Elf_Internal_Rela
*r
, *rend
;
6128 /* We can ignore stub sections when looking for relocs. */
6129 if ((o
->flags
& SEC_RELOC
) == 0
6130 || o
->reloc_count
== 0
6131 || strncmp (bfd_get_section_name (abfd
, o
), FN_STUB
,
6132 sizeof FN_STUB
- 1) == 0
6133 || strncmp (bfd_get_section_name (abfd
, o
), CALL_STUB
,
6134 sizeof CALL_STUB
- 1) == 0
6135 || strncmp (bfd_get_section_name (abfd
, o
), CALL_FP_STUB
,
6136 sizeof CALL_FP_STUB
- 1) == 0)
6140 = _bfd_elf_link_read_relocs (abfd
, o
, NULL
, NULL
,
6142 if (sec_relocs
== NULL
)
6145 rend
= sec_relocs
+ o
->reloc_count
;
6146 for (r
= sec_relocs
; r
< rend
; r
++)
6147 if (ELF_R_SYM (abfd
, r
->r_info
) == r_symndx
6148 && ELF_R_TYPE (abfd
, r
->r_info
) != R_MIPS16_26
)
6151 if (elf_section_data (o
)->relocs
!= sec_relocs
)
6160 /* There is no non-call reloc for this stub, so we do
6161 not need it. Since this function is called before
6162 the linker maps input sections to output sections, we
6163 can easily discard it by setting the SEC_EXCLUDE
6165 sec
->flags
|= SEC_EXCLUDE
;
6169 /* Record this stub in an array of local symbol stubs for
6171 if (elf_tdata (abfd
)->local_stubs
== NULL
)
6173 unsigned long symcount
;
6177 if (elf_bad_symtab (abfd
))
6178 symcount
= NUM_SHDR_ENTRIES (symtab_hdr
);
6180 symcount
= symtab_hdr
->sh_info
;
6181 amt
= symcount
* sizeof (asection
*);
6182 n
= bfd_zalloc (abfd
, amt
);
6185 elf_tdata (abfd
)->local_stubs
= n
;
6188 elf_tdata (abfd
)->local_stubs
[r_symndx
] = sec
;
6190 /* We don't need to set mips16_stubs_seen in this case.
6191 That flag is used to see whether we need to look through
6192 the global symbol table for stubs. We don't need to set
6193 it here, because we just have a local stub. */
6197 struct mips_elf_link_hash_entry
*h
;
6199 h
= ((struct mips_elf_link_hash_entry
*)
6200 sym_hashes
[r_symndx
- extsymoff
]);
6202 while (h
->root
.root
.type
== bfd_link_hash_indirect
6203 || h
->root
.root
.type
== bfd_link_hash_warning
)
6204 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
6206 /* H is the symbol this stub is for. */
6209 mips_elf_hash_table (info
)->mips16_stubs_seen
= TRUE
;
6212 else if (strncmp (name
, CALL_STUB
, sizeof CALL_STUB
- 1) == 0
6213 || strncmp (name
, CALL_FP_STUB
, sizeof CALL_FP_STUB
- 1) == 0)
6215 unsigned long r_symndx
;
6216 struct mips_elf_link_hash_entry
*h
;
6219 /* Look at the relocation information to figure out which symbol
6222 r_symndx
= ELF_R_SYM (abfd
, relocs
->r_info
);
6224 if (r_symndx
< extsymoff
6225 || sym_hashes
[r_symndx
- extsymoff
] == NULL
)
6227 /* This stub was actually built for a static symbol defined
6228 in the same file. We assume that all static symbols in
6229 mips16 code are themselves mips16, so we can simply
6230 discard this stub. Since this function is called before
6231 the linker maps input sections to output sections, we can
6232 easily discard it by setting the SEC_EXCLUDE flag. */
6233 sec
->flags
|= SEC_EXCLUDE
;
6237 h
= ((struct mips_elf_link_hash_entry
*)
6238 sym_hashes
[r_symndx
- extsymoff
]);
6240 /* H is the symbol this stub is for. */
6242 if (strncmp (name
, CALL_FP_STUB
, sizeof CALL_FP_STUB
- 1) == 0)
6243 loc
= &h
->call_fp_stub
;
6245 loc
= &h
->call_stub
;
6247 /* If we already have an appropriate stub for this function, we
6248 don't need another one, so we can discard this one. Since
6249 this function is called before the linker maps input sections
6250 to output sections, we can easily discard it by setting the
6251 SEC_EXCLUDE flag. We can also discard this section if we
6252 happen to already know that this is a mips16 function; it is
6253 not necessary to check this here, as it is checked later, but
6254 it is slightly faster to check now. */
6255 if (*loc
!= NULL
|| h
->root
.other
== STO_MIPS16
)
6257 sec
->flags
|= SEC_EXCLUDE
;
6262 mips_elf_hash_table (info
)->mips16_stubs_seen
= TRUE
;
6272 sgot
= mips_elf_got_section (dynobj
, FALSE
);
6277 BFD_ASSERT (mips_elf_section_data (sgot
) != NULL
);
6278 g
= mips_elf_section_data (sgot
)->u
.got_info
;
6279 BFD_ASSERT (g
!= NULL
);
6284 bed
= get_elf_backend_data (abfd
);
6285 rel_end
= relocs
+ sec
->reloc_count
* bed
->s
->int_rels_per_ext_rel
;
6286 for (rel
= relocs
; rel
< rel_end
; ++rel
)
6288 unsigned long r_symndx
;
6289 unsigned int r_type
;
6290 struct elf_link_hash_entry
*h
;
6292 r_symndx
= ELF_R_SYM (abfd
, rel
->r_info
);
6293 r_type
= ELF_R_TYPE (abfd
, rel
->r_info
);
6295 if (r_symndx
< extsymoff
)
6297 else if (r_symndx
>= extsymoff
+ NUM_SHDR_ENTRIES (symtab_hdr
))
6299 (*_bfd_error_handler
)
6300 (_("%B: Malformed reloc detected for section %s"),
6302 bfd_set_error (bfd_error_bad_value
);
6307 h
= sym_hashes
[r_symndx
- extsymoff
];
6309 /* This may be an indirect symbol created because of a version. */
6312 while (h
->root
.type
== bfd_link_hash_indirect
)
6313 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
6317 /* Some relocs require a global offset table. */
6318 if (dynobj
== NULL
|| sgot
== NULL
)
6324 case R_MIPS_CALL_HI16
:
6325 case R_MIPS_CALL_LO16
:
6326 case R_MIPS_GOT_HI16
:
6327 case R_MIPS_GOT_LO16
:
6328 case R_MIPS_GOT_PAGE
:
6329 case R_MIPS_GOT_OFST
:
6330 case R_MIPS_GOT_DISP
:
6331 case R_MIPS_TLS_GOTTPREL
:
6333 case R_MIPS_TLS_LDM
:
6335 elf_hash_table (info
)->dynobj
= dynobj
= abfd
;
6336 if (! mips_elf_create_got_section (dynobj
, info
, FALSE
))
6338 g
= mips_elf_got_info (dynobj
, &sgot
);
6339 if (htab
->is_vxworks
&& !info
->shared
)
6341 (*_bfd_error_handler
)
6342 (_("%B: GOT reloc at 0x%lx not expected in executables"),
6343 abfd
, (unsigned long) rel
->r_offset
);
6344 bfd_set_error (bfd_error_bad_value
);
6352 /* In VxWorks executables, references to external symbols
6353 are handled using copy relocs or PLT stubs, so there's
6354 no need to add a dynamic relocation here. */
6356 && (info
->shared
|| (h
!= NULL
&& !htab
->is_vxworks
))
6357 && (sec
->flags
& SEC_ALLOC
) != 0)
6358 elf_hash_table (info
)->dynobj
= dynobj
= abfd
;
6368 ((struct mips_elf_link_hash_entry
*) h
)->is_relocation_target
= TRUE
;
6370 /* Relocations against the special VxWorks __GOTT_BASE__ and
6371 __GOTT_INDEX__ symbols must be left to the loader. Allocate
6372 room for them in .rela.dyn. */
6373 if (is_gott_symbol (info
, h
))
6377 sreloc
= mips_elf_rel_dyn_section (info
, TRUE
);
6381 mips_elf_allocate_dynamic_relocations (dynobj
, info
, 1);
6384 else if (r_type
== R_MIPS_CALL_LO16
6385 || r_type
== R_MIPS_GOT_LO16
6386 || r_type
== R_MIPS_GOT_DISP
6387 || (r_type
== R_MIPS_GOT16
&& htab
->is_vxworks
))
6389 /* We may need a local GOT entry for this relocation. We
6390 don't count R_MIPS_GOT_PAGE because we can estimate the
6391 maximum number of pages needed by looking at the size of
6392 the segment. Similar comments apply to R_MIPS_GOT16 and
6393 R_MIPS_CALL16, except on VxWorks, where GOT relocations
6394 always evaluate to "G". We don't count R_MIPS_GOT_HI16, or
6395 R_MIPS_CALL_HI16 because these are always followed by an
6396 R_MIPS_GOT_LO16 or R_MIPS_CALL_LO16. */
6397 if (! mips_elf_record_local_got_symbol (abfd
, r_symndx
,
6398 rel
->r_addend
, g
, 0))
6407 (*_bfd_error_handler
)
6408 (_("%B: CALL16 reloc at 0x%lx not against global symbol"),
6409 abfd
, (unsigned long) rel
->r_offset
);
6410 bfd_set_error (bfd_error_bad_value
);
6415 case R_MIPS_CALL_HI16
:
6416 case R_MIPS_CALL_LO16
:
6419 /* VxWorks call relocations point the function's .got.plt
6420 entry, which will be allocated by adjust_dynamic_symbol.
6421 Otherwise, this symbol requires a global GOT entry. */
6422 if (!htab
->is_vxworks
6423 && !mips_elf_record_global_got_symbol (h
, abfd
, info
, g
, 0))
6426 /* We need a stub, not a plt entry for the undefined
6427 function. But we record it as if it needs plt. See
6428 _bfd_elf_adjust_dynamic_symbol. */
6434 case R_MIPS_GOT_PAGE
:
6435 /* If this is a global, overridable symbol, GOT_PAGE will
6436 decay to GOT_DISP, so we'll need a GOT entry for it. */
6441 struct mips_elf_link_hash_entry
*hmips
=
6442 (struct mips_elf_link_hash_entry
*) h
;
6444 while (hmips
->root
.root
.type
== bfd_link_hash_indirect
6445 || hmips
->root
.root
.type
== bfd_link_hash_warning
)
6446 hmips
= (struct mips_elf_link_hash_entry
*)
6447 hmips
->root
.root
.u
.i
.link
;
6449 if (hmips
->root
.def_regular
6450 && ! (info
->shared
&& ! info
->symbolic
6451 && ! hmips
->root
.forced_local
))
6457 case R_MIPS_GOT_HI16
:
6458 case R_MIPS_GOT_LO16
:
6459 case R_MIPS_GOT_DISP
:
6460 if (h
&& ! mips_elf_record_global_got_symbol (h
, abfd
, info
, g
, 0))
6464 case R_MIPS_TLS_GOTTPREL
:
6466 info
->flags
|= DF_STATIC_TLS
;
6469 case R_MIPS_TLS_LDM
:
6470 if (r_type
== R_MIPS_TLS_LDM
)
6478 /* This symbol requires a global offset table entry, or two
6479 for TLS GD relocations. */
6481 unsigned char flag
= (r_type
== R_MIPS_TLS_GD
6483 : r_type
== R_MIPS_TLS_LDM
6488 struct mips_elf_link_hash_entry
*hmips
=
6489 (struct mips_elf_link_hash_entry
*) h
;
6490 hmips
->tls_type
|= flag
;
6492 if (h
&& ! mips_elf_record_global_got_symbol (h
, abfd
, info
, g
, flag
))
6497 BFD_ASSERT (flag
== GOT_TLS_LDM
|| r_symndx
!= 0);
6499 if (! mips_elf_record_local_got_symbol (abfd
, r_symndx
,
6500 rel
->r_addend
, g
, flag
))
6509 /* In VxWorks executables, references to external symbols
6510 are handled using copy relocs or PLT stubs, so there's
6511 no need to add a .rela.dyn entry for this relocation. */
6512 if ((info
->shared
|| (h
!= NULL
&& !htab
->is_vxworks
))
6513 && (sec
->flags
& SEC_ALLOC
) != 0)
6517 sreloc
= mips_elf_rel_dyn_section (info
, TRUE
);
6523 /* When creating a shared object, we must copy these
6524 reloc types into the output file as R_MIPS_REL32
6525 relocs. Make room for this reloc in .rel(a).dyn. */
6526 mips_elf_allocate_dynamic_relocations (dynobj
, info
, 1);
6527 if (MIPS_ELF_READONLY_SECTION (sec
))
6528 /* We tell the dynamic linker that there are
6529 relocations against the text segment. */
6530 info
->flags
|= DF_TEXTREL
;
6534 struct mips_elf_link_hash_entry
*hmips
;
6536 /* We only need to copy this reloc if the symbol is
6537 defined in a dynamic object. */
6538 hmips
= (struct mips_elf_link_hash_entry
*) h
;
6539 ++hmips
->possibly_dynamic_relocs
;
6540 if (MIPS_ELF_READONLY_SECTION (sec
))
6541 /* We need it to tell the dynamic linker if there
6542 are relocations against the text segment. */
6543 hmips
->readonly_reloc
= TRUE
;
6546 /* Even though we don't directly need a GOT entry for
6547 this symbol, a symbol must have a dynamic symbol
6548 table index greater that DT_MIPS_GOTSYM if there are
6549 dynamic relocations against it. This does not apply
6550 to VxWorks, which does not have the usual coupling
6551 between global GOT entries and .dynsym entries. */
6552 if (h
!= NULL
&& !htab
->is_vxworks
)
6555 elf_hash_table (info
)->dynobj
= dynobj
= abfd
;
6556 if (! mips_elf_create_got_section (dynobj
, info
, TRUE
))
6558 g
= mips_elf_got_info (dynobj
, &sgot
);
6559 if (! mips_elf_record_global_got_symbol (h
, abfd
, info
, g
, 0))
6564 if (SGI_COMPAT (abfd
))
6565 mips_elf_hash_table (info
)->compact_rel_size
+=
6566 sizeof (Elf32_External_crinfo
);
6571 ((struct mips_elf_link_hash_entry
*) h
)->is_branch_target
= TRUE
;
6576 ((struct mips_elf_link_hash_entry
*) h
)->is_branch_target
= TRUE
;
6579 case R_MIPS_GPREL16
:
6580 case R_MIPS_LITERAL
:
6581 case R_MIPS_GPREL32
:
6582 if (SGI_COMPAT (abfd
))
6583 mips_elf_hash_table (info
)->compact_rel_size
+=
6584 sizeof (Elf32_External_crinfo
);
6587 /* This relocation describes the C++ object vtable hierarchy.
6588 Reconstruct it for later use during GC. */
6589 case R_MIPS_GNU_VTINHERIT
:
6590 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
6594 /* This relocation describes which C++ vtable entries are actually
6595 used. Record for later use during GC. */
6596 case R_MIPS_GNU_VTENTRY
:
6597 if (!bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_offset
))
6605 /* We must not create a stub for a symbol that has relocations
6606 related to taking the function's address. This doesn't apply to
6607 VxWorks, where CALL relocs refer to a .got.plt entry instead of
6608 a normal .got entry. */
6609 if (!htab
->is_vxworks
&& h
!= NULL
)
6613 ((struct mips_elf_link_hash_entry
*) h
)->no_fn_stub
= TRUE
;
6616 case R_MIPS_CALL_HI16
:
6617 case R_MIPS_CALL_LO16
:
6622 /* If this reloc is not a 16 bit call, and it has a global
6623 symbol, then we will need the fn_stub if there is one.
6624 References from a stub section do not count. */
6626 && r_type
!= R_MIPS16_26
6627 && strncmp (bfd_get_section_name (abfd
, sec
), FN_STUB
,
6628 sizeof FN_STUB
- 1) != 0
6629 && strncmp (bfd_get_section_name (abfd
, sec
), CALL_STUB
,
6630 sizeof CALL_STUB
- 1) != 0
6631 && strncmp (bfd_get_section_name (abfd
, sec
), CALL_FP_STUB
,
6632 sizeof CALL_FP_STUB
- 1) != 0)
6634 struct mips_elf_link_hash_entry
*mh
;
6636 mh
= (struct mips_elf_link_hash_entry
*) h
;
6637 mh
->need_fn_stub
= TRUE
;
6645 _bfd_mips_relax_section (bfd
*abfd
, asection
*sec
,
6646 struct bfd_link_info
*link_info
,
6649 Elf_Internal_Rela
*internal_relocs
;
6650 Elf_Internal_Rela
*irel
, *irelend
;
6651 Elf_Internal_Shdr
*symtab_hdr
;
6652 bfd_byte
*contents
= NULL
;
6654 bfd_boolean changed_contents
= FALSE
;
6655 bfd_vma sec_start
= sec
->output_section
->vma
+ sec
->output_offset
;
6656 Elf_Internal_Sym
*isymbuf
= NULL
;
6658 /* We are not currently changing any sizes, so only one pass. */
6661 if (link_info
->relocatable
)
6664 internal_relocs
= _bfd_elf_link_read_relocs (abfd
, sec
, NULL
, NULL
,
6665 link_info
->keep_memory
);
6666 if (internal_relocs
== NULL
)
6669 irelend
= internal_relocs
+ sec
->reloc_count
6670 * get_elf_backend_data (abfd
)->s
->int_rels_per_ext_rel
;
6671 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
6672 extsymoff
= (elf_bad_symtab (abfd
)) ? 0 : symtab_hdr
->sh_info
;
6674 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
6677 bfd_signed_vma sym_offset
;
6678 unsigned int r_type
;
6679 unsigned long r_symndx
;
6681 unsigned long instruction
;
6683 /* Turn jalr into bgezal, and jr into beq, if they're marked
6684 with a JALR relocation, that indicate where they jump to.
6685 This saves some pipeline bubbles. */
6686 r_type
= ELF_R_TYPE (abfd
, irel
->r_info
);
6687 if (r_type
!= R_MIPS_JALR
)
6690 r_symndx
= ELF_R_SYM (abfd
, irel
->r_info
);
6691 /* Compute the address of the jump target. */
6692 if (r_symndx
>= extsymoff
)
6694 struct mips_elf_link_hash_entry
*h
6695 = ((struct mips_elf_link_hash_entry
*)
6696 elf_sym_hashes (abfd
) [r_symndx
- extsymoff
]);
6698 while (h
->root
.root
.type
== bfd_link_hash_indirect
6699 || h
->root
.root
.type
== bfd_link_hash_warning
)
6700 h
= (struct mips_elf_link_hash_entry
*) h
->root
.root
.u
.i
.link
;
6702 /* If a symbol is undefined, or if it may be overridden,
6704 if (! ((h
->root
.root
.type
== bfd_link_hash_defined
6705 || h
->root
.root
.type
== bfd_link_hash_defweak
)
6706 && h
->root
.root
.u
.def
.section
)
6707 || (link_info
->shared
&& ! link_info
->symbolic
6708 && !h
->root
.forced_local
))
6711 sym_sec
= h
->root
.root
.u
.def
.section
;
6712 if (sym_sec
->output_section
)
6713 symval
= (h
->root
.root
.u
.def
.value
6714 + sym_sec
->output_section
->vma
6715 + sym_sec
->output_offset
);
6717 symval
= h
->root
.root
.u
.def
.value
;
6721 Elf_Internal_Sym
*isym
;
6723 /* Read this BFD's symbols if we haven't done so already. */
6724 if (isymbuf
== NULL
&& symtab_hdr
->sh_info
!= 0)
6726 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
6727 if (isymbuf
== NULL
)
6728 isymbuf
= bfd_elf_get_elf_syms (abfd
, symtab_hdr
,
6729 symtab_hdr
->sh_info
, 0,
6731 if (isymbuf
== NULL
)
6735 isym
= isymbuf
+ r_symndx
;
6736 if (isym
->st_shndx
== SHN_UNDEF
)
6738 else if (isym
->st_shndx
== SHN_ABS
)
6739 sym_sec
= bfd_abs_section_ptr
;
6740 else if (isym
->st_shndx
== SHN_COMMON
)
6741 sym_sec
= bfd_com_section_ptr
;
6744 = bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
6745 symval
= isym
->st_value
6746 + sym_sec
->output_section
->vma
6747 + sym_sec
->output_offset
;
6750 /* Compute branch offset, from delay slot of the jump to the
6752 sym_offset
= (symval
+ irel
->r_addend
)
6753 - (sec_start
+ irel
->r_offset
+ 4);
6755 /* Branch offset must be properly aligned. */
6756 if ((sym_offset
& 3) != 0)
6761 /* Check that it's in range. */
6762 if (sym_offset
< -0x8000 || sym_offset
>= 0x8000)
6765 /* Get the section contents if we haven't done so already. */
6766 if (contents
== NULL
)
6768 /* Get cached copy if it exists. */
6769 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
6770 contents
= elf_section_data (sec
)->this_hdr
.contents
;
6773 if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
6778 instruction
= bfd_get_32 (abfd
, contents
+ irel
->r_offset
);
6780 /* If it was jalr <reg>, turn it into bgezal $zero, <target>. */
6781 if ((instruction
& 0xfc1fffff) == 0x0000f809)
6782 instruction
= 0x04110000;
6783 /* If it was jr <reg>, turn it into b <target>. */
6784 else if ((instruction
& 0xfc1fffff) == 0x00000008)
6785 instruction
= 0x10000000;
6789 instruction
|= (sym_offset
& 0xffff);
6790 bfd_put_32 (abfd
, instruction
, contents
+ irel
->r_offset
);
6791 changed_contents
= TRUE
;
6794 if (contents
!= NULL
6795 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
6797 if (!changed_contents
&& !link_info
->keep_memory
)
6801 /* Cache the section contents for elf_link_input_bfd. */
6802 elf_section_data (sec
)->this_hdr
.contents
= contents
;
6808 if (contents
!= NULL
6809 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
6814 /* Adjust a symbol defined by a dynamic object and referenced by a
6815 regular object. The current definition is in some section of the
6816 dynamic object, but we're not including those sections. We have to
6817 change the definition to something the rest of the link can
6821 _bfd_mips_elf_adjust_dynamic_symbol (struct bfd_link_info
*info
,
6822 struct elf_link_hash_entry
*h
)
6825 struct mips_elf_link_hash_entry
*hmips
;
6828 dynobj
= elf_hash_table (info
)->dynobj
;
6830 /* Make sure we know what is going on here. */
6831 BFD_ASSERT (dynobj
!= NULL
6833 || h
->u
.weakdef
!= NULL
6836 && !h
->def_regular
)));
6838 /* If this symbol is defined in a dynamic object, we need to copy
6839 any R_MIPS_32 or R_MIPS_REL32 relocs against it into the output
6841 hmips
= (struct mips_elf_link_hash_entry
*) h
;
6842 if (! info
->relocatable
6843 && hmips
->possibly_dynamic_relocs
!= 0
6844 && (h
->root
.type
== bfd_link_hash_defweak
6845 || !h
->def_regular
))
6847 mips_elf_allocate_dynamic_relocations
6848 (dynobj
, info
, hmips
->possibly_dynamic_relocs
);
6849 if (hmips
->readonly_reloc
)
6850 /* We tell the dynamic linker that there are relocations
6851 against the text segment. */
6852 info
->flags
|= DF_TEXTREL
;
6855 /* For a function, create a stub, if allowed. */
6856 if (! hmips
->no_fn_stub
6859 if (! elf_hash_table (info
)->dynamic_sections_created
)
6862 /* If this symbol is not defined in a regular file, then set
6863 the symbol to the stub location. This is required to make
6864 function pointers compare as equal between the normal
6865 executable and the shared library. */
6866 if (!h
->def_regular
)
6868 /* We need .stub section. */
6869 s
= bfd_get_section_by_name (dynobj
,
6870 MIPS_ELF_STUB_SECTION_NAME (dynobj
));
6871 BFD_ASSERT (s
!= NULL
);
6873 h
->root
.u
.def
.section
= s
;
6874 h
->root
.u
.def
.value
= s
->size
;
6876 /* XXX Write this stub address somewhere. */
6877 h
->plt
.offset
= s
->size
;
6879 /* Make room for this stub code. */
6880 s
->size
+= MIPS_FUNCTION_STUB_SIZE
;
6882 /* The last half word of the stub will be filled with the index
6883 of this symbol in .dynsym section. */
6887 else if ((h
->type
== STT_FUNC
)
6890 /* This will set the entry for this symbol in the GOT to 0, and
6891 the dynamic linker will take care of this. */
6892 h
->root
.u
.def
.value
= 0;
6896 /* If this is a weak symbol, and there is a real definition, the
6897 processor independent code will have arranged for us to see the
6898 real definition first, and we can just use the same value. */
6899 if (h
->u
.weakdef
!= NULL
)
6901 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
6902 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
6903 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
6904 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
6908 /* This is a reference to a symbol defined by a dynamic object which
6909 is not a function. */
6914 /* Likewise, for VxWorks. */
6917 _bfd_mips_vxworks_adjust_dynamic_symbol (struct bfd_link_info
*info
,
6918 struct elf_link_hash_entry
*h
)
6921 struct mips_elf_link_hash_entry
*hmips
;
6922 struct mips_elf_link_hash_table
*htab
;
6923 unsigned int power_of_two
;
6925 htab
= mips_elf_hash_table (info
);
6926 dynobj
= elf_hash_table (info
)->dynobj
;
6927 hmips
= (struct mips_elf_link_hash_entry
*) h
;
6929 /* Make sure we know what is going on here. */
6930 BFD_ASSERT (dynobj
!= NULL
6933 || h
->u
.weakdef
!= NULL
6936 && !h
->def_regular
)));
6938 /* If the symbol is defined by a dynamic object, we need a PLT stub if
6939 either (a) we want to branch to the symbol or (b) we're linking an
6940 executable that needs a canonical function address. In the latter
6941 case, the canonical address will be the address of the executable's
6943 if ((hmips
->is_branch_target
6945 && h
->type
== STT_FUNC
6946 && hmips
->is_relocation_target
))
6950 && !h
->forced_local
)
6953 /* Locally-binding symbols do not need a PLT stub; we can refer to
6954 the functions directly. */
6955 else if (h
->needs_plt
6956 && (SYMBOL_CALLS_LOCAL (info
, h
)
6957 || (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
6958 && h
->root
.type
== bfd_link_hash_undefweak
)))
6966 /* If this is the first symbol to need a PLT entry, allocate room
6967 for the header, and for the header's .rela.plt.unloaded entries. */
6968 if (htab
->splt
->size
== 0)
6970 htab
->splt
->size
+= htab
->plt_header_size
;
6972 htab
->srelplt2
->size
+= 2 * sizeof (Elf32_External_Rela
);
6975 /* Assign the next .plt entry to this symbol. */
6976 h
->plt
.offset
= htab
->splt
->size
;
6977 htab
->splt
->size
+= htab
->plt_entry_size
;
6979 /* If the output file has no definition of the symbol, set the
6980 symbol's value to the address of the stub. For executables,
6981 point at the PLT load stub rather than the lazy resolution stub;
6982 this stub will become the canonical function address. */
6983 if (!h
->def_regular
)
6985 h
->root
.u
.def
.section
= htab
->splt
;
6986 h
->root
.u
.def
.value
= h
->plt
.offset
;
6988 h
->root
.u
.def
.value
+= 8;
6991 /* Make room for the .got.plt entry and the R_JUMP_SLOT relocation. */
6992 htab
->sgotplt
->size
+= 4;
6993 htab
->srelplt
->size
+= sizeof (Elf32_External_Rela
);
6995 /* Make room for the .rela.plt.unloaded relocations. */
6997 htab
->srelplt2
->size
+= 3 * sizeof (Elf32_External_Rela
);
7002 /* If a function symbol is defined by a dynamic object, and we do not
7003 need a PLT stub for it, the symbol's value should be zero. */
7004 if (h
->type
== STT_FUNC
7009 h
->root
.u
.def
.value
= 0;
7013 /* If this is a weak symbol, and there is a real definition, the
7014 processor independent code will have arranged for us to see the
7015 real definition first, and we can just use the same value. */
7016 if (h
->u
.weakdef
!= NULL
)
7018 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
7019 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
7020 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
7021 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
7025 /* This is a reference to a symbol defined by a dynamic object which
7026 is not a function. */
7030 /* We must allocate the symbol in our .dynbss section, which will
7031 become part of the .bss section of the executable. There will be
7032 an entry for this symbol in the .dynsym section. The dynamic
7033 object will contain position independent code, so all references
7034 from the dynamic object to this symbol will go through the global
7035 offset table. The dynamic linker will use the .dynsym entry to
7036 determine the address it must put in the global offset table, so
7037 both the dynamic object and the regular object will refer to the
7038 same memory location for the variable. */
7040 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0)
7042 htab
->srelbss
->size
+= sizeof (Elf32_External_Rela
);
7046 /* We need to figure out the alignment required for this symbol. */
7047 power_of_two
= bfd_log2 (h
->size
);
7048 if (power_of_two
> 4)
7051 /* Apply the required alignment. */
7052 htab
->sdynbss
->size
= BFD_ALIGN (htab
->sdynbss
->size
,
7053 (bfd_size_type
) 1 << power_of_two
);
7054 if (power_of_two
> bfd_get_section_alignment (dynobj
, htab
->sdynbss
)
7055 && !bfd_set_section_alignment (dynobj
, htab
->sdynbss
, power_of_two
))
7058 /* Define the symbol as being at this point in the section. */
7059 h
->root
.u
.def
.section
= htab
->sdynbss
;
7060 h
->root
.u
.def
.value
= htab
->sdynbss
->size
;
7062 /* Increment the section size to make room for the symbol. */
7063 htab
->sdynbss
->size
+= h
->size
;
7068 /* This function is called after all the input files have been read,
7069 and the input sections have been assigned to output sections. We
7070 check for any mips16 stub sections that we can discard. */
7073 _bfd_mips_elf_always_size_sections (bfd
*output_bfd
,
7074 struct bfd_link_info
*info
)
7080 struct mips_got_info
*g
;
7082 bfd_size_type loadable_size
= 0;
7083 bfd_size_type local_gotno
;
7085 struct mips_elf_count_tls_arg count_tls_arg
;
7086 struct mips_elf_link_hash_table
*htab
;
7088 htab
= mips_elf_hash_table (info
);
7090 /* The .reginfo section has a fixed size. */
7091 ri
= bfd_get_section_by_name (output_bfd
, ".reginfo");
7093 bfd_set_section_size (output_bfd
, ri
, sizeof (Elf32_External_RegInfo
));
7095 if (! (info
->relocatable
7096 || ! mips_elf_hash_table (info
)->mips16_stubs_seen
))
7097 mips_elf_link_hash_traverse (mips_elf_hash_table (info
),
7098 mips_elf_check_mips16_stubs
, NULL
);
7100 dynobj
= elf_hash_table (info
)->dynobj
;
7102 /* Relocatable links don't have it. */
7105 g
= mips_elf_got_info (dynobj
, &s
);
7109 /* Calculate the total loadable size of the output. That
7110 will give us the maximum number of GOT_PAGE entries
7112 for (sub
= info
->input_bfds
; sub
; sub
= sub
->link_next
)
7114 asection
*subsection
;
7116 for (subsection
= sub
->sections
;
7118 subsection
= subsection
->next
)
7120 if ((subsection
->flags
& SEC_ALLOC
) == 0)
7122 loadable_size
+= ((subsection
->size
+ 0xf)
7123 &~ (bfd_size_type
) 0xf);
7127 /* There has to be a global GOT entry for every symbol with
7128 a dynamic symbol table index of DT_MIPS_GOTSYM or
7129 higher. Therefore, it make sense to put those symbols
7130 that need GOT entries at the end of the symbol table. We
7132 if (! mips_elf_sort_hash_table (info
, 1))
7135 if (g
->global_gotsym
!= NULL
)
7136 i
= elf_hash_table (info
)->dynsymcount
- g
->global_gotsym
->dynindx
;
7138 /* If there are no global symbols, or none requiring
7139 relocations, then GLOBAL_GOTSYM will be NULL. */
7142 /* In the worst case, we'll get one stub per dynamic symbol, plus
7143 one to account for the dummy entry at the end required by IRIX
7145 loadable_size
+= MIPS_FUNCTION_STUB_SIZE
* (i
+ 1);
7147 if (htab
->is_vxworks
)
7148 /* There's no need to allocate page entries for VxWorks; R_MIPS_GOT16
7149 relocations against local symbols evaluate to "G", and the EABI does
7150 not include R_MIPS_GOT_PAGE. */
7153 /* Assume there are two loadable segments consisting of contiguous
7154 sections. Is 5 enough? */
7155 local_gotno
= (loadable_size
>> 16) + 5;
7157 g
->local_gotno
+= local_gotno
;
7158 s
->size
+= g
->local_gotno
* MIPS_ELF_GOT_SIZE (output_bfd
);
7160 g
->global_gotno
= i
;
7161 s
->size
+= i
* MIPS_ELF_GOT_SIZE (output_bfd
);
7163 /* We need to calculate tls_gotno for global symbols at this point
7164 instead of building it up earlier, to avoid doublecounting
7165 entries for one global symbol from multiple input files. */
7166 count_tls_arg
.info
= info
;
7167 count_tls_arg
.needed
= 0;
7168 elf_link_hash_traverse (elf_hash_table (info
),
7169 mips_elf_count_global_tls_entries
,
7171 g
->tls_gotno
+= count_tls_arg
.needed
;
7172 s
->size
+= g
->tls_gotno
* MIPS_ELF_GOT_SIZE (output_bfd
);
7174 mips_elf_resolve_final_got_entries (g
);
7176 /* VxWorks does not support multiple GOTs. It initializes $gp to
7177 __GOTT_BASE__[__GOTT_INDEX__], the value of which is set by the
7179 if (!htab
->is_vxworks
&& s
->size
> MIPS_ELF_GOT_MAX_SIZE (info
))
7181 if (! mips_elf_multi_got (output_bfd
, info
, g
, s
, local_gotno
))
7186 /* Set up TLS entries for the first GOT. */
7187 g
->tls_assigned_gotno
= g
->global_gotno
+ g
->local_gotno
;
7188 htab_traverse (g
->got_entries
, mips_elf_initialize_tls_index
, g
);
7194 /* Set the sizes of the dynamic sections. */
7197 _bfd_mips_elf_size_dynamic_sections (bfd
*output_bfd
,
7198 struct bfd_link_info
*info
)
7201 asection
*s
, *sreldyn
;
7202 bfd_boolean reltext
;
7203 struct mips_elf_link_hash_table
*htab
;
7205 htab
= mips_elf_hash_table (info
);
7206 dynobj
= elf_hash_table (info
)->dynobj
;
7207 BFD_ASSERT (dynobj
!= NULL
);
7209 if (elf_hash_table (info
)->dynamic_sections_created
)
7211 /* Set the contents of the .interp section to the interpreter. */
7212 if (info
->executable
)
7214 s
= bfd_get_section_by_name (dynobj
, ".interp");
7215 BFD_ASSERT (s
!= NULL
);
7217 = strlen (ELF_DYNAMIC_INTERPRETER (output_bfd
)) + 1;
7219 = (bfd_byte
*) ELF_DYNAMIC_INTERPRETER (output_bfd
);
7223 /* The check_relocs and adjust_dynamic_symbol entry points have
7224 determined the sizes of the various dynamic sections. Allocate
7228 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
7232 /* It's OK to base decisions on the section name, because none
7233 of the dynobj section names depend upon the input files. */
7234 name
= bfd_get_section_name (dynobj
, s
);
7236 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
7239 if (strncmp (name
, ".rel", 4) == 0)
7243 const char *outname
;
7246 /* If this relocation section applies to a read only
7247 section, then we probably need a DT_TEXTREL entry.
7248 If the relocation section is .rel(a).dyn, we always
7249 assert a DT_TEXTREL entry rather than testing whether
7250 there exists a relocation to a read only section or
7252 outname
= bfd_get_section_name (output_bfd
,
7254 target
= bfd_get_section_by_name (output_bfd
, outname
+ 4);
7256 && (target
->flags
& SEC_READONLY
) != 0
7257 && (target
->flags
& SEC_ALLOC
) != 0)
7258 || strcmp (outname
, MIPS_ELF_REL_DYN_NAME (info
)) == 0)
7261 /* We use the reloc_count field as a counter if we need
7262 to copy relocs into the output file. */
7263 if (strcmp (name
, MIPS_ELF_REL_DYN_NAME (info
)) != 0)
7266 /* If combreloc is enabled, elf_link_sort_relocs() will
7267 sort relocations, but in a different way than we do,
7268 and before we're done creating relocations. Also, it
7269 will move them around between input sections'
7270 relocation's contents, so our sorting would be
7271 broken, so don't let it run. */
7272 info
->combreloc
= 0;
7275 else if (htab
->is_vxworks
&& strcmp (name
, ".got") == 0)
7277 /* Executables do not need a GOT. */
7280 /* Allocate relocations for all but the reserved entries. */
7281 struct mips_got_info
*g
;
7284 g
= mips_elf_got_info (dynobj
, NULL
);
7285 count
= (g
->global_gotno
7287 - MIPS_RESERVED_GOTNO (info
));
7288 mips_elf_allocate_dynamic_relocations (dynobj
, info
, count
);
7291 else if (!htab
->is_vxworks
&& strncmp (name
, ".got", 4) == 0)
7293 /* _bfd_mips_elf_always_size_sections() has already done
7294 most of the work, but some symbols may have been mapped
7295 to versions that we must now resolve in the got_entries
7297 struct mips_got_info
*gg
= mips_elf_got_info (dynobj
, NULL
);
7298 struct mips_got_info
*g
= gg
;
7299 struct mips_elf_set_global_got_offset_arg set_got_offset_arg
;
7300 unsigned int needed_relocs
= 0;
7304 set_got_offset_arg
.value
= MIPS_ELF_GOT_SIZE (output_bfd
);
7305 set_got_offset_arg
.info
= info
;
7307 /* NOTE 2005-02-03: How can this call, or the next, ever
7308 find any indirect entries to resolve? They were all
7309 resolved in mips_elf_multi_got. */
7310 mips_elf_resolve_final_got_entries (gg
);
7311 for (g
= gg
->next
; g
&& g
->next
!= gg
; g
= g
->next
)
7313 unsigned int save_assign
;
7315 mips_elf_resolve_final_got_entries (g
);
7317 /* Assign offsets to global GOT entries. */
7318 save_assign
= g
->assigned_gotno
;
7319 g
->assigned_gotno
= g
->local_gotno
;
7320 set_got_offset_arg
.g
= g
;
7321 set_got_offset_arg
.needed_relocs
= 0;
7322 htab_traverse (g
->got_entries
,
7323 mips_elf_set_global_got_offset
,
7324 &set_got_offset_arg
);
7325 needed_relocs
+= set_got_offset_arg
.needed_relocs
;
7326 BFD_ASSERT (g
->assigned_gotno
- g
->local_gotno
7327 <= g
->global_gotno
);
7329 g
->assigned_gotno
= save_assign
;
7332 needed_relocs
+= g
->local_gotno
- g
->assigned_gotno
;
7333 BFD_ASSERT (g
->assigned_gotno
== g
->next
->local_gotno
7334 + g
->next
->global_gotno
7335 + g
->next
->tls_gotno
7336 + MIPS_RESERVED_GOTNO (info
));
7342 struct mips_elf_count_tls_arg arg
;
7346 htab_traverse (gg
->got_entries
, mips_elf_count_local_tls_relocs
,
7348 elf_link_hash_traverse (elf_hash_table (info
),
7349 mips_elf_count_global_tls_relocs
,
7352 needed_relocs
+= arg
.needed
;
7356 mips_elf_allocate_dynamic_relocations (dynobj
, info
,
7359 else if (strcmp (name
, MIPS_ELF_STUB_SECTION_NAME (output_bfd
)) == 0)
7361 /* IRIX rld assumes that the function stub isn't at the end
7362 of .text section. So put a dummy. XXX */
7363 s
->size
+= MIPS_FUNCTION_STUB_SIZE
;
7365 else if (! info
->shared
7366 && ! mips_elf_hash_table (info
)->use_rld_obj_head
7367 && strncmp (name
, ".rld_map", 8) == 0)
7369 /* We add a room for __rld_map. It will be filled in by the
7370 rtld to contain a pointer to the _r_debug structure. */
7373 else if (SGI_COMPAT (output_bfd
)
7374 && strncmp (name
, ".compact_rel", 12) == 0)
7375 s
->size
+= mips_elf_hash_table (info
)->compact_rel_size
;
7376 else if (strncmp (name
, ".init", 5) != 0
7377 && s
!= htab
->sgotplt
7380 /* It's not one of our sections, so don't allocate space. */
7386 s
->flags
|= SEC_EXCLUDE
;
7390 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0)
7393 /* Allocate memory for this section last, since we may increase its
7395 if (strcmp (name
, MIPS_ELF_REL_DYN_NAME (info
)) == 0)
7401 /* Allocate memory for the section contents. */
7402 s
->contents
= bfd_zalloc (dynobj
, s
->size
);
7403 if (s
->contents
== NULL
)
7405 bfd_set_error (bfd_error_no_memory
);
7410 /* Allocate memory for the .rel(a).dyn section. */
7411 if (sreldyn
!= NULL
)
7413 sreldyn
->contents
= bfd_zalloc (dynobj
, sreldyn
->size
);
7414 if (sreldyn
->contents
== NULL
)
7416 bfd_set_error (bfd_error_no_memory
);
7421 if (elf_hash_table (info
)->dynamic_sections_created
)
7423 /* Add some entries to the .dynamic section. We fill in the
7424 values later, in _bfd_mips_elf_finish_dynamic_sections, but we
7425 must add the entries now so that we get the correct size for
7426 the .dynamic section. The DT_DEBUG entry is filled in by the
7427 dynamic linker and used by the debugger. */
7430 /* SGI object has the equivalence of DT_DEBUG in the
7431 DT_MIPS_RLD_MAP entry. */
7432 if (!MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_RLD_MAP
, 0))
7434 if (!SGI_COMPAT (output_bfd
))
7436 if (!MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_DEBUG
, 0))
7442 /* Shared libraries on traditional mips have DT_DEBUG. */
7443 if (!SGI_COMPAT (output_bfd
))
7445 if (!MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_DEBUG
, 0))
7450 if (reltext
&& (SGI_COMPAT (output_bfd
) || htab
->is_vxworks
))
7451 info
->flags
|= DF_TEXTREL
;
7453 if ((info
->flags
& DF_TEXTREL
) != 0)
7455 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_TEXTREL
, 0))
7458 /* Clear the DF_TEXTREL flag. It will be set again if we
7459 write out an actual text relocation; we may not, because
7460 at this point we do not know whether e.g. any .eh_frame
7461 absolute relocations have been converted to PC-relative. */
7462 info
->flags
&= ~DF_TEXTREL
;
7465 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_PLTGOT
, 0))
7468 if (htab
->is_vxworks
)
7470 /* VxWorks uses .rela.dyn instead of .rel.dyn. It does not
7471 use any of the DT_MIPS_* tags. */
7472 if (mips_elf_rel_dyn_section (info
, FALSE
))
7474 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_RELA
, 0))
7477 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_RELASZ
, 0))
7480 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_RELAENT
, 0))
7483 if (htab
->splt
->size
> 0)
7485 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_PLTREL
, 0))
7488 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_JMPREL
, 0))
7491 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_PLTRELSZ
, 0))
7497 if (mips_elf_rel_dyn_section (info
, FALSE
))
7499 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_REL
, 0))
7502 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_RELSZ
, 0))
7505 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_RELENT
, 0))
7509 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_RLD_VERSION
, 0))
7512 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_FLAGS
, 0))
7515 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_BASE_ADDRESS
, 0))
7518 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_LOCAL_GOTNO
, 0))
7521 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_SYMTABNO
, 0))
7524 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_UNREFEXTNO
, 0))
7527 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_GOTSYM
, 0))
7530 if (IRIX_COMPAT (dynobj
) == ict_irix5
7531 && ! MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_HIPAGENO
, 0))
7534 if (IRIX_COMPAT (dynobj
) == ict_irix6
7535 && (bfd_get_section_by_name
7536 (dynobj
, MIPS_ELF_OPTIONS_SECTION_NAME (dynobj
)))
7537 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info
, DT_MIPS_OPTIONS
, 0))
7545 /* REL is a relocation in INPUT_BFD that is being copied to OUTPUT_BFD.
7546 Adjust its R_ADDEND field so that it is correct for the output file.
7547 LOCAL_SYMS and LOCAL_SECTIONS are arrays of INPUT_BFD's local symbols
7548 and sections respectively; both use symbol indexes. */
7551 mips_elf_adjust_addend (bfd
*output_bfd
, struct bfd_link_info
*info
,
7552 bfd
*input_bfd
, Elf_Internal_Sym
*local_syms
,
7553 asection
**local_sections
, Elf_Internal_Rela
*rel
)
7555 unsigned int r_type
, r_symndx
;
7556 Elf_Internal_Sym
*sym
;
7559 if (mips_elf_local_relocation_p (input_bfd
, rel
, local_sections
, FALSE
))
7561 r_type
= ELF_R_TYPE (output_bfd
, rel
->r_info
);
7562 if (r_type
== R_MIPS16_GPREL
7563 || r_type
== R_MIPS_GPREL16
7564 || r_type
== R_MIPS_GPREL32
7565 || r_type
== R_MIPS_LITERAL
)
7567 rel
->r_addend
+= _bfd_get_gp_value (input_bfd
);
7568 rel
->r_addend
-= _bfd_get_gp_value (output_bfd
);
7571 r_symndx
= ELF_R_SYM (output_bfd
, rel
->r_info
);
7572 sym
= local_syms
+ r_symndx
;
7574 /* Adjust REL's addend to account for section merging. */
7575 if (!info
->relocatable
)
7577 sec
= local_sections
[r_symndx
];
7578 _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
7581 /* This would normally be done by the rela_normal code in elflink.c. */
7582 if (ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
7583 rel
->r_addend
+= local_sections
[r_symndx
]->output_offset
;
7587 /* Relocate a MIPS ELF section. */
7590 _bfd_mips_elf_relocate_section (bfd
*output_bfd
, struct bfd_link_info
*info
,
7591 bfd
*input_bfd
, asection
*input_section
,
7592 bfd_byte
*contents
, Elf_Internal_Rela
*relocs
,
7593 Elf_Internal_Sym
*local_syms
,
7594 asection
**local_sections
)
7596 Elf_Internal_Rela
*rel
;
7597 const Elf_Internal_Rela
*relend
;
7599 bfd_boolean use_saved_addend_p
= FALSE
;
7600 const struct elf_backend_data
*bed
;
7602 bed
= get_elf_backend_data (output_bfd
);
7603 relend
= relocs
+ input_section
->reloc_count
* bed
->s
->int_rels_per_ext_rel
;
7604 for (rel
= relocs
; rel
< relend
; ++rel
)
7608 reloc_howto_type
*howto
;
7609 bfd_boolean require_jalx
;
7610 /* TRUE if the relocation is a RELA relocation, rather than a
7612 bfd_boolean rela_relocation_p
= TRUE
;
7613 unsigned int r_type
= ELF_R_TYPE (output_bfd
, rel
->r_info
);
7616 /* Find the relocation howto for this relocation. */
7617 if (r_type
== R_MIPS_64
&& ! NEWABI_P (input_bfd
))
7619 /* Some 32-bit code uses R_MIPS_64. In particular, people use
7620 64-bit code, but make sure all their addresses are in the
7621 lowermost or uppermost 32-bit section of the 64-bit address
7622 space. Thus, when they use an R_MIPS_64 they mean what is
7623 usually meant by R_MIPS_32, with the exception that the
7624 stored value is sign-extended to 64 bits. */
7625 howto
= MIPS_ELF_RTYPE_TO_HOWTO (input_bfd
, R_MIPS_32
, FALSE
);
7627 /* On big-endian systems, we need to lie about the position
7629 if (bfd_big_endian (input_bfd
))
7633 /* NewABI defaults to RELA relocations. */
7634 howto
= MIPS_ELF_RTYPE_TO_HOWTO (input_bfd
, r_type
,
7635 NEWABI_P (input_bfd
)
7636 && (MIPS_RELOC_RELA_P
7637 (input_bfd
, input_section
,
7640 if (!use_saved_addend_p
)
7642 Elf_Internal_Shdr
*rel_hdr
;
7644 /* If these relocations were originally of the REL variety,
7645 we must pull the addend out of the field that will be
7646 relocated. Otherwise, we simply use the contents of the
7647 RELA relocation. To determine which flavor or relocation
7648 this is, we depend on the fact that the INPUT_SECTION's
7649 REL_HDR is read before its REL_HDR2. */
7650 rel_hdr
= &elf_section_data (input_section
)->rel_hdr
;
7651 if ((size_t) (rel
- relocs
)
7652 >= (NUM_SHDR_ENTRIES (rel_hdr
) * bed
->s
->int_rels_per_ext_rel
))
7653 rel_hdr
= elf_section_data (input_section
)->rel_hdr2
;
7654 if (rel_hdr
->sh_entsize
== MIPS_ELF_REL_SIZE (input_bfd
))
7656 bfd_byte
*location
= contents
+ rel
->r_offset
;
7658 /* Note that this is a REL relocation. */
7659 rela_relocation_p
= FALSE
;
7661 /* Get the addend, which is stored in the input file. */
7662 _bfd_mips16_elf_reloc_unshuffle (input_bfd
, r_type
, FALSE
,
7664 addend
= mips_elf_obtain_contents (howto
, rel
, input_bfd
,
7666 _bfd_mips16_elf_reloc_shuffle(input_bfd
, r_type
, FALSE
,
7669 addend
&= howto
->src_mask
;
7671 /* For some kinds of relocations, the ADDEND is a
7672 combination of the addend stored in two different
7674 if (r_type
== R_MIPS_HI16
|| r_type
== R_MIPS16_HI16
7675 || (r_type
== R_MIPS_GOT16
7676 && mips_elf_local_relocation_p (input_bfd
, rel
,
7677 local_sections
, FALSE
)))
7680 const Elf_Internal_Rela
*lo16_relocation
;
7681 reloc_howto_type
*lo16_howto
;
7682 bfd_byte
*lo16_location
;
7685 if (r_type
== R_MIPS16_HI16
)
7686 lo16_type
= R_MIPS16_LO16
;
7688 lo16_type
= R_MIPS_LO16
;
7690 /* The combined value is the sum of the HI16 addend,
7691 left-shifted by sixteen bits, and the LO16
7692 addend, sign extended. (Usually, the code does
7693 a `lui' of the HI16 value, and then an `addiu' of
7696 Scan ahead to find a matching LO16 relocation.
7698 According to the MIPS ELF ABI, the R_MIPS_LO16
7699 relocation must be immediately following.
7700 However, for the IRIX6 ABI, the next relocation
7701 may be a composed relocation consisting of
7702 several relocations for the same address. In
7703 that case, the R_MIPS_LO16 relocation may occur
7704 as one of these. We permit a similar extension
7705 in general, as that is useful for GCC. */
7706 lo16_relocation
= mips_elf_next_relocation (input_bfd
,
7709 if (lo16_relocation
== NULL
)
7712 lo16_location
= contents
+ lo16_relocation
->r_offset
;
7714 /* Obtain the addend kept there. */
7715 lo16_howto
= MIPS_ELF_RTYPE_TO_HOWTO (input_bfd
,
7717 _bfd_mips16_elf_reloc_unshuffle (input_bfd
, lo16_type
, FALSE
,
7719 l
= mips_elf_obtain_contents (lo16_howto
, lo16_relocation
,
7720 input_bfd
, contents
);
7721 _bfd_mips16_elf_reloc_shuffle (input_bfd
, lo16_type
, FALSE
,
7723 l
&= lo16_howto
->src_mask
;
7724 l
<<= lo16_howto
->rightshift
;
7725 l
= _bfd_mips_elf_sign_extend (l
, 16);
7729 /* Compute the combined addend. */
7733 addend
<<= howto
->rightshift
;
7736 addend
= rel
->r_addend
;
7737 mips_elf_adjust_addend (output_bfd
, info
, input_bfd
,
7738 local_syms
, local_sections
, rel
);
7741 if (info
->relocatable
)
7743 if (r_type
== R_MIPS_64
&& ! NEWABI_P (output_bfd
)
7744 && bfd_big_endian (input_bfd
))
7747 if (!rela_relocation_p
&& rel
->r_addend
)
7749 addend
+= rel
->r_addend
;
7750 if (r_type
== R_MIPS_HI16
7751 || r_type
== R_MIPS_GOT16
)
7752 addend
= mips_elf_high (addend
);
7753 else if (r_type
== R_MIPS_HIGHER
)
7754 addend
= mips_elf_higher (addend
);
7755 else if (r_type
== R_MIPS_HIGHEST
)
7756 addend
= mips_elf_highest (addend
);
7758 addend
>>= howto
->rightshift
;
7760 /* We use the source mask, rather than the destination
7761 mask because the place to which we are writing will be
7762 source of the addend in the final link. */
7763 addend
&= howto
->src_mask
;
7765 if (r_type
== R_MIPS_64
&& ! NEWABI_P (output_bfd
))
7766 /* See the comment above about using R_MIPS_64 in the 32-bit
7767 ABI. Here, we need to update the addend. It would be
7768 possible to get away with just using the R_MIPS_32 reloc
7769 but for endianness. */
7775 if (addend
& ((bfd_vma
) 1 << 31))
7777 sign_bits
= ((bfd_vma
) 1 << 32) - 1;
7784 /* If we don't know that we have a 64-bit type,
7785 do two separate stores. */
7786 if (bfd_big_endian (input_bfd
))
7788 /* Store the sign-bits (which are most significant)
7790 low_bits
= sign_bits
;
7796 high_bits
= sign_bits
;
7798 bfd_put_32 (input_bfd
, low_bits
,
7799 contents
+ rel
->r_offset
);
7800 bfd_put_32 (input_bfd
, high_bits
,
7801 contents
+ rel
->r_offset
+ 4);
7805 if (! mips_elf_perform_relocation (info
, howto
, rel
, addend
,
7806 input_bfd
, input_section
,
7811 /* Go on to the next relocation. */
7815 /* In the N32 and 64-bit ABIs there may be multiple consecutive
7816 relocations for the same offset. In that case we are
7817 supposed to treat the output of each relocation as the addend
7819 if (rel
+ 1 < relend
7820 && rel
->r_offset
== rel
[1].r_offset
7821 && ELF_R_TYPE (input_bfd
, rel
[1].r_info
) != R_MIPS_NONE
)
7822 use_saved_addend_p
= TRUE
;
7824 use_saved_addend_p
= FALSE
;
7826 /* Figure out what value we are supposed to relocate. */
7827 switch (mips_elf_calculate_relocation (output_bfd
, input_bfd
,
7828 input_section
, info
, rel
,
7829 addend
, howto
, local_syms
,
7830 local_sections
, &value
,
7831 &name
, &require_jalx
,
7832 use_saved_addend_p
))
7834 case bfd_reloc_continue
:
7835 /* There's nothing to do. */
7838 case bfd_reloc_undefined
:
7839 /* mips_elf_calculate_relocation already called the
7840 undefined_symbol callback. There's no real point in
7841 trying to perform the relocation at this point, so we
7842 just skip ahead to the next relocation. */
7845 case bfd_reloc_notsupported
:
7846 msg
= _("internal error: unsupported relocation error");
7847 info
->callbacks
->warning
7848 (info
, msg
, name
, input_bfd
, input_section
, rel
->r_offset
);
7851 case bfd_reloc_overflow
:
7852 if (use_saved_addend_p
)
7853 /* Ignore overflow until we reach the last relocation for
7854 a given location. */
7858 BFD_ASSERT (name
!= NULL
);
7859 if (! ((*info
->callbacks
->reloc_overflow
)
7860 (info
, NULL
, name
, howto
->name
, (bfd_vma
) 0,
7861 input_bfd
, input_section
, rel
->r_offset
)))
7874 /* If we've got another relocation for the address, keep going
7875 until we reach the last one. */
7876 if (use_saved_addend_p
)
7882 if (r_type
== R_MIPS_64
&& ! NEWABI_P (output_bfd
))
7883 /* See the comment above about using R_MIPS_64 in the 32-bit
7884 ABI. Until now, we've been using the HOWTO for R_MIPS_32;
7885 that calculated the right value. Now, however, we
7886 sign-extend the 32-bit result to 64-bits, and store it as a
7887 64-bit value. We are especially generous here in that we
7888 go to extreme lengths to support this usage on systems with
7889 only a 32-bit VMA. */
7895 if (value
& ((bfd_vma
) 1 << 31))
7897 sign_bits
= ((bfd_vma
) 1 << 32) - 1;
7904 /* If we don't know that we have a 64-bit type,
7905 do two separate stores. */
7906 if (bfd_big_endian (input_bfd
))
7908 /* Undo what we did above. */
7910 /* Store the sign-bits (which are most significant)
7912 low_bits
= sign_bits
;
7918 high_bits
= sign_bits
;
7920 bfd_put_32 (input_bfd
, low_bits
,
7921 contents
+ rel
->r_offset
);
7922 bfd_put_32 (input_bfd
, high_bits
,
7923 contents
+ rel
->r_offset
+ 4);
7927 /* Actually perform the relocation. */
7928 if (! mips_elf_perform_relocation (info
, howto
, rel
, value
,
7929 input_bfd
, input_section
,
7930 contents
, require_jalx
))
7937 /* If NAME is one of the special IRIX6 symbols defined by the linker,
7938 adjust it appropriately now. */
7941 mips_elf_irix6_finish_dynamic_symbol (bfd
*abfd ATTRIBUTE_UNUSED
,
7942 const char *name
, Elf_Internal_Sym
*sym
)
7944 /* The linker script takes care of providing names and values for
7945 these, but we must place them into the right sections. */
7946 static const char* const text_section_symbols
[] = {
7949 "__dso_displacement",
7951 "__program_header_table",
7955 static const char* const data_section_symbols
[] = {
7963 const char* const *p
;
7966 for (i
= 0; i
< 2; ++i
)
7967 for (p
= (i
== 0) ? text_section_symbols
: data_section_symbols
;
7970 if (strcmp (*p
, name
) == 0)
7972 /* All of these symbols are given type STT_SECTION by the
7974 sym
->st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
7975 sym
->st_other
= STO_PROTECTED
;
7977 /* The IRIX linker puts these symbols in special sections. */
7979 sym
->st_shndx
= SHN_MIPS_TEXT
;
7981 sym
->st_shndx
= SHN_MIPS_DATA
;
7987 /* Finish up dynamic symbol handling. We set the contents of various
7988 dynamic sections here. */
7991 _bfd_mips_elf_finish_dynamic_symbol (bfd
*output_bfd
,
7992 struct bfd_link_info
*info
,
7993 struct elf_link_hash_entry
*h
,
7994 Elf_Internal_Sym
*sym
)
7998 struct mips_got_info
*g
, *gg
;
8001 dynobj
= elf_hash_table (info
)->dynobj
;
8003 if (h
->plt
.offset
!= MINUS_ONE
)
8006 bfd_byte stub
[MIPS_FUNCTION_STUB_SIZE
];
8008 /* This symbol has a stub. Set it up. */
8010 BFD_ASSERT (h
->dynindx
!= -1);
8012 s
= bfd_get_section_by_name (dynobj
,
8013 MIPS_ELF_STUB_SECTION_NAME (dynobj
));
8014 BFD_ASSERT (s
!= NULL
);
8016 /* FIXME: Can h->dynindx be more than 64K? */
8017 if (h
->dynindx
& 0xffff0000)
8020 /* Fill the stub. */
8021 bfd_put_32 (output_bfd
, STUB_LW (output_bfd
), stub
);
8022 bfd_put_32 (output_bfd
, STUB_MOVE (output_bfd
), stub
+ 4);
8023 bfd_put_32 (output_bfd
, STUB_JALR
, stub
+ 8);
8024 bfd_put_32 (output_bfd
, STUB_LI16 (output_bfd
) + h
->dynindx
, stub
+ 12);
8026 BFD_ASSERT (h
->plt
.offset
<= s
->size
);
8027 memcpy (s
->contents
+ h
->plt
.offset
, stub
, MIPS_FUNCTION_STUB_SIZE
);
8029 /* Mark the symbol as undefined. plt.offset != -1 occurs
8030 only for the referenced symbol. */
8031 sym
->st_shndx
= SHN_UNDEF
;
8033 /* The run-time linker uses the st_value field of the symbol
8034 to reset the global offset table entry for this external
8035 to its stub address when unlinking a shared object. */
8036 sym
->st_value
= (s
->output_section
->vma
+ s
->output_offset
8040 BFD_ASSERT (h
->dynindx
!= -1
8041 || h
->forced_local
);
8043 sgot
= mips_elf_got_section (dynobj
, FALSE
);
8044 BFD_ASSERT (sgot
!= NULL
);
8045 BFD_ASSERT (mips_elf_section_data (sgot
) != NULL
);
8046 g
= mips_elf_section_data (sgot
)->u
.got_info
;
8047 BFD_ASSERT (g
!= NULL
);
8049 /* Run through the global symbol table, creating GOT entries for all
8050 the symbols that need them. */
8051 if (g
->global_gotsym
!= NULL
8052 && h
->dynindx
>= g
->global_gotsym
->dynindx
)
8057 value
= sym
->st_value
;
8058 offset
= mips_elf_global_got_index (dynobj
, output_bfd
, h
, R_MIPS_GOT16
, info
);
8059 MIPS_ELF_PUT_WORD (output_bfd
, value
, sgot
->contents
+ offset
);
8062 if (g
->next
&& h
->dynindx
!= -1 && h
->type
!= STT_TLS
)
8064 struct mips_got_entry e
, *p
;
8070 e
.abfd
= output_bfd
;
8072 e
.d
.h
= (struct mips_elf_link_hash_entry
*)h
;
8075 for (g
= g
->next
; g
->next
!= gg
; g
= g
->next
)
8078 && (p
= (struct mips_got_entry
*) htab_find (g
->got_entries
,
8083 || (elf_hash_table (info
)->dynamic_sections_created
8085 && p
->d
.h
->root
.def_dynamic
8086 && !p
->d
.h
->root
.def_regular
))
8088 /* Create an R_MIPS_REL32 relocation for this entry. Due to
8089 the various compatibility problems, it's easier to mock
8090 up an R_MIPS_32 or R_MIPS_64 relocation and leave
8091 mips_elf_create_dynamic_relocation to calculate the
8092 appropriate addend. */
8093 Elf_Internal_Rela rel
[3];
8095 memset (rel
, 0, sizeof (rel
));
8096 if (ABI_64_P (output_bfd
))
8097 rel
[0].r_info
= ELF_R_INFO (output_bfd
, 0, R_MIPS_64
);
8099 rel
[0].r_info
= ELF_R_INFO (output_bfd
, 0, R_MIPS_32
);
8100 rel
[0].r_offset
= rel
[1].r_offset
= rel
[2].r_offset
= offset
;
8103 if (! (mips_elf_create_dynamic_relocation
8104 (output_bfd
, info
, rel
,
8105 e
.d
.h
, NULL
, sym
->st_value
, &entry
, sgot
)))
8109 entry
= sym
->st_value
;
8110 MIPS_ELF_PUT_WORD (output_bfd
, entry
, sgot
->contents
+ offset
);
8115 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
8116 name
= h
->root
.root
.string
;
8117 if (strcmp (name
, "_DYNAMIC") == 0
8118 || h
== elf_hash_table (info
)->hgot
)
8119 sym
->st_shndx
= SHN_ABS
;
8120 else if (strcmp (name
, "_DYNAMIC_LINK") == 0
8121 || strcmp (name
, "_DYNAMIC_LINKING") == 0)
8123 sym
->st_shndx
= SHN_ABS
;
8124 sym
->st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
8127 else if (strcmp (name
, "_gp_disp") == 0 && ! NEWABI_P (output_bfd
))
8129 sym
->st_shndx
= SHN_ABS
;
8130 sym
->st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
8131 sym
->st_value
= elf_gp (output_bfd
);
8133 else if (SGI_COMPAT (output_bfd
))
8135 if (strcmp (name
, mips_elf_dynsym_rtproc_names
[0]) == 0
8136 || strcmp (name
, mips_elf_dynsym_rtproc_names
[1]) == 0)
8138 sym
->st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
8139 sym
->st_other
= STO_PROTECTED
;
8141 sym
->st_shndx
= SHN_MIPS_DATA
;
8143 else if (strcmp (name
, mips_elf_dynsym_rtproc_names
[2]) == 0)
8145 sym
->st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
8146 sym
->st_other
= STO_PROTECTED
;
8147 sym
->st_value
= mips_elf_hash_table (info
)->procedure_count
;
8148 sym
->st_shndx
= SHN_ABS
;
8150 else if (sym
->st_shndx
!= SHN_UNDEF
&& sym
->st_shndx
!= SHN_ABS
)
8152 if (h
->type
== STT_FUNC
)
8153 sym
->st_shndx
= SHN_MIPS_TEXT
;
8154 else if (h
->type
== STT_OBJECT
)
8155 sym
->st_shndx
= SHN_MIPS_DATA
;
8159 /* Handle the IRIX6-specific symbols. */
8160 if (IRIX_COMPAT (output_bfd
) == ict_irix6
)
8161 mips_elf_irix6_finish_dynamic_symbol (output_bfd
, name
, sym
);
8165 if (! mips_elf_hash_table (info
)->use_rld_obj_head
8166 && (strcmp (name
, "__rld_map") == 0
8167 || strcmp (name
, "__RLD_MAP") == 0))
8169 asection
*s
= bfd_get_section_by_name (dynobj
, ".rld_map");
8170 BFD_ASSERT (s
!= NULL
);
8171 sym
->st_value
= s
->output_section
->vma
+ s
->output_offset
;
8172 bfd_put_32 (output_bfd
, 0, s
->contents
);
8173 if (mips_elf_hash_table (info
)->rld_value
== 0)
8174 mips_elf_hash_table (info
)->rld_value
= sym
->st_value
;
8176 else if (mips_elf_hash_table (info
)->use_rld_obj_head
8177 && strcmp (name
, "__rld_obj_head") == 0)
8179 /* IRIX6 does not use a .rld_map section. */
8180 if (IRIX_COMPAT (output_bfd
) == ict_irix5
8181 || IRIX_COMPAT (output_bfd
) == ict_none
)
8182 BFD_ASSERT (bfd_get_section_by_name (dynobj
, ".rld_map")
8184 mips_elf_hash_table (info
)->rld_value
= sym
->st_value
;
8188 /* If this is a mips16 symbol, force the value to be even. */
8189 if (sym
->st_other
== STO_MIPS16
)
8190 sym
->st_value
&= ~1;
8195 /* Likewise, for VxWorks. */
8198 _bfd_mips_vxworks_finish_dynamic_symbol (bfd
*output_bfd
,
8199 struct bfd_link_info
*info
,
8200 struct elf_link_hash_entry
*h
,
8201 Elf_Internal_Sym
*sym
)
8205 struct mips_got_info
*g
;
8206 struct mips_elf_link_hash_table
*htab
;
8208 htab
= mips_elf_hash_table (info
);
8209 dynobj
= elf_hash_table (info
)->dynobj
;
8211 if (h
->plt
.offset
!= (bfd_vma
) -1)
8214 bfd_vma plt_address
, plt_index
, got_address
, got_offset
, branch_offset
;
8215 Elf_Internal_Rela rel
;
8216 static const bfd_vma
*plt_entry
;
8218 BFD_ASSERT (h
->dynindx
!= -1);
8219 BFD_ASSERT (htab
->splt
!= NULL
);
8220 BFD_ASSERT (h
->plt
.offset
<= htab
->splt
->size
);
8222 /* Calculate the address of the .plt entry. */
8223 plt_address
= (htab
->splt
->output_section
->vma
8224 + htab
->splt
->output_offset
8227 /* Calculate the index of the entry. */
8228 plt_index
= ((h
->plt
.offset
- htab
->plt_header_size
)
8229 / htab
->plt_entry_size
);
8231 /* Calculate the address of the .got.plt entry. */
8232 got_address
= (htab
->sgotplt
->output_section
->vma
8233 + htab
->sgotplt
->output_offset
8236 /* Calculate the offset of the .got.plt entry from
8237 _GLOBAL_OFFSET_TABLE_. */
8238 got_offset
= mips_elf_gotplt_index (info
, h
);
8240 /* Calculate the offset for the branch at the start of the PLT
8241 entry. The branch jumps to the beginning of .plt. */
8242 branch_offset
= -(h
->plt
.offset
/ 4 + 1) & 0xffff;
8244 /* Fill in the initial value of the .got.plt entry. */
8245 bfd_put_32 (output_bfd
, plt_address
,
8246 htab
->sgotplt
->contents
+ plt_index
* 4);
8248 /* Find out where the .plt entry should go. */
8249 loc
= htab
->splt
->contents
+ h
->plt
.offset
;
8253 plt_entry
= mips_vxworks_shared_plt_entry
;
8254 bfd_put_32 (output_bfd
, plt_entry
[0] | branch_offset
, loc
);
8255 bfd_put_32 (output_bfd
, plt_entry
[1] | plt_index
, loc
+ 4);
8259 bfd_vma got_address_high
, got_address_low
;
8261 plt_entry
= mips_vxworks_exec_plt_entry
;
8262 got_address_high
= ((got_address
+ 0x8000) >> 16) & 0xffff;
8263 got_address_low
= got_address
& 0xffff;
8265 bfd_put_32 (output_bfd
, plt_entry
[0] | branch_offset
, loc
);
8266 bfd_put_32 (output_bfd
, plt_entry
[1] | plt_index
, loc
+ 4);
8267 bfd_put_32 (output_bfd
, plt_entry
[2] | got_address_high
, loc
+ 8);
8268 bfd_put_32 (output_bfd
, plt_entry
[3] | got_address_low
, loc
+ 12);
8269 bfd_put_32 (output_bfd
, plt_entry
[4], loc
+ 16);
8270 bfd_put_32 (output_bfd
, plt_entry
[5], loc
+ 20);
8271 bfd_put_32 (output_bfd
, plt_entry
[6], loc
+ 24);
8272 bfd_put_32 (output_bfd
, plt_entry
[7], loc
+ 28);
8274 loc
= (htab
->srelplt2
->contents
8275 + (plt_index
* 3 + 2) * sizeof (Elf32_External_Rela
));
8277 /* Emit a relocation for the .got.plt entry. */
8278 rel
.r_offset
= got_address
;
8279 rel
.r_info
= ELF32_R_INFO (htab
->root
.hplt
->indx
, R_MIPS_32
);
8280 rel
.r_addend
= h
->plt
.offset
;
8281 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
8283 /* Emit a relocation for the lui of %hi(<.got.plt slot>). */
8284 loc
+= sizeof (Elf32_External_Rela
);
8285 rel
.r_offset
= plt_address
+ 8;
8286 rel
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_HI16
);
8287 rel
.r_addend
= got_offset
;
8288 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
8290 /* Emit a relocation for the addiu of %lo(<.got.plt slot>). */
8291 loc
+= sizeof (Elf32_External_Rela
);
8293 rel
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_LO16
);
8294 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
8297 /* Emit an R_MIPS_JUMP_SLOT relocation against the .got.plt entry. */
8298 loc
= htab
->srelplt
->contents
+ plt_index
* sizeof (Elf32_External_Rela
);
8299 rel
.r_offset
= got_address
;
8300 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MIPS_JUMP_SLOT
);
8302 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
8304 if (!h
->def_regular
)
8305 sym
->st_shndx
= SHN_UNDEF
;
8308 BFD_ASSERT (h
->dynindx
!= -1 || h
->forced_local
);
8310 sgot
= mips_elf_got_section (dynobj
, FALSE
);
8311 BFD_ASSERT (sgot
!= NULL
);
8312 BFD_ASSERT (mips_elf_section_data (sgot
) != NULL
);
8313 g
= mips_elf_section_data (sgot
)->u
.got_info
;
8314 BFD_ASSERT (g
!= NULL
);
8316 /* See if this symbol has an entry in the GOT. */
8317 if (g
->global_gotsym
!= NULL
8318 && h
->dynindx
>= g
->global_gotsym
->dynindx
)
8321 Elf_Internal_Rela outrel
;
8325 /* Install the symbol value in the GOT. */
8326 offset
= mips_elf_global_got_index (dynobj
, output_bfd
, h
,
8327 R_MIPS_GOT16
, info
);
8328 MIPS_ELF_PUT_WORD (output_bfd
, sym
->st_value
, sgot
->contents
+ offset
);
8330 /* Add a dynamic relocation for it. */
8331 s
= mips_elf_rel_dyn_section (info
, FALSE
);
8332 loc
= s
->contents
+ (s
->reloc_count
++ * sizeof (Elf32_External_Rela
));
8333 outrel
.r_offset
= (sgot
->output_section
->vma
8334 + sgot
->output_offset
8336 outrel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MIPS_32
);
8337 outrel
.r_addend
= 0;
8338 bfd_elf32_swap_reloca_out (dynobj
, &outrel
, loc
);
8341 /* Emit a copy reloc, if needed. */
8344 Elf_Internal_Rela rel
;
8346 BFD_ASSERT (h
->dynindx
!= -1);
8348 rel
.r_offset
= (h
->root
.u
.def
.section
->output_section
->vma
8349 + h
->root
.u
.def
.section
->output_offset
8350 + h
->root
.u
.def
.value
);
8351 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MIPS_COPY
);
8353 bfd_elf32_swap_reloca_out (output_bfd
, &rel
,
8354 htab
->srelbss
->contents
8355 + (htab
->srelbss
->reloc_count
8356 * sizeof (Elf32_External_Rela
)));
8357 ++htab
->srelbss
->reloc_count
;
8360 /* If this is a mips16 symbol, force the value to be even. */
8361 if (sym
->st_other
== STO_MIPS16
)
8362 sym
->st_value
&= ~1;
8367 /* Install the PLT header for a VxWorks executable and finalize the
8368 contents of .rela.plt.unloaded. */
8371 mips_vxworks_finish_exec_plt (bfd
*output_bfd
, struct bfd_link_info
*info
)
8373 Elf_Internal_Rela rela
;
8375 bfd_vma got_value
, got_value_high
, got_value_low
, plt_address
;
8376 static const bfd_vma
*plt_entry
;
8377 struct mips_elf_link_hash_table
*htab
;
8379 htab
= mips_elf_hash_table (info
);
8380 plt_entry
= mips_vxworks_exec_plt0_entry
;
8382 /* Calculate the value of _GLOBAL_OFFSET_TABLE_. */
8383 got_value
= (htab
->root
.hgot
->root
.u
.def
.section
->output_section
->vma
8384 + htab
->root
.hgot
->root
.u
.def
.section
->output_offset
8385 + htab
->root
.hgot
->root
.u
.def
.value
);
8387 got_value_high
= ((got_value
+ 0x8000) >> 16) & 0xffff;
8388 got_value_low
= got_value
& 0xffff;
8390 /* Calculate the address of the PLT header. */
8391 plt_address
= htab
->splt
->output_section
->vma
+ htab
->splt
->output_offset
;
8393 /* Install the PLT header. */
8394 loc
= htab
->splt
->contents
;
8395 bfd_put_32 (output_bfd
, plt_entry
[0] | got_value_high
, loc
);
8396 bfd_put_32 (output_bfd
, plt_entry
[1] | got_value_low
, loc
+ 4);
8397 bfd_put_32 (output_bfd
, plt_entry
[2], loc
+ 8);
8398 bfd_put_32 (output_bfd
, plt_entry
[3], loc
+ 12);
8399 bfd_put_32 (output_bfd
, plt_entry
[4], loc
+ 16);
8400 bfd_put_32 (output_bfd
, plt_entry
[5], loc
+ 20);
8402 /* Output the relocation for the lui of %hi(_GLOBAL_OFFSET_TABLE_). */
8403 loc
= htab
->srelplt2
->contents
;
8404 rela
.r_offset
= plt_address
;
8405 rela
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_HI16
);
8407 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
8408 loc
+= sizeof (Elf32_External_Rela
);
8410 /* Output the relocation for the following addiu of
8411 %lo(_GLOBAL_OFFSET_TABLE_). */
8413 rela
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_LO16
);
8414 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
8415 loc
+= sizeof (Elf32_External_Rela
);
8417 /* Fix up the remaining relocations. They may have the wrong
8418 symbol index for _G_O_T_ or _P_L_T_ depending on the order
8419 in which symbols were output. */
8420 while (loc
< htab
->srelplt2
->contents
+ htab
->srelplt2
->size
)
8422 Elf_Internal_Rela rel
;
8424 bfd_elf32_swap_reloca_in (output_bfd
, loc
, &rel
);
8425 rel
.r_info
= ELF32_R_INFO (htab
->root
.hplt
->indx
, R_MIPS_32
);
8426 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
8427 loc
+= sizeof (Elf32_External_Rela
);
8429 bfd_elf32_swap_reloca_in (output_bfd
, loc
, &rel
);
8430 rel
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_HI16
);
8431 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
8432 loc
+= sizeof (Elf32_External_Rela
);
8434 bfd_elf32_swap_reloca_in (output_bfd
, loc
, &rel
);
8435 rel
.r_info
= ELF32_R_INFO (htab
->root
.hgot
->indx
, R_MIPS_LO16
);
8436 bfd_elf32_swap_reloca_out (output_bfd
, &rel
, loc
);
8437 loc
+= sizeof (Elf32_External_Rela
);
8441 /* Install the PLT header for a VxWorks shared library. */
8444 mips_vxworks_finish_shared_plt (bfd
*output_bfd
, struct bfd_link_info
*info
)
8447 struct mips_elf_link_hash_table
*htab
;
8449 htab
= mips_elf_hash_table (info
);
8451 /* We just need to copy the entry byte-by-byte. */
8452 for (i
= 0; i
< ARRAY_SIZE (mips_vxworks_shared_plt0_entry
); i
++)
8453 bfd_put_32 (output_bfd
, mips_vxworks_shared_plt0_entry
[i
],
8454 htab
->splt
->contents
+ i
* 4);
8457 /* Finish up the dynamic sections. */
8460 _bfd_mips_elf_finish_dynamic_sections (bfd
*output_bfd
,
8461 struct bfd_link_info
*info
)
8466 struct mips_got_info
*gg
, *g
;
8467 struct mips_elf_link_hash_table
*htab
;
8469 htab
= mips_elf_hash_table (info
);
8470 dynobj
= elf_hash_table (info
)->dynobj
;
8472 sdyn
= bfd_get_section_by_name (dynobj
, ".dynamic");
8474 sgot
= mips_elf_got_section (dynobj
, FALSE
);
8479 BFD_ASSERT (mips_elf_section_data (sgot
) != NULL
);
8480 gg
= mips_elf_section_data (sgot
)->u
.got_info
;
8481 BFD_ASSERT (gg
!= NULL
);
8482 g
= mips_elf_got_for_ibfd (gg
, output_bfd
);
8483 BFD_ASSERT (g
!= NULL
);
8486 if (elf_hash_table (info
)->dynamic_sections_created
)
8489 int dyn_to_skip
= 0, dyn_skipped
= 0;
8491 BFD_ASSERT (sdyn
!= NULL
);
8492 BFD_ASSERT (g
!= NULL
);
8494 for (b
= sdyn
->contents
;
8495 b
< sdyn
->contents
+ sdyn
->size
;
8496 b
+= MIPS_ELF_DYN_SIZE (dynobj
))
8498 Elf_Internal_Dyn dyn
;
8502 bfd_boolean swap_out_p
;
8504 /* Read in the current dynamic entry. */
8505 (*get_elf_backend_data (dynobj
)->s
->swap_dyn_in
) (dynobj
, b
, &dyn
);
8507 /* Assume that we're going to modify it and write it out. */
8513 dyn
.d_un
.d_val
= MIPS_ELF_REL_SIZE (dynobj
);
8517 BFD_ASSERT (htab
->is_vxworks
);
8518 dyn
.d_un
.d_val
= MIPS_ELF_RELA_SIZE (dynobj
);
8522 /* Rewrite DT_STRSZ. */
8524 _bfd_elf_strtab_size (elf_hash_table (info
)->dynstr
);
8529 if (htab
->is_vxworks
)
8531 /* _GLOBAL_OFFSET_TABLE_ is defined to be the beginning
8532 of the ".got" section in DYNOBJ. */
8533 s
= bfd_get_section_by_name (dynobj
, name
);
8534 BFD_ASSERT (s
!= NULL
);
8535 dyn
.d_un
.d_ptr
= s
->output_section
->vma
+ s
->output_offset
;
8539 s
= bfd_get_section_by_name (output_bfd
, name
);
8540 BFD_ASSERT (s
!= NULL
);
8541 dyn
.d_un
.d_ptr
= s
->vma
;
8545 case DT_MIPS_RLD_VERSION
:
8546 dyn
.d_un
.d_val
= 1; /* XXX */
8550 dyn
.d_un
.d_val
= RHF_NOTPOT
; /* XXX */
8553 case DT_MIPS_TIME_STAMP
:
8561 case DT_MIPS_ICHECKSUM
:
8566 case DT_MIPS_IVERSION
:
8571 case DT_MIPS_BASE_ADDRESS
:
8572 s
= output_bfd
->sections
;
8573 BFD_ASSERT (s
!= NULL
);
8574 dyn
.d_un
.d_ptr
= s
->vma
& ~(bfd_vma
) 0xffff;
8577 case DT_MIPS_LOCAL_GOTNO
:
8578 dyn
.d_un
.d_val
= g
->local_gotno
;
8581 case DT_MIPS_UNREFEXTNO
:
8582 /* The index into the dynamic symbol table which is the
8583 entry of the first external symbol that is not
8584 referenced within the same object. */
8585 dyn
.d_un
.d_val
= bfd_count_sections (output_bfd
) + 1;
8588 case DT_MIPS_GOTSYM
:
8589 if (gg
->global_gotsym
)
8591 dyn
.d_un
.d_val
= gg
->global_gotsym
->dynindx
;
8594 /* In case if we don't have global got symbols we default
8595 to setting DT_MIPS_GOTSYM to the same value as
8596 DT_MIPS_SYMTABNO, so we just fall through. */
8598 case DT_MIPS_SYMTABNO
:
8600 elemsize
= MIPS_ELF_SYM_SIZE (output_bfd
);
8601 s
= bfd_get_section_by_name (output_bfd
, name
);
8602 BFD_ASSERT (s
!= NULL
);
8604 dyn
.d_un
.d_val
= s
->size
/ elemsize
;
8607 case DT_MIPS_HIPAGENO
:
8608 dyn
.d_un
.d_val
= g
->local_gotno
- MIPS_RESERVED_GOTNO (info
);
8611 case DT_MIPS_RLD_MAP
:
8612 dyn
.d_un
.d_ptr
= mips_elf_hash_table (info
)->rld_value
;
8615 case DT_MIPS_OPTIONS
:
8616 s
= (bfd_get_section_by_name
8617 (output_bfd
, MIPS_ELF_OPTIONS_SECTION_NAME (output_bfd
)));
8618 dyn
.d_un
.d_ptr
= s
->vma
;
8622 BFD_ASSERT (htab
->is_vxworks
);
8623 /* The count does not include the JUMP_SLOT relocations. */
8625 dyn
.d_un
.d_val
-= htab
->srelplt
->size
;
8629 BFD_ASSERT (htab
->is_vxworks
);
8630 dyn
.d_un
.d_val
= DT_RELA
;
8634 BFD_ASSERT (htab
->is_vxworks
);
8635 dyn
.d_un
.d_val
= htab
->srelplt
->size
;
8639 BFD_ASSERT (htab
->is_vxworks
);
8640 dyn
.d_un
.d_val
= (htab
->srelplt
->output_section
->vma
8641 + htab
->srelplt
->output_offset
);
8645 /* If we didn't need any text relocations after all, delete
8647 if (!(info
->flags
& DF_TEXTREL
))
8649 dyn_to_skip
= MIPS_ELF_DYN_SIZE (dynobj
);
8655 /* If we didn't need any text relocations after all, clear
8656 DF_TEXTREL from DT_FLAGS. */
8657 if (!(info
->flags
& DF_TEXTREL
))
8658 dyn
.d_un
.d_val
&= ~DF_TEXTREL
;
8668 if (swap_out_p
|| dyn_skipped
)
8669 (*get_elf_backend_data (dynobj
)->s
->swap_dyn_out
)
8670 (dynobj
, &dyn
, b
- dyn_skipped
);
8674 dyn_skipped
+= dyn_to_skip
;
8679 /* Wipe out any trailing entries if we shifted down a dynamic tag. */
8680 if (dyn_skipped
> 0)
8681 memset (b
- dyn_skipped
, 0, dyn_skipped
);
8684 if (sgot
!= NULL
&& sgot
->size
> 0)
8686 if (htab
->is_vxworks
)
8688 /* The first entry of the global offset table points to the
8689 ".dynamic" section. The second is initialized by the
8690 loader and contains the shared library identifier.
8691 The third is also initialized by the loader and points
8692 to the lazy resolution stub. */
8693 MIPS_ELF_PUT_WORD (output_bfd
,
8694 sdyn
->output_offset
+ sdyn
->output_section
->vma
,
8696 MIPS_ELF_PUT_WORD (output_bfd
, 0,
8697 sgot
->contents
+ MIPS_ELF_GOT_SIZE (output_bfd
));
8698 MIPS_ELF_PUT_WORD (output_bfd
, 0,
8700 + 2 * MIPS_ELF_GOT_SIZE (output_bfd
));
8704 /* The first entry of the global offset table will be filled at
8705 runtime. The second entry will be used by some runtime loaders.
8706 This isn't the case of IRIX rld. */
8707 MIPS_ELF_PUT_WORD (output_bfd
, (bfd_vma
) 0, sgot
->contents
);
8708 MIPS_ELF_PUT_WORD (output_bfd
, (bfd_vma
) 0x80000000,
8709 sgot
->contents
+ MIPS_ELF_GOT_SIZE (output_bfd
));
8714 elf_section_data (sgot
->output_section
)->this_hdr
.sh_entsize
8715 = MIPS_ELF_GOT_SIZE (output_bfd
);
8717 /* Generate dynamic relocations for the non-primary gots. */
8718 if (gg
!= NULL
&& gg
->next
)
8720 Elf_Internal_Rela rel
[3];
8723 memset (rel
, 0, sizeof (rel
));
8724 rel
[0].r_info
= ELF_R_INFO (output_bfd
, 0, R_MIPS_REL32
);
8726 for (g
= gg
->next
; g
->next
!= gg
; g
= g
->next
)
8728 bfd_vma index
= g
->next
->local_gotno
+ g
->next
->global_gotno
8729 + g
->next
->tls_gotno
;
8731 MIPS_ELF_PUT_WORD (output_bfd
, 0, sgot
->contents
8732 + index
++ * MIPS_ELF_GOT_SIZE (output_bfd
));
8733 MIPS_ELF_PUT_WORD (output_bfd
, 0x80000000, sgot
->contents
8734 + index
++ * MIPS_ELF_GOT_SIZE (output_bfd
));
8739 while (index
< g
->assigned_gotno
)
8741 rel
[0].r_offset
= rel
[1].r_offset
= rel
[2].r_offset
8742 = index
++ * MIPS_ELF_GOT_SIZE (output_bfd
);
8743 if (!(mips_elf_create_dynamic_relocation
8744 (output_bfd
, info
, rel
, NULL
,
8745 bfd_abs_section_ptr
,
8748 BFD_ASSERT (addend
== 0);
8753 /* The generation of dynamic relocations for the non-primary gots
8754 adds more dynamic relocations. We cannot count them until
8757 if (elf_hash_table (info
)->dynamic_sections_created
)
8760 bfd_boolean swap_out_p
;
8762 BFD_ASSERT (sdyn
!= NULL
);
8764 for (b
= sdyn
->contents
;
8765 b
< sdyn
->contents
+ sdyn
->size
;
8766 b
+= MIPS_ELF_DYN_SIZE (dynobj
))
8768 Elf_Internal_Dyn dyn
;
8771 /* Read in the current dynamic entry. */
8772 (*get_elf_backend_data (dynobj
)->s
->swap_dyn_in
) (dynobj
, b
, &dyn
);
8774 /* Assume that we're going to modify it and write it out. */
8780 /* Reduce DT_RELSZ to account for any relocations we
8781 decided not to make. This is for the n64 irix rld,
8782 which doesn't seem to apply any relocations if there
8783 are trailing null entries. */
8784 s
= mips_elf_rel_dyn_section (info
, FALSE
);
8785 dyn
.d_un
.d_val
= (s
->reloc_count
8786 * (ABI_64_P (output_bfd
)
8787 ? sizeof (Elf64_Mips_External_Rel
)
8788 : sizeof (Elf32_External_Rel
)));
8797 (*get_elf_backend_data (dynobj
)->s
->swap_dyn_out
)
8804 Elf32_compact_rel cpt
;
8806 if (SGI_COMPAT (output_bfd
))
8808 /* Write .compact_rel section out. */
8809 s
= bfd_get_section_by_name (dynobj
, ".compact_rel");
8813 cpt
.num
= s
->reloc_count
;
8815 cpt
.offset
= (s
->output_section
->filepos
8816 + sizeof (Elf32_External_compact_rel
));
8819 bfd_elf32_swap_compact_rel_out (output_bfd
, &cpt
,
8820 ((Elf32_External_compact_rel
*)
8823 /* Clean up a dummy stub function entry in .text. */
8824 s
= bfd_get_section_by_name (dynobj
,
8825 MIPS_ELF_STUB_SECTION_NAME (dynobj
));
8828 file_ptr dummy_offset
;
8830 BFD_ASSERT (s
->size
>= MIPS_FUNCTION_STUB_SIZE
);
8831 dummy_offset
= s
->size
- MIPS_FUNCTION_STUB_SIZE
;
8832 memset (s
->contents
+ dummy_offset
, 0,
8833 MIPS_FUNCTION_STUB_SIZE
);
8838 /* The psABI says that the dynamic relocations must be sorted in
8839 increasing order of r_symndx. The VxWorks EABI doesn't require
8840 this, and because the code below handles REL rather than RELA
8841 relocations, using it for VxWorks would be outright harmful. */
8842 if (!htab
->is_vxworks
)
8844 s
= mips_elf_rel_dyn_section (info
, FALSE
);
8846 && s
->size
> (bfd_vma
)2 * MIPS_ELF_REL_SIZE (output_bfd
))
8848 reldyn_sorting_bfd
= output_bfd
;
8850 if (ABI_64_P (output_bfd
))
8851 qsort ((Elf64_External_Rel
*) s
->contents
+ 1,
8852 s
->reloc_count
- 1, sizeof (Elf64_Mips_External_Rel
),
8853 sort_dynamic_relocs_64
);
8855 qsort ((Elf32_External_Rel
*) s
->contents
+ 1,
8856 s
->reloc_count
- 1, sizeof (Elf32_External_Rel
),
8857 sort_dynamic_relocs
);
8862 if (htab
->is_vxworks
&& htab
->splt
->size
> 0)
8865 mips_vxworks_finish_shared_plt (output_bfd
, info
);
8867 mips_vxworks_finish_exec_plt (output_bfd
, info
);
8873 /* Set ABFD's EF_MIPS_ARCH and EF_MIPS_MACH flags. */
8876 mips_set_isa_flags (bfd
*abfd
)
8880 switch (bfd_get_mach (abfd
))
8883 case bfd_mach_mips3000
:
8884 val
= E_MIPS_ARCH_1
;
8887 case bfd_mach_mips3900
:
8888 val
= E_MIPS_ARCH_1
| E_MIPS_MACH_3900
;
8891 case bfd_mach_mips6000
:
8892 val
= E_MIPS_ARCH_2
;
8895 case bfd_mach_mips4000
:
8896 case bfd_mach_mips4300
:
8897 case bfd_mach_mips4400
:
8898 case bfd_mach_mips4600
:
8899 val
= E_MIPS_ARCH_3
;
8902 case bfd_mach_mips4010
:
8903 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_4010
;
8906 case bfd_mach_mips4100
:
8907 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_4100
;
8910 case bfd_mach_mips4111
:
8911 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_4111
;
8914 case bfd_mach_mips4120
:
8915 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_4120
;
8918 case bfd_mach_mips4650
:
8919 val
= E_MIPS_ARCH_3
| E_MIPS_MACH_4650
;
8922 case bfd_mach_mips5400
:
8923 val
= E_MIPS_ARCH_4
| E_MIPS_MACH_5400
;
8926 case bfd_mach_mips5500
:
8927 val
= E_MIPS_ARCH_4
| E_MIPS_MACH_5500
;
8930 case bfd_mach_mips9000
:
8931 val
= E_MIPS_ARCH_4
| E_MIPS_MACH_9000
;
8934 case bfd_mach_mips5000
:
8935 case bfd_mach_mips7000
:
8936 case bfd_mach_mips8000
:
8937 case bfd_mach_mips10000
:
8938 case bfd_mach_mips12000
:
8939 val
= E_MIPS_ARCH_4
;
8942 case bfd_mach_mips5
:
8943 val
= E_MIPS_ARCH_5
;
8946 case bfd_mach_mips_sb1
:
8947 val
= E_MIPS_ARCH_64
| E_MIPS_MACH_SB1
;
8950 case bfd_mach_mipsisa32
:
8951 val
= E_MIPS_ARCH_32
;
8954 case bfd_mach_mipsisa64
:
8955 val
= E_MIPS_ARCH_64
;
8958 case bfd_mach_mipsisa32r2
:
8959 val
= E_MIPS_ARCH_32R2
;
8962 case bfd_mach_mipsisa64r2
:
8963 val
= E_MIPS_ARCH_64R2
;
8966 elf_elfheader (abfd
)->e_flags
&= ~(EF_MIPS_ARCH
| EF_MIPS_MACH
);
8967 elf_elfheader (abfd
)->e_flags
|= val
;
8972 /* The final processing done just before writing out a MIPS ELF object
8973 file. This gets the MIPS architecture right based on the machine
8974 number. This is used by both the 32-bit and the 64-bit ABI. */
8977 _bfd_mips_elf_final_write_processing (bfd
*abfd
,
8978 bfd_boolean linker ATTRIBUTE_UNUSED
)
8981 Elf_Internal_Shdr
**hdrpp
;
8985 /* Keep the existing EF_MIPS_MACH and EF_MIPS_ARCH flags if the former
8986 is nonzero. This is for compatibility with old objects, which used
8987 a combination of a 32-bit EF_MIPS_ARCH and a 64-bit EF_MIPS_MACH. */
8988 if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_MACH
) == 0)
8989 mips_set_isa_flags (abfd
);
8991 /* Set the sh_info field for .gptab sections and other appropriate
8992 info for each special section. */
8993 for (i
= 1, hdrpp
= elf_elfsections (abfd
) + 1;
8994 i
< elf_numsections (abfd
);
8997 switch ((*hdrpp
)->sh_type
)
9000 case SHT_MIPS_LIBLIST
:
9001 sec
= bfd_get_section_by_name (abfd
, ".dynstr");
9003 (*hdrpp
)->sh_link
= elf_section_data (sec
)->this_idx
;
9006 case SHT_MIPS_GPTAB
:
9007 BFD_ASSERT ((*hdrpp
)->bfd_section
!= NULL
);
9008 name
= bfd_get_section_name (abfd
, (*hdrpp
)->bfd_section
);
9009 BFD_ASSERT (name
!= NULL
9010 && strncmp (name
, ".gptab.", sizeof ".gptab." - 1) == 0);
9011 sec
= bfd_get_section_by_name (abfd
, name
+ sizeof ".gptab" - 1);
9012 BFD_ASSERT (sec
!= NULL
);
9013 (*hdrpp
)->sh_info
= elf_section_data (sec
)->this_idx
;
9016 case SHT_MIPS_CONTENT
:
9017 BFD_ASSERT ((*hdrpp
)->bfd_section
!= NULL
);
9018 name
= bfd_get_section_name (abfd
, (*hdrpp
)->bfd_section
);
9019 BFD_ASSERT (name
!= NULL
9020 && strncmp (name
, ".MIPS.content",
9021 sizeof ".MIPS.content" - 1) == 0);
9022 sec
= bfd_get_section_by_name (abfd
,
9023 name
+ sizeof ".MIPS.content" - 1);
9024 BFD_ASSERT (sec
!= NULL
);
9025 (*hdrpp
)->sh_link
= elf_section_data (sec
)->this_idx
;
9028 case SHT_MIPS_SYMBOL_LIB
:
9029 sec
= bfd_get_section_by_name (abfd
, ".dynsym");
9031 (*hdrpp
)->sh_link
= elf_section_data (sec
)->this_idx
;
9032 sec
= bfd_get_section_by_name (abfd
, ".liblist");
9034 (*hdrpp
)->sh_info
= elf_section_data (sec
)->this_idx
;
9037 case SHT_MIPS_EVENTS
:
9038 BFD_ASSERT ((*hdrpp
)->bfd_section
!= NULL
);
9039 name
= bfd_get_section_name (abfd
, (*hdrpp
)->bfd_section
);
9040 BFD_ASSERT (name
!= NULL
);
9041 if (strncmp (name
, ".MIPS.events", sizeof ".MIPS.events" - 1) == 0)
9042 sec
= bfd_get_section_by_name (abfd
,
9043 name
+ sizeof ".MIPS.events" - 1);
9046 BFD_ASSERT (strncmp (name
, ".MIPS.post_rel",
9047 sizeof ".MIPS.post_rel" - 1) == 0);
9048 sec
= bfd_get_section_by_name (abfd
,
9050 + sizeof ".MIPS.post_rel" - 1));
9052 BFD_ASSERT (sec
!= NULL
);
9053 (*hdrpp
)->sh_link
= elf_section_data (sec
)->this_idx
;
9060 /* When creating an IRIX5 executable, we need REGINFO and RTPROC
9064 _bfd_mips_elf_additional_program_headers (bfd
*abfd
)
9069 /* See if we need a PT_MIPS_REGINFO segment. */
9070 s
= bfd_get_section_by_name (abfd
, ".reginfo");
9071 if (s
&& (s
->flags
& SEC_LOAD
))
9074 /* See if we need a PT_MIPS_OPTIONS segment. */
9075 if (IRIX_COMPAT (abfd
) == ict_irix6
9076 && bfd_get_section_by_name (abfd
,
9077 MIPS_ELF_OPTIONS_SECTION_NAME (abfd
)))
9080 /* See if we need a PT_MIPS_RTPROC segment. */
9081 if (IRIX_COMPAT (abfd
) == ict_irix5
9082 && bfd_get_section_by_name (abfd
, ".dynamic")
9083 && bfd_get_section_by_name (abfd
, ".mdebug"))
9089 /* Modify the segment map for an IRIX5 executable. */
9092 _bfd_mips_elf_modify_segment_map (bfd
*abfd
,
9093 struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
9096 struct elf_segment_map
*m
, **pm
;
9099 /* If there is a .reginfo section, we need a PT_MIPS_REGINFO
9101 s
= bfd_get_section_by_name (abfd
, ".reginfo");
9102 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0)
9104 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
9105 if (m
->p_type
== PT_MIPS_REGINFO
)
9110 m
= bfd_zalloc (abfd
, amt
);
9114 m
->p_type
= PT_MIPS_REGINFO
;
9118 /* We want to put it after the PHDR and INTERP segments. */
9119 pm
= &elf_tdata (abfd
)->segment_map
;
9121 && ((*pm
)->p_type
== PT_PHDR
9122 || (*pm
)->p_type
== PT_INTERP
))
9130 /* For IRIX 6, we don't have .mdebug sections, nor does anything but
9131 .dynamic end up in PT_DYNAMIC. However, we do have to insert a
9132 PT_MIPS_OPTIONS segment immediately following the program header
9135 /* On non-IRIX6 new abi, we'll have already created a segment
9136 for this section, so don't create another. I'm not sure this
9137 is not also the case for IRIX 6, but I can't test it right
9139 && IRIX_COMPAT (abfd
) == ict_irix6
)
9141 for (s
= abfd
->sections
; s
; s
= s
->next
)
9142 if (elf_section_data (s
)->this_hdr
.sh_type
== SHT_MIPS_OPTIONS
)
9147 struct elf_segment_map
*options_segment
;
9149 pm
= &elf_tdata (abfd
)->segment_map
;
9151 && ((*pm
)->p_type
== PT_PHDR
9152 || (*pm
)->p_type
== PT_INTERP
))
9155 amt
= sizeof (struct elf_segment_map
);
9156 options_segment
= bfd_zalloc (abfd
, amt
);
9157 options_segment
->next
= *pm
;
9158 options_segment
->p_type
= PT_MIPS_OPTIONS
;
9159 options_segment
->p_flags
= PF_R
;
9160 options_segment
->p_flags_valid
= TRUE
;
9161 options_segment
->count
= 1;
9162 options_segment
->sections
[0] = s
;
9163 *pm
= options_segment
;
9168 if (IRIX_COMPAT (abfd
) == ict_irix5
)
9170 /* If there are .dynamic and .mdebug sections, we make a room
9171 for the RTPROC header. FIXME: Rewrite without section names. */
9172 if (bfd_get_section_by_name (abfd
, ".interp") == NULL
9173 && bfd_get_section_by_name (abfd
, ".dynamic") != NULL
9174 && bfd_get_section_by_name (abfd
, ".mdebug") != NULL
)
9176 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
9177 if (m
->p_type
== PT_MIPS_RTPROC
)
9182 m
= bfd_zalloc (abfd
, amt
);
9186 m
->p_type
= PT_MIPS_RTPROC
;
9188 s
= bfd_get_section_by_name (abfd
, ".rtproc");
9193 m
->p_flags_valid
= 1;
9201 /* We want to put it after the DYNAMIC segment. */
9202 pm
= &elf_tdata (abfd
)->segment_map
;
9203 while (*pm
!= NULL
&& (*pm
)->p_type
!= PT_DYNAMIC
)
9213 /* On IRIX5, the PT_DYNAMIC segment includes the .dynamic,
9214 .dynstr, .dynsym, and .hash sections, and everything in
9216 for (pm
= &elf_tdata (abfd
)->segment_map
; *pm
!= NULL
;
9218 if ((*pm
)->p_type
== PT_DYNAMIC
)
9221 if (m
!= NULL
&& IRIX_COMPAT (abfd
) == ict_none
)
9223 /* For a normal mips executable the permissions for the PT_DYNAMIC
9224 segment are read, write and execute. We do that here since
9225 the code in elf.c sets only the read permission. This matters
9226 sometimes for the dynamic linker. */
9227 if (bfd_get_section_by_name (abfd
, ".dynamic") != NULL
)
9229 m
->p_flags
= PF_R
| PF_W
| PF_X
;
9230 m
->p_flags_valid
= 1;
9234 && m
->count
== 1 && strcmp (m
->sections
[0]->name
, ".dynamic") == 0)
9236 static const char *sec_names
[] =
9238 ".dynamic", ".dynstr", ".dynsym", ".hash"
9242 struct elf_segment_map
*n
;
9246 for (i
= 0; i
< sizeof sec_names
/ sizeof sec_names
[0]; i
++)
9248 s
= bfd_get_section_by_name (abfd
, sec_names
[i
]);
9249 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0)
9256 if (high
< s
->vma
+ sz
)
9262 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
9263 if ((s
->flags
& SEC_LOAD
) != 0
9265 && s
->vma
+ s
->size
<= high
)
9268 amt
= sizeof *n
+ (bfd_size_type
) (c
- 1) * sizeof (asection
*);
9269 n
= bfd_zalloc (abfd
, amt
);
9276 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
9278 if ((s
->flags
& SEC_LOAD
) != 0
9280 && s
->vma
+ s
->size
<= high
)
9294 /* Return the section that should be marked against GC for a given
9298 _bfd_mips_elf_gc_mark_hook (asection
*sec
,
9299 struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
9300 Elf_Internal_Rela
*rel
,
9301 struct elf_link_hash_entry
*h
,
9302 Elf_Internal_Sym
*sym
)
9304 /* ??? Do mips16 stub sections need to be handled special? */
9308 switch (ELF_R_TYPE (sec
->owner
, rel
->r_info
))
9310 case R_MIPS_GNU_VTINHERIT
:
9311 case R_MIPS_GNU_VTENTRY
:
9315 switch (h
->root
.type
)
9317 case bfd_link_hash_defined
:
9318 case bfd_link_hash_defweak
:
9319 return h
->root
.u
.def
.section
;
9321 case bfd_link_hash_common
:
9322 return h
->root
.u
.c
.p
->section
;
9330 return bfd_section_from_elf_index (sec
->owner
, sym
->st_shndx
);
9335 /* Update the got entry reference counts for the section being removed. */
9338 _bfd_mips_elf_gc_sweep_hook (bfd
*abfd ATTRIBUTE_UNUSED
,
9339 struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
9340 asection
*sec ATTRIBUTE_UNUSED
,
9341 const Elf_Internal_Rela
*relocs ATTRIBUTE_UNUSED
)
9344 Elf_Internal_Shdr
*symtab_hdr
;
9345 struct elf_link_hash_entry
**sym_hashes
;
9346 bfd_signed_vma
*local_got_refcounts
;
9347 const Elf_Internal_Rela
*rel
, *relend
;
9348 unsigned long r_symndx
;
9349 struct elf_link_hash_entry
*h
;
9351 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
9352 sym_hashes
= elf_sym_hashes (abfd
);
9353 local_got_refcounts
= elf_local_got_refcounts (abfd
);
9355 relend
= relocs
+ sec
->reloc_count
;
9356 for (rel
= relocs
; rel
< relend
; rel
++)
9357 switch (ELF_R_TYPE (abfd
, rel
->r_info
))
9361 case R_MIPS_CALL_HI16
:
9362 case R_MIPS_CALL_LO16
:
9363 case R_MIPS_GOT_HI16
:
9364 case R_MIPS_GOT_LO16
:
9365 case R_MIPS_GOT_DISP
:
9366 case R_MIPS_GOT_PAGE
:
9367 case R_MIPS_GOT_OFST
:
9368 /* ??? It would seem that the existing MIPS code does no sort
9369 of reference counting or whatnot on its GOT and PLT entries,
9370 so it is not possible to garbage collect them at this time. */
9381 /* Copy data from a MIPS ELF indirect symbol to its direct symbol,
9382 hiding the old indirect symbol. Process additional relocation
9383 information. Also called for weakdefs, in which case we just let
9384 _bfd_elf_link_hash_copy_indirect copy the flags for us. */
9387 _bfd_mips_elf_copy_indirect_symbol (struct bfd_link_info
*info
,
9388 struct elf_link_hash_entry
*dir
,
9389 struct elf_link_hash_entry
*ind
)
9391 struct mips_elf_link_hash_entry
*dirmips
, *indmips
;
9393 _bfd_elf_link_hash_copy_indirect (info
, dir
, ind
);
9395 if (ind
->root
.type
!= bfd_link_hash_indirect
)
9398 dirmips
= (struct mips_elf_link_hash_entry
*) dir
;
9399 indmips
= (struct mips_elf_link_hash_entry
*) ind
;
9400 dirmips
->possibly_dynamic_relocs
+= indmips
->possibly_dynamic_relocs
;
9401 if (indmips
->readonly_reloc
)
9402 dirmips
->readonly_reloc
= TRUE
;
9403 if (indmips
->no_fn_stub
)
9404 dirmips
->no_fn_stub
= TRUE
;
9406 if (dirmips
->tls_type
== 0)
9407 dirmips
->tls_type
= indmips
->tls_type
;
9411 _bfd_mips_elf_hide_symbol (struct bfd_link_info
*info
,
9412 struct elf_link_hash_entry
*entry
,
9413 bfd_boolean force_local
)
9417 struct mips_got_info
*g
;
9418 struct mips_elf_link_hash_entry
*h
;
9420 h
= (struct mips_elf_link_hash_entry
*) entry
;
9421 if (h
->forced_local
)
9423 h
->forced_local
= force_local
;
9425 dynobj
= elf_hash_table (info
)->dynobj
;
9426 if (dynobj
!= NULL
&& force_local
&& h
->root
.type
!= STT_TLS
9427 && (got
= mips_elf_got_section (dynobj
, TRUE
)) != NULL
9428 && (g
= mips_elf_section_data (got
)->u
.got_info
) != NULL
)
9432 struct mips_got_entry e
;
9433 struct mips_got_info
*gg
= g
;
9435 /* Since we're turning what used to be a global symbol into a
9436 local one, bump up the number of local entries of each GOT
9437 that had an entry for it. This will automatically decrease
9438 the number of global entries, since global_gotno is actually
9439 the upper limit of global entries. */
9445 for (g
= g
->next
; g
!= gg
; g
= g
->next
)
9446 if (htab_find (g
->got_entries
, &e
))
9448 BFD_ASSERT (g
->global_gotno
> 0);
9453 /* If this was a global symbol forced into the primary GOT, we
9454 no longer need an entry for it. We can't release the entry
9455 at this point, but we must at least stop counting it as one
9456 of the symbols that required a forced got entry. */
9457 if (h
->root
.got
.offset
== 2)
9459 BFD_ASSERT (gg
->assigned_gotno
> 0);
9460 gg
->assigned_gotno
--;
9463 else if (g
->global_gotno
== 0 && g
->global_gotsym
== NULL
)
9464 /* If we haven't got through GOT allocation yet, just bump up the
9465 number of local entries, as this symbol won't be counted as
9468 else if (h
->root
.got
.offset
== 1)
9470 /* If we're past non-multi-GOT allocation and this symbol had
9471 been marked for a global got entry, give it a local entry
9473 BFD_ASSERT (g
->global_gotno
> 0);
9479 _bfd_elf_link_hash_hide_symbol (info
, &h
->root
, force_local
);
9485 _bfd_mips_elf_discard_info (bfd
*abfd
, struct elf_reloc_cookie
*cookie
,
9486 struct bfd_link_info
*info
)
9489 bfd_boolean ret
= FALSE
;
9490 unsigned char *tdata
;
9493 o
= bfd_get_section_by_name (abfd
, ".pdr");
9498 if (o
->size
% PDR_SIZE
!= 0)
9500 if (o
->output_section
!= NULL
9501 && bfd_is_abs_section (o
->output_section
))
9504 tdata
= bfd_zmalloc (o
->size
/ PDR_SIZE
);
9508 cookie
->rels
= _bfd_elf_link_read_relocs (abfd
, o
, NULL
, NULL
,
9516 cookie
->rel
= cookie
->rels
;
9517 cookie
->relend
= cookie
->rels
+ o
->reloc_count
;
9519 for (i
= 0, skip
= 0; i
< o
->size
/ PDR_SIZE
; i
++)
9521 if (bfd_elf_reloc_symbol_deleted_p (i
* PDR_SIZE
, cookie
))
9530 mips_elf_section_data (o
)->u
.tdata
= tdata
;
9531 o
->size
-= skip
* PDR_SIZE
;
9537 if (! info
->keep_memory
)
9538 free (cookie
->rels
);
9544 _bfd_mips_elf_ignore_discarded_relocs (asection
*sec
)
9546 if (strcmp (sec
->name
, ".pdr") == 0)
9552 _bfd_mips_elf_write_section (bfd
*output_bfd
, asection
*sec
,
9555 bfd_byte
*to
, *from
, *end
;
9558 if (strcmp (sec
->name
, ".pdr") != 0)
9561 if (mips_elf_section_data (sec
)->u
.tdata
== NULL
)
9565 end
= contents
+ sec
->size
;
9566 for (from
= contents
, i
= 0;
9568 from
+= PDR_SIZE
, i
++)
9570 if ((mips_elf_section_data (sec
)->u
.tdata
)[i
] == 1)
9573 memcpy (to
, from
, PDR_SIZE
);
9576 bfd_set_section_contents (output_bfd
, sec
->output_section
, contents
,
9577 sec
->output_offset
, sec
->size
);
9581 /* MIPS ELF uses a special find_nearest_line routine in order the
9582 handle the ECOFF debugging information. */
9584 struct mips_elf_find_line
9586 struct ecoff_debug_info d
;
9587 struct ecoff_find_line i
;
9591 _bfd_mips_elf_find_nearest_line (bfd
*abfd
, asection
*section
,
9592 asymbol
**symbols
, bfd_vma offset
,
9593 const char **filename_ptr
,
9594 const char **functionname_ptr
,
9595 unsigned int *line_ptr
)
9599 if (_bfd_dwarf1_find_nearest_line (abfd
, section
, symbols
, offset
,
9600 filename_ptr
, functionname_ptr
,
9604 if (_bfd_dwarf2_find_nearest_line (abfd
, section
, symbols
, offset
,
9605 filename_ptr
, functionname_ptr
,
9606 line_ptr
, ABI_64_P (abfd
) ? 8 : 0,
9607 &elf_tdata (abfd
)->dwarf2_find_line_info
))
9610 msec
= bfd_get_section_by_name (abfd
, ".mdebug");
9614 struct mips_elf_find_line
*fi
;
9615 const struct ecoff_debug_swap
* const swap
=
9616 get_elf_backend_data (abfd
)->elf_backend_ecoff_debug_swap
;
9618 /* If we are called during a link, mips_elf_final_link may have
9619 cleared the SEC_HAS_CONTENTS field. We force it back on here
9620 if appropriate (which it normally will be). */
9621 origflags
= msec
->flags
;
9622 if (elf_section_data (msec
)->this_hdr
.sh_type
!= SHT_NOBITS
)
9623 msec
->flags
|= SEC_HAS_CONTENTS
;
9625 fi
= elf_tdata (abfd
)->find_line_info
;
9628 bfd_size_type external_fdr_size
;
9631 struct fdr
*fdr_ptr
;
9632 bfd_size_type amt
= sizeof (struct mips_elf_find_line
);
9634 fi
= bfd_zalloc (abfd
, amt
);
9637 msec
->flags
= origflags
;
9641 if (! _bfd_mips_elf_read_ecoff_info (abfd
, msec
, &fi
->d
))
9643 msec
->flags
= origflags
;
9647 /* Swap in the FDR information. */
9648 amt
= fi
->d
.symbolic_header
.ifdMax
* sizeof (struct fdr
);
9649 fi
->d
.fdr
= bfd_alloc (abfd
, amt
);
9650 if (fi
->d
.fdr
== NULL
)
9652 msec
->flags
= origflags
;
9655 external_fdr_size
= swap
->external_fdr_size
;
9656 fdr_ptr
= fi
->d
.fdr
;
9657 fraw_src
= (char *) fi
->d
.external_fdr
;
9658 fraw_end
= (fraw_src
9659 + fi
->d
.symbolic_header
.ifdMax
* external_fdr_size
);
9660 for (; fraw_src
< fraw_end
; fraw_src
+= external_fdr_size
, fdr_ptr
++)
9661 (*swap
->swap_fdr_in
) (abfd
, fraw_src
, fdr_ptr
);
9663 elf_tdata (abfd
)->find_line_info
= fi
;
9665 /* Note that we don't bother to ever free this information.
9666 find_nearest_line is either called all the time, as in
9667 objdump -l, so the information should be saved, or it is
9668 rarely called, as in ld error messages, so the memory
9669 wasted is unimportant. Still, it would probably be a
9670 good idea for free_cached_info to throw it away. */
9673 if (_bfd_ecoff_locate_line (abfd
, section
, offset
, &fi
->d
, swap
,
9674 &fi
->i
, filename_ptr
, functionname_ptr
,
9677 msec
->flags
= origflags
;
9681 msec
->flags
= origflags
;
9684 /* Fall back on the generic ELF find_nearest_line routine. */
9686 return _bfd_elf_find_nearest_line (abfd
, section
, symbols
, offset
,
9687 filename_ptr
, functionname_ptr
,
9692 _bfd_mips_elf_find_inliner_info (bfd
*abfd
,
9693 const char **filename_ptr
,
9694 const char **functionname_ptr
,
9695 unsigned int *line_ptr
)
9698 found
= _bfd_dwarf2_find_inliner_info (abfd
, filename_ptr
,
9699 functionname_ptr
, line_ptr
,
9700 & elf_tdata (abfd
)->dwarf2_find_line_info
);
9705 /* When are writing out the .options or .MIPS.options section,
9706 remember the bytes we are writing out, so that we can install the
9707 GP value in the section_processing routine. */
9710 _bfd_mips_elf_set_section_contents (bfd
*abfd
, sec_ptr section
,
9711 const void *location
,
9712 file_ptr offset
, bfd_size_type count
)
9714 if (MIPS_ELF_OPTIONS_SECTION_NAME_P (section
->name
))
9718 if (elf_section_data (section
) == NULL
)
9720 bfd_size_type amt
= sizeof (struct bfd_elf_section_data
);
9721 section
->used_by_bfd
= bfd_zalloc (abfd
, amt
);
9722 if (elf_section_data (section
) == NULL
)
9725 c
= mips_elf_section_data (section
)->u
.tdata
;
9728 c
= bfd_zalloc (abfd
, section
->size
);
9731 mips_elf_section_data (section
)->u
.tdata
= c
;
9734 memcpy (c
+ offset
, location
, count
);
9737 return _bfd_elf_set_section_contents (abfd
, section
, location
, offset
,
9741 /* This is almost identical to bfd_generic_get_... except that some
9742 MIPS relocations need to be handled specially. Sigh. */
9745 _bfd_elf_mips_get_relocated_section_contents
9747 struct bfd_link_info
*link_info
,
9748 struct bfd_link_order
*link_order
,
9750 bfd_boolean relocatable
,
9753 /* Get enough memory to hold the stuff */
9754 bfd
*input_bfd
= link_order
->u
.indirect
.section
->owner
;
9755 asection
*input_section
= link_order
->u
.indirect
.section
;
9758 long reloc_size
= bfd_get_reloc_upper_bound (input_bfd
, input_section
);
9759 arelent
**reloc_vector
= NULL
;
9765 reloc_vector
= bfd_malloc (reloc_size
);
9766 if (reloc_vector
== NULL
&& reloc_size
!= 0)
9769 /* read in the section */
9770 sz
= input_section
->rawsize
? input_section
->rawsize
: input_section
->size
;
9771 if (!bfd_get_section_contents (input_bfd
, input_section
, data
, 0, sz
))
9774 reloc_count
= bfd_canonicalize_reloc (input_bfd
,
9778 if (reloc_count
< 0)
9781 if (reloc_count
> 0)
9786 bfd_vma gp
= 0x12345678; /* initialize just to shut gcc up */
9789 struct bfd_hash_entry
*h
;
9790 struct bfd_link_hash_entry
*lh
;
9791 /* Skip all this stuff if we aren't mixing formats. */
9792 if (abfd
&& input_bfd
9793 && abfd
->xvec
== input_bfd
->xvec
)
9797 h
= bfd_hash_lookup (&link_info
->hash
->table
, "_gp", FALSE
, FALSE
);
9798 lh
= (struct bfd_link_hash_entry
*) h
;
9805 case bfd_link_hash_undefined
:
9806 case bfd_link_hash_undefweak
:
9807 case bfd_link_hash_common
:
9810 case bfd_link_hash_defined
:
9811 case bfd_link_hash_defweak
:
9813 gp
= lh
->u
.def
.value
;
9815 case bfd_link_hash_indirect
:
9816 case bfd_link_hash_warning
:
9818 /* @@FIXME ignoring warning for now */
9820 case bfd_link_hash_new
:
9829 for (parent
= reloc_vector
; *parent
!= NULL
; parent
++)
9831 char *error_message
= NULL
;
9832 bfd_reloc_status_type r
;
9834 /* Specific to MIPS: Deal with relocation types that require
9835 knowing the gp of the output bfd. */
9836 asymbol
*sym
= *(*parent
)->sym_ptr_ptr
;
9838 /* If we've managed to find the gp and have a special
9839 function for the relocation then go ahead, else default
9840 to the generic handling. */
9842 && (*parent
)->howto
->special_function
9843 == _bfd_mips_elf32_gprel16_reloc
)
9844 r
= _bfd_mips_elf_gprel16_with_gp (input_bfd
, sym
, *parent
,
9845 input_section
, relocatable
,
9848 r
= bfd_perform_relocation (input_bfd
, *parent
, data
,
9850 relocatable
? abfd
: NULL
,
9855 asection
*os
= input_section
->output_section
;
9857 /* A partial link, so keep the relocs */
9858 os
->orelocation
[os
->reloc_count
] = *parent
;
9862 if (r
!= bfd_reloc_ok
)
9866 case bfd_reloc_undefined
:
9867 if (!((*link_info
->callbacks
->undefined_symbol
)
9868 (link_info
, bfd_asymbol_name (*(*parent
)->sym_ptr_ptr
),
9869 input_bfd
, input_section
, (*parent
)->address
, TRUE
)))
9872 case bfd_reloc_dangerous
:
9873 BFD_ASSERT (error_message
!= NULL
);
9874 if (!((*link_info
->callbacks
->reloc_dangerous
)
9875 (link_info
, error_message
, input_bfd
, input_section
,
9876 (*parent
)->address
)))
9879 case bfd_reloc_overflow
:
9880 if (!((*link_info
->callbacks
->reloc_overflow
)
9882 bfd_asymbol_name (*(*parent
)->sym_ptr_ptr
),
9883 (*parent
)->howto
->name
, (*parent
)->addend
,
9884 input_bfd
, input_section
, (*parent
)->address
)))
9887 case bfd_reloc_outofrange
:
9896 if (reloc_vector
!= NULL
)
9897 free (reloc_vector
);
9901 if (reloc_vector
!= NULL
)
9902 free (reloc_vector
);
9906 /* Create a MIPS ELF linker hash table. */
9908 struct bfd_link_hash_table
*
9909 _bfd_mips_elf_link_hash_table_create (bfd
*abfd
)
9911 struct mips_elf_link_hash_table
*ret
;
9912 bfd_size_type amt
= sizeof (struct mips_elf_link_hash_table
);
9914 ret
= bfd_malloc (amt
);
9918 if (!_bfd_elf_link_hash_table_init (&ret
->root
, abfd
,
9919 mips_elf_link_hash_newfunc
,
9920 sizeof (struct mips_elf_link_hash_entry
)))
9927 /* We no longer use this. */
9928 for (i
= 0; i
< SIZEOF_MIPS_DYNSYM_SECNAMES
; i
++)
9929 ret
->dynsym_sec_strindex
[i
] = (bfd_size_type
) -1;
9931 ret
->procedure_count
= 0;
9932 ret
->compact_rel_size
= 0;
9933 ret
->use_rld_obj_head
= FALSE
;
9935 ret
->mips16_stubs_seen
= FALSE
;
9936 ret
->is_vxworks
= FALSE
;
9937 ret
->srelbss
= NULL
;
9938 ret
->sdynbss
= NULL
;
9939 ret
->srelplt
= NULL
;
9940 ret
->srelplt2
= NULL
;
9941 ret
->sgotplt
= NULL
;
9943 ret
->plt_header_size
= 0;
9944 ret
->plt_entry_size
= 0;
9946 return &ret
->root
.root
;
9949 /* Likewise, but indicate that the target is VxWorks. */
9951 struct bfd_link_hash_table
*
9952 _bfd_mips_vxworks_link_hash_table_create (bfd
*abfd
)
9954 struct bfd_link_hash_table
*ret
;
9956 ret
= _bfd_mips_elf_link_hash_table_create (abfd
);
9959 struct mips_elf_link_hash_table
*htab
;
9961 htab
= (struct mips_elf_link_hash_table
*) ret
;
9962 htab
->is_vxworks
= 1;
9967 /* We need to use a special link routine to handle the .reginfo and
9968 the .mdebug sections. We need to merge all instances of these
9969 sections together, not write them all out sequentially. */
9972 _bfd_mips_elf_final_link (bfd
*abfd
, struct bfd_link_info
*info
)
9975 struct bfd_link_order
*p
;
9976 asection
*reginfo_sec
, *mdebug_sec
, *gptab_data_sec
, *gptab_bss_sec
;
9977 asection
*rtproc_sec
;
9978 Elf32_RegInfo reginfo
;
9979 struct ecoff_debug_info debug
;
9980 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
9981 const struct ecoff_debug_swap
*swap
= bed
->elf_backend_ecoff_debug_swap
;
9982 HDRR
*symhdr
= &debug
.symbolic_header
;
9983 void *mdebug_handle
= NULL
;
9988 struct mips_elf_link_hash_table
*htab
;
9990 static const char * const secname
[] =
9992 ".text", ".init", ".fini", ".data",
9993 ".rodata", ".sdata", ".sbss", ".bss"
9995 static const int sc
[] =
9997 scText
, scInit
, scFini
, scData
,
9998 scRData
, scSData
, scSBss
, scBss
10001 /* We'd carefully arranged the dynamic symbol indices, and then the
10002 generic size_dynamic_sections renumbered them out from under us.
10003 Rather than trying somehow to prevent the renumbering, just do
10005 htab
= mips_elf_hash_table (info
);
10006 if (elf_hash_table (info
)->dynamic_sections_created
)
10010 struct mips_got_info
*g
;
10011 bfd_size_type dynsecsymcount
;
10013 /* When we resort, we must tell mips_elf_sort_hash_table what
10014 the lowest index it may use is. That's the number of section
10015 symbols we're going to add. The generic ELF linker only
10016 adds these symbols when building a shared object. Note that
10017 we count the sections after (possibly) removing the .options
10020 dynsecsymcount
= 0;
10025 for (p
= abfd
->sections
; p
; p
= p
->next
)
10026 if ((p
->flags
& SEC_EXCLUDE
) == 0
10027 && (p
->flags
& SEC_ALLOC
) != 0
10028 && !(*bed
->elf_backend_omit_section_dynsym
) (abfd
, info
, p
))
10032 if (! mips_elf_sort_hash_table (info
, dynsecsymcount
+ 1))
10035 /* Make sure we didn't grow the global .got region. */
10036 dynobj
= elf_hash_table (info
)->dynobj
;
10037 got
= mips_elf_got_section (dynobj
, FALSE
);
10038 g
= mips_elf_section_data (got
)->u
.got_info
;
10040 if (g
->global_gotsym
!= NULL
)
10041 BFD_ASSERT ((elf_hash_table (info
)->dynsymcount
10042 - g
->global_gotsym
->dynindx
)
10043 <= g
->global_gotno
);
10046 /* Get a value for the GP register. */
10047 if (elf_gp (abfd
) == 0)
10049 struct bfd_link_hash_entry
*h
;
10051 h
= bfd_link_hash_lookup (info
->hash
, "_gp", FALSE
, FALSE
, TRUE
);
10052 if (h
!= NULL
&& h
->type
== bfd_link_hash_defined
)
10053 elf_gp (abfd
) = (h
->u
.def
.value
10054 + h
->u
.def
.section
->output_section
->vma
10055 + h
->u
.def
.section
->output_offset
);
10056 else if (htab
->is_vxworks
10057 && (h
= bfd_link_hash_lookup (info
->hash
,
10058 "_GLOBAL_OFFSET_TABLE_",
10059 FALSE
, FALSE
, TRUE
))
10060 && h
->type
== bfd_link_hash_defined
)
10061 elf_gp (abfd
) = (h
->u
.def
.section
->output_section
->vma
10062 + h
->u
.def
.section
->output_offset
10064 else if (info
->relocatable
)
10066 bfd_vma lo
= MINUS_ONE
;
10068 /* Find the GP-relative section with the lowest offset. */
10069 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
10071 && (elf_section_data (o
)->this_hdr
.sh_flags
& SHF_MIPS_GPREL
))
10074 /* And calculate GP relative to that. */
10075 elf_gp (abfd
) = lo
+ ELF_MIPS_GP_OFFSET (info
);
10079 /* If the relocate_section function needs to do a reloc
10080 involving the GP value, it should make a reloc_dangerous
10081 callback to warn that GP is not defined. */
10085 /* Go through the sections and collect the .reginfo and .mdebug
10087 reginfo_sec
= NULL
;
10089 gptab_data_sec
= NULL
;
10090 gptab_bss_sec
= NULL
;
10091 for (o
= abfd
->sections
; o
!= NULL
; o
= o
->next
)
10093 if (strcmp (o
->name
, ".reginfo") == 0)
10095 memset (®info
, 0, sizeof reginfo
);
10097 /* We have found the .reginfo section in the output file.
10098 Look through all the link_orders comprising it and merge
10099 the information together. */
10100 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
10102 asection
*input_section
;
10104 Elf32_External_RegInfo ext
;
10107 if (p
->type
!= bfd_indirect_link_order
)
10109 if (p
->type
== bfd_data_link_order
)
10114 input_section
= p
->u
.indirect
.section
;
10115 input_bfd
= input_section
->owner
;
10117 if (! bfd_get_section_contents (input_bfd
, input_section
,
10118 &ext
, 0, sizeof ext
))
10121 bfd_mips_elf32_swap_reginfo_in (input_bfd
, &ext
, &sub
);
10123 reginfo
.ri_gprmask
|= sub
.ri_gprmask
;
10124 reginfo
.ri_cprmask
[0] |= sub
.ri_cprmask
[0];
10125 reginfo
.ri_cprmask
[1] |= sub
.ri_cprmask
[1];
10126 reginfo
.ri_cprmask
[2] |= sub
.ri_cprmask
[2];
10127 reginfo
.ri_cprmask
[3] |= sub
.ri_cprmask
[3];
10129 /* ri_gp_value is set by the function
10130 mips_elf32_section_processing when the section is
10131 finally written out. */
10133 /* Hack: reset the SEC_HAS_CONTENTS flag so that
10134 elf_link_input_bfd ignores this section. */
10135 input_section
->flags
&= ~SEC_HAS_CONTENTS
;
10138 /* Size has been set in _bfd_mips_elf_always_size_sections. */
10139 BFD_ASSERT(o
->size
== sizeof (Elf32_External_RegInfo
));
10141 /* Skip this section later on (I don't think this currently
10142 matters, but someday it might). */
10143 o
->map_head
.link_order
= NULL
;
10148 if (strcmp (o
->name
, ".mdebug") == 0)
10150 struct extsym_info einfo
;
10153 /* We have found the .mdebug section in the output file.
10154 Look through all the link_orders comprising it and merge
10155 the information together. */
10156 symhdr
->magic
= swap
->sym_magic
;
10157 /* FIXME: What should the version stamp be? */
10158 symhdr
->vstamp
= 0;
10159 symhdr
->ilineMax
= 0;
10160 symhdr
->cbLine
= 0;
10161 symhdr
->idnMax
= 0;
10162 symhdr
->ipdMax
= 0;
10163 symhdr
->isymMax
= 0;
10164 symhdr
->ioptMax
= 0;
10165 symhdr
->iauxMax
= 0;
10166 symhdr
->issMax
= 0;
10167 symhdr
->issExtMax
= 0;
10168 symhdr
->ifdMax
= 0;
10170 symhdr
->iextMax
= 0;
10172 /* We accumulate the debugging information itself in the
10173 debug_info structure. */
10175 debug
.external_dnr
= NULL
;
10176 debug
.external_pdr
= NULL
;
10177 debug
.external_sym
= NULL
;
10178 debug
.external_opt
= NULL
;
10179 debug
.external_aux
= NULL
;
10181 debug
.ssext
= debug
.ssext_end
= NULL
;
10182 debug
.external_fdr
= NULL
;
10183 debug
.external_rfd
= NULL
;
10184 debug
.external_ext
= debug
.external_ext_end
= NULL
;
10186 mdebug_handle
= bfd_ecoff_debug_init (abfd
, &debug
, swap
, info
);
10187 if (mdebug_handle
== NULL
)
10191 esym
.cobol_main
= 0;
10195 esym
.asym
.iss
= issNil
;
10196 esym
.asym
.st
= stLocal
;
10197 esym
.asym
.reserved
= 0;
10198 esym
.asym
.index
= indexNil
;
10200 for (i
= 0; i
< sizeof (secname
) / sizeof (secname
[0]); i
++)
10202 esym
.asym
.sc
= sc
[i
];
10203 s
= bfd_get_section_by_name (abfd
, secname
[i
]);
10206 esym
.asym
.value
= s
->vma
;
10207 last
= s
->vma
+ s
->size
;
10210 esym
.asym
.value
= last
;
10211 if (!bfd_ecoff_debug_one_external (abfd
, &debug
, swap
,
10212 secname
[i
], &esym
))
10216 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
10218 asection
*input_section
;
10220 const struct ecoff_debug_swap
*input_swap
;
10221 struct ecoff_debug_info input_debug
;
10225 if (p
->type
!= bfd_indirect_link_order
)
10227 if (p
->type
== bfd_data_link_order
)
10232 input_section
= p
->u
.indirect
.section
;
10233 input_bfd
= input_section
->owner
;
10235 if (bfd_get_flavour (input_bfd
) != bfd_target_elf_flavour
10236 || (get_elf_backend_data (input_bfd
)
10237 ->elf_backend_ecoff_debug_swap
) == NULL
)
10239 /* I don't know what a non MIPS ELF bfd would be
10240 doing with a .mdebug section, but I don't really
10241 want to deal with it. */
10245 input_swap
= (get_elf_backend_data (input_bfd
)
10246 ->elf_backend_ecoff_debug_swap
);
10248 BFD_ASSERT (p
->size
== input_section
->size
);
10250 /* The ECOFF linking code expects that we have already
10251 read in the debugging information and set up an
10252 ecoff_debug_info structure, so we do that now. */
10253 if (! _bfd_mips_elf_read_ecoff_info (input_bfd
, input_section
,
10257 if (! (bfd_ecoff_debug_accumulate
10258 (mdebug_handle
, abfd
, &debug
, swap
, input_bfd
,
10259 &input_debug
, input_swap
, info
)))
10262 /* Loop through the external symbols. For each one with
10263 interesting information, try to find the symbol in
10264 the linker global hash table and save the information
10265 for the output external symbols. */
10266 eraw_src
= input_debug
.external_ext
;
10267 eraw_end
= (eraw_src
10268 + (input_debug
.symbolic_header
.iextMax
10269 * input_swap
->external_ext_size
));
10271 eraw_src
< eraw_end
;
10272 eraw_src
+= input_swap
->external_ext_size
)
10276 struct mips_elf_link_hash_entry
*h
;
10278 (*input_swap
->swap_ext_in
) (input_bfd
, eraw_src
, &ext
);
10279 if (ext
.asym
.sc
== scNil
10280 || ext
.asym
.sc
== scUndefined
10281 || ext
.asym
.sc
== scSUndefined
)
10284 name
= input_debug
.ssext
+ ext
.asym
.iss
;
10285 h
= mips_elf_link_hash_lookup (mips_elf_hash_table (info
),
10286 name
, FALSE
, FALSE
, TRUE
);
10287 if (h
== NULL
|| h
->esym
.ifd
!= -2)
10292 BFD_ASSERT (ext
.ifd
10293 < input_debug
.symbolic_header
.ifdMax
);
10294 ext
.ifd
= input_debug
.ifdmap
[ext
.ifd
];
10300 /* Free up the information we just read. */
10301 free (input_debug
.line
);
10302 free (input_debug
.external_dnr
);
10303 free (input_debug
.external_pdr
);
10304 free (input_debug
.external_sym
);
10305 free (input_debug
.external_opt
);
10306 free (input_debug
.external_aux
);
10307 free (input_debug
.ss
);
10308 free (input_debug
.ssext
);
10309 free (input_debug
.external_fdr
);
10310 free (input_debug
.external_rfd
);
10311 free (input_debug
.external_ext
);
10313 /* Hack: reset the SEC_HAS_CONTENTS flag so that
10314 elf_link_input_bfd ignores this section. */
10315 input_section
->flags
&= ~SEC_HAS_CONTENTS
;
10318 if (SGI_COMPAT (abfd
) && info
->shared
)
10320 /* Create .rtproc section. */
10321 rtproc_sec
= bfd_get_section_by_name (abfd
, ".rtproc");
10322 if (rtproc_sec
== NULL
)
10324 flagword flags
= (SEC_HAS_CONTENTS
| SEC_IN_MEMORY
10325 | SEC_LINKER_CREATED
| SEC_READONLY
);
10327 rtproc_sec
= bfd_make_section_with_flags (abfd
,
10330 if (rtproc_sec
== NULL
10331 || ! bfd_set_section_alignment (abfd
, rtproc_sec
, 4))
10335 if (! mips_elf_create_procedure_table (mdebug_handle
, abfd
,
10341 /* Build the external symbol information. */
10344 einfo
.debug
= &debug
;
10346 einfo
.failed
= FALSE
;
10347 mips_elf_link_hash_traverse (mips_elf_hash_table (info
),
10348 mips_elf_output_extsym
, &einfo
);
10352 /* Set the size of the .mdebug section. */
10353 o
->size
= bfd_ecoff_debug_size (abfd
, &debug
, swap
);
10355 /* Skip this section later on (I don't think this currently
10356 matters, but someday it might). */
10357 o
->map_head
.link_order
= NULL
;
10362 if (strncmp (o
->name
, ".gptab.", sizeof ".gptab." - 1) == 0)
10364 const char *subname
;
10367 Elf32_External_gptab
*ext_tab
;
10370 /* The .gptab.sdata and .gptab.sbss sections hold
10371 information describing how the small data area would
10372 change depending upon the -G switch. These sections
10373 not used in executables files. */
10374 if (! info
->relocatable
)
10376 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
10378 asection
*input_section
;
10380 if (p
->type
!= bfd_indirect_link_order
)
10382 if (p
->type
== bfd_data_link_order
)
10387 input_section
= p
->u
.indirect
.section
;
10389 /* Hack: reset the SEC_HAS_CONTENTS flag so that
10390 elf_link_input_bfd ignores this section. */
10391 input_section
->flags
&= ~SEC_HAS_CONTENTS
;
10394 /* Skip this section later on (I don't think this
10395 currently matters, but someday it might). */
10396 o
->map_head
.link_order
= NULL
;
10398 /* Really remove the section. */
10399 bfd_section_list_remove (abfd
, o
);
10400 --abfd
->section_count
;
10405 /* There is one gptab for initialized data, and one for
10406 uninitialized data. */
10407 if (strcmp (o
->name
, ".gptab.sdata") == 0)
10408 gptab_data_sec
= o
;
10409 else if (strcmp (o
->name
, ".gptab.sbss") == 0)
10413 (*_bfd_error_handler
)
10414 (_("%s: illegal section name `%s'"),
10415 bfd_get_filename (abfd
), o
->name
);
10416 bfd_set_error (bfd_error_nonrepresentable_section
);
10420 /* The linker script always combines .gptab.data and
10421 .gptab.sdata into .gptab.sdata, and likewise for
10422 .gptab.bss and .gptab.sbss. It is possible that there is
10423 no .sdata or .sbss section in the output file, in which
10424 case we must change the name of the output section. */
10425 subname
= o
->name
+ sizeof ".gptab" - 1;
10426 if (bfd_get_section_by_name (abfd
, subname
) == NULL
)
10428 if (o
== gptab_data_sec
)
10429 o
->name
= ".gptab.data";
10431 o
->name
= ".gptab.bss";
10432 subname
= o
->name
+ sizeof ".gptab" - 1;
10433 BFD_ASSERT (bfd_get_section_by_name (abfd
, subname
) != NULL
);
10436 /* Set up the first entry. */
10438 amt
= c
* sizeof (Elf32_gptab
);
10439 tab
= bfd_malloc (amt
);
10442 tab
[0].gt_header
.gt_current_g_value
= elf_gp_size (abfd
);
10443 tab
[0].gt_header
.gt_unused
= 0;
10445 /* Combine the input sections. */
10446 for (p
= o
->map_head
.link_order
; p
!= NULL
; p
= p
->next
)
10448 asection
*input_section
;
10450 bfd_size_type size
;
10451 unsigned long last
;
10452 bfd_size_type gpentry
;
10454 if (p
->type
!= bfd_indirect_link_order
)
10456 if (p
->type
== bfd_data_link_order
)
10461 input_section
= p
->u
.indirect
.section
;
10462 input_bfd
= input_section
->owner
;
10464 /* Combine the gptab entries for this input section one
10465 by one. We know that the input gptab entries are
10466 sorted by ascending -G value. */
10467 size
= input_section
->size
;
10469 for (gpentry
= sizeof (Elf32_External_gptab
);
10471 gpentry
+= sizeof (Elf32_External_gptab
))
10473 Elf32_External_gptab ext_gptab
;
10474 Elf32_gptab int_gptab
;
10480 if (! (bfd_get_section_contents
10481 (input_bfd
, input_section
, &ext_gptab
, gpentry
,
10482 sizeof (Elf32_External_gptab
))))
10488 bfd_mips_elf32_swap_gptab_in (input_bfd
, &ext_gptab
,
10490 val
= int_gptab
.gt_entry
.gt_g_value
;
10491 add
= int_gptab
.gt_entry
.gt_bytes
- last
;
10494 for (look
= 1; look
< c
; look
++)
10496 if (tab
[look
].gt_entry
.gt_g_value
>= val
)
10497 tab
[look
].gt_entry
.gt_bytes
+= add
;
10499 if (tab
[look
].gt_entry
.gt_g_value
== val
)
10505 Elf32_gptab
*new_tab
;
10508 /* We need a new table entry. */
10509 amt
= (bfd_size_type
) (c
+ 1) * sizeof (Elf32_gptab
);
10510 new_tab
= bfd_realloc (tab
, amt
);
10511 if (new_tab
== NULL
)
10517 tab
[c
].gt_entry
.gt_g_value
= val
;
10518 tab
[c
].gt_entry
.gt_bytes
= add
;
10520 /* Merge in the size for the next smallest -G
10521 value, since that will be implied by this new
10524 for (look
= 1; look
< c
; look
++)
10526 if (tab
[look
].gt_entry
.gt_g_value
< val
10528 || (tab
[look
].gt_entry
.gt_g_value
10529 > tab
[max
].gt_entry
.gt_g_value
)))
10533 tab
[c
].gt_entry
.gt_bytes
+=
10534 tab
[max
].gt_entry
.gt_bytes
;
10539 last
= int_gptab
.gt_entry
.gt_bytes
;
10542 /* Hack: reset the SEC_HAS_CONTENTS flag so that
10543 elf_link_input_bfd ignores this section. */
10544 input_section
->flags
&= ~SEC_HAS_CONTENTS
;
10547 /* The table must be sorted by -G value. */
10549 qsort (tab
+ 1, c
- 1, sizeof (tab
[0]), gptab_compare
);
10551 /* Swap out the table. */
10552 amt
= (bfd_size_type
) c
* sizeof (Elf32_External_gptab
);
10553 ext_tab
= bfd_alloc (abfd
, amt
);
10554 if (ext_tab
== NULL
)
10560 for (j
= 0; j
< c
; j
++)
10561 bfd_mips_elf32_swap_gptab_out (abfd
, tab
+ j
, ext_tab
+ j
);
10564 o
->size
= c
* sizeof (Elf32_External_gptab
);
10565 o
->contents
= (bfd_byte
*) ext_tab
;
10567 /* Skip this section later on (I don't think this currently
10568 matters, but someday it might). */
10569 o
->map_head
.link_order
= NULL
;
10573 /* Invoke the regular ELF backend linker to do all the work. */
10574 if (!bfd_elf_final_link (abfd
, info
))
10577 /* Now write out the computed sections. */
10579 if (reginfo_sec
!= NULL
)
10581 Elf32_External_RegInfo ext
;
10583 bfd_mips_elf32_swap_reginfo_out (abfd
, ®info
, &ext
);
10584 if (! bfd_set_section_contents (abfd
, reginfo_sec
, &ext
, 0, sizeof ext
))
10588 if (mdebug_sec
!= NULL
)
10590 BFD_ASSERT (abfd
->output_has_begun
);
10591 if (! bfd_ecoff_write_accumulated_debug (mdebug_handle
, abfd
, &debug
,
10593 mdebug_sec
->filepos
))
10596 bfd_ecoff_debug_free (mdebug_handle
, abfd
, &debug
, swap
, info
);
10599 if (gptab_data_sec
!= NULL
)
10601 if (! bfd_set_section_contents (abfd
, gptab_data_sec
,
10602 gptab_data_sec
->contents
,
10603 0, gptab_data_sec
->size
))
10607 if (gptab_bss_sec
!= NULL
)
10609 if (! bfd_set_section_contents (abfd
, gptab_bss_sec
,
10610 gptab_bss_sec
->contents
,
10611 0, gptab_bss_sec
->size
))
10615 if (SGI_COMPAT (abfd
))
10617 rtproc_sec
= bfd_get_section_by_name (abfd
, ".rtproc");
10618 if (rtproc_sec
!= NULL
)
10620 if (! bfd_set_section_contents (abfd
, rtproc_sec
,
10621 rtproc_sec
->contents
,
10622 0, rtproc_sec
->size
))
10630 /* Structure for saying that BFD machine EXTENSION extends BASE. */
10632 struct mips_mach_extension
{
10633 unsigned long extension
, base
;
10637 /* An array describing how BFD machines relate to one another. The entries
10638 are ordered topologically with MIPS I extensions listed last. */
10640 static const struct mips_mach_extension mips_mach_extensions
[] = {
10641 /* MIPS64 extensions. */
10642 { bfd_mach_mipsisa64r2
, bfd_mach_mipsisa64
},
10643 { bfd_mach_mips_sb1
, bfd_mach_mipsisa64
},
10645 /* MIPS V extensions. */
10646 { bfd_mach_mipsisa64
, bfd_mach_mips5
},
10648 /* R10000 extensions. */
10649 { bfd_mach_mips12000
, bfd_mach_mips10000
},
10651 /* R5000 extensions. Note: the vr5500 ISA is an extension of the core
10652 vr5400 ISA, but doesn't include the multimedia stuff. It seems
10653 better to allow vr5400 and vr5500 code to be merged anyway, since
10654 many libraries will just use the core ISA. Perhaps we could add
10655 some sort of ASE flag if this ever proves a problem. */
10656 { bfd_mach_mips5500
, bfd_mach_mips5400
},
10657 { bfd_mach_mips5400
, bfd_mach_mips5000
},
10659 /* MIPS IV extensions. */
10660 { bfd_mach_mips5
, bfd_mach_mips8000
},
10661 { bfd_mach_mips10000
, bfd_mach_mips8000
},
10662 { bfd_mach_mips5000
, bfd_mach_mips8000
},
10663 { bfd_mach_mips7000
, bfd_mach_mips8000
},
10664 { bfd_mach_mips9000
, bfd_mach_mips8000
},
10666 /* VR4100 extensions. */
10667 { bfd_mach_mips4120
, bfd_mach_mips4100
},
10668 { bfd_mach_mips4111
, bfd_mach_mips4100
},
10670 /* MIPS III extensions. */
10671 { bfd_mach_mips8000
, bfd_mach_mips4000
},
10672 { bfd_mach_mips4650
, bfd_mach_mips4000
},
10673 { bfd_mach_mips4600
, bfd_mach_mips4000
},
10674 { bfd_mach_mips4400
, bfd_mach_mips4000
},
10675 { bfd_mach_mips4300
, bfd_mach_mips4000
},
10676 { bfd_mach_mips4100
, bfd_mach_mips4000
},
10677 { bfd_mach_mips4010
, bfd_mach_mips4000
},
10679 /* MIPS32 extensions. */
10680 { bfd_mach_mipsisa32r2
, bfd_mach_mipsisa32
},
10682 /* MIPS II extensions. */
10683 { bfd_mach_mips4000
, bfd_mach_mips6000
},
10684 { bfd_mach_mipsisa32
, bfd_mach_mips6000
},
10686 /* MIPS I extensions. */
10687 { bfd_mach_mips6000
, bfd_mach_mips3000
},
10688 { bfd_mach_mips3900
, bfd_mach_mips3000
}
10692 /* Return true if bfd machine EXTENSION is an extension of machine BASE. */
10695 mips_mach_extends_p (unsigned long base
, unsigned long extension
)
10699 if (extension
== base
)
10702 if (base
== bfd_mach_mipsisa32
10703 && mips_mach_extends_p (bfd_mach_mipsisa64
, extension
))
10706 if (base
== bfd_mach_mipsisa32r2
10707 && mips_mach_extends_p (bfd_mach_mipsisa64r2
, extension
))
10710 for (i
= 0; i
< ARRAY_SIZE (mips_mach_extensions
); i
++)
10711 if (extension
== mips_mach_extensions
[i
].extension
)
10713 extension
= mips_mach_extensions
[i
].base
;
10714 if (extension
== base
)
10722 /* Return true if the given ELF header flags describe a 32-bit binary. */
10725 mips_32bit_flags_p (flagword flags
)
10727 return ((flags
& EF_MIPS_32BITMODE
) != 0
10728 || (flags
& EF_MIPS_ABI
) == E_MIPS_ABI_O32
10729 || (flags
& EF_MIPS_ABI
) == E_MIPS_ABI_EABI32
10730 || (flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_1
10731 || (flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_2
10732 || (flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_32
10733 || (flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_32R2
);
10737 /* Merge backend specific data from an object file to the output
10738 object file when linking. */
10741 _bfd_mips_elf_merge_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
10743 flagword old_flags
;
10744 flagword new_flags
;
10746 bfd_boolean null_input_bfd
= TRUE
;
10749 /* Check if we have the same endianess */
10750 if (! _bfd_generic_verify_endian_match (ibfd
, obfd
))
10752 (*_bfd_error_handler
)
10753 (_("%B: endianness incompatible with that of the selected emulation"),
10758 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
10759 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
10762 if (strcmp (bfd_get_target (ibfd
), bfd_get_target (obfd
)) != 0)
10764 (*_bfd_error_handler
)
10765 (_("%B: ABI is incompatible with that of the selected emulation"),
10770 new_flags
= elf_elfheader (ibfd
)->e_flags
;
10771 elf_elfheader (obfd
)->e_flags
|= new_flags
& EF_MIPS_NOREORDER
;
10772 old_flags
= elf_elfheader (obfd
)->e_flags
;
10774 if (! elf_flags_init (obfd
))
10776 elf_flags_init (obfd
) = TRUE
;
10777 elf_elfheader (obfd
)->e_flags
= new_flags
;
10778 elf_elfheader (obfd
)->e_ident
[EI_CLASS
]
10779 = elf_elfheader (ibfd
)->e_ident
[EI_CLASS
];
10781 if (bfd_get_arch (obfd
) == bfd_get_arch (ibfd
)
10782 && bfd_get_arch_info (obfd
)->the_default
)
10784 if (! bfd_set_arch_mach (obfd
, bfd_get_arch (ibfd
),
10785 bfd_get_mach (ibfd
)))
10792 /* Check flag compatibility. */
10794 new_flags
&= ~EF_MIPS_NOREORDER
;
10795 old_flags
&= ~EF_MIPS_NOREORDER
;
10797 /* Some IRIX 6 BSD-compatibility objects have this bit set. It
10798 doesn't seem to matter. */
10799 new_flags
&= ~EF_MIPS_XGOT
;
10800 old_flags
&= ~EF_MIPS_XGOT
;
10802 /* MIPSpro generates ucode info in n64 objects. Again, we should
10803 just be able to ignore this. */
10804 new_flags
&= ~EF_MIPS_UCODE
;
10805 old_flags
&= ~EF_MIPS_UCODE
;
10807 /* Don't care about the PIC flags from dynamic objects; they are
10809 if ((new_flags
& (EF_MIPS_PIC
| EF_MIPS_CPIC
)) != 0
10810 && (ibfd
->flags
& DYNAMIC
) != 0)
10811 new_flags
&= ~ (EF_MIPS_PIC
| EF_MIPS_CPIC
);
10813 if (new_flags
== old_flags
)
10816 /* Check to see if the input BFD actually contains any sections.
10817 If not, its flags may not have been initialised either, but it cannot
10818 actually cause any incompatibility. */
10819 for (sec
= ibfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
10821 /* Ignore synthetic sections and empty .text, .data and .bss sections
10822 which are automatically generated by gas. */
10823 if (strcmp (sec
->name
, ".reginfo")
10824 && strcmp (sec
->name
, ".mdebug")
10826 || (strcmp (sec
->name
, ".text")
10827 && strcmp (sec
->name
, ".data")
10828 && strcmp (sec
->name
, ".bss"))))
10830 null_input_bfd
= FALSE
;
10834 if (null_input_bfd
)
10839 if (((new_flags
& (EF_MIPS_PIC
| EF_MIPS_CPIC
)) != 0)
10840 != ((old_flags
& (EF_MIPS_PIC
| EF_MIPS_CPIC
)) != 0))
10842 (*_bfd_error_handler
)
10843 (_("%B: warning: linking PIC files with non-PIC files"),
10848 if (new_flags
& (EF_MIPS_PIC
| EF_MIPS_CPIC
))
10849 elf_elfheader (obfd
)->e_flags
|= EF_MIPS_CPIC
;
10850 if (! (new_flags
& EF_MIPS_PIC
))
10851 elf_elfheader (obfd
)->e_flags
&= ~EF_MIPS_PIC
;
10853 new_flags
&= ~ (EF_MIPS_PIC
| EF_MIPS_CPIC
);
10854 old_flags
&= ~ (EF_MIPS_PIC
| EF_MIPS_CPIC
);
10856 /* Compare the ISAs. */
10857 if (mips_32bit_flags_p (old_flags
) != mips_32bit_flags_p (new_flags
))
10859 (*_bfd_error_handler
)
10860 (_("%B: linking 32-bit code with 64-bit code"),
10864 else if (!mips_mach_extends_p (bfd_get_mach (ibfd
), bfd_get_mach (obfd
)))
10866 /* OBFD's ISA isn't the same as, or an extension of, IBFD's. */
10867 if (mips_mach_extends_p (bfd_get_mach (obfd
), bfd_get_mach (ibfd
)))
10869 /* Copy the architecture info from IBFD to OBFD. Also copy
10870 the 32-bit flag (if set) so that we continue to recognise
10871 OBFD as a 32-bit binary. */
10872 bfd_set_arch_info (obfd
, bfd_get_arch_info (ibfd
));
10873 elf_elfheader (obfd
)->e_flags
&= ~(EF_MIPS_ARCH
| EF_MIPS_MACH
);
10874 elf_elfheader (obfd
)->e_flags
10875 |= new_flags
& (EF_MIPS_ARCH
| EF_MIPS_MACH
| EF_MIPS_32BITMODE
);
10877 /* Copy across the ABI flags if OBFD doesn't use them
10878 and if that was what caused us to treat IBFD as 32-bit. */
10879 if ((old_flags
& EF_MIPS_ABI
) == 0
10880 && mips_32bit_flags_p (new_flags
)
10881 && !mips_32bit_flags_p (new_flags
& ~EF_MIPS_ABI
))
10882 elf_elfheader (obfd
)->e_flags
|= new_flags
& EF_MIPS_ABI
;
10886 /* The ISAs aren't compatible. */
10887 (*_bfd_error_handler
)
10888 (_("%B: linking %s module with previous %s modules"),
10890 bfd_printable_name (ibfd
),
10891 bfd_printable_name (obfd
));
10896 new_flags
&= ~(EF_MIPS_ARCH
| EF_MIPS_MACH
| EF_MIPS_32BITMODE
);
10897 old_flags
&= ~(EF_MIPS_ARCH
| EF_MIPS_MACH
| EF_MIPS_32BITMODE
);
10899 /* Compare ABIs. The 64-bit ABI does not use EF_MIPS_ABI. But, it
10900 does set EI_CLASS differently from any 32-bit ABI. */
10901 if ((new_flags
& EF_MIPS_ABI
) != (old_flags
& EF_MIPS_ABI
)
10902 || (elf_elfheader (ibfd
)->e_ident
[EI_CLASS
]
10903 != elf_elfheader (obfd
)->e_ident
[EI_CLASS
]))
10905 /* Only error if both are set (to different values). */
10906 if (((new_flags
& EF_MIPS_ABI
) && (old_flags
& EF_MIPS_ABI
))
10907 || (elf_elfheader (ibfd
)->e_ident
[EI_CLASS
]
10908 != elf_elfheader (obfd
)->e_ident
[EI_CLASS
]))
10910 (*_bfd_error_handler
)
10911 (_("%B: ABI mismatch: linking %s module with previous %s modules"),
10913 elf_mips_abi_name (ibfd
),
10914 elf_mips_abi_name (obfd
));
10917 new_flags
&= ~EF_MIPS_ABI
;
10918 old_flags
&= ~EF_MIPS_ABI
;
10921 /* For now, allow arbitrary mixing of ASEs (retain the union). */
10922 if ((new_flags
& EF_MIPS_ARCH_ASE
) != (old_flags
& EF_MIPS_ARCH_ASE
))
10924 elf_elfheader (obfd
)->e_flags
|= new_flags
& EF_MIPS_ARCH_ASE
;
10926 new_flags
&= ~ EF_MIPS_ARCH_ASE
;
10927 old_flags
&= ~ EF_MIPS_ARCH_ASE
;
10930 /* Warn about any other mismatches */
10931 if (new_flags
!= old_flags
)
10933 (*_bfd_error_handler
)
10934 (_("%B: uses different e_flags (0x%lx) fields than previous modules (0x%lx)"),
10935 ibfd
, (unsigned long) new_flags
,
10936 (unsigned long) old_flags
);
10942 bfd_set_error (bfd_error_bad_value
);
10949 /* Function to keep MIPS specific file flags like as EF_MIPS_PIC. */
10952 _bfd_mips_elf_set_private_flags (bfd
*abfd
, flagword flags
)
10954 BFD_ASSERT (!elf_flags_init (abfd
)
10955 || elf_elfheader (abfd
)->e_flags
== flags
);
10957 elf_elfheader (abfd
)->e_flags
= flags
;
10958 elf_flags_init (abfd
) = TRUE
;
10963 _bfd_mips_elf_print_private_bfd_data (bfd
*abfd
, void *ptr
)
10967 BFD_ASSERT (abfd
!= NULL
&& ptr
!= NULL
);
10969 /* Print normal ELF private data. */
10970 _bfd_elf_print_private_bfd_data (abfd
, ptr
);
10972 /* xgettext:c-format */
10973 fprintf (file
, _("private flags = %lx:"), elf_elfheader (abfd
)->e_flags
);
10975 if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_O32
)
10976 fprintf (file
, _(" [abi=O32]"));
10977 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_O64
)
10978 fprintf (file
, _(" [abi=O64]"));
10979 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_EABI32
)
10980 fprintf (file
, _(" [abi=EABI32]"));
10981 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_EABI64
)
10982 fprintf (file
, _(" [abi=EABI64]"));
10983 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ABI
))
10984 fprintf (file
, _(" [abi unknown]"));
10985 else if (ABI_N32_P (abfd
))
10986 fprintf (file
, _(" [abi=N32]"));
10987 else if (ABI_64_P (abfd
))
10988 fprintf (file
, _(" [abi=64]"));
10990 fprintf (file
, _(" [no abi set]"));
10992 if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_1
)
10993 fprintf (file
, _(" [mips1]"));
10994 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_2
)
10995 fprintf (file
, _(" [mips2]"));
10996 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_3
)
10997 fprintf (file
, _(" [mips3]"));
10998 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_4
)
10999 fprintf (file
, _(" [mips4]"));
11000 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_5
)
11001 fprintf (file
, _(" [mips5]"));
11002 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_32
)
11003 fprintf (file
, _(" [mips32]"));
11004 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_64
)
11005 fprintf (file
, _(" [mips64]"));
11006 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_32R2
)
11007 fprintf (file
, _(" [mips32r2]"));
11008 else if ((elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH
) == E_MIPS_ARCH_64R2
)
11009 fprintf (file
, _(" [mips64r2]"));
11011 fprintf (file
, _(" [unknown ISA]"));
11013 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH_ASE_MDMX
)
11014 fprintf (file
, _(" [mdmx]"));
11016 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_ARCH_ASE_M16
)
11017 fprintf (file
, _(" [mips16]"));
11019 if (elf_elfheader (abfd
)->e_flags
& EF_MIPS_32BITMODE
)
11020 fprintf (file
, _(" [32bitmode]"));
11022 fprintf (file
, _(" [not 32bitmode]"));
11024 fputc ('\n', file
);
11029 const struct bfd_elf_special_section _bfd_mips_elf_special_sections
[] =
11031 { ".lit4", 5, 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_MIPS_GPREL
},
11032 { ".lit8", 5, 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_MIPS_GPREL
},
11033 { ".mdebug", 7, 0, SHT_MIPS_DEBUG
, 0 },
11034 { ".sbss", 5, -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_MIPS_GPREL
},
11035 { ".sdata", 6, -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_MIPS_GPREL
},
11036 { ".ucode", 6, 0, SHT_MIPS_UCODE
, 0 },
11037 { NULL
, 0, 0, 0, 0 }
11040 /* Ensure that the STO_OPTIONAL flag is copied into h->other,
11041 even if this is not a defintion of the symbol. */
11043 _bfd_mips_elf_merge_symbol_attribute (struct elf_link_hash_entry
*h
,
11044 const Elf_Internal_Sym
*isym
,
11045 bfd_boolean definition
,
11046 bfd_boolean dynamic ATTRIBUTE_UNUSED
)
11049 && ELF_MIPS_IS_OPTIONAL (isym
->st_other
))
11050 h
->other
|= STO_OPTIONAL
;
11053 /* Decide whether an undefined symbol is special and can be ignored.
11054 This is the case for OPTIONAL symbols on IRIX. */
11056 _bfd_mips_elf_ignore_undef_symbol (struct elf_link_hash_entry
*h
)
11058 return ELF_MIPS_IS_OPTIONAL (h
->other
) ? TRUE
: FALSE
;