2008-08-06 Cary Coutant <ccoutant@google.com>
[deliverable/binutils-gdb.git] / bfd / elfxx-mips.c
CommitLineData
b49e97c9 1/* MIPS-specific support for ELF
64543e1a 2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
6f179bd0 3 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
b49e97c9
TS
4
5 Most of the information added by Ian Lance Taylor, Cygnus Support,
6 <ian@cygnus.com>.
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>
11
ae9a127f 12 This file is part of BFD, the Binary File Descriptor library.
b49e97c9 13
ae9a127f
NC
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
cd123cb7 16 the Free Software Foundation; either version 3 of the License, or
ae9a127f 17 (at your option) any later version.
b49e97c9 18
ae9a127f
NC
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
b49e97c9 23
ae9a127f
NC
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
cd123cb7
NC
26 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
27 MA 02110-1301, USA. */
28
b49e97c9
TS
29
30/* This file handles functionality common to the different MIPS ABI's. */
31
b49e97c9 32#include "sysdep.h"
3db64b00 33#include "bfd.h"
b49e97c9 34#include "libbfd.h"
64543e1a 35#include "libiberty.h"
b49e97c9
TS
36#include "elf-bfd.h"
37#include "elfxx-mips.h"
38#include "elf/mips.h"
0a44bf69 39#include "elf-vxworks.h"
b49e97c9
TS
40
41/* Get the ECOFF swapping routines. */
42#include "coff/sym.h"
43#include "coff/symconst.h"
44#include "coff/ecoff.h"
45#include "coff/mips.h"
46
b15e6682
AO
47#include "hashtab.h"
48
ead49a57
RS
49/* This structure is used to hold information about one GOT entry.
50 There are three types of entry:
51
52 (1) absolute addresses
53 (abfd == NULL)
54 (2) SYMBOL + OFFSET addresses, where SYMBOL is local to an input bfd
55 (abfd != NULL, symndx >= 0)
56 (3) global and forced-local symbols
57 (abfd != NULL, symndx == -1)
58
59 Type (3) entries are treated differently for different types of GOT.
60 In the "master" GOT -- i.e. the one that describes every GOT
61 reference needed in the link -- the mips_got_entry is keyed on both
62 the symbol and the input bfd that references it. If it turns out
63 that we need multiple GOTs, we can then use this information to
64 create separate GOTs for each input bfd.
65
66 However, we want each of these separate GOTs to have at most one
67 entry for a given symbol, so their type (3) entries are keyed only
68 on the symbol. The input bfd given by the "abfd" field is somewhat
69 arbitrary in this case.
70
71 This means that when there are multiple GOTs, each GOT has a unique
72 mips_got_entry for every symbol within it. We can therefore use the
73 mips_got_entry fields (tls_type and gotidx) to track the symbol's
74 GOT index.
75
76 However, if it turns out that we need only a single GOT, we continue
77 to use the master GOT to describe it. There may therefore be several
78 mips_got_entries for the same symbol, each with a different input bfd.
79 We want to make sure that each symbol gets a unique GOT entry, so when
80 there's a single GOT, we use the symbol's hash entry, not the
81 mips_got_entry fields, to track a symbol's GOT index. */
b15e6682
AO
82struct mips_got_entry
83{
84 /* The input bfd in which the symbol is defined. */
85 bfd *abfd;
f4416af6
AO
86 /* The index of the symbol, as stored in the relocation r_info, if
87 we have a local symbol; -1 otherwise. */
88 long symndx;
89 union
90 {
91 /* If abfd == NULL, an address that must be stored in the got. */
92 bfd_vma address;
93 /* If abfd != NULL && symndx != -1, the addend of the relocation
94 that should be added to the symbol value. */
95 bfd_vma addend;
96 /* If abfd != NULL && symndx == -1, the hash table entry
97 corresponding to a global symbol in the got (or, local, if
98 h->forced_local). */
99 struct mips_elf_link_hash_entry *h;
100 } d;
0f20cc35
DJ
101
102 /* The TLS types included in this GOT entry (specifically, GD and
103 IE). The GD and IE flags can be added as we encounter new
104 relocations. LDM can also be set; it will always be alone, not
105 combined with any GD or IE flags. An LDM GOT entry will be
106 a local symbol entry with r_symndx == 0. */
107 unsigned char tls_type;
108
b15e6682 109 /* The offset from the beginning of the .got section to the entry
f4416af6
AO
110 corresponding to this symbol+addend. If it's a global symbol
111 whose offset is yet to be decided, it's going to be -1. */
112 long gotidx;
b15e6682
AO
113};
114
c224138d
RS
115/* This structure describes a range of addends: [MIN_ADDEND, MAX_ADDEND].
116 The structures form a non-overlapping list that is sorted by increasing
117 MIN_ADDEND. */
118struct mips_got_page_range
119{
120 struct mips_got_page_range *next;
121 bfd_signed_vma min_addend;
122 bfd_signed_vma max_addend;
123};
124
125/* This structure describes the range of addends that are applied to page
126 relocations against a given symbol. */
127struct mips_got_page_entry
128{
129 /* The input bfd in which the symbol is defined. */
130 bfd *abfd;
131 /* The index of the symbol, as stored in the relocation r_info. */
132 long symndx;
133 /* The ranges for this page entry. */
134 struct mips_got_page_range *ranges;
135 /* The maximum number of page entries needed for RANGES. */
136 bfd_vma num_pages;
137};
138
f0abc2a1 139/* This structure is used to hold .got information when linking. */
b49e97c9
TS
140
141struct mips_got_info
142{
143 /* The global symbol in the GOT with the lowest index in the dynamic
144 symbol table. */
145 struct elf_link_hash_entry *global_gotsym;
146 /* The number of global .got entries. */
147 unsigned int global_gotno;
0f20cc35
DJ
148 /* The number of .got slots used for TLS. */
149 unsigned int tls_gotno;
150 /* The first unused TLS .got entry. Used only during
151 mips_elf_initialize_tls_index. */
152 unsigned int tls_assigned_gotno;
c224138d 153 /* The number of local .got entries, eventually including page entries. */
b49e97c9 154 unsigned int local_gotno;
c224138d
RS
155 /* The maximum number of page entries needed. */
156 unsigned int page_gotno;
b49e97c9
TS
157 /* The number of local .got entries we have used. */
158 unsigned int assigned_gotno;
b15e6682
AO
159 /* A hash table holding members of the got. */
160 struct htab *got_entries;
c224138d
RS
161 /* A hash table of mips_got_page_entry structures. */
162 struct htab *got_page_entries;
f4416af6
AO
163 /* A hash table mapping input bfds to other mips_got_info. NULL
164 unless multi-got was necessary. */
165 struct htab *bfd2got;
166 /* In multi-got links, a pointer to the next got (err, rather, most
167 of the time, it points to the previous got). */
168 struct mips_got_info *next;
0f20cc35
DJ
169 /* This is the GOT index of the TLS LDM entry for the GOT, MINUS_ONE
170 for none, or MINUS_TWO for not yet assigned. This is needed
171 because a single-GOT link may have multiple hash table entries
172 for the LDM. It does not get initialized in multi-GOT mode. */
173 bfd_vma tls_ldm_offset;
f4416af6
AO
174};
175
176/* Map an input bfd to a got in a multi-got link. */
177
178struct mips_elf_bfd2got_hash {
179 bfd *bfd;
180 struct mips_got_info *g;
181};
182
183/* Structure passed when traversing the bfd2got hash table, used to
184 create and merge bfd's gots. */
185
186struct mips_elf_got_per_bfd_arg
187{
188 /* A hashtable that maps bfds to gots. */
189 htab_t bfd2got;
190 /* The output bfd. */
191 bfd *obfd;
192 /* The link information. */
193 struct bfd_link_info *info;
194 /* A pointer to the primary got, i.e., the one that's going to get
195 the implicit relocations from DT_MIPS_LOCAL_GOTNO and
196 DT_MIPS_GOTSYM. */
197 struct mips_got_info *primary;
198 /* A non-primary got we're trying to merge with other input bfd's
199 gots. */
200 struct mips_got_info *current;
201 /* The maximum number of got entries that can be addressed with a
202 16-bit offset. */
203 unsigned int max_count;
c224138d
RS
204 /* The maximum number of page entries needed by each got. */
205 unsigned int max_pages;
0f20cc35
DJ
206 /* The total number of global entries which will live in the
207 primary got and be automatically relocated. This includes
208 those not referenced by the primary GOT but included in
209 the "master" GOT. */
210 unsigned int global_count;
f4416af6
AO
211};
212
213/* Another structure used to pass arguments for got entries traversal. */
214
215struct mips_elf_set_global_got_offset_arg
216{
217 struct mips_got_info *g;
218 int value;
219 unsigned int needed_relocs;
220 struct bfd_link_info *info;
b49e97c9
TS
221};
222
0f20cc35
DJ
223/* A structure used to count TLS relocations or GOT entries, for GOT
224 entry or ELF symbol table traversal. */
225
226struct mips_elf_count_tls_arg
227{
228 struct bfd_link_info *info;
229 unsigned int needed;
230};
231
f0abc2a1
AM
232struct _mips_elf_section_data
233{
234 struct bfd_elf_section_data elf;
235 union
236 {
f0abc2a1
AM
237 bfd_byte *tdata;
238 } u;
239};
240
241#define mips_elf_section_data(sec) \
68bfbfcc 242 ((struct _mips_elf_section_data *) elf_section_data (sec))
f0abc2a1 243
b49e97c9
TS
244/* This structure is passed to mips_elf_sort_hash_table_f when sorting
245 the dynamic symbols. */
246
247struct mips_elf_hash_sort_data
248{
249 /* The symbol in the global GOT with the lowest dynamic symbol table
250 index. */
251 struct elf_link_hash_entry *low;
0f20cc35
DJ
252 /* The least dynamic symbol table index corresponding to a non-TLS
253 symbol with a GOT entry. */
b49e97c9 254 long min_got_dynindx;
f4416af6
AO
255 /* The greatest dynamic symbol table index corresponding to a symbol
256 with a GOT entry that is not referenced (e.g., a dynamic symbol
9e4aeb93 257 with dynamic relocations pointing to it from non-primary GOTs). */
f4416af6 258 long max_unref_got_dynindx;
b49e97c9
TS
259 /* The greatest dynamic symbol table index not corresponding to a
260 symbol without a GOT entry. */
261 long max_non_got_dynindx;
262};
263
264/* The MIPS ELF linker needs additional information for each symbol in
265 the global hash table. */
266
267struct mips_elf_link_hash_entry
268{
269 struct elf_link_hash_entry root;
270
271 /* External symbol information. */
272 EXTR esym;
273
274 /* Number of R_MIPS_32, R_MIPS_REL32, or R_MIPS_64 relocs against
275 this symbol. */
276 unsigned int possibly_dynamic_relocs;
277
b49e97c9
TS
278 /* If there is a stub that 32 bit functions should use to call this
279 16 bit function, this points to the section containing the stub. */
280 asection *fn_stub;
281
b49e97c9
TS
282 /* If there is a stub that 16 bit functions should use to call this
283 32 bit function, this points to the section containing the stub. */
284 asection *call_stub;
285
286 /* This is like the call_stub field, but it is used if the function
287 being called returns a floating point value. */
288 asection *call_fp_stub;
7c5fcef7 289
0f20cc35
DJ
290#define GOT_NORMAL 0
291#define GOT_TLS_GD 1
292#define GOT_TLS_LDM 2
293#define GOT_TLS_IE 4
294#define GOT_TLS_OFFSET_DONE 0x40
295#define GOT_TLS_DONE 0x80
296 unsigned char tls_type;
71782a75 297
0f20cc35
DJ
298 /* This is only used in single-GOT mode; in multi-GOT mode there
299 is one mips_got_entry per GOT entry, so the offset is stored
300 there. In single-GOT mode there may be many mips_got_entry
301 structures all referring to the same GOT slot. It might be
302 possible to use root.got.offset instead, but that field is
303 overloaded already. */
304 bfd_vma tls_got_offset;
71782a75
RS
305
306 /* True if one of the relocations described by possibly_dynamic_relocs
307 is against a readonly section. */
308 unsigned int readonly_reloc : 1;
309
310 /* True if we must not create a .MIPS.stubs entry for this symbol.
311 This is set, for example, if there are relocations related to
312 taking the function's address, i.e. any but R_MIPS_CALL*16 ones.
313 See "MIPS ABI Supplement, 3rd Edition", p. 4-20. */
314 unsigned int no_fn_stub : 1;
315
316 /* Whether we need the fn_stub; this is true if this symbol appears
317 in any relocs other than a 16 bit call. */
318 unsigned int need_fn_stub : 1;
319
320 /* Are we forced local? This will only be set if we have converted
321 the initial global GOT entry to a local GOT entry. */
322 unsigned int forced_local : 1;
323
324 /* Are we referenced by some kind of relocation? */
325 unsigned int is_relocation_target : 1;
326
327 /* Are we referenced by branch relocations? */
328 unsigned int is_branch_target : 1;
b49e97c9
TS
329};
330
331/* MIPS ELF linker hash table. */
332
333struct mips_elf_link_hash_table
334{
335 struct elf_link_hash_table root;
336#if 0
337 /* We no longer use this. */
338 /* String section indices for the dynamic section symbols. */
339 bfd_size_type dynsym_sec_strindex[SIZEOF_MIPS_DYNSYM_SECNAMES];
340#endif
341 /* The number of .rtproc entries. */
342 bfd_size_type procedure_count;
343 /* The size of the .compact_rel section (if SGI_COMPAT). */
344 bfd_size_type compact_rel_size;
345 /* This flag indicates that the value of DT_MIPS_RLD_MAP dynamic
8dc1a139 346 entry is set to the address of __rld_obj_head as in IRIX5. */
b34976b6 347 bfd_boolean use_rld_obj_head;
b49e97c9
TS
348 /* This is the value of the __rld_map or __rld_obj_head symbol. */
349 bfd_vma rld_value;
350 /* This is set if we see any mips16 stub sections. */
b34976b6 351 bfd_boolean mips16_stubs_seen;
8275b357
RS
352 /* True if we've computed the size of the GOT. */
353 bfd_boolean computed_got_sizes;
0a44bf69
RS
354 /* True if we're generating code for VxWorks. */
355 bfd_boolean is_vxworks;
0e53d9da
AN
356 /* True if we already reported the small-data section overflow. */
357 bfd_boolean small_data_overflow_reported;
0a44bf69
RS
358 /* Shortcuts to some dynamic sections, or NULL if they are not
359 being used. */
360 asection *srelbss;
361 asection *sdynbss;
362 asection *srelplt;
363 asection *srelplt2;
364 asection *sgotplt;
365 asection *splt;
4e41d0d7 366 asection *sstubs;
a8028dd0
RS
367 asection *sgot;
368 /* The master GOT information. */
369 struct mips_got_info *got_info;
0a44bf69
RS
370 /* The size of the PLT header in bytes (VxWorks only). */
371 bfd_vma plt_header_size;
372 /* The size of a PLT entry in bytes (VxWorks only). */
373 bfd_vma plt_entry_size;
5108fc1b
RS
374 /* The size of a function stub entry in bytes. */
375 bfd_vma function_stub_size;
b49e97c9
TS
376};
377
0f20cc35
DJ
378#define TLS_RELOC_P(r_type) \
379 (r_type == R_MIPS_TLS_DTPMOD32 \
380 || r_type == R_MIPS_TLS_DTPMOD64 \
381 || r_type == R_MIPS_TLS_DTPREL32 \
382 || r_type == R_MIPS_TLS_DTPREL64 \
383 || r_type == R_MIPS_TLS_GD \
384 || r_type == R_MIPS_TLS_LDM \
385 || r_type == R_MIPS_TLS_DTPREL_HI16 \
386 || r_type == R_MIPS_TLS_DTPREL_LO16 \
387 || r_type == R_MIPS_TLS_GOTTPREL \
388 || r_type == R_MIPS_TLS_TPREL32 \
389 || r_type == R_MIPS_TLS_TPREL64 \
390 || r_type == R_MIPS_TLS_TPREL_HI16 \
391 || r_type == R_MIPS_TLS_TPREL_LO16)
392
b49e97c9
TS
393/* Structure used to pass information to mips_elf_output_extsym. */
394
395struct extsym_info
396{
9e4aeb93
RS
397 bfd *abfd;
398 struct bfd_link_info *info;
b49e97c9
TS
399 struct ecoff_debug_info *debug;
400 const struct ecoff_debug_swap *swap;
b34976b6 401 bfd_boolean failed;
b49e97c9
TS
402};
403
8dc1a139 404/* The names of the runtime procedure table symbols used on IRIX5. */
b49e97c9
TS
405
406static const char * const mips_elf_dynsym_rtproc_names[] =
407{
408 "_procedure_table",
409 "_procedure_string_table",
410 "_procedure_table_size",
411 NULL
412};
413
414/* These structures are used to generate the .compact_rel section on
8dc1a139 415 IRIX5. */
b49e97c9
TS
416
417typedef struct
418{
419 unsigned long id1; /* Always one? */
420 unsigned long num; /* Number of compact relocation entries. */
421 unsigned long id2; /* Always two? */
422 unsigned long offset; /* The file offset of the first relocation. */
423 unsigned long reserved0; /* Zero? */
424 unsigned long reserved1; /* Zero? */
425} Elf32_compact_rel;
426
427typedef struct
428{
429 bfd_byte id1[4];
430 bfd_byte num[4];
431 bfd_byte id2[4];
432 bfd_byte offset[4];
433 bfd_byte reserved0[4];
434 bfd_byte reserved1[4];
435} Elf32_External_compact_rel;
436
437typedef struct
438{
439 unsigned int ctype : 1; /* 1: long 0: short format. See below. */
440 unsigned int rtype : 4; /* Relocation types. See below. */
441 unsigned int dist2to : 8;
442 unsigned int relvaddr : 19; /* (VADDR - vaddr of the previous entry)/ 4 */
443 unsigned long konst; /* KONST field. See below. */
444 unsigned long vaddr; /* VADDR to be relocated. */
445} Elf32_crinfo;
446
447typedef struct
448{
449 unsigned int ctype : 1; /* 1: long 0: short format. See below. */
450 unsigned int rtype : 4; /* Relocation types. See below. */
451 unsigned int dist2to : 8;
452 unsigned int relvaddr : 19; /* (VADDR - vaddr of the previous entry)/ 4 */
453 unsigned long konst; /* KONST field. See below. */
454} Elf32_crinfo2;
455
456typedef struct
457{
458 bfd_byte info[4];
459 bfd_byte konst[4];
460 bfd_byte vaddr[4];
461} Elf32_External_crinfo;
462
463typedef struct
464{
465 bfd_byte info[4];
466 bfd_byte konst[4];
467} Elf32_External_crinfo2;
468
469/* These are the constants used to swap the bitfields in a crinfo. */
470
471#define CRINFO_CTYPE (0x1)
472#define CRINFO_CTYPE_SH (31)
473#define CRINFO_RTYPE (0xf)
474#define CRINFO_RTYPE_SH (27)
475#define CRINFO_DIST2TO (0xff)
476#define CRINFO_DIST2TO_SH (19)
477#define CRINFO_RELVADDR (0x7ffff)
478#define CRINFO_RELVADDR_SH (0)
479
480/* A compact relocation info has long (3 words) or short (2 words)
481 formats. A short format doesn't have VADDR field and relvaddr
482 fields contains ((VADDR - vaddr of the previous entry) >> 2). */
483#define CRF_MIPS_LONG 1
484#define CRF_MIPS_SHORT 0
485
486/* There are 4 types of compact relocation at least. The value KONST
487 has different meaning for each type:
488
489 (type) (konst)
490 CT_MIPS_REL32 Address in data
491 CT_MIPS_WORD Address in word (XXX)
492 CT_MIPS_GPHI_LO GP - vaddr
493 CT_MIPS_JMPAD Address to jump
494 */
495
496#define CRT_MIPS_REL32 0xa
497#define CRT_MIPS_WORD 0xb
498#define CRT_MIPS_GPHI_LO 0xc
499#define CRT_MIPS_JMPAD 0xd
500
501#define mips_elf_set_cr_format(x,format) ((x).ctype = (format))
502#define mips_elf_set_cr_type(x,type) ((x).rtype = (type))
503#define mips_elf_set_cr_dist2to(x,v) ((x).dist2to = (v))
504#define mips_elf_set_cr_relvaddr(x,d) ((x).relvaddr = (d)<<2)
505\f
506/* The structure of the runtime procedure descriptor created by the
507 loader for use by the static exception system. */
508
509typedef struct runtime_pdr {
ae9a127f
NC
510 bfd_vma adr; /* Memory address of start of procedure. */
511 long regmask; /* Save register mask. */
512 long regoffset; /* Save register offset. */
513 long fregmask; /* Save floating point register mask. */
514 long fregoffset; /* Save floating point register offset. */
515 long frameoffset; /* Frame size. */
516 short framereg; /* Frame pointer register. */
517 short pcreg; /* Offset or reg of return pc. */
518 long irpss; /* Index into the runtime string table. */
b49e97c9 519 long reserved;
ae9a127f 520 struct exception_info *exception_info;/* Pointer to exception array. */
b49e97c9
TS
521} RPDR, *pRPDR;
522#define cbRPDR sizeof (RPDR)
523#define rpdNil ((pRPDR) 0)
524\f
b15e6682 525static struct mips_got_entry *mips_elf_create_local_got_entry
a8028dd0
RS
526 (bfd *, struct bfd_link_info *, bfd *, bfd_vma, unsigned long,
527 struct mips_elf_link_hash_entry *, int);
b34976b6 528static bfd_boolean mips_elf_sort_hash_table_f
9719ad41 529 (struct mips_elf_link_hash_entry *, void *);
9719ad41
RS
530static bfd_vma mips_elf_high
531 (bfd_vma);
b34976b6 532static bfd_boolean mips_elf_create_dynamic_relocation
9719ad41
RS
533 (bfd *, struct bfd_link_info *, const Elf_Internal_Rela *,
534 struct mips_elf_link_hash_entry *, asection *, bfd_vma,
535 bfd_vma *, asection *);
9719ad41
RS
536static hashval_t mips_elf_got_entry_hash
537 (const void *);
f4416af6 538static bfd_vma mips_elf_adjust_gp
9719ad41 539 (bfd *, struct mips_got_info *, bfd *);
f4416af6 540static struct mips_got_info *mips_elf_got_for_ibfd
9719ad41 541 (struct mips_got_info *, bfd *);
f4416af6 542
b49e97c9
TS
543/* This will be used when we sort the dynamic relocation records. */
544static bfd *reldyn_sorting_bfd;
545
546/* Nonzero if ABFD is using the N32 ABI. */
b49e97c9
TS
547#define ABI_N32_P(abfd) \
548 ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI2) != 0)
549
4a14403c 550/* Nonzero if ABFD is using the N64 ABI. */
b49e97c9 551#define ABI_64_P(abfd) \
141ff970 552 (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64)
b49e97c9 553
4a14403c
TS
554/* Nonzero if ABFD is using NewABI conventions. */
555#define NEWABI_P(abfd) (ABI_N32_P (abfd) || ABI_64_P (abfd))
556
557/* The IRIX compatibility level we are striving for. */
b49e97c9
TS
558#define IRIX_COMPAT(abfd) \
559 (get_elf_backend_data (abfd)->elf_backend_mips_irix_compat (abfd))
560
b49e97c9
TS
561/* Whether we are trying to be compatible with IRIX at all. */
562#define SGI_COMPAT(abfd) \
563 (IRIX_COMPAT (abfd) != ict_none)
564
565/* The name of the options section. */
566#define MIPS_ELF_OPTIONS_SECTION_NAME(abfd) \
d80dcc6a 567 (NEWABI_P (abfd) ? ".MIPS.options" : ".options")
b49e97c9 568
cc2e31b9
RS
569/* True if NAME is the recognized name of any SHT_MIPS_OPTIONS section.
570 Some IRIX system files do not use MIPS_ELF_OPTIONS_SECTION_NAME. */
571#define MIPS_ELF_OPTIONS_SECTION_NAME_P(NAME) \
572 (strcmp (NAME, ".MIPS.options") == 0 || strcmp (NAME, ".options") == 0)
573
943284cc
DJ
574/* Whether the section is readonly. */
575#define MIPS_ELF_READONLY_SECTION(sec) \
576 ((sec->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY)) \
577 == (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
578
b49e97c9 579/* The name of the stub section. */
ca07892d 580#define MIPS_ELF_STUB_SECTION_NAME(abfd) ".MIPS.stubs"
b49e97c9
TS
581
582/* The size of an external REL relocation. */
583#define MIPS_ELF_REL_SIZE(abfd) \
584 (get_elf_backend_data (abfd)->s->sizeof_rel)
585
0a44bf69
RS
586/* The size of an external RELA relocation. */
587#define MIPS_ELF_RELA_SIZE(abfd) \
588 (get_elf_backend_data (abfd)->s->sizeof_rela)
589
b49e97c9
TS
590/* The size of an external dynamic table entry. */
591#define MIPS_ELF_DYN_SIZE(abfd) \
592 (get_elf_backend_data (abfd)->s->sizeof_dyn)
593
594/* The size of a GOT entry. */
595#define MIPS_ELF_GOT_SIZE(abfd) \
596 (get_elf_backend_data (abfd)->s->arch_size / 8)
597
598/* The size of a symbol-table entry. */
599#define MIPS_ELF_SYM_SIZE(abfd) \
600 (get_elf_backend_data (abfd)->s->sizeof_sym)
601
602/* The default alignment for sections, as a power of two. */
603#define MIPS_ELF_LOG_FILE_ALIGN(abfd) \
45d6a902 604 (get_elf_backend_data (abfd)->s->log_file_align)
b49e97c9
TS
605
606/* Get word-sized data. */
607#define MIPS_ELF_GET_WORD(abfd, ptr) \
608 (ABI_64_P (abfd) ? bfd_get_64 (abfd, ptr) : bfd_get_32 (abfd, ptr))
609
610/* Put out word-sized data. */
611#define MIPS_ELF_PUT_WORD(abfd, val, ptr) \
612 (ABI_64_P (abfd) \
613 ? bfd_put_64 (abfd, val, ptr) \
614 : bfd_put_32 (abfd, val, ptr))
615
616/* Add a dynamic symbol table-entry. */
9719ad41 617#define MIPS_ELF_ADD_DYNAMIC_ENTRY(info, tag, val) \
5a580b3a 618 _bfd_elf_add_dynamic_entry (info, tag, val)
b49e97c9
TS
619
620#define MIPS_ELF_RTYPE_TO_HOWTO(abfd, rtype, rela) \
621 (get_elf_backend_data (abfd)->elf_backend_mips_rtype_to_howto (rtype, rela))
622
4ffba85c
AO
623/* Determine whether the internal relocation of index REL_IDX is REL
624 (zero) or RELA (non-zero). The assumption is that, if there are
625 two relocation sections for this section, one of them is REL and
626 the other is RELA. If the index of the relocation we're testing is
627 in range for the first relocation section, check that the external
628 relocation size is that for RELA. It is also assumed that, if
629 rel_idx is not in range for the first section, and this first
630 section contains REL relocs, then the relocation is in the second
631 section, that is RELA. */
632#define MIPS_RELOC_RELA_P(abfd, sec, rel_idx) \
633 ((NUM_SHDR_ENTRIES (&elf_section_data (sec)->rel_hdr) \
634 * get_elf_backend_data (abfd)->s->int_rels_per_ext_rel \
635 > (bfd_vma)(rel_idx)) \
636 == (elf_section_data (sec)->rel_hdr.sh_entsize \
637 == (ABI_64_P (abfd) ? sizeof (Elf64_External_Rela) \
638 : sizeof (Elf32_External_Rela))))
639
0a44bf69
RS
640/* The name of the dynamic relocation section. */
641#define MIPS_ELF_REL_DYN_NAME(INFO) \
642 (mips_elf_hash_table (INFO)->is_vxworks ? ".rela.dyn" : ".rel.dyn")
643
b49e97c9
TS
644/* In case we're on a 32-bit machine, construct a 64-bit "-1" value
645 from smaller values. Start with zero, widen, *then* decrement. */
646#define MINUS_ONE (((bfd_vma)0) - 1)
c5ae1840 647#define MINUS_TWO (((bfd_vma)0) - 2)
b49e97c9
TS
648
649/* The number of local .got entries we reserve. */
0a44bf69
RS
650#define MIPS_RESERVED_GOTNO(INFO) \
651 (mips_elf_hash_table (INFO)->is_vxworks ? 3 : 2)
b49e97c9 652
51e38d68
RS
653/* The value to write into got[1] for SVR4 targets, to identify it is
654 a GNU object. The dynamic linker can then use got[1] to store the
655 module pointer. */
656#define MIPS_ELF_GNU_GOT1_MASK(abfd) \
657 ((bfd_vma) 1 << (ABI_64_P (abfd) ? 63 : 31))
658
f4416af6 659/* The offset of $gp from the beginning of the .got section. */
0a44bf69
RS
660#define ELF_MIPS_GP_OFFSET(INFO) \
661 (mips_elf_hash_table (INFO)->is_vxworks ? 0x0 : 0x7ff0)
f4416af6
AO
662
663/* The maximum size of the GOT for it to be addressable using 16-bit
664 offsets from $gp. */
0a44bf69 665#define MIPS_ELF_GOT_MAX_SIZE(INFO) (ELF_MIPS_GP_OFFSET (INFO) + 0x7fff)
f4416af6 666
6a691779 667/* Instructions which appear in a stub. */
3d6746ca
DD
668#define STUB_LW(abfd) \
669 ((ABI_64_P (abfd) \
670 ? 0xdf998010 /* ld t9,0x8010(gp) */ \
671 : 0x8f998010)) /* lw t9,0x8010(gp) */
672#define STUB_MOVE(abfd) \
673 ((ABI_64_P (abfd) \
674 ? 0x03e0782d /* daddu t7,ra */ \
675 : 0x03e07821)) /* addu t7,ra */
676#define STUB_LUI(VAL) (0x3c180000 + (VAL)) /* lui t8,VAL */
677#define STUB_JALR 0x0320f809 /* jalr t9,ra */
5108fc1b
RS
678#define STUB_ORI(VAL) (0x37180000 + (VAL)) /* ori t8,t8,VAL */
679#define STUB_LI16U(VAL) (0x34180000 + (VAL)) /* ori t8,zero,VAL unsigned */
3d6746ca
DD
680#define STUB_LI16S(abfd, VAL) \
681 ((ABI_64_P (abfd) \
682 ? (0x64180000 + (VAL)) /* daddiu t8,zero,VAL sign extended */ \
683 : (0x24180000 + (VAL)))) /* addiu t8,zero,VAL sign extended */
684
5108fc1b
RS
685#define MIPS_FUNCTION_STUB_NORMAL_SIZE 16
686#define MIPS_FUNCTION_STUB_BIG_SIZE 20
b49e97c9
TS
687
688/* The name of the dynamic interpreter. This is put in the .interp
689 section. */
690
691#define ELF_DYNAMIC_INTERPRETER(abfd) \
692 (ABI_N32_P (abfd) ? "/usr/lib32/libc.so.1" \
693 : ABI_64_P (abfd) ? "/usr/lib64/libc.so.1" \
694 : "/usr/lib/libc.so.1")
695
696#ifdef BFD64
ee6423ed
AO
697#define MNAME(bfd,pre,pos) \
698 (ABI_64_P (bfd) ? CONCAT4 (pre,64,_,pos) : CONCAT4 (pre,32,_,pos))
b49e97c9
TS
699#define ELF_R_SYM(bfd, i) \
700 (ABI_64_P (bfd) ? ELF64_R_SYM (i) : ELF32_R_SYM (i))
701#define ELF_R_TYPE(bfd, i) \
702 (ABI_64_P (bfd) ? ELF64_MIPS_R_TYPE (i) : ELF32_R_TYPE (i))
703#define ELF_R_INFO(bfd, s, t) \
704 (ABI_64_P (bfd) ? ELF64_R_INFO (s, t) : ELF32_R_INFO (s, t))
705#else
ee6423ed 706#define MNAME(bfd,pre,pos) CONCAT4 (pre,32,_,pos)
b49e97c9
TS
707#define ELF_R_SYM(bfd, i) \
708 (ELF32_R_SYM (i))
709#define ELF_R_TYPE(bfd, i) \
710 (ELF32_R_TYPE (i))
711#define ELF_R_INFO(bfd, s, t) \
712 (ELF32_R_INFO (s, t))
713#endif
714\f
715 /* The mips16 compiler uses a couple of special sections to handle
716 floating point arguments.
717
718 Section names that look like .mips16.fn.FNNAME contain stubs that
719 copy floating point arguments from the fp regs to the gp regs and
720 then jump to FNNAME. If any 32 bit function calls FNNAME, the
721 call should be redirected to the stub instead. If no 32 bit
722 function calls FNNAME, the stub should be discarded. We need to
723 consider any reference to the function, not just a call, because
724 if the address of the function is taken we will need the stub,
725 since the address might be passed to a 32 bit function.
726
727 Section names that look like .mips16.call.FNNAME contain stubs
728 that copy floating point arguments from the gp regs to the fp
729 regs and then jump to FNNAME. If FNNAME is a 32 bit function,
730 then any 16 bit function that calls FNNAME should be redirected
731 to the stub instead. If FNNAME is not a 32 bit function, the
732 stub should be discarded.
733
734 .mips16.call.fp.FNNAME sections are similar, but contain stubs
735 which call FNNAME and then copy the return value from the fp regs
736 to the gp regs. These stubs store the return value in $18 while
737 calling FNNAME; any function which might call one of these stubs
738 must arrange to save $18 around the call. (This case is not
739 needed for 32 bit functions that call 16 bit functions, because
740 16 bit functions always return floating point values in both
741 $f0/$f1 and $2/$3.)
742
743 Note that in all cases FNNAME might be defined statically.
744 Therefore, FNNAME is not used literally. Instead, the relocation
745 information will indicate which symbol the section is for.
746
747 We record any stubs that we find in the symbol table. */
748
749#define FN_STUB ".mips16.fn."
750#define CALL_STUB ".mips16.call."
751#define CALL_FP_STUB ".mips16.call.fp."
b9d58d71
TS
752
753#define FN_STUB_P(name) CONST_STRNEQ (name, FN_STUB)
754#define CALL_STUB_P(name) CONST_STRNEQ (name, CALL_STUB)
755#define CALL_FP_STUB_P(name) CONST_STRNEQ (name, CALL_FP_STUB)
b49e97c9 756\f
0a44bf69
RS
757/* The format of the first PLT entry in a VxWorks executable. */
758static const bfd_vma mips_vxworks_exec_plt0_entry[] = {
759 0x3c190000, /* lui t9, %hi(_GLOBAL_OFFSET_TABLE_) */
760 0x27390000, /* addiu t9, t9, %lo(_GLOBAL_OFFSET_TABLE_) */
761 0x8f390008, /* lw t9, 8(t9) */
762 0x00000000, /* nop */
763 0x03200008, /* jr t9 */
764 0x00000000 /* nop */
765};
766
767/* The format of subsequent PLT entries. */
768static const bfd_vma mips_vxworks_exec_plt_entry[] = {
769 0x10000000, /* b .PLT_resolver */
770 0x24180000, /* li t8, <pltindex> */
771 0x3c190000, /* lui t9, %hi(<.got.plt slot>) */
772 0x27390000, /* addiu t9, t9, %lo(<.got.plt slot>) */
773 0x8f390000, /* lw t9, 0(t9) */
774 0x00000000, /* nop */
775 0x03200008, /* jr t9 */
776 0x00000000 /* nop */
777};
778
779/* The format of the first PLT entry in a VxWorks shared object. */
780static const bfd_vma mips_vxworks_shared_plt0_entry[] = {
781 0x8f990008, /* lw t9, 8(gp) */
782 0x00000000, /* nop */
783 0x03200008, /* jr t9 */
784 0x00000000, /* nop */
785 0x00000000, /* nop */
786 0x00000000 /* nop */
787};
788
789/* The format of subsequent PLT entries. */
790static const bfd_vma mips_vxworks_shared_plt_entry[] = {
791 0x10000000, /* b .PLT_resolver */
792 0x24180000 /* li t8, <pltindex> */
793};
794\f
b49e97c9
TS
795/* Look up an entry in a MIPS ELF linker hash table. */
796
797#define mips_elf_link_hash_lookup(table, string, create, copy, follow) \
798 ((struct mips_elf_link_hash_entry *) \
799 elf_link_hash_lookup (&(table)->root, (string), (create), \
800 (copy), (follow)))
801
802/* Traverse a MIPS ELF linker hash table. */
803
804#define mips_elf_link_hash_traverse(table, func, info) \
805 (elf_link_hash_traverse \
806 (&(table)->root, \
9719ad41 807 (bfd_boolean (*) (struct elf_link_hash_entry *, void *)) (func), \
b49e97c9
TS
808 (info)))
809
810/* Get the MIPS ELF linker hash table from a link_info structure. */
811
812#define mips_elf_hash_table(p) \
813 ((struct mips_elf_link_hash_table *) ((p)->hash))
814
0f20cc35
DJ
815/* Find the base offsets for thread-local storage in this object,
816 for GD/LD and IE/LE respectively. */
817
818#define TP_OFFSET 0x7000
819#define DTP_OFFSET 0x8000
820
821static bfd_vma
822dtprel_base (struct bfd_link_info *info)
823{
824 /* If tls_sec is NULL, we should have signalled an error already. */
825 if (elf_hash_table (info)->tls_sec == NULL)
826 return 0;
827 return elf_hash_table (info)->tls_sec->vma + DTP_OFFSET;
828}
829
830static bfd_vma
831tprel_base (struct bfd_link_info *info)
832{
833 /* If tls_sec is NULL, we should have signalled an error already. */
834 if (elf_hash_table (info)->tls_sec == NULL)
835 return 0;
836 return elf_hash_table (info)->tls_sec->vma + TP_OFFSET;
837}
838
b49e97c9
TS
839/* Create an entry in a MIPS ELF linker hash table. */
840
841static struct bfd_hash_entry *
9719ad41
RS
842mips_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
843 struct bfd_hash_table *table, const char *string)
b49e97c9
TS
844{
845 struct mips_elf_link_hash_entry *ret =
846 (struct mips_elf_link_hash_entry *) entry;
847
848 /* Allocate the structure if it has not already been allocated by a
849 subclass. */
9719ad41
RS
850 if (ret == NULL)
851 ret = bfd_hash_allocate (table, sizeof (struct mips_elf_link_hash_entry));
852 if (ret == NULL)
b49e97c9
TS
853 return (struct bfd_hash_entry *) ret;
854
855 /* Call the allocation method of the superclass. */
856 ret = ((struct mips_elf_link_hash_entry *)
857 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
858 table, string));
9719ad41 859 if (ret != NULL)
b49e97c9
TS
860 {
861 /* Set local fields. */
862 memset (&ret->esym, 0, sizeof (EXTR));
863 /* We use -2 as a marker to indicate that the information has
864 not been set. -1 means there is no associated ifd. */
865 ret->esym.ifd = -2;
866 ret->possibly_dynamic_relocs = 0;
b49e97c9 867 ret->fn_stub = NULL;
b49e97c9
TS
868 ret->call_stub = NULL;
869 ret->call_fp_stub = NULL;
71782a75
RS
870 ret->tls_type = GOT_NORMAL;
871 ret->readonly_reloc = FALSE;
872 ret->no_fn_stub = FALSE;
873 ret->need_fn_stub = FALSE;
b34976b6 874 ret->forced_local = FALSE;
0a44bf69 875 ret->is_relocation_target = FALSE;
71782a75 876 ret->is_branch_target = FALSE;
b49e97c9
TS
877 }
878
879 return (struct bfd_hash_entry *) ret;
880}
f0abc2a1
AM
881
882bfd_boolean
9719ad41 883_bfd_mips_elf_new_section_hook (bfd *abfd, asection *sec)
f0abc2a1 884{
f592407e
AM
885 if (!sec->used_by_bfd)
886 {
887 struct _mips_elf_section_data *sdata;
888 bfd_size_type amt = sizeof (*sdata);
f0abc2a1 889
f592407e
AM
890 sdata = bfd_zalloc (abfd, amt);
891 if (sdata == NULL)
892 return FALSE;
893 sec->used_by_bfd = sdata;
894 }
f0abc2a1
AM
895
896 return _bfd_elf_new_section_hook (abfd, sec);
897}
b49e97c9
TS
898\f
899/* Read ECOFF debugging information from a .mdebug section into a
900 ecoff_debug_info structure. */
901
b34976b6 902bfd_boolean
9719ad41
RS
903_bfd_mips_elf_read_ecoff_info (bfd *abfd, asection *section,
904 struct ecoff_debug_info *debug)
b49e97c9
TS
905{
906 HDRR *symhdr;
907 const struct ecoff_debug_swap *swap;
9719ad41 908 char *ext_hdr;
b49e97c9
TS
909
910 swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
911 memset (debug, 0, sizeof (*debug));
912
9719ad41 913 ext_hdr = bfd_malloc (swap->external_hdr_size);
b49e97c9
TS
914 if (ext_hdr == NULL && swap->external_hdr_size != 0)
915 goto error_return;
916
9719ad41 917 if (! bfd_get_section_contents (abfd, section, ext_hdr, 0,
82e51918 918 swap->external_hdr_size))
b49e97c9
TS
919 goto error_return;
920
921 symhdr = &debug->symbolic_header;
922 (*swap->swap_hdr_in) (abfd, ext_hdr, symhdr);
923
924 /* The symbolic header contains absolute file offsets and sizes to
925 read. */
926#define READ(ptr, offset, count, size, type) \
927 if (symhdr->count == 0) \
928 debug->ptr = NULL; \
929 else \
930 { \
931 bfd_size_type amt = (bfd_size_type) size * symhdr->count; \
9719ad41 932 debug->ptr = bfd_malloc (amt); \
b49e97c9
TS
933 if (debug->ptr == NULL) \
934 goto error_return; \
9719ad41 935 if (bfd_seek (abfd, symhdr->offset, SEEK_SET) != 0 \
b49e97c9
TS
936 || bfd_bread (debug->ptr, amt, abfd) != amt) \
937 goto error_return; \
938 }
939
940 READ (line, cbLineOffset, cbLine, sizeof (unsigned char), unsigned char *);
9719ad41
RS
941 READ (external_dnr, cbDnOffset, idnMax, swap->external_dnr_size, void *);
942 READ (external_pdr, cbPdOffset, ipdMax, swap->external_pdr_size, void *);
943 READ (external_sym, cbSymOffset, isymMax, swap->external_sym_size, void *);
944 READ (external_opt, cbOptOffset, ioptMax, swap->external_opt_size, void *);
b49e97c9
TS
945 READ (external_aux, cbAuxOffset, iauxMax, sizeof (union aux_ext),
946 union aux_ext *);
947 READ (ss, cbSsOffset, issMax, sizeof (char), char *);
948 READ (ssext, cbSsExtOffset, issExtMax, sizeof (char), char *);
9719ad41
RS
949 READ (external_fdr, cbFdOffset, ifdMax, swap->external_fdr_size, void *);
950 READ (external_rfd, cbRfdOffset, crfd, swap->external_rfd_size, void *);
951 READ (external_ext, cbExtOffset, iextMax, swap->external_ext_size, void *);
b49e97c9
TS
952#undef READ
953
954 debug->fdr = NULL;
b49e97c9 955
b34976b6 956 return TRUE;
b49e97c9
TS
957
958 error_return:
959 if (ext_hdr != NULL)
960 free (ext_hdr);
961 if (debug->line != NULL)
962 free (debug->line);
963 if (debug->external_dnr != NULL)
964 free (debug->external_dnr);
965 if (debug->external_pdr != NULL)
966 free (debug->external_pdr);
967 if (debug->external_sym != NULL)
968 free (debug->external_sym);
969 if (debug->external_opt != NULL)
970 free (debug->external_opt);
971 if (debug->external_aux != NULL)
972 free (debug->external_aux);
973 if (debug->ss != NULL)
974 free (debug->ss);
975 if (debug->ssext != NULL)
976 free (debug->ssext);
977 if (debug->external_fdr != NULL)
978 free (debug->external_fdr);
979 if (debug->external_rfd != NULL)
980 free (debug->external_rfd);
981 if (debug->external_ext != NULL)
982 free (debug->external_ext);
b34976b6 983 return FALSE;
b49e97c9
TS
984}
985\f
986/* Swap RPDR (runtime procedure table entry) for output. */
987
988static void
9719ad41 989ecoff_swap_rpdr_out (bfd *abfd, const RPDR *in, struct rpdr_ext *ex)
b49e97c9
TS
990{
991 H_PUT_S32 (abfd, in->adr, ex->p_adr);
992 H_PUT_32 (abfd, in->regmask, ex->p_regmask);
993 H_PUT_32 (abfd, in->regoffset, ex->p_regoffset);
994 H_PUT_32 (abfd, in->fregmask, ex->p_fregmask);
995 H_PUT_32 (abfd, in->fregoffset, ex->p_fregoffset);
996 H_PUT_32 (abfd, in->frameoffset, ex->p_frameoffset);
997
998 H_PUT_16 (abfd, in->framereg, ex->p_framereg);
999 H_PUT_16 (abfd, in->pcreg, ex->p_pcreg);
1000
1001 H_PUT_32 (abfd, in->irpss, ex->p_irpss);
b49e97c9
TS
1002}
1003
1004/* Create a runtime procedure table from the .mdebug section. */
1005
b34976b6 1006static bfd_boolean
9719ad41
RS
1007mips_elf_create_procedure_table (void *handle, bfd *abfd,
1008 struct bfd_link_info *info, asection *s,
1009 struct ecoff_debug_info *debug)
b49e97c9
TS
1010{
1011 const struct ecoff_debug_swap *swap;
1012 HDRR *hdr = &debug->symbolic_header;
1013 RPDR *rpdr, *rp;
1014 struct rpdr_ext *erp;
9719ad41 1015 void *rtproc;
b49e97c9
TS
1016 struct pdr_ext *epdr;
1017 struct sym_ext *esym;
1018 char *ss, **sv;
1019 char *str;
1020 bfd_size_type size;
1021 bfd_size_type count;
1022 unsigned long sindex;
1023 unsigned long i;
1024 PDR pdr;
1025 SYMR sym;
1026 const char *no_name_func = _("static procedure (no name)");
1027
1028 epdr = NULL;
1029 rpdr = NULL;
1030 esym = NULL;
1031 ss = NULL;
1032 sv = NULL;
1033
1034 swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
1035
1036 sindex = strlen (no_name_func) + 1;
1037 count = hdr->ipdMax;
1038 if (count > 0)
1039 {
1040 size = swap->external_pdr_size;
1041
9719ad41 1042 epdr = bfd_malloc (size * count);
b49e97c9
TS
1043 if (epdr == NULL)
1044 goto error_return;
1045
9719ad41 1046 if (! _bfd_ecoff_get_accumulated_pdr (handle, (bfd_byte *) epdr))
b49e97c9
TS
1047 goto error_return;
1048
1049 size = sizeof (RPDR);
9719ad41 1050 rp = rpdr = bfd_malloc (size * count);
b49e97c9
TS
1051 if (rpdr == NULL)
1052 goto error_return;
1053
1054 size = sizeof (char *);
9719ad41 1055 sv = bfd_malloc (size * count);
b49e97c9
TS
1056 if (sv == NULL)
1057 goto error_return;
1058
1059 count = hdr->isymMax;
1060 size = swap->external_sym_size;
9719ad41 1061 esym = bfd_malloc (size * count);
b49e97c9
TS
1062 if (esym == NULL)
1063 goto error_return;
1064
9719ad41 1065 if (! _bfd_ecoff_get_accumulated_sym (handle, (bfd_byte *) esym))
b49e97c9
TS
1066 goto error_return;
1067
1068 count = hdr->issMax;
9719ad41 1069 ss = bfd_malloc (count);
b49e97c9
TS
1070 if (ss == NULL)
1071 goto error_return;
f075ee0c 1072 if (! _bfd_ecoff_get_accumulated_ss (handle, (bfd_byte *) ss))
b49e97c9
TS
1073 goto error_return;
1074
1075 count = hdr->ipdMax;
1076 for (i = 0; i < (unsigned long) count; i++, rp++)
1077 {
9719ad41
RS
1078 (*swap->swap_pdr_in) (abfd, epdr + i, &pdr);
1079 (*swap->swap_sym_in) (abfd, &esym[pdr.isym], &sym);
b49e97c9
TS
1080 rp->adr = sym.value;
1081 rp->regmask = pdr.regmask;
1082 rp->regoffset = pdr.regoffset;
1083 rp->fregmask = pdr.fregmask;
1084 rp->fregoffset = pdr.fregoffset;
1085 rp->frameoffset = pdr.frameoffset;
1086 rp->framereg = pdr.framereg;
1087 rp->pcreg = pdr.pcreg;
1088 rp->irpss = sindex;
1089 sv[i] = ss + sym.iss;
1090 sindex += strlen (sv[i]) + 1;
1091 }
1092 }
1093
1094 size = sizeof (struct rpdr_ext) * (count + 2) + sindex;
1095 size = BFD_ALIGN (size, 16);
9719ad41 1096 rtproc = bfd_alloc (abfd, size);
b49e97c9
TS
1097 if (rtproc == NULL)
1098 {
1099 mips_elf_hash_table (info)->procedure_count = 0;
1100 goto error_return;
1101 }
1102
1103 mips_elf_hash_table (info)->procedure_count = count + 2;
1104
9719ad41 1105 erp = rtproc;
b49e97c9
TS
1106 memset (erp, 0, sizeof (struct rpdr_ext));
1107 erp++;
1108 str = (char *) rtproc + sizeof (struct rpdr_ext) * (count + 2);
1109 strcpy (str, no_name_func);
1110 str += strlen (no_name_func) + 1;
1111 for (i = 0; i < count; i++)
1112 {
1113 ecoff_swap_rpdr_out (abfd, rpdr + i, erp + i);
1114 strcpy (str, sv[i]);
1115 str += strlen (sv[i]) + 1;
1116 }
1117 H_PUT_S32 (abfd, -1, (erp + count)->p_adr);
1118
1119 /* Set the size and contents of .rtproc section. */
eea6121a 1120 s->size = size;
9719ad41 1121 s->contents = rtproc;
b49e97c9
TS
1122
1123 /* Skip this section later on (I don't think this currently
1124 matters, but someday it might). */
8423293d 1125 s->map_head.link_order = NULL;
b49e97c9
TS
1126
1127 if (epdr != NULL)
1128 free (epdr);
1129 if (rpdr != NULL)
1130 free (rpdr);
1131 if (esym != NULL)
1132 free (esym);
1133 if (ss != NULL)
1134 free (ss);
1135 if (sv != NULL)
1136 free (sv);
1137
b34976b6 1138 return TRUE;
b49e97c9
TS
1139
1140 error_return:
1141 if (epdr != NULL)
1142 free (epdr);
1143 if (rpdr != NULL)
1144 free (rpdr);
1145 if (esym != NULL)
1146 free (esym);
1147 if (ss != NULL)
1148 free (ss);
1149 if (sv != NULL)
1150 free (sv);
b34976b6 1151 return FALSE;
b49e97c9 1152}
738e5348
RS
1153\f
1154/* We're about to redefine H. Create a symbol to represent H's
1155 current value and size, to help make the disassembly easier
1156 to read. */
1157
1158static bfd_boolean
1159mips_elf_create_shadow_symbol (struct bfd_link_info *info,
1160 struct mips_elf_link_hash_entry *h,
1161 const char *prefix)
1162{
1163 struct bfd_link_hash_entry *bh;
1164 struct elf_link_hash_entry *elfh;
1165 const char *name;
1166 asection *s;
1167 bfd_vma value;
1168
1169 /* Read the symbol's value. */
1170 BFD_ASSERT (h->root.root.type == bfd_link_hash_defined
1171 || h->root.root.type == bfd_link_hash_defweak);
1172 s = h->root.root.u.def.section;
1173 value = h->root.root.u.def.value;
1174
1175 /* Create a new symbol. */
1176 name = ACONCAT ((prefix, h->root.root.root.string, NULL));
1177 bh = NULL;
1178 if (!_bfd_generic_link_add_one_symbol (info, s->owner, name,
1179 BSF_LOCAL, s, value, NULL,
1180 TRUE, FALSE, &bh))
1181 return FALSE;
1182
1183 /* Make it local and copy the other attributes from H. */
1184 elfh = (struct elf_link_hash_entry *) bh;
1185 elfh->type = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (h->root.type));
1186 elfh->other = h->root.other;
1187 elfh->size = h->root.size;
1188 elfh->forced_local = 1;
1189 return TRUE;
1190}
1191
1192/* Return TRUE if relocations in SECTION can refer directly to a MIPS16
1193 function rather than to a hard-float stub. */
1194
1195static bfd_boolean
1196section_allows_mips16_refs_p (asection *section)
1197{
1198 const char *name;
1199
1200 name = bfd_get_section_name (section->owner, section);
1201 return (FN_STUB_P (name)
1202 || CALL_STUB_P (name)
1203 || CALL_FP_STUB_P (name)
1204 || strcmp (name, ".pdr") == 0);
1205}
1206
1207/* [RELOCS, RELEND) are the relocations against SEC, which is a MIPS16
1208 stub section of some kind. Return the R_SYMNDX of the target
1209 function, or 0 if we can't decide which function that is. */
1210
1211static unsigned long
1212mips16_stub_symndx (asection *sec, const Elf_Internal_Rela *relocs,
1213 const Elf_Internal_Rela *relend)
1214{
1215 const Elf_Internal_Rela *rel;
1216
1217 /* Trust the first R_MIPS_NONE relocation, if any. */
1218 for (rel = relocs; rel < relend; rel++)
1219 if (ELF_R_TYPE (sec->owner, rel->r_info) == R_MIPS_NONE)
1220 return ELF_R_SYM (sec->owner, rel->r_info);
1221
1222 /* Otherwise trust the first relocation, whatever its kind. This is
1223 the traditional behavior. */
1224 if (relocs < relend)
1225 return ELF_R_SYM (sec->owner, relocs->r_info);
1226
1227 return 0;
1228}
b49e97c9
TS
1229
1230/* Check the mips16 stubs for a particular symbol, and see if we can
1231 discard them. */
1232
b34976b6 1233static bfd_boolean
738e5348 1234mips_elf_check_mips16_stubs (struct mips_elf_link_hash_entry *h, void *data)
b49e97c9 1235{
738e5348
RS
1236 struct bfd_link_info *info;
1237
1238 info = (struct bfd_link_info *) data;
b49e97c9
TS
1239 if (h->root.root.type == bfd_link_hash_warning)
1240 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
1241
738e5348
RS
1242 /* Dynamic symbols must use the standard call interface, in case other
1243 objects try to call them. */
1244 if (h->fn_stub != NULL
1245 && h->root.dynindx != -1)
1246 {
1247 mips_elf_create_shadow_symbol (info, h, ".mips16.");
1248 h->need_fn_stub = TRUE;
1249 }
1250
b49e97c9
TS
1251 if (h->fn_stub != NULL
1252 && ! h->need_fn_stub)
1253 {
1254 /* We don't need the fn_stub; the only references to this symbol
1255 are 16 bit calls. Clobber the size to 0 to prevent it from
1256 being included in the link. */
eea6121a 1257 h->fn_stub->size = 0;
b49e97c9
TS
1258 h->fn_stub->flags &= ~SEC_RELOC;
1259 h->fn_stub->reloc_count = 0;
1260 h->fn_stub->flags |= SEC_EXCLUDE;
1261 }
1262
1263 if (h->call_stub != NULL
30c09090 1264 && ELF_ST_IS_MIPS16 (h->root.other))
b49e97c9
TS
1265 {
1266 /* We don't need the call_stub; this is a 16 bit function, so
1267 calls from other 16 bit functions are OK. Clobber the size
1268 to 0 to prevent it from being included in the link. */
eea6121a 1269 h->call_stub->size = 0;
b49e97c9
TS
1270 h->call_stub->flags &= ~SEC_RELOC;
1271 h->call_stub->reloc_count = 0;
1272 h->call_stub->flags |= SEC_EXCLUDE;
1273 }
1274
1275 if (h->call_fp_stub != NULL
30c09090 1276 && ELF_ST_IS_MIPS16 (h->root.other))
b49e97c9
TS
1277 {
1278 /* We don't need the call_stub; this is a 16 bit function, so
1279 calls from other 16 bit functions are OK. Clobber the size
1280 to 0 to prevent it from being included in the link. */
eea6121a 1281 h->call_fp_stub->size = 0;
b49e97c9
TS
1282 h->call_fp_stub->flags &= ~SEC_RELOC;
1283 h->call_fp_stub->reloc_count = 0;
1284 h->call_fp_stub->flags |= SEC_EXCLUDE;
1285 }
1286
b34976b6 1287 return TRUE;
b49e97c9
TS
1288}
1289\f
d6f16593
MR
1290/* R_MIPS16_26 is used for the mips16 jal and jalx instructions.
1291 Most mips16 instructions are 16 bits, but these instructions
1292 are 32 bits.
1293
1294 The format of these instructions is:
1295
1296 +--------------+--------------------------------+
1297 | JALX | X| Imm 20:16 | Imm 25:21 |
1298 +--------------+--------------------------------+
1299 | Immediate 15:0 |
1300 +-----------------------------------------------+
1301
1302 JALX is the 5-bit value 00011. X is 0 for jal, 1 for jalx.
1303 Note that the immediate value in the first word is swapped.
1304
1305 When producing a relocatable object file, R_MIPS16_26 is
1306 handled mostly like R_MIPS_26. In particular, the addend is
1307 stored as a straight 26-bit value in a 32-bit instruction.
1308 (gas makes life simpler for itself by never adjusting a
1309 R_MIPS16_26 reloc to be against a section, so the addend is
1310 always zero). However, the 32 bit instruction is stored as 2
1311 16-bit values, rather than a single 32-bit value. In a
1312 big-endian file, the result is the same; in a little-endian
1313 file, the two 16-bit halves of the 32 bit value are swapped.
1314 This is so that a disassembler can recognize the jal
1315 instruction.
1316
1317 When doing a final link, R_MIPS16_26 is treated as a 32 bit
1318 instruction stored as two 16-bit values. The addend A is the
1319 contents of the targ26 field. The calculation is the same as
1320 R_MIPS_26. When storing the calculated value, reorder the
1321 immediate value as shown above, and don't forget to store the
1322 value as two 16-bit values.
1323
1324 To put it in MIPS ABI terms, the relocation field is T-targ26-16,
1325 defined as
1326
1327 big-endian:
1328 +--------+----------------------+
1329 | | |
1330 | | targ26-16 |
1331 |31 26|25 0|
1332 +--------+----------------------+
1333
1334 little-endian:
1335 +----------+------+-------------+
1336 | | | |
1337 | sub1 | | sub2 |
1338 |0 9|10 15|16 31|
1339 +----------+--------------------+
1340 where targ26-16 is sub1 followed by sub2 (i.e., the addend field A is
1341 ((sub1 << 16) | sub2)).
1342
1343 When producing a relocatable object file, the calculation is
1344 (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
1345 When producing a fully linked file, the calculation is
1346 let R = (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
1347 ((R & 0x1f0000) << 5) | ((R & 0x3e00000) >> 5) | (R & 0xffff)
1348
738e5348
RS
1349 The table below lists the other MIPS16 instruction relocations.
1350 Each one is calculated in the same way as the non-MIPS16 relocation
1351 given on the right, but using the extended MIPS16 layout of 16-bit
1352 immediate fields:
1353
1354 R_MIPS16_GPREL R_MIPS_GPREL16
1355 R_MIPS16_GOT16 R_MIPS_GOT16
1356 R_MIPS16_CALL16 R_MIPS_CALL16
1357 R_MIPS16_HI16 R_MIPS_HI16
1358 R_MIPS16_LO16 R_MIPS_LO16
1359
1360 A typical instruction will have a format like this:
d6f16593
MR
1361
1362 +--------------+--------------------------------+
1363 | EXTEND | Imm 10:5 | Imm 15:11 |
1364 +--------------+--------------------------------+
1365 | Major | rx | ry | Imm 4:0 |
1366 +--------------+--------------------------------+
1367
1368 EXTEND is the five bit value 11110. Major is the instruction
1369 opcode.
1370
738e5348
RS
1371 All we need to do here is shuffle the bits appropriately.
1372 As above, the two 16-bit halves must be swapped on a
1373 little-endian system. */
1374
1375static inline bfd_boolean
1376mips16_reloc_p (int r_type)
1377{
1378 switch (r_type)
1379 {
1380 case R_MIPS16_26:
1381 case R_MIPS16_GPREL:
1382 case R_MIPS16_GOT16:
1383 case R_MIPS16_CALL16:
1384 case R_MIPS16_HI16:
1385 case R_MIPS16_LO16:
1386 return TRUE;
1387
1388 default:
1389 return FALSE;
1390 }
1391}
1392
1393static inline bfd_boolean
1394got16_reloc_p (int r_type)
1395{
1396 return r_type == R_MIPS_GOT16 || r_type == R_MIPS16_GOT16;
1397}
1398
1399static inline bfd_boolean
1400call16_reloc_p (int r_type)
1401{
1402 return r_type == R_MIPS_CALL16 || r_type == R_MIPS16_CALL16;
1403}
1404
1405static inline bfd_boolean
1406hi16_reloc_p (int r_type)
1407{
1408 return r_type == R_MIPS_HI16 || r_type == R_MIPS16_HI16;
1409}
d6f16593 1410
738e5348
RS
1411static inline bfd_boolean
1412lo16_reloc_p (int r_type)
1413{
1414 return r_type == R_MIPS_LO16 || r_type == R_MIPS16_LO16;
1415}
1416
1417static inline bfd_boolean
1418mips16_call_reloc_p (int r_type)
1419{
1420 return r_type == R_MIPS16_26 || r_type == R_MIPS16_CALL16;
1421}
d6f16593 1422
d6f16593
MR
1423void
1424_bfd_mips16_elf_reloc_unshuffle (bfd *abfd, int r_type,
1425 bfd_boolean jal_shuffle, bfd_byte *data)
1426{
1427 bfd_vma extend, insn, val;
1428
738e5348 1429 if (!mips16_reloc_p (r_type))
d6f16593
MR
1430 return;
1431
1432 /* Pick up the mips16 extend instruction and the real instruction. */
1433 extend = bfd_get_16 (abfd, data);
1434 insn = bfd_get_16 (abfd, data + 2);
1435 if (r_type == R_MIPS16_26)
1436 {
1437 if (jal_shuffle)
1438 val = ((extend & 0xfc00) << 16) | ((extend & 0x3e0) << 11)
1439 | ((extend & 0x1f) << 21) | insn;
1440 else
1441 val = extend << 16 | insn;
1442 }
1443 else
1444 val = ((extend & 0xf800) << 16) | ((insn & 0xffe0) << 11)
1445 | ((extend & 0x1f) << 11) | (extend & 0x7e0) | (insn & 0x1f);
1446 bfd_put_32 (abfd, val, data);
1447}
1448
1449void
1450_bfd_mips16_elf_reloc_shuffle (bfd *abfd, int r_type,
1451 bfd_boolean jal_shuffle, bfd_byte *data)
1452{
1453 bfd_vma extend, insn, val;
1454
738e5348 1455 if (!mips16_reloc_p (r_type))
d6f16593
MR
1456 return;
1457
1458 val = bfd_get_32 (abfd, data);
1459 if (r_type == R_MIPS16_26)
1460 {
1461 if (jal_shuffle)
1462 {
1463 insn = val & 0xffff;
1464 extend = ((val >> 16) & 0xfc00) | ((val >> 11) & 0x3e0)
1465 | ((val >> 21) & 0x1f);
1466 }
1467 else
1468 {
1469 insn = val & 0xffff;
1470 extend = val >> 16;
1471 }
1472 }
1473 else
1474 {
1475 insn = ((val >> 11) & 0xffe0) | (val & 0x1f);
1476 extend = ((val >> 16) & 0xf800) | ((val >> 11) & 0x1f) | (val & 0x7e0);
1477 }
1478 bfd_put_16 (abfd, insn, data + 2);
1479 bfd_put_16 (abfd, extend, data);
1480}
1481
b49e97c9 1482bfd_reloc_status_type
9719ad41
RS
1483_bfd_mips_elf_gprel16_with_gp (bfd *abfd, asymbol *symbol,
1484 arelent *reloc_entry, asection *input_section,
1485 bfd_boolean relocatable, void *data, bfd_vma gp)
b49e97c9
TS
1486{
1487 bfd_vma relocation;
a7ebbfdf 1488 bfd_signed_vma val;
30ac9238 1489 bfd_reloc_status_type status;
b49e97c9
TS
1490
1491 if (bfd_is_com_section (symbol->section))
1492 relocation = 0;
1493 else
1494 relocation = symbol->value;
1495
1496 relocation += symbol->section->output_section->vma;
1497 relocation += symbol->section->output_offset;
1498
07515404 1499 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
b49e97c9
TS
1500 return bfd_reloc_outofrange;
1501
b49e97c9 1502 /* Set val to the offset into the section or symbol. */
a7ebbfdf
TS
1503 val = reloc_entry->addend;
1504
30ac9238 1505 _bfd_mips_elf_sign_extend (val, 16);
a7ebbfdf 1506
b49e97c9 1507 /* Adjust val for the final section location and GP value. If we
1049f94e 1508 are producing relocatable output, we don't want to do this for
b49e97c9 1509 an external symbol. */
1049f94e 1510 if (! relocatable
b49e97c9
TS
1511 || (symbol->flags & BSF_SECTION_SYM) != 0)
1512 val += relocation - gp;
1513
a7ebbfdf
TS
1514 if (reloc_entry->howto->partial_inplace)
1515 {
30ac9238
RS
1516 status = _bfd_relocate_contents (reloc_entry->howto, abfd, val,
1517 (bfd_byte *) data
1518 + reloc_entry->address);
1519 if (status != bfd_reloc_ok)
1520 return status;
a7ebbfdf
TS
1521 }
1522 else
1523 reloc_entry->addend = val;
b49e97c9 1524
1049f94e 1525 if (relocatable)
b49e97c9 1526 reloc_entry->address += input_section->output_offset;
30ac9238
RS
1527
1528 return bfd_reloc_ok;
1529}
1530
1531/* Used to store a REL high-part relocation such as R_MIPS_HI16 or
1532 R_MIPS_GOT16. REL is the relocation, INPUT_SECTION is the section
1533 that contains the relocation field and DATA points to the start of
1534 INPUT_SECTION. */
1535
1536struct mips_hi16
1537{
1538 struct mips_hi16 *next;
1539 bfd_byte *data;
1540 asection *input_section;
1541 arelent rel;
1542};
1543
1544/* FIXME: This should not be a static variable. */
1545
1546static struct mips_hi16 *mips_hi16_list;
1547
1548/* A howto special_function for REL *HI16 relocations. We can only
1549 calculate the correct value once we've seen the partnering
1550 *LO16 relocation, so just save the information for later.
1551
1552 The ABI requires that the *LO16 immediately follow the *HI16.
1553 However, as a GNU extension, we permit an arbitrary number of
1554 *HI16s to be associated with a single *LO16. This significantly
1555 simplies the relocation handling in gcc. */
1556
1557bfd_reloc_status_type
1558_bfd_mips_elf_hi16_reloc (bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry,
1559 asymbol *symbol ATTRIBUTE_UNUSED, void *data,
1560 asection *input_section, bfd *output_bfd,
1561 char **error_message ATTRIBUTE_UNUSED)
1562{
1563 struct mips_hi16 *n;
1564
07515404 1565 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
30ac9238
RS
1566 return bfd_reloc_outofrange;
1567
1568 n = bfd_malloc (sizeof *n);
1569 if (n == NULL)
1570 return bfd_reloc_outofrange;
1571
1572 n->next = mips_hi16_list;
1573 n->data = data;
1574 n->input_section = input_section;
1575 n->rel = *reloc_entry;
1576 mips_hi16_list = n;
1577
1578 if (output_bfd != NULL)
1579 reloc_entry->address += input_section->output_offset;
1580
1581 return bfd_reloc_ok;
1582}
1583
738e5348 1584/* A howto special_function for REL R_MIPS*_GOT16 relocations. This is just
30ac9238
RS
1585 like any other 16-bit relocation when applied to global symbols, but is
1586 treated in the same as R_MIPS_HI16 when applied to local symbols. */
1587
1588bfd_reloc_status_type
1589_bfd_mips_elf_got16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
1590 void *data, asection *input_section,
1591 bfd *output_bfd, char **error_message)
1592{
1593 if ((symbol->flags & (BSF_GLOBAL | BSF_WEAK)) != 0
1594 || bfd_is_und_section (bfd_get_section (symbol))
1595 || bfd_is_com_section (bfd_get_section (symbol)))
1596 /* The relocation is against a global symbol. */
1597 return _bfd_mips_elf_generic_reloc (abfd, reloc_entry, symbol, data,
1598 input_section, output_bfd,
1599 error_message);
1600
1601 return _bfd_mips_elf_hi16_reloc (abfd, reloc_entry, symbol, data,
1602 input_section, output_bfd, error_message);
1603}
1604
1605/* A howto special_function for REL *LO16 relocations. The *LO16 itself
1606 is a straightforward 16 bit inplace relocation, but we must deal with
1607 any partnering high-part relocations as well. */
1608
1609bfd_reloc_status_type
1610_bfd_mips_elf_lo16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
1611 void *data, asection *input_section,
1612 bfd *output_bfd, char **error_message)
1613{
1614 bfd_vma vallo;
d6f16593 1615 bfd_byte *location = (bfd_byte *) data + reloc_entry->address;
30ac9238 1616
07515404 1617 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
30ac9238
RS
1618 return bfd_reloc_outofrange;
1619
d6f16593
MR
1620 _bfd_mips16_elf_reloc_unshuffle (abfd, reloc_entry->howto->type, FALSE,
1621 location);
1622 vallo = bfd_get_32 (abfd, location);
1623 _bfd_mips16_elf_reloc_shuffle (abfd, reloc_entry->howto->type, FALSE,
1624 location);
1625
30ac9238
RS
1626 while (mips_hi16_list != NULL)
1627 {
1628 bfd_reloc_status_type ret;
1629 struct mips_hi16 *hi;
1630
1631 hi = mips_hi16_list;
1632
738e5348
RS
1633 /* R_MIPS*_GOT16 relocations are something of a special case. We
1634 want to install the addend in the same way as for a R_MIPS*_HI16
30ac9238
RS
1635 relocation (with a rightshift of 16). However, since GOT16
1636 relocations can also be used with global symbols, their howto
1637 has a rightshift of 0. */
1638 if (hi->rel.howto->type == R_MIPS_GOT16)
1639 hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MIPS_HI16, FALSE);
738e5348
RS
1640 else if (hi->rel.howto->type == R_MIPS16_GOT16)
1641 hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MIPS16_HI16, FALSE);
30ac9238
RS
1642
1643 /* VALLO is a signed 16-bit number. Bias it by 0x8000 so that any
1644 carry or borrow will induce a change of +1 or -1 in the high part. */
1645 hi->rel.addend += (vallo + 0x8000) & 0xffff;
1646
30ac9238
RS
1647 ret = _bfd_mips_elf_generic_reloc (abfd, &hi->rel, symbol, hi->data,
1648 hi->input_section, output_bfd,
1649 error_message);
1650 if (ret != bfd_reloc_ok)
1651 return ret;
1652
1653 mips_hi16_list = hi->next;
1654 free (hi);
1655 }
1656
1657 return _bfd_mips_elf_generic_reloc (abfd, reloc_entry, symbol, data,
1658 input_section, output_bfd,
1659 error_message);
1660}
1661
1662/* A generic howto special_function. This calculates and installs the
1663 relocation itself, thus avoiding the oft-discussed problems in
1664 bfd_perform_relocation and bfd_install_relocation. */
1665
1666bfd_reloc_status_type
1667_bfd_mips_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry,
1668 asymbol *symbol, void *data ATTRIBUTE_UNUSED,
1669 asection *input_section, bfd *output_bfd,
1670 char **error_message ATTRIBUTE_UNUSED)
1671{
1672 bfd_signed_vma val;
1673 bfd_reloc_status_type status;
1674 bfd_boolean relocatable;
1675
1676 relocatable = (output_bfd != NULL);
1677
07515404 1678 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
30ac9238
RS
1679 return bfd_reloc_outofrange;
1680
1681 /* Build up the field adjustment in VAL. */
1682 val = 0;
1683 if (!relocatable || (symbol->flags & BSF_SECTION_SYM) != 0)
1684 {
1685 /* Either we're calculating the final field value or we have a
1686 relocation against a section symbol. Add in the section's
1687 offset or address. */
1688 val += symbol->section->output_section->vma;
1689 val += symbol->section->output_offset;
1690 }
1691
1692 if (!relocatable)
1693 {
1694 /* We're calculating the final field value. Add in the symbol's value
1695 and, if pc-relative, subtract the address of the field itself. */
1696 val += symbol->value;
1697 if (reloc_entry->howto->pc_relative)
1698 {
1699 val -= input_section->output_section->vma;
1700 val -= input_section->output_offset;
1701 val -= reloc_entry->address;
1702 }
1703 }
1704
1705 /* VAL is now the final adjustment. If we're keeping this relocation
1706 in the output file, and if the relocation uses a separate addend,
1707 we just need to add VAL to that addend. Otherwise we need to add
1708 VAL to the relocation field itself. */
1709 if (relocatable && !reloc_entry->howto->partial_inplace)
1710 reloc_entry->addend += val;
1711 else
1712 {
d6f16593
MR
1713 bfd_byte *location = (bfd_byte *) data + reloc_entry->address;
1714
30ac9238
RS
1715 /* Add in the separate addend, if any. */
1716 val += reloc_entry->addend;
1717
1718 /* Add VAL to the relocation field. */
d6f16593
MR
1719 _bfd_mips16_elf_reloc_unshuffle (abfd, reloc_entry->howto->type, FALSE,
1720 location);
30ac9238 1721 status = _bfd_relocate_contents (reloc_entry->howto, abfd, val,
d6f16593
MR
1722 location);
1723 _bfd_mips16_elf_reloc_shuffle (abfd, reloc_entry->howto->type, FALSE,
1724 location);
1725
30ac9238
RS
1726 if (status != bfd_reloc_ok)
1727 return status;
1728 }
1729
1730 if (relocatable)
1731 reloc_entry->address += input_section->output_offset;
b49e97c9
TS
1732
1733 return bfd_reloc_ok;
1734}
1735\f
1736/* Swap an entry in a .gptab section. Note that these routines rely
1737 on the equivalence of the two elements of the union. */
1738
1739static void
9719ad41
RS
1740bfd_mips_elf32_swap_gptab_in (bfd *abfd, const Elf32_External_gptab *ex,
1741 Elf32_gptab *in)
b49e97c9
TS
1742{
1743 in->gt_entry.gt_g_value = H_GET_32 (abfd, ex->gt_entry.gt_g_value);
1744 in->gt_entry.gt_bytes = H_GET_32 (abfd, ex->gt_entry.gt_bytes);
1745}
1746
1747static void
9719ad41
RS
1748bfd_mips_elf32_swap_gptab_out (bfd *abfd, const Elf32_gptab *in,
1749 Elf32_External_gptab *ex)
b49e97c9
TS
1750{
1751 H_PUT_32 (abfd, in->gt_entry.gt_g_value, ex->gt_entry.gt_g_value);
1752 H_PUT_32 (abfd, in->gt_entry.gt_bytes, ex->gt_entry.gt_bytes);
1753}
1754
1755static void
9719ad41
RS
1756bfd_elf32_swap_compact_rel_out (bfd *abfd, const Elf32_compact_rel *in,
1757 Elf32_External_compact_rel *ex)
b49e97c9
TS
1758{
1759 H_PUT_32 (abfd, in->id1, ex->id1);
1760 H_PUT_32 (abfd, in->num, ex->num);
1761 H_PUT_32 (abfd, in->id2, ex->id2);
1762 H_PUT_32 (abfd, in->offset, ex->offset);
1763 H_PUT_32 (abfd, in->reserved0, ex->reserved0);
1764 H_PUT_32 (abfd, in->reserved1, ex->reserved1);
1765}
1766
1767static void
9719ad41
RS
1768bfd_elf32_swap_crinfo_out (bfd *abfd, const Elf32_crinfo *in,
1769 Elf32_External_crinfo *ex)
b49e97c9
TS
1770{
1771 unsigned long l;
1772
1773 l = (((in->ctype & CRINFO_CTYPE) << CRINFO_CTYPE_SH)
1774 | ((in->rtype & CRINFO_RTYPE) << CRINFO_RTYPE_SH)
1775 | ((in->dist2to & CRINFO_DIST2TO) << CRINFO_DIST2TO_SH)
1776 | ((in->relvaddr & CRINFO_RELVADDR) << CRINFO_RELVADDR_SH));
1777 H_PUT_32 (abfd, l, ex->info);
1778 H_PUT_32 (abfd, in->konst, ex->konst);
1779 H_PUT_32 (abfd, in->vaddr, ex->vaddr);
1780}
b49e97c9
TS
1781\f
1782/* A .reginfo section holds a single Elf32_RegInfo structure. These
1783 routines swap this structure in and out. They are used outside of
1784 BFD, so they are globally visible. */
1785
1786void
9719ad41
RS
1787bfd_mips_elf32_swap_reginfo_in (bfd *abfd, const Elf32_External_RegInfo *ex,
1788 Elf32_RegInfo *in)
b49e97c9
TS
1789{
1790 in->ri_gprmask = H_GET_32 (abfd, ex->ri_gprmask);
1791 in->ri_cprmask[0] = H_GET_32 (abfd, ex->ri_cprmask[0]);
1792 in->ri_cprmask[1] = H_GET_32 (abfd, ex->ri_cprmask[1]);
1793 in->ri_cprmask[2] = H_GET_32 (abfd, ex->ri_cprmask[2]);
1794 in->ri_cprmask[3] = H_GET_32 (abfd, ex->ri_cprmask[3]);
1795 in->ri_gp_value = H_GET_32 (abfd, ex->ri_gp_value);
1796}
1797
1798void
9719ad41
RS
1799bfd_mips_elf32_swap_reginfo_out (bfd *abfd, const Elf32_RegInfo *in,
1800 Elf32_External_RegInfo *ex)
b49e97c9
TS
1801{
1802 H_PUT_32 (abfd, in->ri_gprmask, ex->ri_gprmask);
1803 H_PUT_32 (abfd, in->ri_cprmask[0], ex->ri_cprmask[0]);
1804 H_PUT_32 (abfd, in->ri_cprmask[1], ex->ri_cprmask[1]);
1805 H_PUT_32 (abfd, in->ri_cprmask[2], ex->ri_cprmask[2]);
1806 H_PUT_32 (abfd, in->ri_cprmask[3], ex->ri_cprmask[3]);
1807 H_PUT_32 (abfd, in->ri_gp_value, ex->ri_gp_value);
1808}
1809
1810/* In the 64 bit ABI, the .MIPS.options section holds register
1811 information in an Elf64_Reginfo structure. These routines swap
1812 them in and out. They are globally visible because they are used
1813 outside of BFD. These routines are here so that gas can call them
1814 without worrying about whether the 64 bit ABI has been included. */
1815
1816void
9719ad41
RS
1817bfd_mips_elf64_swap_reginfo_in (bfd *abfd, const Elf64_External_RegInfo *ex,
1818 Elf64_Internal_RegInfo *in)
b49e97c9
TS
1819{
1820 in->ri_gprmask = H_GET_32 (abfd, ex->ri_gprmask);
1821 in->ri_pad = H_GET_32 (abfd, ex->ri_pad);
1822 in->ri_cprmask[0] = H_GET_32 (abfd, ex->ri_cprmask[0]);
1823 in->ri_cprmask[1] = H_GET_32 (abfd, ex->ri_cprmask[1]);
1824 in->ri_cprmask[2] = H_GET_32 (abfd, ex->ri_cprmask[2]);
1825 in->ri_cprmask[3] = H_GET_32 (abfd, ex->ri_cprmask[3]);
1826 in->ri_gp_value = H_GET_64 (abfd, ex->ri_gp_value);
1827}
1828
1829void
9719ad41
RS
1830bfd_mips_elf64_swap_reginfo_out (bfd *abfd, const Elf64_Internal_RegInfo *in,
1831 Elf64_External_RegInfo *ex)
b49e97c9
TS
1832{
1833 H_PUT_32 (abfd, in->ri_gprmask, ex->ri_gprmask);
1834 H_PUT_32 (abfd, in->ri_pad, ex->ri_pad);
1835 H_PUT_32 (abfd, in->ri_cprmask[0], ex->ri_cprmask[0]);
1836 H_PUT_32 (abfd, in->ri_cprmask[1], ex->ri_cprmask[1]);
1837 H_PUT_32 (abfd, in->ri_cprmask[2], ex->ri_cprmask[2]);
1838 H_PUT_32 (abfd, in->ri_cprmask[3], ex->ri_cprmask[3]);
1839 H_PUT_64 (abfd, in->ri_gp_value, ex->ri_gp_value);
1840}
1841
1842/* Swap in an options header. */
1843
1844void
9719ad41
RS
1845bfd_mips_elf_swap_options_in (bfd *abfd, const Elf_External_Options *ex,
1846 Elf_Internal_Options *in)
b49e97c9
TS
1847{
1848 in->kind = H_GET_8 (abfd, ex->kind);
1849 in->size = H_GET_8 (abfd, ex->size);
1850 in->section = H_GET_16 (abfd, ex->section);
1851 in->info = H_GET_32 (abfd, ex->info);
1852}
1853
1854/* Swap out an options header. */
1855
1856void
9719ad41
RS
1857bfd_mips_elf_swap_options_out (bfd *abfd, const Elf_Internal_Options *in,
1858 Elf_External_Options *ex)
b49e97c9
TS
1859{
1860 H_PUT_8 (abfd, in->kind, ex->kind);
1861 H_PUT_8 (abfd, in->size, ex->size);
1862 H_PUT_16 (abfd, in->section, ex->section);
1863 H_PUT_32 (abfd, in->info, ex->info);
1864}
1865\f
1866/* This function is called via qsort() to sort the dynamic relocation
1867 entries by increasing r_symndx value. */
1868
1869static int
9719ad41 1870sort_dynamic_relocs (const void *arg1, const void *arg2)
b49e97c9 1871{
947216bf
AM
1872 Elf_Internal_Rela int_reloc1;
1873 Elf_Internal_Rela int_reloc2;
6870500c 1874 int diff;
b49e97c9 1875
947216bf
AM
1876 bfd_elf32_swap_reloc_in (reldyn_sorting_bfd, arg1, &int_reloc1);
1877 bfd_elf32_swap_reloc_in (reldyn_sorting_bfd, arg2, &int_reloc2);
b49e97c9 1878
6870500c
RS
1879 diff = ELF32_R_SYM (int_reloc1.r_info) - ELF32_R_SYM (int_reloc2.r_info);
1880 if (diff != 0)
1881 return diff;
1882
1883 if (int_reloc1.r_offset < int_reloc2.r_offset)
1884 return -1;
1885 if (int_reloc1.r_offset > int_reloc2.r_offset)
1886 return 1;
1887 return 0;
b49e97c9
TS
1888}
1889
f4416af6
AO
1890/* Like sort_dynamic_relocs, but used for elf64 relocations. */
1891
1892static int
7e3102a7
AM
1893sort_dynamic_relocs_64 (const void *arg1 ATTRIBUTE_UNUSED,
1894 const void *arg2 ATTRIBUTE_UNUSED)
f4416af6 1895{
7e3102a7 1896#ifdef BFD64
f4416af6
AO
1897 Elf_Internal_Rela int_reloc1[3];
1898 Elf_Internal_Rela int_reloc2[3];
1899
1900 (*get_elf_backend_data (reldyn_sorting_bfd)->s->swap_reloc_in)
1901 (reldyn_sorting_bfd, arg1, int_reloc1);
1902 (*get_elf_backend_data (reldyn_sorting_bfd)->s->swap_reloc_in)
1903 (reldyn_sorting_bfd, arg2, int_reloc2);
1904
6870500c
RS
1905 if (ELF64_R_SYM (int_reloc1[0].r_info) < ELF64_R_SYM (int_reloc2[0].r_info))
1906 return -1;
1907 if (ELF64_R_SYM (int_reloc1[0].r_info) > ELF64_R_SYM (int_reloc2[0].r_info))
1908 return 1;
1909
1910 if (int_reloc1[0].r_offset < int_reloc2[0].r_offset)
1911 return -1;
1912 if (int_reloc1[0].r_offset > int_reloc2[0].r_offset)
1913 return 1;
1914 return 0;
7e3102a7
AM
1915#else
1916 abort ();
1917#endif
f4416af6
AO
1918}
1919
1920
b49e97c9
TS
1921/* This routine is used to write out ECOFF debugging external symbol
1922 information. It is called via mips_elf_link_hash_traverse. The
1923 ECOFF external symbol information must match the ELF external
1924 symbol information. Unfortunately, at this point we don't know
1925 whether a symbol is required by reloc information, so the two
1926 tables may wind up being different. We must sort out the external
1927 symbol information before we can set the final size of the .mdebug
1928 section, and we must set the size of the .mdebug section before we
1929 can relocate any sections, and we can't know which symbols are
1930 required by relocation until we relocate the sections.
1931 Fortunately, it is relatively unlikely that any symbol will be
1932 stripped but required by a reloc. In particular, it can not happen
1933 when generating a final executable. */
1934
b34976b6 1935static bfd_boolean
9719ad41 1936mips_elf_output_extsym (struct mips_elf_link_hash_entry *h, void *data)
b49e97c9 1937{
9719ad41 1938 struct extsym_info *einfo = data;
b34976b6 1939 bfd_boolean strip;
b49e97c9
TS
1940 asection *sec, *output_section;
1941
1942 if (h->root.root.type == bfd_link_hash_warning)
1943 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
1944
1945 if (h->root.indx == -2)
b34976b6 1946 strip = FALSE;
f5385ebf 1947 else if ((h->root.def_dynamic
77cfaee6
AM
1948 || h->root.ref_dynamic
1949 || h->root.type == bfd_link_hash_new)
f5385ebf
AM
1950 && !h->root.def_regular
1951 && !h->root.ref_regular)
b34976b6 1952 strip = TRUE;
b49e97c9
TS
1953 else if (einfo->info->strip == strip_all
1954 || (einfo->info->strip == strip_some
1955 && bfd_hash_lookup (einfo->info->keep_hash,
1956 h->root.root.root.string,
b34976b6
AM
1957 FALSE, FALSE) == NULL))
1958 strip = TRUE;
b49e97c9 1959 else
b34976b6 1960 strip = FALSE;
b49e97c9
TS
1961
1962 if (strip)
b34976b6 1963 return TRUE;
b49e97c9
TS
1964
1965 if (h->esym.ifd == -2)
1966 {
1967 h->esym.jmptbl = 0;
1968 h->esym.cobol_main = 0;
1969 h->esym.weakext = 0;
1970 h->esym.reserved = 0;
1971 h->esym.ifd = ifdNil;
1972 h->esym.asym.value = 0;
1973 h->esym.asym.st = stGlobal;
1974
1975 if (h->root.root.type == bfd_link_hash_undefined
1976 || h->root.root.type == bfd_link_hash_undefweak)
1977 {
1978 const char *name;
1979
1980 /* Use undefined class. Also, set class and type for some
1981 special symbols. */
1982 name = h->root.root.root.string;
1983 if (strcmp (name, mips_elf_dynsym_rtproc_names[0]) == 0
1984 || strcmp (name, mips_elf_dynsym_rtproc_names[1]) == 0)
1985 {
1986 h->esym.asym.sc = scData;
1987 h->esym.asym.st = stLabel;
1988 h->esym.asym.value = 0;
1989 }
1990 else if (strcmp (name, mips_elf_dynsym_rtproc_names[2]) == 0)
1991 {
1992 h->esym.asym.sc = scAbs;
1993 h->esym.asym.st = stLabel;
1994 h->esym.asym.value =
1995 mips_elf_hash_table (einfo->info)->procedure_count;
1996 }
4a14403c 1997 else if (strcmp (name, "_gp_disp") == 0 && ! NEWABI_P (einfo->abfd))
b49e97c9
TS
1998 {
1999 h->esym.asym.sc = scAbs;
2000 h->esym.asym.st = stLabel;
2001 h->esym.asym.value = elf_gp (einfo->abfd);
2002 }
2003 else
2004 h->esym.asym.sc = scUndefined;
2005 }
2006 else if (h->root.root.type != bfd_link_hash_defined
2007 && h->root.root.type != bfd_link_hash_defweak)
2008 h->esym.asym.sc = scAbs;
2009 else
2010 {
2011 const char *name;
2012
2013 sec = h->root.root.u.def.section;
2014 output_section = sec->output_section;
2015
2016 /* When making a shared library and symbol h is the one from
2017 the another shared library, OUTPUT_SECTION may be null. */
2018 if (output_section == NULL)
2019 h->esym.asym.sc = scUndefined;
2020 else
2021 {
2022 name = bfd_section_name (output_section->owner, output_section);
2023
2024 if (strcmp (name, ".text") == 0)
2025 h->esym.asym.sc = scText;
2026 else if (strcmp (name, ".data") == 0)
2027 h->esym.asym.sc = scData;
2028 else if (strcmp (name, ".sdata") == 0)
2029 h->esym.asym.sc = scSData;
2030 else if (strcmp (name, ".rodata") == 0
2031 || strcmp (name, ".rdata") == 0)
2032 h->esym.asym.sc = scRData;
2033 else if (strcmp (name, ".bss") == 0)
2034 h->esym.asym.sc = scBss;
2035 else if (strcmp (name, ".sbss") == 0)
2036 h->esym.asym.sc = scSBss;
2037 else if (strcmp (name, ".init") == 0)
2038 h->esym.asym.sc = scInit;
2039 else if (strcmp (name, ".fini") == 0)
2040 h->esym.asym.sc = scFini;
2041 else
2042 h->esym.asym.sc = scAbs;
2043 }
2044 }
2045
2046 h->esym.asym.reserved = 0;
2047 h->esym.asym.index = indexNil;
2048 }
2049
2050 if (h->root.root.type == bfd_link_hash_common)
2051 h->esym.asym.value = h->root.root.u.c.size;
2052 else if (h->root.root.type == bfd_link_hash_defined
2053 || h->root.root.type == bfd_link_hash_defweak)
2054 {
2055 if (h->esym.asym.sc == scCommon)
2056 h->esym.asym.sc = scBss;
2057 else if (h->esym.asym.sc == scSCommon)
2058 h->esym.asym.sc = scSBss;
2059
2060 sec = h->root.root.u.def.section;
2061 output_section = sec->output_section;
2062 if (output_section != NULL)
2063 h->esym.asym.value = (h->root.root.u.def.value
2064 + sec->output_offset
2065 + output_section->vma);
2066 else
2067 h->esym.asym.value = 0;
2068 }
f5385ebf 2069 else if (h->root.needs_plt)
b49e97c9
TS
2070 {
2071 struct mips_elf_link_hash_entry *hd = h;
b34976b6 2072 bfd_boolean no_fn_stub = h->no_fn_stub;
b49e97c9
TS
2073
2074 while (hd->root.root.type == bfd_link_hash_indirect)
2075 {
2076 hd = (struct mips_elf_link_hash_entry *)h->root.root.u.i.link;
2077 no_fn_stub = no_fn_stub || hd->no_fn_stub;
2078 }
2079
2080 if (!no_fn_stub)
2081 {
2082 /* Set type and value for a symbol with a function stub. */
2083 h->esym.asym.st = stProc;
2084 sec = hd->root.root.u.def.section;
2085 if (sec == NULL)
2086 h->esym.asym.value = 0;
2087 else
2088 {
2089 output_section = sec->output_section;
2090 if (output_section != NULL)
2091 h->esym.asym.value = (hd->root.plt.offset
2092 + sec->output_offset
2093 + output_section->vma);
2094 else
2095 h->esym.asym.value = 0;
2096 }
b49e97c9
TS
2097 }
2098 }
2099
2100 if (! bfd_ecoff_debug_one_external (einfo->abfd, einfo->debug, einfo->swap,
2101 h->root.root.root.string,
2102 &h->esym))
2103 {
b34976b6
AM
2104 einfo->failed = TRUE;
2105 return FALSE;
b49e97c9
TS
2106 }
2107
b34976b6 2108 return TRUE;
b49e97c9
TS
2109}
2110
2111/* A comparison routine used to sort .gptab entries. */
2112
2113static int
9719ad41 2114gptab_compare (const void *p1, const void *p2)
b49e97c9 2115{
9719ad41
RS
2116 const Elf32_gptab *a1 = p1;
2117 const Elf32_gptab *a2 = p2;
b49e97c9
TS
2118
2119 return a1->gt_entry.gt_g_value - a2->gt_entry.gt_g_value;
2120}
2121\f
b15e6682 2122/* Functions to manage the got entry hash table. */
f4416af6
AO
2123
2124/* Use all 64 bits of a bfd_vma for the computation of a 32-bit
2125 hash number. */
2126
2127static INLINE hashval_t
9719ad41 2128mips_elf_hash_bfd_vma (bfd_vma addr)
f4416af6
AO
2129{
2130#ifdef BFD64
2131 return addr + (addr >> 32);
2132#else
2133 return addr;
2134#endif
2135}
2136
2137/* got_entries only match if they're identical, except for gotidx, so
2138 use all fields to compute the hash, and compare the appropriate
2139 union members. */
2140
b15e6682 2141static hashval_t
9719ad41 2142mips_elf_got_entry_hash (const void *entry_)
b15e6682
AO
2143{
2144 const struct mips_got_entry *entry = (struct mips_got_entry *)entry_;
2145
38985a1c 2146 return entry->symndx
0f20cc35 2147 + ((entry->tls_type & GOT_TLS_LDM) << 17)
f4416af6 2148 + (! entry->abfd ? mips_elf_hash_bfd_vma (entry->d.address)
38985a1c
AO
2149 : entry->abfd->id
2150 + (entry->symndx >= 0 ? mips_elf_hash_bfd_vma (entry->d.addend)
2151 : entry->d.h->root.root.root.hash));
b15e6682
AO
2152}
2153
2154static int
9719ad41 2155mips_elf_got_entry_eq (const void *entry1, const void *entry2)
b15e6682
AO
2156{
2157 const struct mips_got_entry *e1 = (struct mips_got_entry *)entry1;
2158 const struct mips_got_entry *e2 = (struct mips_got_entry *)entry2;
2159
0f20cc35
DJ
2160 /* An LDM entry can only match another LDM entry. */
2161 if ((e1->tls_type ^ e2->tls_type) & GOT_TLS_LDM)
2162 return 0;
2163
b15e6682 2164 return e1->abfd == e2->abfd && e1->symndx == e2->symndx
f4416af6
AO
2165 && (! e1->abfd ? e1->d.address == e2->d.address
2166 : e1->symndx >= 0 ? e1->d.addend == e2->d.addend
2167 : e1->d.h == e2->d.h);
2168}
2169
2170/* multi_got_entries are still a match in the case of global objects,
2171 even if the input bfd in which they're referenced differs, so the
2172 hash computation and compare functions are adjusted
2173 accordingly. */
2174
2175static hashval_t
9719ad41 2176mips_elf_multi_got_entry_hash (const void *entry_)
f4416af6
AO
2177{
2178 const struct mips_got_entry *entry = (struct mips_got_entry *)entry_;
2179
2180 return entry->symndx
2181 + (! entry->abfd
2182 ? mips_elf_hash_bfd_vma (entry->d.address)
2183 : entry->symndx >= 0
0f20cc35
DJ
2184 ? ((entry->tls_type & GOT_TLS_LDM)
2185 ? (GOT_TLS_LDM << 17)
2186 : (entry->abfd->id
2187 + mips_elf_hash_bfd_vma (entry->d.addend)))
f4416af6
AO
2188 : entry->d.h->root.root.root.hash);
2189}
2190
2191static int
9719ad41 2192mips_elf_multi_got_entry_eq (const void *entry1, const void *entry2)
f4416af6
AO
2193{
2194 const struct mips_got_entry *e1 = (struct mips_got_entry *)entry1;
2195 const struct mips_got_entry *e2 = (struct mips_got_entry *)entry2;
2196
0f20cc35
DJ
2197 /* Any two LDM entries match. */
2198 if (e1->tls_type & e2->tls_type & GOT_TLS_LDM)
2199 return 1;
2200
2201 /* Nothing else matches an LDM entry. */
2202 if ((e1->tls_type ^ e2->tls_type) & GOT_TLS_LDM)
2203 return 0;
2204
f4416af6
AO
2205 return e1->symndx == e2->symndx
2206 && (e1->symndx >= 0 ? e1->abfd == e2->abfd && e1->d.addend == e2->d.addend
2207 : e1->abfd == NULL || e2->abfd == NULL
2208 ? e1->abfd == e2->abfd && e1->d.address == e2->d.address
2209 : e1->d.h == e2->d.h);
b15e6682 2210}
c224138d
RS
2211
2212static hashval_t
2213mips_got_page_entry_hash (const void *entry_)
2214{
2215 const struct mips_got_page_entry *entry;
2216
2217 entry = (const struct mips_got_page_entry *) entry_;
2218 return entry->abfd->id + entry->symndx;
2219}
2220
2221static int
2222mips_got_page_entry_eq (const void *entry1_, const void *entry2_)
2223{
2224 const struct mips_got_page_entry *entry1, *entry2;
2225
2226 entry1 = (const struct mips_got_page_entry *) entry1_;
2227 entry2 = (const struct mips_got_page_entry *) entry2_;
2228 return entry1->abfd == entry2->abfd && entry1->symndx == entry2->symndx;
2229}
b15e6682 2230\f
0a44bf69
RS
2231/* Return the dynamic relocation section. If it doesn't exist, try to
2232 create a new it if CREATE_P, otherwise return NULL. Also return NULL
2233 if creation fails. */
f4416af6
AO
2234
2235static asection *
0a44bf69 2236mips_elf_rel_dyn_section (struct bfd_link_info *info, bfd_boolean create_p)
f4416af6 2237{
0a44bf69 2238 const char *dname;
f4416af6 2239 asection *sreloc;
0a44bf69 2240 bfd *dynobj;
f4416af6 2241
0a44bf69
RS
2242 dname = MIPS_ELF_REL_DYN_NAME (info);
2243 dynobj = elf_hash_table (info)->dynobj;
f4416af6
AO
2244 sreloc = bfd_get_section_by_name (dynobj, dname);
2245 if (sreloc == NULL && create_p)
2246 {
3496cb2a
L
2247 sreloc = bfd_make_section_with_flags (dynobj, dname,
2248 (SEC_ALLOC
2249 | SEC_LOAD
2250 | SEC_HAS_CONTENTS
2251 | SEC_IN_MEMORY
2252 | SEC_LINKER_CREATED
2253 | SEC_READONLY));
f4416af6 2254 if (sreloc == NULL
f4416af6 2255 || ! bfd_set_section_alignment (dynobj, sreloc,
d80dcc6a 2256 MIPS_ELF_LOG_FILE_ALIGN (dynobj)))
f4416af6
AO
2257 return NULL;
2258 }
2259 return sreloc;
2260}
2261
a8028dd0 2262/* Returns the GOT section, if it hasn't been excluded. */
b49e97c9
TS
2263
2264static asection *
a8028dd0 2265mips_elf_got_section (struct bfd_link_info *info)
b49e97c9 2266{
a8028dd0 2267 struct mips_elf_link_hash_table *htab;
f4416af6 2268
a8028dd0
RS
2269 htab = mips_elf_hash_table (info);
2270 if (htab->sgot == NULL || (htab->sgot->flags & SEC_EXCLUDE) != 0)
2271 return NULL;
2272 return htab->sgot;
b49e97c9
TS
2273}
2274
0f20cc35
DJ
2275/* Count the number of relocations needed for a TLS GOT entry, with
2276 access types from TLS_TYPE, and symbol H (or a local symbol if H
2277 is NULL). */
2278
2279static int
2280mips_tls_got_relocs (struct bfd_link_info *info, unsigned char tls_type,
2281 struct elf_link_hash_entry *h)
2282{
2283 int indx = 0;
2284 int ret = 0;
2285 bfd_boolean need_relocs = FALSE;
2286 bfd_boolean dyn = elf_hash_table (info)->dynamic_sections_created;
2287
2288 if (h && WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h)
2289 && (!info->shared || !SYMBOL_REFERENCES_LOCAL (info, h)))
2290 indx = h->dynindx;
2291
2292 if ((info->shared || indx != 0)
2293 && (h == NULL
2294 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2295 || h->root.type != bfd_link_hash_undefweak))
2296 need_relocs = TRUE;
2297
2298 if (!need_relocs)
2299 return FALSE;
2300
2301 if (tls_type & GOT_TLS_GD)
2302 {
2303 ret++;
2304 if (indx != 0)
2305 ret++;
2306 }
2307
2308 if (tls_type & GOT_TLS_IE)
2309 ret++;
2310
2311 if ((tls_type & GOT_TLS_LDM) && info->shared)
2312 ret++;
2313
2314 return ret;
2315}
2316
2317/* Count the number of TLS relocations required for the GOT entry in
2318 ARG1, if it describes a local symbol. */
2319
2320static int
2321mips_elf_count_local_tls_relocs (void **arg1, void *arg2)
2322{
2323 struct mips_got_entry *entry = * (struct mips_got_entry **) arg1;
2324 struct mips_elf_count_tls_arg *arg = arg2;
2325
2326 if (entry->abfd != NULL && entry->symndx != -1)
2327 arg->needed += mips_tls_got_relocs (arg->info, entry->tls_type, NULL);
2328
2329 return 1;
2330}
2331
2332/* Count the number of TLS GOT entries required for the global (or
2333 forced-local) symbol in ARG1. */
2334
2335static int
2336mips_elf_count_global_tls_entries (void *arg1, void *arg2)
2337{
2338 struct mips_elf_link_hash_entry *hm
2339 = (struct mips_elf_link_hash_entry *) arg1;
2340 struct mips_elf_count_tls_arg *arg = arg2;
2341
2342 if (hm->tls_type & GOT_TLS_GD)
2343 arg->needed += 2;
2344 if (hm->tls_type & GOT_TLS_IE)
2345 arg->needed += 1;
2346
2347 return 1;
2348}
2349
2350/* Count the number of TLS relocations required for the global (or
2351 forced-local) symbol in ARG1. */
2352
2353static int
2354mips_elf_count_global_tls_relocs (void *arg1, void *arg2)
2355{
2356 struct mips_elf_link_hash_entry *hm
2357 = (struct mips_elf_link_hash_entry *) arg1;
2358 struct mips_elf_count_tls_arg *arg = arg2;
2359
2360 arg->needed += mips_tls_got_relocs (arg->info, hm->tls_type, &hm->root);
2361
2362 return 1;
2363}
2364
2365/* Output a simple dynamic relocation into SRELOC. */
2366
2367static void
2368mips_elf_output_dynamic_relocation (bfd *output_bfd,
2369 asection *sreloc,
2370 unsigned long indx,
2371 int r_type,
2372 bfd_vma offset)
2373{
2374 Elf_Internal_Rela rel[3];
2375
2376 memset (rel, 0, sizeof (rel));
2377
2378 rel[0].r_info = ELF_R_INFO (output_bfd, indx, r_type);
2379 rel[0].r_offset = rel[1].r_offset = rel[2].r_offset = offset;
2380
2381 if (ABI_64_P (output_bfd))
2382 {
2383 (*get_elf_backend_data (output_bfd)->s->swap_reloc_out)
2384 (output_bfd, &rel[0],
2385 (sreloc->contents
2386 + sreloc->reloc_count * sizeof (Elf64_Mips_External_Rel)));
2387 }
2388 else
2389 bfd_elf32_swap_reloc_out
2390 (output_bfd, &rel[0],
2391 (sreloc->contents
2392 + sreloc->reloc_count * sizeof (Elf32_External_Rel)));
2393 ++sreloc->reloc_count;
2394}
2395
2396/* Initialize a set of TLS GOT entries for one symbol. */
2397
2398static void
2399mips_elf_initialize_tls_slots (bfd *abfd, bfd_vma got_offset,
2400 unsigned char *tls_type_p,
2401 struct bfd_link_info *info,
2402 struct mips_elf_link_hash_entry *h,
2403 bfd_vma value)
2404{
2405 int indx;
2406 asection *sreloc, *sgot;
2407 bfd_vma offset, offset2;
0f20cc35
DJ
2408 bfd_boolean need_relocs = FALSE;
2409
a8028dd0 2410 sgot = mips_elf_got_section (info);
0f20cc35
DJ
2411
2412 indx = 0;
2413 if (h != NULL)
2414 {
2415 bfd_boolean dyn = elf_hash_table (info)->dynamic_sections_created;
2416
2417 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, &h->root)
2418 && (!info->shared || !SYMBOL_REFERENCES_LOCAL (info, &h->root)))
2419 indx = h->root.dynindx;
2420 }
2421
2422 if (*tls_type_p & GOT_TLS_DONE)
2423 return;
2424
2425 if ((info->shared || indx != 0)
2426 && (h == NULL
2427 || ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT
2428 || h->root.type != bfd_link_hash_undefweak))
2429 need_relocs = TRUE;
2430
2431 /* MINUS_ONE means the symbol is not defined in this object. It may not
2432 be defined at all; assume that the value doesn't matter in that
2433 case. Otherwise complain if we would use the value. */
2434 BFD_ASSERT (value != MINUS_ONE || (indx != 0 && need_relocs)
2435 || h->root.root.type == bfd_link_hash_undefweak);
2436
2437 /* Emit necessary relocations. */
0a44bf69 2438 sreloc = mips_elf_rel_dyn_section (info, FALSE);
0f20cc35
DJ
2439
2440 /* General Dynamic. */
2441 if (*tls_type_p & GOT_TLS_GD)
2442 {
2443 offset = got_offset;
2444 offset2 = offset + MIPS_ELF_GOT_SIZE (abfd);
2445
2446 if (need_relocs)
2447 {
2448 mips_elf_output_dynamic_relocation
2449 (abfd, sreloc, indx,
2450 ABI_64_P (abfd) ? R_MIPS_TLS_DTPMOD64 : R_MIPS_TLS_DTPMOD32,
2451 sgot->output_offset + sgot->output_section->vma + offset);
2452
2453 if (indx)
2454 mips_elf_output_dynamic_relocation
2455 (abfd, sreloc, indx,
2456 ABI_64_P (abfd) ? R_MIPS_TLS_DTPREL64 : R_MIPS_TLS_DTPREL32,
2457 sgot->output_offset + sgot->output_section->vma + offset2);
2458 else
2459 MIPS_ELF_PUT_WORD (abfd, value - dtprel_base (info),
2460 sgot->contents + offset2);
2461 }
2462 else
2463 {
2464 MIPS_ELF_PUT_WORD (abfd, 1,
2465 sgot->contents + offset);
2466 MIPS_ELF_PUT_WORD (abfd, value - dtprel_base (info),
2467 sgot->contents + offset2);
2468 }
2469
2470 got_offset += 2 * MIPS_ELF_GOT_SIZE (abfd);
2471 }
2472
2473 /* Initial Exec model. */
2474 if (*tls_type_p & GOT_TLS_IE)
2475 {
2476 offset = got_offset;
2477
2478 if (need_relocs)
2479 {
2480 if (indx == 0)
2481 MIPS_ELF_PUT_WORD (abfd, value - elf_hash_table (info)->tls_sec->vma,
2482 sgot->contents + offset);
2483 else
2484 MIPS_ELF_PUT_WORD (abfd, 0,
2485 sgot->contents + offset);
2486
2487 mips_elf_output_dynamic_relocation
2488 (abfd, sreloc, indx,
2489 ABI_64_P (abfd) ? R_MIPS_TLS_TPREL64 : R_MIPS_TLS_TPREL32,
2490 sgot->output_offset + sgot->output_section->vma + offset);
2491 }
2492 else
2493 MIPS_ELF_PUT_WORD (abfd, value - tprel_base (info),
2494 sgot->contents + offset);
2495 }
2496
2497 if (*tls_type_p & GOT_TLS_LDM)
2498 {
2499 /* The initial offset is zero, and the LD offsets will include the
2500 bias by DTP_OFFSET. */
2501 MIPS_ELF_PUT_WORD (abfd, 0,
2502 sgot->contents + got_offset
2503 + MIPS_ELF_GOT_SIZE (abfd));
2504
2505 if (!info->shared)
2506 MIPS_ELF_PUT_WORD (abfd, 1,
2507 sgot->contents + got_offset);
2508 else
2509 mips_elf_output_dynamic_relocation
2510 (abfd, sreloc, indx,
2511 ABI_64_P (abfd) ? R_MIPS_TLS_DTPMOD64 : R_MIPS_TLS_DTPMOD32,
2512 sgot->output_offset + sgot->output_section->vma + got_offset);
2513 }
2514
2515 *tls_type_p |= GOT_TLS_DONE;
2516}
2517
2518/* Return the GOT index to use for a relocation of type R_TYPE against
2519 a symbol accessed using TLS_TYPE models. The GOT entries for this
2520 symbol in this GOT start at GOT_INDEX. This function initializes the
2521 GOT entries and corresponding relocations. */
2522
2523static bfd_vma
2524mips_tls_got_index (bfd *abfd, bfd_vma got_index, unsigned char *tls_type,
2525 int r_type, struct bfd_link_info *info,
2526 struct mips_elf_link_hash_entry *h, bfd_vma symbol)
2527{
2528 BFD_ASSERT (r_type == R_MIPS_TLS_GOTTPREL || r_type == R_MIPS_TLS_GD
2529 || r_type == R_MIPS_TLS_LDM);
2530
2531 mips_elf_initialize_tls_slots (abfd, got_index, tls_type, info, h, symbol);
2532
2533 if (r_type == R_MIPS_TLS_GOTTPREL)
2534 {
2535 BFD_ASSERT (*tls_type & GOT_TLS_IE);
2536 if (*tls_type & GOT_TLS_GD)
2537 return got_index + 2 * MIPS_ELF_GOT_SIZE (abfd);
2538 else
2539 return got_index;
2540 }
2541
2542 if (r_type == R_MIPS_TLS_GD)
2543 {
2544 BFD_ASSERT (*tls_type & GOT_TLS_GD);
2545 return got_index;
2546 }
2547
2548 if (r_type == R_MIPS_TLS_LDM)
2549 {
2550 BFD_ASSERT (*tls_type & GOT_TLS_LDM);
2551 return got_index;
2552 }
2553
2554 return got_index;
2555}
2556
0a44bf69
RS
2557/* Return the offset from _GLOBAL_OFFSET_TABLE_ of the .got.plt entry
2558 for global symbol H. .got.plt comes before the GOT, so the offset
2559 will be negative. */
2560
2561static bfd_vma
2562mips_elf_gotplt_index (struct bfd_link_info *info,
2563 struct elf_link_hash_entry *h)
2564{
2565 bfd_vma plt_index, got_address, got_value;
2566 struct mips_elf_link_hash_table *htab;
2567
2568 htab = mips_elf_hash_table (info);
2569 BFD_ASSERT (h->plt.offset != (bfd_vma) -1);
2570
2571 /* Calculate the index of the symbol's PLT entry. */
2572 plt_index = (h->plt.offset - htab->plt_header_size) / htab->plt_entry_size;
2573
2574 /* Calculate the address of the associated .got.plt entry. */
2575 got_address = (htab->sgotplt->output_section->vma
2576 + htab->sgotplt->output_offset
2577 + plt_index * 4);
2578
2579 /* Calculate the value of _GLOBAL_OFFSET_TABLE_. */
2580 got_value = (htab->root.hgot->root.u.def.section->output_section->vma
2581 + htab->root.hgot->root.u.def.section->output_offset
2582 + htab->root.hgot->root.u.def.value);
2583
2584 return got_address - got_value;
2585}
2586
5c18022e 2587/* Return the GOT offset for address VALUE. If there is not yet a GOT
0a44bf69
RS
2588 entry for this value, create one. If R_SYMNDX refers to a TLS symbol,
2589 create a TLS GOT entry instead. Return -1 if no satisfactory GOT
2590 offset can be found. */
b49e97c9
TS
2591
2592static bfd_vma
9719ad41 2593mips_elf_local_got_index (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
5c18022e 2594 bfd_vma value, unsigned long r_symndx,
0f20cc35 2595 struct mips_elf_link_hash_entry *h, int r_type)
b49e97c9 2596{
a8028dd0 2597 struct mips_elf_link_hash_table *htab;
b15e6682 2598 struct mips_got_entry *entry;
b49e97c9 2599
a8028dd0
RS
2600 htab = mips_elf_hash_table (info);
2601 entry = mips_elf_create_local_got_entry (abfd, info, ibfd, value,
2602 r_symndx, h, r_type);
0f20cc35 2603 if (!entry)
b15e6682 2604 return MINUS_ONE;
0f20cc35
DJ
2605
2606 if (TLS_RELOC_P (r_type))
ead49a57 2607 {
a8028dd0 2608 if (entry->symndx == -1 && htab->got_info->next == NULL)
ead49a57
RS
2609 /* A type (3) entry in the single-GOT case. We use the symbol's
2610 hash table entry to track the index. */
2611 return mips_tls_got_index (abfd, h->tls_got_offset, &h->tls_type,
2612 r_type, info, h, value);
2613 else
2614 return mips_tls_got_index (abfd, entry->gotidx, &entry->tls_type,
2615 r_type, info, h, value);
2616 }
0f20cc35
DJ
2617 else
2618 return entry->gotidx;
b49e97c9
TS
2619}
2620
2621/* Returns the GOT index for the global symbol indicated by H. */
2622
2623static bfd_vma
0f20cc35
DJ
2624mips_elf_global_got_index (bfd *abfd, bfd *ibfd, struct elf_link_hash_entry *h,
2625 int r_type, struct bfd_link_info *info)
b49e97c9 2626{
a8028dd0 2627 struct mips_elf_link_hash_table *htab;
b49e97c9 2628 bfd_vma index;
f4416af6 2629 struct mips_got_info *g, *gg;
d0c7ff07 2630 long global_got_dynindx = 0;
b49e97c9 2631
a8028dd0
RS
2632 htab = mips_elf_hash_table (info);
2633 gg = g = htab->got_info;
f4416af6
AO
2634 if (g->bfd2got && ibfd)
2635 {
2636 struct mips_got_entry e, *p;
143d77c5 2637
f4416af6
AO
2638 BFD_ASSERT (h->dynindx >= 0);
2639
2640 g = mips_elf_got_for_ibfd (g, ibfd);
0f20cc35 2641 if (g->next != gg || TLS_RELOC_P (r_type))
f4416af6
AO
2642 {
2643 e.abfd = ibfd;
2644 e.symndx = -1;
2645 e.d.h = (struct mips_elf_link_hash_entry *)h;
0f20cc35 2646 e.tls_type = 0;
f4416af6 2647
9719ad41 2648 p = htab_find (g->got_entries, &e);
f4416af6
AO
2649
2650 BFD_ASSERT (p->gotidx > 0);
0f20cc35
DJ
2651
2652 if (TLS_RELOC_P (r_type))
2653 {
2654 bfd_vma value = MINUS_ONE;
2655 if ((h->root.type == bfd_link_hash_defined
2656 || h->root.type == bfd_link_hash_defweak)
2657 && h->root.u.def.section->output_section)
2658 value = (h->root.u.def.value
2659 + h->root.u.def.section->output_offset
2660 + h->root.u.def.section->output_section->vma);
2661
2662 return mips_tls_got_index (abfd, p->gotidx, &p->tls_type, r_type,
2663 info, e.d.h, value);
2664 }
2665 else
2666 return p->gotidx;
f4416af6
AO
2667 }
2668 }
2669
2670 if (gg->global_gotsym != NULL)
2671 global_got_dynindx = gg->global_gotsym->dynindx;
b49e97c9 2672
0f20cc35
DJ
2673 if (TLS_RELOC_P (r_type))
2674 {
2675 struct mips_elf_link_hash_entry *hm
2676 = (struct mips_elf_link_hash_entry *) h;
2677 bfd_vma value = MINUS_ONE;
2678
2679 if ((h->root.type == bfd_link_hash_defined
2680 || h->root.type == bfd_link_hash_defweak)
2681 && h->root.u.def.section->output_section)
2682 value = (h->root.u.def.value
2683 + h->root.u.def.section->output_offset
2684 + h->root.u.def.section->output_section->vma);
2685
2686 index = mips_tls_got_index (abfd, hm->tls_got_offset, &hm->tls_type,
2687 r_type, info, hm, value);
2688 }
2689 else
2690 {
2691 /* Once we determine the global GOT entry with the lowest dynamic
2692 symbol table index, we must put all dynamic symbols with greater
2693 indices into the GOT. That makes it easy to calculate the GOT
2694 offset. */
2695 BFD_ASSERT (h->dynindx >= global_got_dynindx);
2696 index = ((h->dynindx - global_got_dynindx + g->local_gotno)
2697 * MIPS_ELF_GOT_SIZE (abfd));
2698 }
a8028dd0 2699 BFD_ASSERT (index < htab->sgot->size);
b49e97c9
TS
2700
2701 return index;
2702}
2703
5c18022e
RS
2704/* Find a GOT page entry that points to within 32KB of VALUE. These
2705 entries are supposed to be placed at small offsets in the GOT, i.e.,
2706 within 32KB of GP. Return the index of the GOT entry, or -1 if no
2707 entry could be created. If OFFSETP is nonnull, use it to return the
0a44bf69 2708 offset of the GOT entry from VALUE. */
b49e97c9
TS
2709
2710static bfd_vma
9719ad41 2711mips_elf_got_page (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
5c18022e 2712 bfd_vma value, bfd_vma *offsetp)
b49e97c9 2713{
0a44bf69 2714 bfd_vma page, index;
b15e6682 2715 struct mips_got_entry *entry;
b49e97c9 2716
0a44bf69 2717 page = (value + 0x8000) & ~(bfd_vma) 0xffff;
a8028dd0
RS
2718 entry = mips_elf_create_local_got_entry (abfd, info, ibfd, page, 0,
2719 NULL, R_MIPS_GOT_PAGE);
b49e97c9 2720
b15e6682
AO
2721 if (!entry)
2722 return MINUS_ONE;
143d77c5 2723
b15e6682 2724 index = entry->gotidx;
b49e97c9
TS
2725
2726 if (offsetp)
f4416af6 2727 *offsetp = value - entry->d.address;
b49e97c9
TS
2728
2729 return index;
2730}
2731
738e5348 2732/* Find a local GOT entry for an R_MIPS*_GOT16 relocation against VALUE.
0a44bf69
RS
2733 EXTERNAL is true if the relocation was against a global symbol
2734 that has been forced local. */
b49e97c9
TS
2735
2736static bfd_vma
9719ad41 2737mips_elf_got16_entry (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
5c18022e 2738 bfd_vma value, bfd_boolean external)
b49e97c9 2739{
b15e6682 2740 struct mips_got_entry *entry;
b49e97c9 2741
0a44bf69
RS
2742 /* GOT16 relocations against local symbols are followed by a LO16
2743 relocation; those against global symbols are not. Thus if the
2744 symbol was originally local, the GOT16 relocation should load the
2745 equivalent of %hi(VALUE), otherwise it should load VALUE itself. */
b49e97c9 2746 if (! external)
0a44bf69 2747 value = mips_elf_high (value) << 16;
b49e97c9 2748
738e5348
RS
2749 /* It doesn't matter whether the original relocation was R_MIPS_GOT16,
2750 R_MIPS16_GOT16, R_MIPS_CALL16, etc. The format of the entry is the
2751 same in all cases. */
a8028dd0
RS
2752 entry = mips_elf_create_local_got_entry (abfd, info, ibfd, value, 0,
2753 NULL, R_MIPS_GOT16);
b15e6682
AO
2754 if (entry)
2755 return entry->gotidx;
2756 else
2757 return MINUS_ONE;
b49e97c9
TS
2758}
2759
2760/* Returns the offset for the entry at the INDEXth position
2761 in the GOT. */
2762
2763static bfd_vma
a8028dd0 2764mips_elf_got_offset_from_index (struct bfd_link_info *info, bfd *output_bfd,
9719ad41 2765 bfd *input_bfd, bfd_vma index)
b49e97c9 2766{
a8028dd0 2767 struct mips_elf_link_hash_table *htab;
b49e97c9
TS
2768 asection *sgot;
2769 bfd_vma gp;
2770
a8028dd0
RS
2771 htab = mips_elf_hash_table (info);
2772 sgot = htab->sgot;
f4416af6 2773 gp = _bfd_get_gp_value (output_bfd)
a8028dd0 2774 + mips_elf_adjust_gp (output_bfd, htab->got_info, input_bfd);
143d77c5 2775
f4416af6 2776 return sgot->output_section->vma + sgot->output_offset + index - gp;
b49e97c9
TS
2777}
2778
0a44bf69
RS
2779/* Create and return a local GOT entry for VALUE, which was calculated
2780 from a symbol belonging to INPUT_SECTON. Return NULL if it could not
2781 be created. If R_SYMNDX refers to a TLS symbol, create a TLS entry
2782 instead. */
b49e97c9 2783
b15e6682 2784static struct mips_got_entry *
0a44bf69 2785mips_elf_create_local_got_entry (bfd *abfd, struct bfd_link_info *info,
a8028dd0 2786 bfd *ibfd, bfd_vma value,
5c18022e 2787 unsigned long r_symndx,
0f20cc35
DJ
2788 struct mips_elf_link_hash_entry *h,
2789 int r_type)
b49e97c9 2790{
b15e6682 2791 struct mips_got_entry entry, **loc;
f4416af6 2792 struct mips_got_info *g;
0a44bf69
RS
2793 struct mips_elf_link_hash_table *htab;
2794
2795 htab = mips_elf_hash_table (info);
b15e6682 2796
f4416af6
AO
2797 entry.abfd = NULL;
2798 entry.symndx = -1;
2799 entry.d.address = value;
0f20cc35 2800 entry.tls_type = 0;
f4416af6 2801
a8028dd0 2802 g = mips_elf_got_for_ibfd (htab->got_info, ibfd);
f4416af6
AO
2803 if (g == NULL)
2804 {
a8028dd0 2805 g = mips_elf_got_for_ibfd (htab->got_info, abfd);
f4416af6
AO
2806 BFD_ASSERT (g != NULL);
2807 }
b15e6682 2808
0f20cc35
DJ
2809 /* We might have a symbol, H, if it has been forced local. Use the
2810 global entry then. It doesn't matter whether an entry is local
2811 or global for TLS, since the dynamic linker does not
2812 automatically relocate TLS GOT entries. */
a008ac03 2813 BFD_ASSERT (h == NULL || h->root.forced_local);
0f20cc35
DJ
2814 if (TLS_RELOC_P (r_type))
2815 {
2816 struct mips_got_entry *p;
2817
2818 entry.abfd = ibfd;
2819 if (r_type == R_MIPS_TLS_LDM)
2820 {
2821 entry.tls_type = GOT_TLS_LDM;
2822 entry.symndx = 0;
2823 entry.d.addend = 0;
2824 }
2825 else if (h == NULL)
2826 {
2827 entry.symndx = r_symndx;
2828 entry.d.addend = 0;
2829 }
2830 else
2831 entry.d.h = h;
2832
2833 p = (struct mips_got_entry *)
2834 htab_find (g->got_entries, &entry);
2835
2836 BFD_ASSERT (p);
2837 return p;
2838 }
2839
b15e6682
AO
2840 loc = (struct mips_got_entry **) htab_find_slot (g->got_entries, &entry,
2841 INSERT);
2842 if (*loc)
2843 return *loc;
143d77c5 2844
b15e6682 2845 entry.gotidx = MIPS_ELF_GOT_SIZE (abfd) * g->assigned_gotno++;
0f20cc35 2846 entry.tls_type = 0;
b15e6682
AO
2847
2848 *loc = (struct mips_got_entry *)bfd_alloc (abfd, sizeof entry);
2849
2850 if (! *loc)
2851 return NULL;
143d77c5 2852
b15e6682
AO
2853 memcpy (*loc, &entry, sizeof entry);
2854
8275b357 2855 if (g->assigned_gotno > g->local_gotno)
b49e97c9 2856 {
f4416af6 2857 (*loc)->gotidx = -1;
b49e97c9
TS
2858 /* We didn't allocate enough space in the GOT. */
2859 (*_bfd_error_handler)
2860 (_("not enough GOT space for local GOT entries"));
2861 bfd_set_error (bfd_error_bad_value);
b15e6682 2862 return NULL;
b49e97c9
TS
2863 }
2864
2865 MIPS_ELF_PUT_WORD (abfd, value,
a8028dd0 2866 (htab->sgot->contents + entry.gotidx));
b15e6682 2867
5c18022e 2868 /* These GOT entries need a dynamic relocation on VxWorks. */
0a44bf69
RS
2869 if (htab->is_vxworks)
2870 {
2871 Elf_Internal_Rela outrel;
5c18022e 2872 asection *s;
0a44bf69
RS
2873 bfd_byte *loc;
2874 bfd_vma got_address;
0a44bf69
RS
2875
2876 s = mips_elf_rel_dyn_section (info, FALSE);
a8028dd0
RS
2877 got_address = (htab->sgot->output_section->vma
2878 + htab->sgot->output_offset
0a44bf69
RS
2879 + entry.gotidx);
2880
2881 loc = s->contents + (s->reloc_count++ * sizeof (Elf32_External_Rela));
2882 outrel.r_offset = got_address;
5c18022e
RS
2883 outrel.r_info = ELF32_R_INFO (STN_UNDEF, R_MIPS_32);
2884 outrel.r_addend = value;
0a44bf69
RS
2885 bfd_elf32_swap_reloca_out (abfd, &outrel, loc);
2886 }
2887
b15e6682 2888 return *loc;
b49e97c9
TS
2889}
2890
2891/* Sort the dynamic symbol table so that symbols that need GOT entries
2892 appear towards the end. This reduces the amount of GOT space
2893 required. MAX_LOCAL is used to set the number of local symbols
2894 known to be in the dynamic symbol table. During
2895 _bfd_mips_elf_size_dynamic_sections, this value is 1. Afterward, the
2896 section symbols are added and the count is higher. */
2897
b34976b6 2898static bfd_boolean
9719ad41 2899mips_elf_sort_hash_table (struct bfd_link_info *info, unsigned long max_local)
b49e97c9 2900{
a8028dd0 2901 struct mips_elf_link_hash_table *htab;
b49e97c9
TS
2902 struct mips_elf_hash_sort_data hsd;
2903 struct mips_got_info *g;
b49e97c9 2904
a8028dd0
RS
2905 htab = mips_elf_hash_table (info);
2906 g = htab->got_info;
f4416af6 2907
b49e97c9 2908 hsd.low = NULL;
143d77c5 2909 hsd.max_unref_got_dynindx =
f4416af6
AO
2910 hsd.min_got_dynindx = elf_hash_table (info)->dynsymcount
2911 /* In the multi-got case, assigned_gotno of the master got_info
2912 indicate the number of entries that aren't referenced in the
2913 primary GOT, but that must have entries because there are
2914 dynamic relocations that reference it. Since they aren't
2915 referenced, we move them to the end of the GOT, so that they
2916 don't prevent other entries that are referenced from getting
2917 too large offsets. */
2918 - (g->next ? g->assigned_gotno : 0);
b49e97c9
TS
2919 hsd.max_non_got_dynindx = max_local;
2920 mips_elf_link_hash_traverse (((struct mips_elf_link_hash_table *)
2921 elf_hash_table (info)),
2922 mips_elf_sort_hash_table_f,
2923 &hsd);
2924
2925 /* There should have been enough room in the symbol table to
44c410de 2926 accommodate both the GOT and non-GOT symbols. */
b49e97c9 2927 BFD_ASSERT (hsd.max_non_got_dynindx <= hsd.min_got_dynindx);
f4416af6
AO
2928 BFD_ASSERT ((unsigned long)hsd.max_unref_got_dynindx
2929 <= elf_hash_table (info)->dynsymcount);
b49e97c9
TS
2930
2931 /* Now we know which dynamic symbol has the lowest dynamic symbol
2932 table index in the GOT. */
b49e97c9
TS
2933 g->global_gotsym = hsd.low;
2934
b34976b6 2935 return TRUE;
b49e97c9
TS
2936}
2937
2938/* If H needs a GOT entry, assign it the highest available dynamic
2939 index. Otherwise, assign it the lowest available dynamic
2940 index. */
2941
b34976b6 2942static bfd_boolean
9719ad41 2943mips_elf_sort_hash_table_f (struct mips_elf_link_hash_entry *h, void *data)
b49e97c9 2944{
9719ad41 2945 struct mips_elf_hash_sort_data *hsd = data;
b49e97c9
TS
2946
2947 if (h->root.root.type == bfd_link_hash_warning)
2948 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
2949
2950 /* Symbols without dynamic symbol table entries aren't interesting
2951 at all. */
2952 if (h->root.dynindx == -1)
b34976b6 2953 return TRUE;
b49e97c9 2954
f4416af6
AO
2955 /* Global symbols that need GOT entries that are not explicitly
2956 referenced are marked with got offset 2. Those that are
2957 referenced get a 1, and those that don't need GOT entries get
720199d6
DJ
2958 -1. Forced local symbols may also be marked with got offset 1,
2959 but are never given global GOT entries. */
f4416af6
AO
2960 if (h->root.got.offset == 2)
2961 {
0f20cc35
DJ
2962 BFD_ASSERT (h->tls_type == GOT_NORMAL);
2963
f4416af6
AO
2964 if (hsd->max_unref_got_dynindx == hsd->min_got_dynindx)
2965 hsd->low = (struct elf_link_hash_entry *) h;
2966 h->root.dynindx = hsd->max_unref_got_dynindx++;
2967 }
720199d6 2968 else if (h->root.got.offset != 1 || h->forced_local)
b49e97c9
TS
2969 h->root.dynindx = hsd->max_non_got_dynindx++;
2970 else
2971 {
0f20cc35
DJ
2972 BFD_ASSERT (h->tls_type == GOT_NORMAL);
2973
b49e97c9
TS
2974 h->root.dynindx = --hsd->min_got_dynindx;
2975 hsd->low = (struct elf_link_hash_entry *) h;
2976 }
2977
b34976b6 2978 return TRUE;
b49e97c9
TS
2979}
2980
2981/* If H is a symbol that needs a global GOT entry, but has a dynamic
2982 symbol table index lower than any we've seen to date, record it for
2983 posterity. */
2984
b34976b6 2985static bfd_boolean
9719ad41
RS
2986mips_elf_record_global_got_symbol (struct elf_link_hash_entry *h,
2987 bfd *abfd, struct bfd_link_info *info,
0f20cc35 2988 unsigned char tls_flag)
b49e97c9 2989{
a8028dd0 2990 struct mips_elf_link_hash_table *htab;
f4416af6 2991 struct mips_got_entry entry, **loc;
a8028dd0
RS
2992 struct mips_got_info *g;
2993
2994 htab = mips_elf_hash_table (info);
f4416af6 2995
b49e97c9
TS
2996 /* A global symbol in the GOT must also be in the dynamic symbol
2997 table. */
7c5fcef7
L
2998 if (h->dynindx == -1)
2999 {
3000 switch (ELF_ST_VISIBILITY (h->other))
3001 {
3002 case STV_INTERNAL:
3003 case STV_HIDDEN:
b34976b6 3004 _bfd_mips_elf_hide_symbol (info, h, TRUE);
7c5fcef7
L
3005 break;
3006 }
c152c796 3007 if (!bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 3008 return FALSE;
7c5fcef7 3009 }
b49e97c9 3010
86324f90 3011 /* Make sure we have a GOT to put this entry into. */
a8028dd0 3012 g = htab->got_info;
86324f90
EC
3013 BFD_ASSERT (g != NULL);
3014
f4416af6
AO
3015 entry.abfd = abfd;
3016 entry.symndx = -1;
3017 entry.d.h = (struct mips_elf_link_hash_entry *) h;
0f20cc35 3018 entry.tls_type = 0;
f4416af6
AO
3019
3020 loc = (struct mips_got_entry **) htab_find_slot (g->got_entries, &entry,
3021 INSERT);
3022
b49e97c9
TS
3023 /* If we've already marked this entry as needing GOT space, we don't
3024 need to do it again. */
f4416af6 3025 if (*loc)
0f20cc35
DJ
3026 {
3027 (*loc)->tls_type |= tls_flag;
3028 return TRUE;
3029 }
f4416af6
AO
3030
3031 *loc = (struct mips_got_entry *)bfd_alloc (abfd, sizeof entry);
3032
3033 if (! *loc)
3034 return FALSE;
143d77c5 3035
f4416af6 3036 entry.gotidx = -1;
0f20cc35
DJ
3037 entry.tls_type = tls_flag;
3038
f4416af6
AO
3039 memcpy (*loc, &entry, sizeof entry);
3040
b49e97c9 3041 if (h->got.offset != MINUS_ONE)
b34976b6 3042 return TRUE;
b49e97c9 3043
0f20cc35 3044 if (tls_flag == 0)
8275b357
RS
3045 {
3046 /* By setting this to a value other than -1, we are indicating that
3047 there needs to be a GOT entry for H. Avoid using zero, as the
3048 generic ELF copy_indirect_symbol tests for <= 0. */
3049 h->got.offset = 1;
3050 if (h->forced_local)
3051 g->local_gotno++;
3052 }
b49e97c9 3053
b34976b6 3054 return TRUE;
b49e97c9 3055}
f4416af6
AO
3056
3057/* Reserve space in G for a GOT entry containing the value of symbol
3058 SYMNDX in input bfd ABDF, plus ADDEND. */
3059
3060static bfd_boolean
9719ad41 3061mips_elf_record_local_got_symbol (bfd *abfd, long symndx, bfd_vma addend,
a8028dd0 3062 struct bfd_link_info *info,
0f20cc35 3063 unsigned char tls_flag)
f4416af6 3064{
a8028dd0
RS
3065 struct mips_elf_link_hash_table *htab;
3066 struct mips_got_info *g;
f4416af6
AO
3067 struct mips_got_entry entry, **loc;
3068
a8028dd0
RS
3069 htab = mips_elf_hash_table (info);
3070 g = htab->got_info;
3071 BFD_ASSERT (g != NULL);
3072
f4416af6
AO
3073 entry.abfd = abfd;
3074 entry.symndx = symndx;
3075 entry.d.addend = addend;
0f20cc35 3076 entry.tls_type = tls_flag;
f4416af6
AO
3077 loc = (struct mips_got_entry **)
3078 htab_find_slot (g->got_entries, &entry, INSERT);
3079
3080 if (*loc)
0f20cc35
DJ
3081 {
3082 if (tls_flag == GOT_TLS_GD && !((*loc)->tls_type & GOT_TLS_GD))
3083 {
3084 g->tls_gotno += 2;
3085 (*loc)->tls_type |= tls_flag;
3086 }
3087 else if (tls_flag == GOT_TLS_IE && !((*loc)->tls_type & GOT_TLS_IE))
3088 {
3089 g->tls_gotno += 1;
3090 (*loc)->tls_type |= tls_flag;
3091 }
3092 return TRUE;
3093 }
f4416af6 3094
0f20cc35
DJ
3095 if (tls_flag != 0)
3096 {
3097 entry.gotidx = -1;
3098 entry.tls_type = tls_flag;
3099 if (tls_flag == GOT_TLS_IE)
3100 g->tls_gotno += 1;
3101 else if (tls_flag == GOT_TLS_GD)
3102 g->tls_gotno += 2;
3103 else if (g->tls_ldm_offset == MINUS_ONE)
3104 {
3105 g->tls_ldm_offset = MINUS_TWO;
3106 g->tls_gotno += 2;
3107 }
3108 }
3109 else
3110 {
3111 entry.gotidx = g->local_gotno++;
3112 entry.tls_type = 0;
3113 }
f4416af6
AO
3114
3115 *loc = (struct mips_got_entry *)bfd_alloc (abfd, sizeof entry);
3116
3117 if (! *loc)
3118 return FALSE;
143d77c5 3119
f4416af6
AO
3120 memcpy (*loc, &entry, sizeof entry);
3121
3122 return TRUE;
3123}
c224138d
RS
3124
3125/* Return the maximum number of GOT page entries required for RANGE. */
3126
3127static bfd_vma
3128mips_elf_pages_for_range (const struct mips_got_page_range *range)
3129{
3130 return (range->max_addend - range->min_addend + 0x1ffff) >> 16;
3131}
3132
3a3b6725 3133/* Record that ABFD has a page relocation against symbol SYMNDX and
a8028dd0
RS
3134 that ADDEND is the addend for that relocation.
3135
3136 This function creates an upper bound on the number of GOT slots
3137 required; no attempt is made to combine references to non-overridable
3138 global symbols across multiple input files. */
c224138d
RS
3139
3140static bfd_boolean
a8028dd0
RS
3141mips_elf_record_got_page_entry (struct bfd_link_info *info, bfd *abfd,
3142 long symndx, bfd_signed_vma addend)
c224138d 3143{
a8028dd0
RS
3144 struct mips_elf_link_hash_table *htab;
3145 struct mips_got_info *g;
c224138d
RS
3146 struct mips_got_page_entry lookup, *entry;
3147 struct mips_got_page_range **range_ptr, *range;
3148 bfd_vma old_pages, new_pages;
3149 void **loc;
3150
a8028dd0
RS
3151 htab = mips_elf_hash_table (info);
3152 g = htab->got_info;
3153 BFD_ASSERT (g != NULL);
3154
c224138d
RS
3155 /* Find the mips_got_page_entry hash table entry for this symbol. */
3156 lookup.abfd = abfd;
3157 lookup.symndx = symndx;
3158 loc = htab_find_slot (g->got_page_entries, &lookup, INSERT);
3159 if (loc == NULL)
3160 return FALSE;
3161
3162 /* Create a mips_got_page_entry if this is the first time we've
3163 seen the symbol. */
3164 entry = (struct mips_got_page_entry *) *loc;
3165 if (!entry)
3166 {
3167 entry = bfd_alloc (abfd, sizeof (*entry));
3168 if (!entry)
3169 return FALSE;
3170
3171 entry->abfd = abfd;
3172 entry->symndx = symndx;
3173 entry->ranges = NULL;
3174 entry->num_pages = 0;
3175 *loc = entry;
3176 }
3177
3178 /* Skip over ranges whose maximum extent cannot share a page entry
3179 with ADDEND. */
3180 range_ptr = &entry->ranges;
3181 while (*range_ptr && addend > (*range_ptr)->max_addend + 0xffff)
3182 range_ptr = &(*range_ptr)->next;
3183
3184 /* If we scanned to the end of the list, or found a range whose
3185 minimum extent cannot share a page entry with ADDEND, create
3186 a new singleton range. */
3187 range = *range_ptr;
3188 if (!range || addend < range->min_addend - 0xffff)
3189 {
3190 range = bfd_alloc (abfd, sizeof (*range));
3191 if (!range)
3192 return FALSE;
3193
3194 range->next = *range_ptr;
3195 range->min_addend = addend;
3196 range->max_addend = addend;
3197
3198 *range_ptr = range;
3199 entry->num_pages++;
3200 g->page_gotno++;
3201 return TRUE;
3202 }
3203
3204 /* Remember how many pages the old range contributed. */
3205 old_pages = mips_elf_pages_for_range (range);
3206
3207 /* Update the ranges. */
3208 if (addend < range->min_addend)
3209 range->min_addend = addend;
3210 else if (addend > range->max_addend)
3211 {
3212 if (range->next && addend >= range->next->min_addend - 0xffff)
3213 {
3214 old_pages += mips_elf_pages_for_range (range->next);
3215 range->max_addend = range->next->max_addend;
3216 range->next = range->next->next;
3217 }
3218 else
3219 range->max_addend = addend;
3220 }
3221
3222 /* Record any change in the total estimate. */
3223 new_pages = mips_elf_pages_for_range (range);
3224 if (old_pages != new_pages)
3225 {
3226 entry->num_pages += new_pages - old_pages;
3227 g->page_gotno += new_pages - old_pages;
3228 }
3229
3230 return TRUE;
3231}
f4416af6
AO
3232\f
3233/* Compute the hash value of the bfd in a bfd2got hash entry. */
3234
3235static hashval_t
9719ad41 3236mips_elf_bfd2got_entry_hash (const void *entry_)
f4416af6
AO
3237{
3238 const struct mips_elf_bfd2got_hash *entry
3239 = (struct mips_elf_bfd2got_hash *)entry_;
3240
3241 return entry->bfd->id;
3242}
3243
3244/* Check whether two hash entries have the same bfd. */
3245
3246static int
9719ad41 3247mips_elf_bfd2got_entry_eq (const void *entry1, const void *entry2)
f4416af6
AO
3248{
3249 const struct mips_elf_bfd2got_hash *e1
3250 = (const struct mips_elf_bfd2got_hash *)entry1;
3251 const struct mips_elf_bfd2got_hash *e2
3252 = (const struct mips_elf_bfd2got_hash *)entry2;
3253
3254 return e1->bfd == e2->bfd;
3255}
3256
bad36eac 3257/* In a multi-got link, determine the GOT to be used for IBFD. G must
f4416af6
AO
3258 be the master GOT data. */
3259
3260static struct mips_got_info *
9719ad41 3261mips_elf_got_for_ibfd (struct mips_got_info *g, bfd *ibfd)
f4416af6
AO
3262{
3263 struct mips_elf_bfd2got_hash e, *p;
3264
3265 if (! g->bfd2got)
3266 return g;
3267
3268 e.bfd = ibfd;
9719ad41 3269 p = htab_find (g->bfd2got, &e);
f4416af6
AO
3270 return p ? p->g : NULL;
3271}
3272
c224138d
RS
3273/* Use BFD2GOT to find ABFD's got entry, creating one if none exists.
3274 Return NULL if an error occured. */
f4416af6 3275
c224138d
RS
3276static struct mips_got_info *
3277mips_elf_get_got_for_bfd (struct htab *bfd2got, bfd *output_bfd,
3278 bfd *input_bfd)
f4416af6 3279{
f4416af6 3280 struct mips_elf_bfd2got_hash bfdgot_entry, *bfdgot;
c224138d 3281 struct mips_got_info *g;
f4416af6 3282 void **bfdgotp;
143d77c5 3283
c224138d 3284 bfdgot_entry.bfd = input_bfd;
f4416af6 3285 bfdgotp = htab_find_slot (bfd2got, &bfdgot_entry, INSERT);
c224138d 3286 bfdgot = (struct mips_elf_bfd2got_hash *) *bfdgotp;
f4416af6 3287
c224138d 3288 if (bfdgot == NULL)
f4416af6 3289 {
c224138d
RS
3290 bfdgot = ((struct mips_elf_bfd2got_hash *)
3291 bfd_alloc (output_bfd, sizeof (struct mips_elf_bfd2got_hash)));
f4416af6 3292 if (bfdgot == NULL)
c224138d 3293 return NULL;
f4416af6
AO
3294
3295 *bfdgotp = bfdgot;
3296
c224138d
RS
3297 g = ((struct mips_got_info *)
3298 bfd_alloc (output_bfd, sizeof (struct mips_got_info)));
f4416af6 3299 if (g == NULL)
c224138d
RS
3300 return NULL;
3301
3302 bfdgot->bfd = input_bfd;
3303 bfdgot->g = g;
f4416af6
AO
3304
3305 g->global_gotsym = NULL;
3306 g->global_gotno = 0;
3307 g->local_gotno = 0;
c224138d 3308 g->page_gotno = 0;
f4416af6 3309 g->assigned_gotno = -1;
0f20cc35
DJ
3310 g->tls_gotno = 0;
3311 g->tls_assigned_gotno = 0;
3312 g->tls_ldm_offset = MINUS_ONE;
f4416af6 3313 g->got_entries = htab_try_create (1, mips_elf_multi_got_entry_hash,
9719ad41 3314 mips_elf_multi_got_entry_eq, NULL);
f4416af6 3315 if (g->got_entries == NULL)
c224138d
RS
3316 return NULL;
3317
3318 g->got_page_entries = htab_try_create (1, mips_got_page_entry_hash,
3319 mips_got_page_entry_eq, NULL);
3320 if (g->got_page_entries == NULL)
3321 return NULL;
f4416af6
AO
3322
3323 g->bfd2got = NULL;
3324 g->next = NULL;
3325 }
3326
c224138d
RS
3327 return bfdgot->g;
3328}
3329
3330/* A htab_traverse callback for the entries in the master got.
3331 Create one separate got for each bfd that has entries in the global
3332 got, such that we can tell how many local and global entries each
3333 bfd requires. */
3334
3335static int
3336mips_elf_make_got_per_bfd (void **entryp, void *p)
3337{
3338 struct mips_got_entry *entry = (struct mips_got_entry *)*entryp;
3339 struct mips_elf_got_per_bfd_arg *arg = (struct mips_elf_got_per_bfd_arg *)p;
3340 struct mips_got_info *g;
3341
3342 g = mips_elf_get_got_for_bfd (arg->bfd2got, arg->obfd, entry->abfd);
3343 if (g == NULL)
3344 {
3345 arg->obfd = NULL;
3346 return 0;
3347 }
3348
f4416af6
AO
3349 /* Insert the GOT entry in the bfd's got entry hash table. */
3350 entryp = htab_find_slot (g->got_entries, entry, INSERT);
3351 if (*entryp != NULL)
3352 return 1;
143d77c5 3353
f4416af6
AO
3354 *entryp = entry;
3355
0f20cc35
DJ
3356 if (entry->tls_type)
3357 {
3358 if (entry->tls_type & (GOT_TLS_GD | GOT_TLS_LDM))
3359 g->tls_gotno += 2;
3360 if (entry->tls_type & GOT_TLS_IE)
3361 g->tls_gotno += 1;
3362 }
3363 else if (entry->symndx >= 0 || entry->d.h->forced_local)
f4416af6
AO
3364 ++g->local_gotno;
3365 else
3366 ++g->global_gotno;
3367
3368 return 1;
3369}
3370
c224138d
RS
3371/* A htab_traverse callback for the page entries in the master got.
3372 Associate each page entry with the bfd's got. */
3373
3374static int
3375mips_elf_make_got_pages_per_bfd (void **entryp, void *p)
3376{
3377 struct mips_got_page_entry *entry = (struct mips_got_page_entry *) *entryp;
3378 struct mips_elf_got_per_bfd_arg *arg = (struct mips_elf_got_per_bfd_arg *) p;
3379 struct mips_got_info *g;
3380
3381 g = mips_elf_get_got_for_bfd (arg->bfd2got, arg->obfd, entry->abfd);
3382 if (g == NULL)
3383 {
3384 arg->obfd = NULL;
3385 return 0;
3386 }
3387
3388 /* Insert the GOT entry in the bfd's got entry hash table. */
3389 entryp = htab_find_slot (g->got_page_entries, entry, INSERT);
3390 if (*entryp != NULL)
3391 return 1;
3392
3393 *entryp = entry;
3394 g->page_gotno += entry->num_pages;
3395 return 1;
3396}
3397
3398/* Consider merging the got described by BFD2GOT with TO, using the
3399 information given by ARG. Return -1 if this would lead to overflow,
3400 1 if they were merged successfully, and 0 if a merge failed due to
3401 lack of memory. (These values are chosen so that nonnegative return
3402 values can be returned by a htab_traverse callback.) */
3403
3404static int
3405mips_elf_merge_got_with (struct mips_elf_bfd2got_hash *bfd2got,
3406 struct mips_got_info *to,
3407 struct mips_elf_got_per_bfd_arg *arg)
3408{
3409 struct mips_got_info *from = bfd2got->g;
3410 unsigned int estimate;
3411
3412 /* Work out how many page entries we would need for the combined GOT. */
3413 estimate = arg->max_pages;
3414 if (estimate >= from->page_gotno + to->page_gotno)
3415 estimate = from->page_gotno + to->page_gotno;
3416
3417 /* And conservatively estimate how many local, global and TLS entries
3418 would be needed. */
3419 estimate += (from->local_gotno
3420 + from->global_gotno
3421 + from->tls_gotno
3422 + to->local_gotno
3423 + to->global_gotno
3424 + to->tls_gotno);
3425
3426 /* Bail out if the combined GOT might be too big. */
3427 if (estimate > arg->max_count)
3428 return -1;
3429
3430 /* Commit to the merge. Record that TO is now the bfd for this got. */
3431 bfd2got->g = to;
3432
3433 /* Transfer the bfd's got information from FROM to TO. */
3434 htab_traverse (from->got_entries, mips_elf_make_got_per_bfd, arg);
3435 if (arg->obfd == NULL)
3436 return 0;
3437
3438 htab_traverse (from->got_page_entries, mips_elf_make_got_pages_per_bfd, arg);
3439 if (arg->obfd == NULL)
3440 return 0;
3441
3442 /* We don't have to worry about releasing memory of the actual
3443 got entries, since they're all in the master got_entries hash
3444 table anyway. */
3445 htab_delete (from->got_entries);
3446 htab_delete (from->got_page_entries);
3447 return 1;
3448}
3449
f4416af6
AO
3450/* Attempt to merge gots of different input bfds. Try to use as much
3451 as possible of the primary got, since it doesn't require explicit
3452 dynamic relocations, but don't use bfds that would reference global
3453 symbols out of the addressable range. Failing the primary got,
3454 attempt to merge with the current got, or finish the current got
3455 and then make make the new got current. */
3456
3457static int
9719ad41 3458mips_elf_merge_gots (void **bfd2got_, void *p)
f4416af6
AO
3459{
3460 struct mips_elf_bfd2got_hash *bfd2got
3461 = (struct mips_elf_bfd2got_hash *)*bfd2got_;
3462 struct mips_elf_got_per_bfd_arg *arg = (struct mips_elf_got_per_bfd_arg *)p;
c224138d
RS
3463 struct mips_got_info *g;
3464 unsigned int estimate;
3465 int result;
3466
3467 g = bfd2got->g;
3468
3469 /* Work out the number of page, local and TLS entries. */
3470 estimate = arg->max_pages;
3471 if (estimate > g->page_gotno)
3472 estimate = g->page_gotno;
3473 estimate += g->local_gotno + g->tls_gotno;
0f20cc35
DJ
3474
3475 /* We place TLS GOT entries after both locals and globals. The globals
3476 for the primary GOT may overflow the normal GOT size limit, so be
3477 sure not to merge a GOT which requires TLS with the primary GOT in that
3478 case. This doesn't affect non-primary GOTs. */
c224138d 3479 estimate += (g->tls_gotno > 0 ? arg->global_count : g->global_gotno);
143d77c5 3480
c224138d 3481 if (estimate <= arg->max_count)
f4416af6 3482 {
c224138d
RS
3483 /* If we don't have a primary GOT, use it as
3484 a starting point for the primary GOT. */
3485 if (!arg->primary)
3486 {
3487 arg->primary = bfd2got->g;
3488 return 1;
3489 }
f4416af6 3490
c224138d
RS
3491 /* Try merging with the primary GOT. */
3492 result = mips_elf_merge_got_with (bfd2got, arg->primary, arg);
3493 if (result >= 0)
3494 return result;
f4416af6 3495 }
c224138d 3496
f4416af6 3497 /* If we can merge with the last-created got, do it. */
c224138d 3498 if (arg->current)
f4416af6 3499 {
c224138d
RS
3500 result = mips_elf_merge_got_with (bfd2got, arg->current, arg);
3501 if (result >= 0)
3502 return result;
f4416af6 3503 }
c224138d 3504
f4416af6
AO
3505 /* Well, we couldn't merge, so create a new GOT. Don't check if it
3506 fits; if it turns out that it doesn't, we'll get relocation
3507 overflows anyway. */
c224138d
RS
3508 g->next = arg->current;
3509 arg->current = g;
0f20cc35
DJ
3510
3511 return 1;
3512}
3513
ead49a57
RS
3514/* Set the TLS GOT index for the GOT entry in ENTRYP. ENTRYP's NEXT field
3515 is null iff there is just a single GOT. */
0f20cc35
DJ
3516
3517static int
3518mips_elf_initialize_tls_index (void **entryp, void *p)
3519{
3520 struct mips_got_entry *entry = (struct mips_got_entry *)*entryp;
3521 struct mips_got_info *g = p;
ead49a57 3522 bfd_vma next_index;
cbf2cba4 3523 unsigned char tls_type;
0f20cc35
DJ
3524
3525 /* We're only interested in TLS symbols. */
3526 if (entry->tls_type == 0)
3527 return 1;
3528
ead49a57
RS
3529 next_index = MIPS_ELF_GOT_SIZE (entry->abfd) * (long) g->tls_assigned_gotno;
3530
3531 if (entry->symndx == -1 && g->next == NULL)
0f20cc35 3532 {
ead49a57
RS
3533 /* A type (3) got entry in the single-GOT case. We use the symbol's
3534 hash table entry to track its index. */
3535 if (entry->d.h->tls_type & GOT_TLS_OFFSET_DONE)
3536 return 1;
3537 entry->d.h->tls_type |= GOT_TLS_OFFSET_DONE;
3538 entry->d.h->tls_got_offset = next_index;
cbf2cba4 3539 tls_type = entry->d.h->tls_type;
ead49a57
RS
3540 }
3541 else
3542 {
3543 if (entry->tls_type & GOT_TLS_LDM)
0f20cc35 3544 {
ead49a57
RS
3545 /* There are separate mips_got_entry objects for each input bfd
3546 that requires an LDM entry. Make sure that all LDM entries in
3547 a GOT resolve to the same index. */
3548 if (g->tls_ldm_offset != MINUS_TWO && g->tls_ldm_offset != MINUS_ONE)
4005427f 3549 {
ead49a57 3550 entry->gotidx = g->tls_ldm_offset;
4005427f
RS
3551 return 1;
3552 }
ead49a57 3553 g->tls_ldm_offset = next_index;
0f20cc35 3554 }
ead49a57 3555 entry->gotidx = next_index;
cbf2cba4 3556 tls_type = entry->tls_type;
f4416af6
AO
3557 }
3558
ead49a57 3559 /* Account for the entries we've just allocated. */
cbf2cba4 3560 if (tls_type & (GOT_TLS_GD | GOT_TLS_LDM))
0f20cc35 3561 g->tls_assigned_gotno += 2;
cbf2cba4 3562 if (tls_type & GOT_TLS_IE)
0f20cc35
DJ
3563 g->tls_assigned_gotno += 1;
3564
f4416af6
AO
3565 return 1;
3566}
3567
3568/* If passed a NULL mips_got_info in the argument, set the marker used
3569 to tell whether a global symbol needs a got entry (in the primary
3570 got) to the given VALUE.
3571
3572 If passed a pointer G to a mips_got_info in the argument (it must
3573 not be the primary GOT), compute the offset from the beginning of
3574 the (primary) GOT section to the entry in G corresponding to the
3575 global symbol. G's assigned_gotno must contain the index of the
3576 first available global GOT entry in G. VALUE must contain the size
3577 of a GOT entry in bytes. For each global GOT entry that requires a
3578 dynamic relocation, NEEDED_RELOCS is incremented, and the symbol is
4cc11e76 3579 marked as not eligible for lazy resolution through a function
f4416af6
AO
3580 stub. */
3581static int
9719ad41 3582mips_elf_set_global_got_offset (void **entryp, void *p)
f4416af6
AO
3583{
3584 struct mips_got_entry *entry = (struct mips_got_entry *)*entryp;
3585 struct mips_elf_set_global_got_offset_arg *arg
3586 = (struct mips_elf_set_global_got_offset_arg *)p;
3587 struct mips_got_info *g = arg->g;
3588
0f20cc35
DJ
3589 if (g && entry->tls_type != GOT_NORMAL)
3590 arg->needed_relocs +=
3591 mips_tls_got_relocs (arg->info, entry->tls_type,
3592 entry->symndx == -1 ? &entry->d.h->root : NULL);
3593
f4416af6 3594 if (entry->abfd != NULL && entry->symndx == -1
0f20cc35 3595 && entry->d.h->root.dynindx != -1
720199d6 3596 && !entry->d.h->forced_local
0f20cc35 3597 && entry->d.h->tls_type == GOT_NORMAL)
f4416af6
AO
3598 {
3599 if (g)
3600 {
3601 BFD_ASSERT (g->global_gotsym == NULL);
3602
3603 entry->gotidx = arg->value * (long) g->assigned_gotno++;
f4416af6
AO
3604 if (arg->info->shared
3605 || (elf_hash_table (arg->info)->dynamic_sections_created
f5385ebf
AM
3606 && entry->d.h->root.def_dynamic
3607 && !entry->d.h->root.def_regular))
f4416af6
AO
3608 ++arg->needed_relocs;
3609 }
3610 else
3611 entry->d.h->root.got.offset = arg->value;
3612 }
3613
3614 return 1;
3615}
3616
0626d451
RS
3617/* Mark any global symbols referenced in the GOT we are iterating over
3618 as inelligible for lazy resolution stubs. */
3619static int
9719ad41 3620mips_elf_set_no_stub (void **entryp, void *p ATTRIBUTE_UNUSED)
0626d451
RS
3621{
3622 struct mips_got_entry *entry = (struct mips_got_entry *)*entryp;
3623
3624 if (entry->abfd != NULL
3625 && entry->symndx == -1
3626 && entry->d.h->root.dynindx != -1)
3627 entry->d.h->no_fn_stub = TRUE;
3628
3629 return 1;
3630}
3631
f4416af6
AO
3632/* Follow indirect and warning hash entries so that each got entry
3633 points to the final symbol definition. P must point to a pointer
3634 to the hash table we're traversing. Since this traversal may
3635 modify the hash table, we set this pointer to NULL to indicate
3636 we've made a potentially-destructive change to the hash table, so
3637 the traversal must be restarted. */
3638static int
9719ad41 3639mips_elf_resolve_final_got_entry (void **entryp, void *p)
f4416af6
AO
3640{
3641 struct mips_got_entry *entry = (struct mips_got_entry *)*entryp;
3642 htab_t got_entries = *(htab_t *)p;
3643
3644 if (entry->abfd != NULL && entry->symndx == -1)
3645 {
3646 struct mips_elf_link_hash_entry *h = entry->d.h;
3647
3648 while (h->root.root.type == bfd_link_hash_indirect
3649 || h->root.root.type == bfd_link_hash_warning)
3650 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
3651
3652 if (entry->d.h == h)
3653 return 1;
143d77c5 3654
f4416af6
AO
3655 entry->d.h = h;
3656
3657 /* If we can't find this entry with the new bfd hash, re-insert
3658 it, and get the traversal restarted. */
3659 if (! htab_find (got_entries, entry))
3660 {
3661 htab_clear_slot (got_entries, entryp);
3662 entryp = htab_find_slot (got_entries, entry, INSERT);
3663 if (! *entryp)
3664 *entryp = entry;
3665 /* Abort the traversal, since the whole table may have
3666 moved, and leave it up to the parent to restart the
3667 process. */
3668 *(htab_t *)p = NULL;
3669 return 0;
3670 }
3671 /* We might want to decrement the global_gotno count, but it's
3672 either too early or too late for that at this point. */
3673 }
143d77c5 3674
f4416af6
AO
3675 return 1;
3676}
3677
3678/* Turn indirect got entries in a got_entries table into their final
3679 locations. */
3680static void
9719ad41 3681mips_elf_resolve_final_got_entries (struct mips_got_info *g)
f4416af6
AO
3682{
3683 htab_t got_entries;
3684
3685 do
3686 {
3687 got_entries = g->got_entries;
3688
3689 htab_traverse (got_entries,
3690 mips_elf_resolve_final_got_entry,
3691 &got_entries);
3692 }
3693 while (got_entries == NULL);
3694}
3695
3696/* Return the offset of an input bfd IBFD's GOT from the beginning of
3697 the primary GOT. */
3698static bfd_vma
9719ad41 3699mips_elf_adjust_gp (bfd *abfd, struct mips_got_info *g, bfd *ibfd)
f4416af6
AO
3700{
3701 if (g->bfd2got == NULL)
3702 return 0;
3703
3704 g = mips_elf_got_for_ibfd (g, ibfd);
3705 if (! g)
3706 return 0;
3707
3708 BFD_ASSERT (g->next);
3709
3710 g = g->next;
143d77c5 3711
0f20cc35
DJ
3712 return (g->local_gotno + g->global_gotno + g->tls_gotno)
3713 * MIPS_ELF_GOT_SIZE (abfd);
f4416af6
AO
3714}
3715
3716/* Turn a single GOT that is too big for 16-bit addressing into
3717 a sequence of GOTs, each one 16-bit addressable. */
3718
3719static bfd_boolean
9719ad41 3720mips_elf_multi_got (bfd *abfd, struct bfd_link_info *info,
a8028dd0 3721 asection *got, bfd_size_type pages)
f4416af6 3722{
a8028dd0 3723 struct mips_elf_link_hash_table *htab;
f4416af6
AO
3724 struct mips_elf_got_per_bfd_arg got_per_bfd_arg;
3725 struct mips_elf_set_global_got_offset_arg set_got_offset_arg;
a8028dd0 3726 struct mips_got_info *g, *gg;
f4416af6
AO
3727 unsigned int assign;
3728
a8028dd0
RS
3729 htab = mips_elf_hash_table (info);
3730 g = htab->got_info;
f4416af6 3731 g->bfd2got = htab_try_create (1, mips_elf_bfd2got_entry_hash,
9719ad41 3732 mips_elf_bfd2got_entry_eq, NULL);
f4416af6
AO
3733 if (g->bfd2got == NULL)
3734 return FALSE;
3735
3736 got_per_bfd_arg.bfd2got = g->bfd2got;
3737 got_per_bfd_arg.obfd = abfd;
3738 got_per_bfd_arg.info = info;
3739
3740 /* Count how many GOT entries each input bfd requires, creating a
3741 map from bfd to got info while at that. */
f4416af6
AO
3742 htab_traverse (g->got_entries, mips_elf_make_got_per_bfd, &got_per_bfd_arg);
3743 if (got_per_bfd_arg.obfd == NULL)
3744 return FALSE;
3745
c224138d
RS
3746 /* Also count how many page entries each input bfd requires. */
3747 htab_traverse (g->got_page_entries, mips_elf_make_got_pages_per_bfd,
3748 &got_per_bfd_arg);
3749 if (got_per_bfd_arg.obfd == NULL)
3750 return FALSE;
3751
f4416af6
AO
3752 got_per_bfd_arg.current = NULL;
3753 got_per_bfd_arg.primary = NULL;
0a44bf69 3754 got_per_bfd_arg.max_count = ((MIPS_ELF_GOT_MAX_SIZE (info)
f4416af6 3755 / MIPS_ELF_GOT_SIZE (abfd))
c224138d
RS
3756 - MIPS_RESERVED_GOTNO (info));
3757 got_per_bfd_arg.max_pages = pages;
0f20cc35
DJ
3758 /* The number of globals that will be included in the primary GOT.
3759 See the calls to mips_elf_set_global_got_offset below for more
3760 information. */
3761 got_per_bfd_arg.global_count = g->global_gotno;
f4416af6
AO
3762
3763 /* Try to merge the GOTs of input bfds together, as long as they
3764 don't seem to exceed the maximum GOT size, choosing one of them
3765 to be the primary GOT. */
3766 htab_traverse (g->bfd2got, mips_elf_merge_gots, &got_per_bfd_arg);
3767 if (got_per_bfd_arg.obfd == NULL)
3768 return FALSE;
3769
0f20cc35 3770 /* If we do not find any suitable primary GOT, create an empty one. */
f4416af6
AO
3771 if (got_per_bfd_arg.primary == NULL)
3772 {
3773 g->next = (struct mips_got_info *)
3774 bfd_alloc (abfd, sizeof (struct mips_got_info));
3775 if (g->next == NULL)
3776 return FALSE;
3777
3778 g->next->global_gotsym = NULL;
3779 g->next->global_gotno = 0;
3780 g->next->local_gotno = 0;
c224138d 3781 g->next->page_gotno = 0;
0f20cc35 3782 g->next->tls_gotno = 0;
f4416af6 3783 g->next->assigned_gotno = 0;
0f20cc35
DJ
3784 g->next->tls_assigned_gotno = 0;
3785 g->next->tls_ldm_offset = MINUS_ONE;
f4416af6
AO
3786 g->next->got_entries = htab_try_create (1, mips_elf_multi_got_entry_hash,
3787 mips_elf_multi_got_entry_eq,
9719ad41 3788 NULL);
f4416af6
AO
3789 if (g->next->got_entries == NULL)
3790 return FALSE;
c224138d
RS
3791 g->next->got_page_entries = htab_try_create (1, mips_got_page_entry_hash,
3792 mips_got_page_entry_eq,
3793 NULL);
3794 if (g->next->got_page_entries == NULL)
3795 return FALSE;
f4416af6
AO
3796 g->next->bfd2got = NULL;
3797 }
3798 else
3799 g->next = got_per_bfd_arg.primary;
3800 g->next->next = got_per_bfd_arg.current;
3801
3802 /* GG is now the master GOT, and G is the primary GOT. */
3803 gg = g;
3804 g = g->next;
3805
3806 /* Map the output bfd to the primary got. That's what we're going
3807 to use for bfds that use GOT16 or GOT_PAGE relocations that we
3808 didn't mark in check_relocs, and we want a quick way to find it.
3809 We can't just use gg->next because we're going to reverse the
3810 list. */
3811 {
3812 struct mips_elf_bfd2got_hash *bfdgot;
3813 void **bfdgotp;
143d77c5 3814
f4416af6
AO
3815 bfdgot = (struct mips_elf_bfd2got_hash *)bfd_alloc
3816 (abfd, sizeof (struct mips_elf_bfd2got_hash));
3817
3818 if (bfdgot == NULL)
3819 return FALSE;
3820
3821 bfdgot->bfd = abfd;
3822 bfdgot->g = g;
3823 bfdgotp = htab_find_slot (gg->bfd2got, bfdgot, INSERT);
3824
3825 BFD_ASSERT (*bfdgotp == NULL);
3826 *bfdgotp = bfdgot;
3827 }
3828
3829 /* The IRIX dynamic linker requires every symbol that is referenced
3830 in a dynamic relocation to be present in the primary GOT, so
3831 arrange for them to appear after those that are actually
3832 referenced.
3833
3834 GNU/Linux could very well do without it, but it would slow down
3835 the dynamic linker, since it would have to resolve every dynamic
3836 symbol referenced in other GOTs more than once, without help from
3837 the cache. Also, knowing that every external symbol has a GOT
3838 helps speed up the resolution of local symbols too, so GNU/Linux
3839 follows IRIX's practice.
143d77c5 3840
f4416af6
AO
3841 The number 2 is used by mips_elf_sort_hash_table_f to count
3842 global GOT symbols that are unreferenced in the primary GOT, with
3843 an initial dynamic index computed from gg->assigned_gotno, where
3844 the number of unreferenced global entries in the primary GOT is
3845 preserved. */
3846 if (1)
3847 {
3848 gg->assigned_gotno = gg->global_gotno - g->global_gotno;
3849 g->global_gotno = gg->global_gotno;
3850 set_got_offset_arg.value = 2;
3851 }
3852 else
3853 {
3854 /* This could be used for dynamic linkers that don't optimize
3855 symbol resolution while applying relocations so as to use
3856 primary GOT entries or assuming the symbol is locally-defined.
3857 With this code, we assign lower dynamic indices to global
3858 symbols that are not referenced in the primary GOT, so that
3859 their entries can be omitted. */
3860 gg->assigned_gotno = 0;
3861 set_got_offset_arg.value = -1;
3862 }
3863
3864 /* Reorder dynamic symbols as described above (which behavior
3865 depends on the setting of VALUE). */
3866 set_got_offset_arg.g = NULL;
3867 htab_traverse (gg->got_entries, mips_elf_set_global_got_offset,
3868 &set_got_offset_arg);
3869 set_got_offset_arg.value = 1;
3870 htab_traverse (g->got_entries, mips_elf_set_global_got_offset,
3871 &set_got_offset_arg);
3872 if (! mips_elf_sort_hash_table (info, 1))
3873 return FALSE;
3874
3875 /* Now go through the GOTs assigning them offset ranges.
3876 [assigned_gotno, local_gotno[ will be set to the range of local
3877 entries in each GOT. We can then compute the end of a GOT by
3878 adding local_gotno to global_gotno. We reverse the list and make
3879 it circular since then we'll be able to quickly compute the
3880 beginning of a GOT, by computing the end of its predecessor. To
3881 avoid special cases for the primary GOT, while still preserving
3882 assertions that are valid for both single- and multi-got links,
3883 we arrange for the main got struct to have the right number of
3884 global entries, but set its local_gotno such that the initial
3885 offset of the primary GOT is zero. Remember that the primary GOT
3886 will become the last item in the circular linked list, so it
3887 points back to the master GOT. */
3888 gg->local_gotno = -g->global_gotno;
3889 gg->global_gotno = g->global_gotno;
0f20cc35 3890 gg->tls_gotno = 0;
f4416af6
AO
3891 assign = 0;
3892 gg->next = gg;
3893
3894 do
3895 {
3896 struct mips_got_info *gn;
3897
0a44bf69 3898 assign += MIPS_RESERVED_GOTNO (info);
f4416af6 3899 g->assigned_gotno = assign;
c224138d
RS
3900 g->local_gotno += assign;
3901 g->local_gotno += (pages < g->page_gotno ? pages : g->page_gotno);
0f20cc35
DJ
3902 assign = g->local_gotno + g->global_gotno + g->tls_gotno;
3903
ead49a57
RS
3904 /* Take g out of the direct list, and push it onto the reversed
3905 list that gg points to. g->next is guaranteed to be nonnull after
3906 this operation, as required by mips_elf_initialize_tls_index. */
3907 gn = g->next;
3908 g->next = gg->next;
3909 gg->next = g;
3910
0f20cc35
DJ
3911 /* Set up any TLS entries. We always place the TLS entries after
3912 all non-TLS entries. */
3913 g->tls_assigned_gotno = g->local_gotno + g->global_gotno;
3914 htab_traverse (g->got_entries, mips_elf_initialize_tls_index, g);
f4416af6 3915
ead49a57 3916 /* Move onto the next GOT. It will be a secondary GOT if nonull. */
f4416af6 3917 g = gn;
0626d451
RS
3918
3919 /* Mark global symbols in every non-primary GOT as ineligible for
3920 stubs. */
3921 if (g)
3922 htab_traverse (g->got_entries, mips_elf_set_no_stub, NULL);
f4416af6
AO
3923 }
3924 while (g);
3925
eea6121a 3926 got->size = (gg->next->local_gotno
0f20cc35
DJ
3927 + gg->next->global_gotno
3928 + gg->next->tls_gotno) * MIPS_ELF_GOT_SIZE (abfd);
143d77c5 3929
f4416af6
AO
3930 return TRUE;
3931}
143d77c5 3932
b49e97c9
TS
3933\f
3934/* Returns the first relocation of type r_type found, beginning with
3935 RELOCATION. RELEND is one-past-the-end of the relocation table. */
3936
3937static const Elf_Internal_Rela *
9719ad41
RS
3938mips_elf_next_relocation (bfd *abfd ATTRIBUTE_UNUSED, unsigned int r_type,
3939 const Elf_Internal_Rela *relocation,
3940 const Elf_Internal_Rela *relend)
b49e97c9 3941{
c000e262
TS
3942 unsigned long r_symndx = ELF_R_SYM (abfd, relocation->r_info);
3943
b49e97c9
TS
3944 while (relocation < relend)
3945 {
c000e262
TS
3946 if (ELF_R_TYPE (abfd, relocation->r_info) == r_type
3947 && ELF_R_SYM (abfd, relocation->r_info) == r_symndx)
b49e97c9
TS
3948 return relocation;
3949
3950 ++relocation;
3951 }
3952
3953 /* We didn't find it. */
b49e97c9
TS
3954 return NULL;
3955}
3956
3957/* Return whether a relocation is against a local symbol. */
3958
b34976b6 3959static bfd_boolean
9719ad41
RS
3960mips_elf_local_relocation_p (bfd *input_bfd,
3961 const Elf_Internal_Rela *relocation,
3962 asection **local_sections,
3963 bfd_boolean check_forced)
b49e97c9
TS
3964{
3965 unsigned long r_symndx;
3966 Elf_Internal_Shdr *symtab_hdr;
3967 struct mips_elf_link_hash_entry *h;
3968 size_t extsymoff;
3969
3970 r_symndx = ELF_R_SYM (input_bfd, relocation->r_info);
3971 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
3972 extsymoff = (elf_bad_symtab (input_bfd)) ? 0 : symtab_hdr->sh_info;
3973
3974 if (r_symndx < extsymoff)
b34976b6 3975 return TRUE;
b49e97c9 3976 if (elf_bad_symtab (input_bfd) && local_sections[r_symndx] != NULL)
b34976b6 3977 return TRUE;
b49e97c9
TS
3978
3979 if (check_forced)
3980 {
3981 /* Look up the hash table to check whether the symbol
3982 was forced local. */
3983 h = (struct mips_elf_link_hash_entry *)
3984 elf_sym_hashes (input_bfd) [r_symndx - extsymoff];
3985 /* Find the real hash-table entry for this symbol. */
3986 while (h->root.root.type == bfd_link_hash_indirect
3987 || h->root.root.type == bfd_link_hash_warning)
3988 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
f5385ebf 3989 if (h->root.forced_local)
b34976b6 3990 return TRUE;
b49e97c9
TS
3991 }
3992
b34976b6 3993 return FALSE;
b49e97c9
TS
3994}
3995\f
3996/* Sign-extend VALUE, which has the indicated number of BITS. */
3997
a7ebbfdf 3998bfd_vma
9719ad41 3999_bfd_mips_elf_sign_extend (bfd_vma value, int bits)
b49e97c9
TS
4000{
4001 if (value & ((bfd_vma) 1 << (bits - 1)))
4002 /* VALUE is negative. */
4003 value |= ((bfd_vma) - 1) << bits;
4004
4005 return value;
4006}
4007
4008/* Return non-zero if the indicated VALUE has overflowed the maximum
4cc11e76 4009 range expressible by a signed number with the indicated number of
b49e97c9
TS
4010 BITS. */
4011
b34976b6 4012static bfd_boolean
9719ad41 4013mips_elf_overflow_p (bfd_vma value, int bits)
b49e97c9
TS
4014{
4015 bfd_signed_vma svalue = (bfd_signed_vma) value;
4016
4017 if (svalue > (1 << (bits - 1)) - 1)
4018 /* The value is too big. */
b34976b6 4019 return TRUE;
b49e97c9
TS
4020 else if (svalue < -(1 << (bits - 1)))
4021 /* The value is too small. */
b34976b6 4022 return TRUE;
b49e97c9
TS
4023
4024 /* All is well. */
b34976b6 4025 return FALSE;
b49e97c9
TS
4026}
4027
4028/* Calculate the %high function. */
4029
4030static bfd_vma
9719ad41 4031mips_elf_high (bfd_vma value)
b49e97c9
TS
4032{
4033 return ((value + (bfd_vma) 0x8000) >> 16) & 0xffff;
4034}
4035
4036/* Calculate the %higher function. */
4037
4038static bfd_vma
9719ad41 4039mips_elf_higher (bfd_vma value ATTRIBUTE_UNUSED)
b49e97c9
TS
4040{
4041#ifdef BFD64
4042 return ((value + (bfd_vma) 0x80008000) >> 32) & 0xffff;
4043#else
4044 abort ();
c5ae1840 4045 return MINUS_ONE;
b49e97c9
TS
4046#endif
4047}
4048
4049/* Calculate the %highest function. */
4050
4051static bfd_vma
9719ad41 4052mips_elf_highest (bfd_vma value ATTRIBUTE_UNUSED)
b49e97c9
TS
4053{
4054#ifdef BFD64
b15e6682 4055 return ((value + (((bfd_vma) 0x8000 << 32) | 0x80008000)) >> 48) & 0xffff;
b49e97c9
TS
4056#else
4057 abort ();
c5ae1840 4058 return MINUS_ONE;
b49e97c9
TS
4059#endif
4060}
4061\f
4062/* Create the .compact_rel section. */
4063
b34976b6 4064static bfd_boolean
9719ad41
RS
4065mips_elf_create_compact_rel_section
4066 (bfd *abfd, struct bfd_link_info *info ATTRIBUTE_UNUSED)
b49e97c9
TS
4067{
4068 flagword flags;
4069 register asection *s;
4070
4071 if (bfd_get_section_by_name (abfd, ".compact_rel") == NULL)
4072 {
4073 flags = (SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED
4074 | SEC_READONLY);
4075
3496cb2a 4076 s = bfd_make_section_with_flags (abfd, ".compact_rel", flags);
b49e97c9 4077 if (s == NULL
b49e97c9
TS
4078 || ! bfd_set_section_alignment (abfd, s,
4079 MIPS_ELF_LOG_FILE_ALIGN (abfd)))
b34976b6 4080 return FALSE;
b49e97c9 4081
eea6121a 4082 s->size = sizeof (Elf32_External_compact_rel);
b49e97c9
TS
4083 }
4084
b34976b6 4085 return TRUE;
b49e97c9
TS
4086}
4087
4088/* Create the .got section to hold the global offset table. */
4089
b34976b6 4090static bfd_boolean
9719ad41
RS
4091mips_elf_create_got_section (bfd *abfd, struct bfd_link_info *info,
4092 bfd_boolean maybe_exclude)
b49e97c9
TS
4093{
4094 flagword flags;
4095 register asection *s;
4096 struct elf_link_hash_entry *h;
14a793b2 4097 struct bfd_link_hash_entry *bh;
b49e97c9
TS
4098 struct mips_got_info *g;
4099 bfd_size_type amt;
0a44bf69
RS
4100 struct mips_elf_link_hash_table *htab;
4101
4102 htab = mips_elf_hash_table (info);
b49e97c9
TS
4103
4104 /* This function may be called more than once. */
a8028dd0 4105 s = htab->sgot;
f4416af6
AO
4106 if (s)
4107 {
4108 if (! maybe_exclude)
4109 s->flags &= ~SEC_EXCLUDE;
4110 return TRUE;
4111 }
b49e97c9
TS
4112
4113 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
4114 | SEC_LINKER_CREATED);
4115
f4416af6
AO
4116 if (maybe_exclude)
4117 flags |= SEC_EXCLUDE;
4118
72b4917c
TS
4119 /* We have to use an alignment of 2**4 here because this is hardcoded
4120 in the function stub generation and in the linker script. */
3496cb2a 4121 s = bfd_make_section_with_flags (abfd, ".got", flags);
b49e97c9 4122 if (s == NULL
72b4917c 4123 || ! bfd_set_section_alignment (abfd, s, 4))
b34976b6 4124 return FALSE;
a8028dd0 4125 htab->sgot = s;
b49e97c9
TS
4126
4127 /* Define the symbol _GLOBAL_OFFSET_TABLE_. We don't do this in the
4128 linker script because we don't want to define the symbol if we
4129 are not creating a global offset table. */
14a793b2 4130 bh = NULL;
b49e97c9
TS
4131 if (! (_bfd_generic_link_add_one_symbol
4132 (info, abfd, "_GLOBAL_OFFSET_TABLE_", BSF_GLOBAL, s,
9719ad41 4133 0, NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
b34976b6 4134 return FALSE;
14a793b2
AM
4135
4136 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
4137 h->non_elf = 0;
4138 h->def_regular = 1;
b49e97c9 4139 h->type = STT_OBJECT;
d329bcd1 4140 elf_hash_table (info)->hgot = h;
b49e97c9
TS
4141
4142 if (info->shared
c152c796 4143 && ! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 4144 return FALSE;
b49e97c9 4145
b49e97c9 4146 amt = sizeof (struct mips_got_info);
9719ad41 4147 g = bfd_alloc (abfd, amt);
b49e97c9 4148 if (g == NULL)
b34976b6 4149 return FALSE;
b49e97c9 4150 g->global_gotsym = NULL;
e3d54347 4151 g->global_gotno = 0;
0f20cc35 4152 g->tls_gotno = 0;
0a44bf69 4153 g->local_gotno = MIPS_RESERVED_GOTNO (info);
c224138d 4154 g->page_gotno = 0;
0a44bf69 4155 g->assigned_gotno = MIPS_RESERVED_GOTNO (info);
f4416af6
AO
4156 g->bfd2got = NULL;
4157 g->next = NULL;
0f20cc35 4158 g->tls_ldm_offset = MINUS_ONE;
b15e6682 4159 g->got_entries = htab_try_create (1, mips_elf_got_entry_hash,
9719ad41 4160 mips_elf_got_entry_eq, NULL);
b15e6682
AO
4161 if (g->got_entries == NULL)
4162 return FALSE;
c224138d
RS
4163 g->got_page_entries = htab_try_create (1, mips_got_page_entry_hash,
4164 mips_got_page_entry_eq, NULL);
4165 if (g->got_page_entries == NULL)
4166 return FALSE;
a8028dd0 4167 htab->got_info = g;
f0abc2a1 4168 mips_elf_section_data (s)->elf.this_hdr.sh_flags
b49e97c9
TS
4169 |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL;
4170
0a44bf69
RS
4171 /* VxWorks also needs a .got.plt section. */
4172 if (htab->is_vxworks)
4173 {
4174 s = bfd_make_section_with_flags (abfd, ".got.plt",
4175 SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
4176 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
4177 if (s == NULL || !bfd_set_section_alignment (abfd, s, 4))
4178 return FALSE;
4179
4180 htab->sgotplt = s;
4181 }
b34976b6 4182 return TRUE;
b49e97c9 4183}
b49e97c9 4184\f
0a44bf69
RS
4185/* Return true if H refers to the special VxWorks __GOTT_BASE__ or
4186 __GOTT_INDEX__ symbols. These symbols are only special for
4187 shared objects; they are not used in executables. */
4188
4189static bfd_boolean
4190is_gott_symbol (struct bfd_link_info *info, struct elf_link_hash_entry *h)
4191{
4192 return (mips_elf_hash_table (info)->is_vxworks
4193 && info->shared
4194 && (strcmp (h->root.root.string, "__GOTT_BASE__") == 0
4195 || strcmp (h->root.root.string, "__GOTT_INDEX__") == 0));
4196}
4197\f
b49e97c9
TS
4198/* Calculate the value produced by the RELOCATION (which comes from
4199 the INPUT_BFD). The ADDEND is the addend to use for this
4200 RELOCATION; RELOCATION->R_ADDEND is ignored.
4201
4202 The result of the relocation calculation is stored in VALUEP.
4203 REQUIRE_JALXP indicates whether or not the opcode used with this
4204 relocation must be JALX.
4205
4206 This function returns bfd_reloc_continue if the caller need take no
4207 further action regarding this relocation, bfd_reloc_notsupported if
4208 something goes dramatically wrong, bfd_reloc_overflow if an
4209 overflow occurs, and bfd_reloc_ok to indicate success. */
4210
4211static bfd_reloc_status_type
9719ad41
RS
4212mips_elf_calculate_relocation (bfd *abfd, bfd *input_bfd,
4213 asection *input_section,
4214 struct bfd_link_info *info,
4215 const Elf_Internal_Rela *relocation,
4216 bfd_vma addend, reloc_howto_type *howto,
4217 Elf_Internal_Sym *local_syms,
4218 asection **local_sections, bfd_vma *valuep,
4219 const char **namep, bfd_boolean *require_jalxp,
4220 bfd_boolean save_addend)
b49e97c9
TS
4221{
4222 /* The eventual value we will return. */
4223 bfd_vma value;
4224 /* The address of the symbol against which the relocation is
4225 occurring. */
4226 bfd_vma symbol = 0;
4227 /* The final GP value to be used for the relocatable, executable, or
4228 shared object file being produced. */
0a61c8c2 4229 bfd_vma gp;
b49e97c9
TS
4230 /* The place (section offset or address) of the storage unit being
4231 relocated. */
4232 bfd_vma p;
4233 /* The value of GP used to create the relocatable object. */
0a61c8c2 4234 bfd_vma gp0;
b49e97c9
TS
4235 /* The offset into the global offset table at which the address of
4236 the relocation entry symbol, adjusted by the addend, resides
4237 during execution. */
4238 bfd_vma g = MINUS_ONE;
4239 /* The section in which the symbol referenced by the relocation is
4240 located. */
4241 asection *sec = NULL;
4242 struct mips_elf_link_hash_entry *h = NULL;
b34976b6 4243 /* TRUE if the symbol referred to by this relocation is a local
b49e97c9 4244 symbol. */
b34976b6
AM
4245 bfd_boolean local_p, was_local_p;
4246 /* TRUE if the symbol referred to by this relocation is "_gp_disp". */
4247 bfd_boolean gp_disp_p = FALSE;
bbe506e8
TS
4248 /* TRUE if the symbol referred to by this relocation is
4249 "__gnu_local_gp". */
4250 bfd_boolean gnu_local_gp_p = FALSE;
b49e97c9
TS
4251 Elf_Internal_Shdr *symtab_hdr;
4252 size_t extsymoff;
4253 unsigned long r_symndx;
4254 int r_type;
b34976b6 4255 /* TRUE if overflow occurred during the calculation of the
b49e97c9 4256 relocation value. */
b34976b6
AM
4257 bfd_boolean overflowed_p;
4258 /* TRUE if this relocation refers to a MIPS16 function. */
4259 bfd_boolean target_is_16_bit_code_p = FALSE;
0a44bf69
RS
4260 struct mips_elf_link_hash_table *htab;
4261 bfd *dynobj;
4262
4263 dynobj = elf_hash_table (info)->dynobj;
4264 htab = mips_elf_hash_table (info);
b49e97c9
TS
4265
4266 /* Parse the relocation. */
4267 r_symndx = ELF_R_SYM (input_bfd, relocation->r_info);
4268 r_type = ELF_R_TYPE (input_bfd, relocation->r_info);
4269 p = (input_section->output_section->vma
4270 + input_section->output_offset
4271 + relocation->r_offset);
4272
4273 /* Assume that there will be no overflow. */
b34976b6 4274 overflowed_p = FALSE;
b49e97c9
TS
4275
4276 /* Figure out whether or not the symbol is local, and get the offset
4277 used in the array of hash table entries. */
4278 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
4279 local_p = mips_elf_local_relocation_p (input_bfd, relocation,
b34976b6 4280 local_sections, FALSE);
bce03d3d 4281 was_local_p = local_p;
b49e97c9
TS
4282 if (! elf_bad_symtab (input_bfd))
4283 extsymoff = symtab_hdr->sh_info;
4284 else
4285 {
4286 /* The symbol table does not follow the rule that local symbols
4287 must come before globals. */
4288 extsymoff = 0;
4289 }
4290
4291 /* Figure out the value of the symbol. */
4292 if (local_p)
4293 {
4294 Elf_Internal_Sym *sym;
4295
4296 sym = local_syms + r_symndx;
4297 sec = local_sections[r_symndx];
4298
4299 symbol = sec->output_section->vma + sec->output_offset;
d4df96e6
L
4300 if (ELF_ST_TYPE (sym->st_info) != STT_SECTION
4301 || (sec->flags & SEC_MERGE))
b49e97c9 4302 symbol += sym->st_value;
d4df96e6
L
4303 if ((sec->flags & SEC_MERGE)
4304 && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
4305 {
4306 addend = _bfd_elf_rel_local_sym (abfd, sym, &sec, addend);
4307 addend -= symbol;
4308 addend += sec->output_section->vma + sec->output_offset;
4309 }
b49e97c9
TS
4310
4311 /* MIPS16 text labels should be treated as odd. */
30c09090 4312 if (ELF_ST_IS_MIPS16 (sym->st_other))
b49e97c9
TS
4313 ++symbol;
4314
4315 /* Record the name of this symbol, for our caller. */
4316 *namep = bfd_elf_string_from_elf_section (input_bfd,
4317 symtab_hdr->sh_link,
4318 sym->st_name);
4319 if (*namep == '\0')
4320 *namep = bfd_section_name (input_bfd, sec);
4321
30c09090 4322 target_is_16_bit_code_p = ELF_ST_IS_MIPS16 (sym->st_other);
b49e97c9
TS
4323 }
4324 else
4325 {
560e09e9
NC
4326 /* ??? Could we use RELOC_FOR_GLOBAL_SYMBOL here ? */
4327
b49e97c9
TS
4328 /* For global symbols we look up the symbol in the hash-table. */
4329 h = ((struct mips_elf_link_hash_entry *)
4330 elf_sym_hashes (input_bfd) [r_symndx - extsymoff]);
4331 /* Find the real hash-table entry for this symbol. */
4332 while (h->root.root.type == bfd_link_hash_indirect
4333 || h->root.root.type == bfd_link_hash_warning)
4334 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
4335
4336 /* Record the name of this symbol, for our caller. */
4337 *namep = h->root.root.root.string;
4338
4339 /* See if this is the special _gp_disp symbol. Note that such a
4340 symbol must always be a global symbol. */
560e09e9 4341 if (strcmp (*namep, "_gp_disp") == 0
b49e97c9
TS
4342 && ! NEWABI_P (input_bfd))
4343 {
4344 /* Relocations against _gp_disp are permitted only with
4345 R_MIPS_HI16 and R_MIPS_LO16 relocations. */
738e5348 4346 if (!hi16_reloc_p (r_type) && !lo16_reloc_p (r_type))
b49e97c9
TS
4347 return bfd_reloc_notsupported;
4348
b34976b6 4349 gp_disp_p = TRUE;
b49e97c9 4350 }
bbe506e8
TS
4351 /* See if this is the special _gp symbol. Note that such a
4352 symbol must always be a global symbol. */
4353 else if (strcmp (*namep, "__gnu_local_gp") == 0)
4354 gnu_local_gp_p = TRUE;
4355
4356
b49e97c9
TS
4357 /* If this symbol is defined, calculate its address. Note that
4358 _gp_disp is a magic symbol, always implicitly defined by the
4359 linker, so it's inappropriate to check to see whether or not
4360 its defined. */
4361 else if ((h->root.root.type == bfd_link_hash_defined
4362 || h->root.root.type == bfd_link_hash_defweak)
4363 && h->root.root.u.def.section)
4364 {
4365 sec = h->root.root.u.def.section;
4366 if (sec->output_section)
4367 symbol = (h->root.root.u.def.value
4368 + sec->output_section->vma
4369 + sec->output_offset);
4370 else
4371 symbol = h->root.root.u.def.value;
4372 }
4373 else if (h->root.root.type == bfd_link_hash_undefweak)
4374 /* We allow relocations against undefined weak symbols, giving
4375 it the value zero, so that you can undefined weak functions
4376 and check to see if they exist by looking at their
4377 addresses. */
4378 symbol = 0;
59c2e50f 4379 else if (info->unresolved_syms_in_objects == RM_IGNORE
b49e97c9
TS
4380 && ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT)
4381 symbol = 0;
a4d0f181
TS
4382 else if (strcmp (*namep, SGI_COMPAT (input_bfd)
4383 ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING") == 0)
b49e97c9
TS
4384 {
4385 /* If this is a dynamic link, we should have created a
4386 _DYNAMIC_LINK symbol or _DYNAMIC_LINKING(for normal mips) symbol
4387 in in _bfd_mips_elf_create_dynamic_sections.
4388 Otherwise, we should define the symbol with a value of 0.
4389 FIXME: It should probably get into the symbol table
4390 somehow as well. */
4391 BFD_ASSERT (! info->shared);
4392 BFD_ASSERT (bfd_get_section_by_name (abfd, ".dynamic") == NULL);
4393 symbol = 0;
4394 }
5e2b0d47
NC
4395 else if (ELF_MIPS_IS_OPTIONAL (h->root.other))
4396 {
4397 /* This is an optional symbol - an Irix specific extension to the
4398 ELF spec. Ignore it for now.
4399 XXX - FIXME - there is more to the spec for OPTIONAL symbols
4400 than simply ignoring them, but we do not handle this for now.
4401 For information see the "64-bit ELF Object File Specification"
4402 which is available from here:
4403 http://techpubs.sgi.com/library/manuals/4000/007-4658-001/pdf/007-4658-001.pdf */
4404 symbol = 0;
4405 }
b49e97c9
TS
4406 else
4407 {
4408 if (! ((*info->callbacks->undefined_symbol)
4409 (info, h->root.root.root.string, input_bfd,
4410 input_section, relocation->r_offset,
59c2e50f
L
4411 (info->unresolved_syms_in_objects == RM_GENERATE_ERROR)
4412 || ELF_ST_VISIBILITY (h->root.other))))
b49e97c9
TS
4413 return bfd_reloc_undefined;
4414 symbol = 0;
4415 }
4416
30c09090 4417 target_is_16_bit_code_p = ELF_ST_IS_MIPS16 (h->root.other);
b49e97c9
TS
4418 }
4419
738e5348
RS
4420 /* If this is a reference to a 16-bit function with a stub, we need
4421 to redirect the relocation to the stub unless:
4422
4423 (a) the relocation is for a MIPS16 JAL;
4424
4425 (b) the relocation is for a MIPS16 PIC call, and there are no
4426 non-MIPS16 uses of the GOT slot; or
4427
4428 (c) the section allows direct references to MIPS16 functions. */
4429 if (r_type != R_MIPS16_26
4430 && !info->relocatable
4431 && ((h != NULL
4432 && h->fn_stub != NULL
4433 && (r_type != R_MIPS16_CALL16 || h->need_fn_stub))
b9d58d71
TS
4434 || (local_p
4435 && elf_tdata (input_bfd)->local_stubs != NULL
b49e97c9 4436 && elf_tdata (input_bfd)->local_stubs[r_symndx] != NULL))
738e5348 4437 && !section_allows_mips16_refs_p (input_section))
b49e97c9
TS
4438 {
4439 /* This is a 32- or 64-bit call to a 16-bit function. We should
4440 have already noticed that we were going to need the
4441 stub. */
4442 if (local_p)
4443 sec = elf_tdata (input_bfd)->local_stubs[r_symndx];
4444 else
4445 {
4446 BFD_ASSERT (h->need_fn_stub);
4447 sec = h->fn_stub;
4448 }
4449
4450 symbol = sec->output_section->vma + sec->output_offset;
f38c2df5
TS
4451 /* The target is 16-bit, but the stub isn't. */
4452 target_is_16_bit_code_p = FALSE;
b49e97c9
TS
4453 }
4454 /* If this is a 16-bit call to a 32- or 64-bit function with a stub, we
738e5348
RS
4455 need to redirect the call to the stub. Note that we specifically
4456 exclude R_MIPS16_CALL16 from this behavior; indirect calls should
4457 use an indirect stub instead. */
1049f94e 4458 else if (r_type == R_MIPS16_26 && !info->relocatable
b314ec0e 4459 && ((h != NULL && (h->call_stub != NULL || h->call_fp_stub != NULL))
b9d58d71
TS
4460 || (local_p
4461 && elf_tdata (input_bfd)->local_call_stubs != NULL
4462 && elf_tdata (input_bfd)->local_call_stubs[r_symndx] != NULL))
b49e97c9
TS
4463 && !target_is_16_bit_code_p)
4464 {
b9d58d71
TS
4465 if (local_p)
4466 sec = elf_tdata (input_bfd)->local_call_stubs[r_symndx];
4467 else
b49e97c9 4468 {
b9d58d71
TS
4469 /* If both call_stub and call_fp_stub are defined, we can figure
4470 out which one to use by checking which one appears in the input
4471 file. */
4472 if (h->call_stub != NULL && h->call_fp_stub != NULL)
b49e97c9 4473 {
b9d58d71
TS
4474 asection *o;
4475
4476 sec = NULL;
4477 for (o = input_bfd->sections; o != NULL; o = o->next)
b49e97c9 4478 {
b9d58d71
TS
4479 if (CALL_FP_STUB_P (bfd_get_section_name (input_bfd, o)))
4480 {
4481 sec = h->call_fp_stub;
4482 break;
4483 }
b49e97c9 4484 }
b9d58d71
TS
4485 if (sec == NULL)
4486 sec = h->call_stub;
b49e97c9 4487 }
b9d58d71 4488 else if (h->call_stub != NULL)
b49e97c9 4489 sec = h->call_stub;
b9d58d71
TS
4490 else
4491 sec = h->call_fp_stub;
4492 }
b49e97c9 4493
eea6121a 4494 BFD_ASSERT (sec->size > 0);
b49e97c9
TS
4495 symbol = sec->output_section->vma + sec->output_offset;
4496 }
4497
4498 /* Calls from 16-bit code to 32-bit code and vice versa require the
4499 special jalx instruction. */
1049f94e 4500 *require_jalxp = (!info->relocatable
b49e97c9
TS
4501 && (((r_type == R_MIPS16_26) && !target_is_16_bit_code_p)
4502 || ((r_type == R_MIPS_26) && target_is_16_bit_code_p)));
4503
4504 local_p = mips_elf_local_relocation_p (input_bfd, relocation,
b34976b6 4505 local_sections, TRUE);
b49e97c9 4506
0a61c8c2
RS
4507 gp0 = _bfd_get_gp_value (input_bfd);
4508 gp = _bfd_get_gp_value (abfd);
4509 if (dynobj)
a8028dd0 4510 gp += mips_elf_adjust_gp (abfd, htab->got_info, input_bfd);
0a61c8c2
RS
4511
4512 if (gnu_local_gp_p)
4513 symbol = gp;
4514
4515 /* If we haven't already determined the GOT offset, oand we're going
4516 to need it, get it now. */
b49e97c9
TS
4517 switch (r_type)
4518 {
0fdc1bf1 4519 case R_MIPS_GOT_PAGE:
93a2b7ae 4520 case R_MIPS_GOT_OFST:
d25aed71
RS
4521 /* We need to decay to GOT_DISP/addend if the symbol doesn't
4522 bind locally. */
4523 local_p = local_p || _bfd_elf_symbol_refs_local_p (&h->root, info, 1);
93a2b7ae 4524 if (local_p || r_type == R_MIPS_GOT_OFST)
0fdc1bf1
AO
4525 break;
4526 /* Fall through. */
4527
738e5348
RS
4528 case R_MIPS16_CALL16:
4529 case R_MIPS16_GOT16:
b49e97c9
TS
4530 case R_MIPS_CALL16:
4531 case R_MIPS_GOT16:
4532 case R_MIPS_GOT_DISP:
4533 case R_MIPS_GOT_HI16:
4534 case R_MIPS_CALL_HI16:
4535 case R_MIPS_GOT_LO16:
4536 case R_MIPS_CALL_LO16:
0f20cc35
DJ
4537 case R_MIPS_TLS_GD:
4538 case R_MIPS_TLS_GOTTPREL:
4539 case R_MIPS_TLS_LDM:
b49e97c9 4540 /* Find the index into the GOT where this value is located. */
0f20cc35
DJ
4541 if (r_type == R_MIPS_TLS_LDM)
4542 {
0a44bf69 4543 g = mips_elf_local_got_index (abfd, input_bfd, info,
5c18022e 4544 0, 0, NULL, r_type);
0f20cc35
DJ
4545 if (g == MINUS_ONE)
4546 return bfd_reloc_outofrange;
4547 }
4548 else if (!local_p)
b49e97c9 4549 {
0a44bf69
RS
4550 /* On VxWorks, CALL relocations should refer to the .got.plt
4551 entry, which is initialized to point at the PLT stub. */
4552 if (htab->is_vxworks
4553 && (r_type == R_MIPS_CALL_HI16
4554 || r_type == R_MIPS_CALL_LO16
738e5348 4555 || call16_reloc_p (r_type)))
0a44bf69
RS
4556 {
4557 BFD_ASSERT (addend == 0);
4558 BFD_ASSERT (h->root.needs_plt);
4559 g = mips_elf_gotplt_index (info, &h->root);
4560 }
4561 else
b49e97c9 4562 {
0a44bf69
RS
4563 /* GOT_PAGE may take a non-zero addend, that is ignored in a
4564 GOT_PAGE relocation that decays to GOT_DISP because the
4565 symbol turns out to be global. The addend is then added
4566 as GOT_OFST. */
4567 BFD_ASSERT (addend == 0 || r_type == R_MIPS_GOT_PAGE);
4568 g = mips_elf_global_got_index (dynobj, input_bfd,
4569 &h->root, r_type, info);
4570 if (h->tls_type == GOT_NORMAL
4571 && (! elf_hash_table(info)->dynamic_sections_created
4572 || (info->shared
4573 && (info->symbolic || h->root.forced_local)
4574 && h->root.def_regular)))
a8028dd0
RS
4575 /* This is a static link or a -Bsymbolic link. The
4576 symbol is defined locally, or was forced to be local.
4577 We must initialize this entry in the GOT. */
4578 MIPS_ELF_PUT_WORD (dynobj, symbol, htab->sgot->contents + g);
b49e97c9
TS
4579 }
4580 }
0a44bf69 4581 else if (!htab->is_vxworks
738e5348 4582 && (call16_reloc_p (r_type) || got16_reloc_p (r_type)))
0a44bf69 4583 /* The calculation below does not involve "g". */
b49e97c9
TS
4584 break;
4585 else
4586 {
5c18022e 4587 g = mips_elf_local_got_index (abfd, input_bfd, info,
0a44bf69 4588 symbol + addend, r_symndx, h, r_type);
b49e97c9
TS
4589 if (g == MINUS_ONE)
4590 return bfd_reloc_outofrange;
4591 }
4592
4593 /* Convert GOT indices to actual offsets. */
a8028dd0 4594 g = mips_elf_got_offset_from_index (info, abfd, input_bfd, g);
b49e97c9 4595 break;
b49e97c9
TS
4596 }
4597
0a44bf69
RS
4598 /* Relocations against the VxWorks __GOTT_BASE__ and __GOTT_INDEX__
4599 symbols are resolved by the loader. Add them to .rela.dyn. */
4600 if (h != NULL && is_gott_symbol (info, &h->root))
4601 {
4602 Elf_Internal_Rela outrel;
4603 bfd_byte *loc;
4604 asection *s;
4605
4606 s = mips_elf_rel_dyn_section (info, FALSE);
4607 loc = s->contents + s->reloc_count++ * sizeof (Elf32_External_Rela);
4608
4609 outrel.r_offset = (input_section->output_section->vma
4610 + input_section->output_offset
4611 + relocation->r_offset);
4612 outrel.r_info = ELF32_R_INFO (h->root.dynindx, r_type);
4613 outrel.r_addend = addend;
4614 bfd_elf32_swap_reloca_out (abfd, &outrel, loc);
9e3313ae
RS
4615
4616 /* If we've written this relocation for a readonly section,
4617 we need to set DF_TEXTREL again, so that we do not delete the
4618 DT_TEXTREL tag. */
4619 if (MIPS_ELF_READONLY_SECTION (input_section))
4620 info->flags |= DF_TEXTREL;
4621
0a44bf69
RS
4622 *valuep = 0;
4623 return bfd_reloc_ok;
4624 }
4625
b49e97c9
TS
4626 /* Figure out what kind of relocation is being performed. */
4627 switch (r_type)
4628 {
4629 case R_MIPS_NONE:
4630 return bfd_reloc_continue;
4631
4632 case R_MIPS_16:
a7ebbfdf 4633 value = symbol + _bfd_mips_elf_sign_extend (addend, 16);
b49e97c9
TS
4634 overflowed_p = mips_elf_overflow_p (value, 16);
4635 break;
4636
4637 case R_MIPS_32:
4638 case R_MIPS_REL32:
4639 case R_MIPS_64:
4640 if ((info->shared
0a44bf69
RS
4641 || (!htab->is_vxworks
4642 && htab->root.dynamic_sections_created
b49e97c9 4643 && h != NULL
f5385ebf
AM
4644 && h->root.def_dynamic
4645 && !h->root.def_regular))
b49e97c9 4646 && r_symndx != 0
9a59ad6b
DJ
4647 && (h == NULL
4648 || h->root.root.type != bfd_link_hash_undefweak
4649 || ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT)
b49e97c9
TS
4650 && (input_section->flags & SEC_ALLOC) != 0)
4651 {
4652 /* If we're creating a shared library, or this relocation is
4653 against a symbol in a shared library, then we can't know
4654 where the symbol will end up. So, we create a relocation
4655 record in the output, and leave the job up to the dynamic
0a44bf69
RS
4656 linker.
4657
4658 In VxWorks executables, references to external symbols
4659 are handled using copy relocs or PLT stubs, so there's
4660 no need to add a dynamic relocation here. */
b49e97c9
TS
4661 value = addend;
4662 if (!mips_elf_create_dynamic_relocation (abfd,
4663 info,
4664 relocation,
4665 h,
4666 sec,
4667 symbol,
4668 &value,
4669 input_section))
4670 return bfd_reloc_undefined;
4671 }
4672 else
4673 {
4674 if (r_type != R_MIPS_REL32)
4675 value = symbol + addend;
4676 else
4677 value = addend;
4678 }
4679 value &= howto->dst_mask;
092dcd75
CD
4680 break;
4681
4682 case R_MIPS_PC32:
4683 value = symbol + addend - p;
4684 value &= howto->dst_mask;
b49e97c9
TS
4685 break;
4686
b49e97c9
TS
4687 case R_MIPS16_26:
4688 /* The calculation for R_MIPS16_26 is just the same as for an
4689 R_MIPS_26. It's only the storage of the relocated field into
4690 the output file that's different. That's handled in
4691 mips_elf_perform_relocation. So, we just fall through to the
4692 R_MIPS_26 case here. */
4693 case R_MIPS_26:
4694 if (local_p)
30ac9238 4695 value = ((addend | ((p + 4) & 0xf0000000)) + symbol) >> 2;
b49e97c9 4696 else
728b2f21
ILT
4697 {
4698 value = (_bfd_mips_elf_sign_extend (addend, 28) + symbol) >> 2;
c314987d
RS
4699 if (h->root.root.type != bfd_link_hash_undefweak)
4700 overflowed_p = (value >> 26) != ((p + 4) >> 28);
728b2f21 4701 }
b49e97c9
TS
4702 value &= howto->dst_mask;
4703 break;
4704
0f20cc35
DJ
4705 case R_MIPS_TLS_DTPREL_HI16:
4706 value = (mips_elf_high (addend + symbol - dtprel_base (info))
4707 & howto->dst_mask);
4708 break;
4709
4710 case R_MIPS_TLS_DTPREL_LO16:
741d6ea8
JM
4711 case R_MIPS_TLS_DTPREL32:
4712 case R_MIPS_TLS_DTPREL64:
0f20cc35
DJ
4713 value = (symbol + addend - dtprel_base (info)) & howto->dst_mask;
4714 break;
4715
4716 case R_MIPS_TLS_TPREL_HI16:
4717 value = (mips_elf_high (addend + symbol - tprel_base (info))
4718 & howto->dst_mask);
4719 break;
4720
4721 case R_MIPS_TLS_TPREL_LO16:
4722 value = (symbol + addend - tprel_base (info)) & howto->dst_mask;
4723 break;
4724
b49e97c9 4725 case R_MIPS_HI16:
d6f16593 4726 case R_MIPS16_HI16:
b49e97c9
TS
4727 if (!gp_disp_p)
4728 {
4729 value = mips_elf_high (addend + symbol);
4730 value &= howto->dst_mask;
4731 }
4732 else
4733 {
d6f16593
MR
4734 /* For MIPS16 ABI code we generate this sequence
4735 0: li $v0,%hi(_gp_disp)
4736 4: addiupc $v1,%lo(_gp_disp)
4737 8: sll $v0,16
4738 12: addu $v0,$v1
4739 14: move $gp,$v0
4740 So the offsets of hi and lo relocs are the same, but the
4741 $pc is four higher than $t9 would be, so reduce
4742 both reloc addends by 4. */
4743 if (r_type == R_MIPS16_HI16)
4744 value = mips_elf_high (addend + gp - p - 4);
4745 else
4746 value = mips_elf_high (addend + gp - p);
b49e97c9
TS
4747 overflowed_p = mips_elf_overflow_p (value, 16);
4748 }
4749 break;
4750
4751 case R_MIPS_LO16:
d6f16593 4752 case R_MIPS16_LO16:
b49e97c9
TS
4753 if (!gp_disp_p)
4754 value = (symbol + addend) & howto->dst_mask;
4755 else
4756 {
d6f16593
MR
4757 /* See the comment for R_MIPS16_HI16 above for the reason
4758 for this conditional. */
4759 if (r_type == R_MIPS16_LO16)
4760 value = addend + gp - p;
4761 else
4762 value = addend + gp - p + 4;
b49e97c9 4763 /* The MIPS ABI requires checking the R_MIPS_LO16 relocation
8dc1a139 4764 for overflow. But, on, say, IRIX5, relocations against
b49e97c9
TS
4765 _gp_disp are normally generated from the .cpload
4766 pseudo-op. It generates code that normally looks like
4767 this:
4768
4769 lui $gp,%hi(_gp_disp)
4770 addiu $gp,$gp,%lo(_gp_disp)
4771 addu $gp,$gp,$t9
4772
4773 Here $t9 holds the address of the function being called,
4774 as required by the MIPS ELF ABI. The R_MIPS_LO16
4775 relocation can easily overflow in this situation, but the
4776 R_MIPS_HI16 relocation will handle the overflow.
4777 Therefore, we consider this a bug in the MIPS ABI, and do
4778 not check for overflow here. */
4779 }
4780 break;
4781
4782 case R_MIPS_LITERAL:
4783 /* Because we don't merge literal sections, we can handle this
4784 just like R_MIPS_GPREL16. In the long run, we should merge
4785 shared literals, and then we will need to additional work
4786 here. */
4787
4788 /* Fall through. */
4789
4790 case R_MIPS16_GPREL:
4791 /* The R_MIPS16_GPREL performs the same calculation as
4792 R_MIPS_GPREL16, but stores the relocated bits in a different
4793 order. We don't need to do anything special here; the
4794 differences are handled in mips_elf_perform_relocation. */
4795 case R_MIPS_GPREL16:
bce03d3d
AO
4796 /* Only sign-extend the addend if it was extracted from the
4797 instruction. If the addend was separate, leave it alone,
4798 otherwise we may lose significant bits. */
4799 if (howto->partial_inplace)
a7ebbfdf 4800 addend = _bfd_mips_elf_sign_extend (addend, 16);
bce03d3d
AO
4801 value = symbol + addend - gp;
4802 /* If the symbol was local, any earlier relocatable links will
4803 have adjusted its addend with the gp offset, so compensate
4804 for that now. Don't do it for symbols forced local in this
4805 link, though, since they won't have had the gp offset applied
4806 to them before. */
4807 if (was_local_p)
4808 value += gp0;
b49e97c9
TS
4809 overflowed_p = mips_elf_overflow_p (value, 16);
4810 break;
4811
738e5348
RS
4812 case R_MIPS16_GOT16:
4813 case R_MIPS16_CALL16:
b49e97c9
TS
4814 case R_MIPS_GOT16:
4815 case R_MIPS_CALL16:
0a44bf69 4816 /* VxWorks does not have separate local and global semantics for
738e5348 4817 R_MIPS*_GOT16; every relocation evaluates to "G". */
0a44bf69 4818 if (!htab->is_vxworks && local_p)
b49e97c9 4819 {
b34976b6 4820 bfd_boolean forced;
b49e97c9 4821
b49e97c9 4822 forced = ! mips_elf_local_relocation_p (input_bfd, relocation,
b34976b6 4823 local_sections, FALSE);
5c18022e 4824 value = mips_elf_got16_entry (abfd, input_bfd, info,
f4416af6 4825 symbol + addend, forced);
b49e97c9
TS
4826 if (value == MINUS_ONE)
4827 return bfd_reloc_outofrange;
4828 value
a8028dd0 4829 = mips_elf_got_offset_from_index (info, abfd, input_bfd, value);
b49e97c9
TS
4830 overflowed_p = mips_elf_overflow_p (value, 16);
4831 break;
4832 }
4833
4834 /* Fall through. */
4835
0f20cc35
DJ
4836 case R_MIPS_TLS_GD:
4837 case R_MIPS_TLS_GOTTPREL:
4838 case R_MIPS_TLS_LDM:
b49e97c9 4839 case R_MIPS_GOT_DISP:
0fdc1bf1 4840 got_disp:
b49e97c9
TS
4841 value = g;
4842 overflowed_p = mips_elf_overflow_p (value, 16);
4843 break;
4844
4845 case R_MIPS_GPREL32:
bce03d3d
AO
4846 value = (addend + symbol + gp0 - gp);
4847 if (!save_addend)
4848 value &= howto->dst_mask;
b49e97c9
TS
4849 break;
4850
4851 case R_MIPS_PC16:
bad36eac
DJ
4852 case R_MIPS_GNU_REL16_S2:
4853 value = symbol + _bfd_mips_elf_sign_extend (addend, 18) - p;
4854 overflowed_p = mips_elf_overflow_p (value, 18);
37caec6b
TS
4855 value >>= howto->rightshift;
4856 value &= howto->dst_mask;
b49e97c9
TS
4857 break;
4858
4859 case R_MIPS_GOT_HI16:
4860 case R_MIPS_CALL_HI16:
4861 /* We're allowed to handle these two relocations identically.
4862 The dynamic linker is allowed to handle the CALL relocations
4863 differently by creating a lazy evaluation stub. */
4864 value = g;
4865 value = mips_elf_high (value);
4866 value &= howto->dst_mask;
4867 break;
4868
4869 case R_MIPS_GOT_LO16:
4870 case R_MIPS_CALL_LO16:
4871 value = g & howto->dst_mask;
4872 break;
4873
4874 case R_MIPS_GOT_PAGE:
0fdc1bf1
AO
4875 /* GOT_PAGE relocations that reference non-local symbols decay
4876 to GOT_DISP. The corresponding GOT_OFST relocation decays to
4877 0. */
93a2b7ae 4878 if (! local_p)
0fdc1bf1 4879 goto got_disp;
5c18022e 4880 value = mips_elf_got_page (abfd, input_bfd, info, symbol + addend, NULL);
b49e97c9
TS
4881 if (value == MINUS_ONE)
4882 return bfd_reloc_outofrange;
a8028dd0 4883 value = mips_elf_got_offset_from_index (info, abfd, input_bfd, value);
b49e97c9
TS
4884 overflowed_p = mips_elf_overflow_p (value, 16);
4885 break;
4886
4887 case R_MIPS_GOT_OFST:
93a2b7ae 4888 if (local_p)
5c18022e 4889 mips_elf_got_page (abfd, input_bfd, info, symbol + addend, &value);
0fdc1bf1
AO
4890 else
4891 value = addend;
b49e97c9
TS
4892 overflowed_p = mips_elf_overflow_p (value, 16);
4893 break;
4894
4895 case R_MIPS_SUB:
4896 value = symbol - addend;
4897 value &= howto->dst_mask;
4898 break;
4899
4900 case R_MIPS_HIGHER:
4901 value = mips_elf_higher (addend + symbol);
4902 value &= howto->dst_mask;
4903 break;
4904
4905 case R_MIPS_HIGHEST:
4906 value = mips_elf_highest (addend + symbol);
4907 value &= howto->dst_mask;
4908 break;
4909
4910 case R_MIPS_SCN_DISP:
4911 value = symbol + addend - sec->output_offset;
4912 value &= howto->dst_mask;
4913 break;
4914
b49e97c9 4915 case R_MIPS_JALR:
1367d393
ILT
4916 /* This relocation is only a hint. In some cases, we optimize
4917 it into a bal instruction. But we don't try to optimize
4918 branches to the PLT; that will wind up wasting time. */
4919 if (h != NULL && h->root.plt.offset != (bfd_vma) -1)
4920 return bfd_reloc_continue;
4921 value = symbol + addend;
4922 break;
b49e97c9 4923
1367d393 4924 case R_MIPS_PJUMP:
b49e97c9
TS
4925 case R_MIPS_GNU_VTINHERIT:
4926 case R_MIPS_GNU_VTENTRY:
4927 /* We don't do anything with these at present. */
4928 return bfd_reloc_continue;
4929
4930 default:
4931 /* An unrecognized relocation type. */
4932 return bfd_reloc_notsupported;
4933 }
4934
4935 /* Store the VALUE for our caller. */
4936 *valuep = value;
4937 return overflowed_p ? bfd_reloc_overflow : bfd_reloc_ok;
4938}
4939
4940/* Obtain the field relocated by RELOCATION. */
4941
4942static bfd_vma
9719ad41
RS
4943mips_elf_obtain_contents (reloc_howto_type *howto,
4944 const Elf_Internal_Rela *relocation,
4945 bfd *input_bfd, bfd_byte *contents)
b49e97c9
TS
4946{
4947 bfd_vma x;
4948 bfd_byte *location = contents + relocation->r_offset;
4949
4950 /* Obtain the bytes. */
4951 x = bfd_get ((8 * bfd_get_reloc_size (howto)), input_bfd, location);
4952
b49e97c9
TS
4953 return x;
4954}
4955
4956/* It has been determined that the result of the RELOCATION is the
4957 VALUE. Use HOWTO to place VALUE into the output file at the
4958 appropriate position. The SECTION is the section to which the
b34976b6 4959 relocation applies. If REQUIRE_JALX is TRUE, then the opcode used
b49e97c9
TS
4960 for the relocation must be either JAL or JALX, and it is
4961 unconditionally converted to JALX.
4962
b34976b6 4963 Returns FALSE if anything goes wrong. */
b49e97c9 4964
b34976b6 4965static bfd_boolean
9719ad41
RS
4966mips_elf_perform_relocation (struct bfd_link_info *info,
4967 reloc_howto_type *howto,
4968 const Elf_Internal_Rela *relocation,
4969 bfd_vma value, bfd *input_bfd,
4970 asection *input_section, bfd_byte *contents,
4971 bfd_boolean require_jalx)
b49e97c9
TS
4972{
4973 bfd_vma x;
4974 bfd_byte *location;
4975 int r_type = ELF_R_TYPE (input_bfd, relocation->r_info);
4976
4977 /* Figure out where the relocation is occurring. */
4978 location = contents + relocation->r_offset;
4979
d6f16593
MR
4980 _bfd_mips16_elf_reloc_unshuffle (input_bfd, r_type, FALSE, location);
4981
b49e97c9
TS
4982 /* Obtain the current value. */
4983 x = mips_elf_obtain_contents (howto, relocation, input_bfd, contents);
4984
4985 /* Clear the field we are setting. */
4986 x &= ~howto->dst_mask;
4987
b49e97c9
TS
4988 /* Set the field. */
4989 x |= (value & howto->dst_mask);
4990
4991 /* If required, turn JAL into JALX. */
4992 if (require_jalx)
4993 {
b34976b6 4994 bfd_boolean ok;
b49e97c9
TS
4995 bfd_vma opcode = x >> 26;
4996 bfd_vma jalx_opcode;
4997
4998 /* Check to see if the opcode is already JAL or JALX. */
4999 if (r_type == R_MIPS16_26)
5000 {
5001 ok = ((opcode == 0x6) || (opcode == 0x7));
5002 jalx_opcode = 0x7;
5003 }
5004 else
5005 {
5006 ok = ((opcode == 0x3) || (opcode == 0x1d));
5007 jalx_opcode = 0x1d;
5008 }
5009
5010 /* If the opcode is not JAL or JALX, there's a problem. */
5011 if (!ok)
5012 {
5013 (*_bfd_error_handler)
d003868e
AM
5014 (_("%B: %A+0x%lx: jump to stub routine which is not jal"),
5015 input_bfd,
5016 input_section,
b49e97c9
TS
5017 (unsigned long) relocation->r_offset);
5018 bfd_set_error (bfd_error_bad_value);
b34976b6 5019 return FALSE;
b49e97c9
TS
5020 }
5021
5022 /* Make this the JALX opcode. */
5023 x = (x & ~(0x3f << 26)) | (jalx_opcode << 26);
5024 }
5025
1367d393
ILT
5026 /* On the RM9000, bal is faster than jal, because bal uses branch
5027 prediction hardware. If we are linking for the RM9000, and we
5028 see jal, and bal fits, use it instead. Note that this
5029 transformation should be safe for all architectures. */
5030 if (bfd_get_mach (input_bfd) == bfd_mach_mips9000
5031 && !info->relocatable
5032 && !require_jalx
5033 && ((r_type == R_MIPS_26 && (x >> 26) == 0x3) /* jal addr */
5034 || (r_type == R_MIPS_JALR && x == 0x0320f809))) /* jalr t9 */
5035 {
5036 bfd_vma addr;
5037 bfd_vma dest;
5038 bfd_signed_vma off;
5039
5040 addr = (input_section->output_section->vma
5041 + input_section->output_offset
5042 + relocation->r_offset
5043 + 4);
5044 if (r_type == R_MIPS_26)
5045 dest = (value << 2) | ((addr >> 28) << 28);
5046 else
5047 dest = value;
5048 off = dest - addr;
5049 if (off <= 0x1ffff && off >= -0x20000)
5050 x = 0x04110000 | (((bfd_vma) off >> 2) & 0xffff); /* bal addr */
5051 }
5052
b49e97c9
TS
5053 /* Put the value into the output. */
5054 bfd_put (8 * bfd_get_reloc_size (howto), input_bfd, x, location);
d6f16593
MR
5055
5056 _bfd_mips16_elf_reloc_shuffle(input_bfd, r_type, !info->relocatable,
5057 location);
5058
b34976b6 5059 return TRUE;
b49e97c9 5060}
b49e97c9 5061\f
0a44bf69 5062/* Add room for N relocations to the .rel(a).dyn section in ABFD. */
b49e97c9
TS
5063
5064static void
0a44bf69
RS
5065mips_elf_allocate_dynamic_relocations (bfd *abfd, struct bfd_link_info *info,
5066 unsigned int n)
b49e97c9
TS
5067{
5068 asection *s;
0a44bf69 5069 struct mips_elf_link_hash_table *htab;
b49e97c9 5070
0a44bf69
RS
5071 htab = mips_elf_hash_table (info);
5072 s = mips_elf_rel_dyn_section (info, FALSE);
b49e97c9
TS
5073 BFD_ASSERT (s != NULL);
5074
0a44bf69
RS
5075 if (htab->is_vxworks)
5076 s->size += n * MIPS_ELF_RELA_SIZE (abfd);
5077 else
b49e97c9 5078 {
0a44bf69
RS
5079 if (s->size == 0)
5080 {
5081 /* Make room for a null element. */
5082 s->size += MIPS_ELF_REL_SIZE (abfd);
5083 ++s->reloc_count;
5084 }
5085 s->size += n * MIPS_ELF_REL_SIZE (abfd);
b49e97c9 5086 }
b49e97c9
TS
5087}
5088
5089/* Create a rel.dyn relocation for the dynamic linker to resolve. REL
5090 is the original relocation, which is now being transformed into a
5091 dynamic relocation. The ADDENDP is adjusted if necessary; the
5092 caller should store the result in place of the original addend. */
5093
b34976b6 5094static bfd_boolean
9719ad41
RS
5095mips_elf_create_dynamic_relocation (bfd *output_bfd,
5096 struct bfd_link_info *info,
5097 const Elf_Internal_Rela *rel,
5098 struct mips_elf_link_hash_entry *h,
5099 asection *sec, bfd_vma symbol,
5100 bfd_vma *addendp, asection *input_section)
b49e97c9 5101{
947216bf 5102 Elf_Internal_Rela outrel[3];
b49e97c9
TS
5103 asection *sreloc;
5104 bfd *dynobj;
5105 int r_type;
5d41f0b6
RS
5106 long indx;
5107 bfd_boolean defined_p;
0a44bf69 5108 struct mips_elf_link_hash_table *htab;
b49e97c9 5109
0a44bf69 5110 htab = mips_elf_hash_table (info);
b49e97c9
TS
5111 r_type = ELF_R_TYPE (output_bfd, rel->r_info);
5112 dynobj = elf_hash_table (info)->dynobj;
0a44bf69 5113 sreloc = mips_elf_rel_dyn_section (info, FALSE);
b49e97c9
TS
5114 BFD_ASSERT (sreloc != NULL);
5115 BFD_ASSERT (sreloc->contents != NULL);
5116 BFD_ASSERT (sreloc->reloc_count * MIPS_ELF_REL_SIZE (output_bfd)
eea6121a 5117 < sreloc->size);
b49e97c9 5118
b49e97c9
TS
5119 outrel[0].r_offset =
5120 _bfd_elf_section_offset (output_bfd, info, input_section, rel[0].r_offset);
9ddf8309
TS
5121 if (ABI_64_P (output_bfd))
5122 {
5123 outrel[1].r_offset =
5124 _bfd_elf_section_offset (output_bfd, info, input_section, rel[1].r_offset);
5125 outrel[2].r_offset =
5126 _bfd_elf_section_offset (output_bfd, info, input_section, rel[2].r_offset);
5127 }
b49e97c9 5128
c5ae1840 5129 if (outrel[0].r_offset == MINUS_ONE)
0d591ff7 5130 /* The relocation field has been deleted. */
5d41f0b6
RS
5131 return TRUE;
5132
5133 if (outrel[0].r_offset == MINUS_TWO)
0d591ff7
RS
5134 {
5135 /* The relocation field has been converted into a relative value of
5136 some sort. Functions like _bfd_elf_write_section_eh_frame expect
5137 the field to be fully relocated, so add in the symbol's value. */
0d591ff7 5138 *addendp += symbol;
5d41f0b6 5139 return TRUE;
0d591ff7 5140 }
b49e97c9 5141
5d41f0b6
RS
5142 /* We must now calculate the dynamic symbol table index to use
5143 in the relocation. */
5144 if (h != NULL
6ece8836
TS
5145 && (!h->root.def_regular
5146 || (info->shared && !info->symbolic && !h->root.forced_local)))
5d41f0b6
RS
5147 {
5148 indx = h->root.dynindx;
5149 if (SGI_COMPAT (output_bfd))
5150 defined_p = h->root.def_regular;
5151 else
5152 /* ??? glibc's ld.so just adds the final GOT entry to the
5153 relocation field. It therefore treats relocs against
5154 defined symbols in the same way as relocs against
5155 undefined symbols. */
5156 defined_p = FALSE;
5157 }
b49e97c9
TS
5158 else
5159 {
5d41f0b6
RS
5160 if (sec != NULL && bfd_is_abs_section (sec))
5161 indx = 0;
5162 else if (sec == NULL || sec->owner == NULL)
fdd07405 5163 {
5d41f0b6
RS
5164 bfd_set_error (bfd_error_bad_value);
5165 return FALSE;
b49e97c9
TS
5166 }
5167 else
5168 {
5d41f0b6 5169 indx = elf_section_data (sec->output_section)->dynindx;
74541ad4
AM
5170 if (indx == 0)
5171 {
5172 asection *osec = htab->root.text_index_section;
5173 indx = elf_section_data (osec)->dynindx;
5174 }
5d41f0b6
RS
5175 if (indx == 0)
5176 abort ();
b49e97c9
TS
5177 }
5178
5d41f0b6
RS
5179 /* Instead of generating a relocation using the section
5180 symbol, we may as well make it a fully relative
5181 relocation. We want to avoid generating relocations to
5182 local symbols because we used to generate them
5183 incorrectly, without adding the original symbol value,
5184 which is mandated by the ABI for section symbols. In
5185 order to give dynamic loaders and applications time to
5186 phase out the incorrect use, we refrain from emitting
5187 section-relative relocations. It's not like they're
5188 useful, after all. This should be a bit more efficient
5189 as well. */
5190 /* ??? Although this behavior is compatible with glibc's ld.so,
5191 the ABI says that relocations against STN_UNDEF should have
5192 a symbol value of 0. Irix rld honors this, so relocations
5193 against STN_UNDEF have no effect. */
5194 if (!SGI_COMPAT (output_bfd))
5195 indx = 0;
5196 defined_p = TRUE;
b49e97c9
TS
5197 }
5198
5d41f0b6
RS
5199 /* If the relocation was previously an absolute relocation and
5200 this symbol will not be referred to by the relocation, we must
5201 adjust it by the value we give it in the dynamic symbol table.
5202 Otherwise leave the job up to the dynamic linker. */
5203 if (defined_p && r_type != R_MIPS_REL32)
5204 *addendp += symbol;
5205
0a44bf69
RS
5206 if (htab->is_vxworks)
5207 /* VxWorks uses non-relative relocations for this. */
5208 outrel[0].r_info = ELF32_R_INFO (indx, R_MIPS_32);
5209 else
5210 /* The relocation is always an REL32 relocation because we don't
5211 know where the shared library will wind up at load-time. */
5212 outrel[0].r_info = ELF_R_INFO (output_bfd, (unsigned long) indx,
5213 R_MIPS_REL32);
5214
5d41f0b6
RS
5215 /* For strict adherence to the ABI specification, we should
5216 generate a R_MIPS_64 relocation record by itself before the
5217 _REL32/_64 record as well, such that the addend is read in as
5218 a 64-bit value (REL32 is a 32-bit relocation, after all).
5219 However, since none of the existing ELF64 MIPS dynamic
5220 loaders seems to care, we don't waste space with these
5221 artificial relocations. If this turns out to not be true,
5222 mips_elf_allocate_dynamic_relocation() should be tweaked so
5223 as to make room for a pair of dynamic relocations per
5224 invocation if ABI_64_P, and here we should generate an
5225 additional relocation record with R_MIPS_64 by itself for a
5226 NULL symbol before this relocation record. */
5227 outrel[1].r_info = ELF_R_INFO (output_bfd, 0,
5228 ABI_64_P (output_bfd)
5229 ? R_MIPS_64
5230 : R_MIPS_NONE);
5231 outrel[2].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_NONE);
5232
5233 /* Adjust the output offset of the relocation to reference the
5234 correct location in the output file. */
5235 outrel[0].r_offset += (input_section->output_section->vma
5236 + input_section->output_offset);
5237 outrel[1].r_offset += (input_section->output_section->vma
5238 + input_section->output_offset);
5239 outrel[2].r_offset += (input_section->output_section->vma
5240 + input_section->output_offset);
5241
b49e97c9
TS
5242 /* Put the relocation back out. We have to use the special
5243 relocation outputter in the 64-bit case since the 64-bit
5244 relocation format is non-standard. */
5245 if (ABI_64_P (output_bfd))
5246 {
5247 (*get_elf_backend_data (output_bfd)->s->swap_reloc_out)
5248 (output_bfd, &outrel[0],
5249 (sreloc->contents
5250 + sreloc->reloc_count * sizeof (Elf64_Mips_External_Rel)));
5251 }
0a44bf69
RS
5252 else if (htab->is_vxworks)
5253 {
5254 /* VxWorks uses RELA rather than REL dynamic relocations. */
5255 outrel[0].r_addend = *addendp;
5256 bfd_elf32_swap_reloca_out
5257 (output_bfd, &outrel[0],
5258 (sreloc->contents
5259 + sreloc->reloc_count * sizeof (Elf32_External_Rela)));
5260 }
b49e97c9 5261 else
947216bf
AM
5262 bfd_elf32_swap_reloc_out
5263 (output_bfd, &outrel[0],
5264 (sreloc->contents + sreloc->reloc_count * sizeof (Elf32_External_Rel)));
b49e97c9 5265
b49e97c9
TS
5266 /* We've now added another relocation. */
5267 ++sreloc->reloc_count;
5268
5269 /* Make sure the output section is writable. The dynamic linker
5270 will be writing to it. */
5271 elf_section_data (input_section->output_section)->this_hdr.sh_flags
5272 |= SHF_WRITE;
5273
5274 /* On IRIX5, make an entry of compact relocation info. */
5d41f0b6 5275 if (IRIX_COMPAT (output_bfd) == ict_irix5)
b49e97c9
TS
5276 {
5277 asection *scpt = bfd_get_section_by_name (dynobj, ".compact_rel");
5278 bfd_byte *cr;
5279
5280 if (scpt)
5281 {
5282 Elf32_crinfo cptrel;
5283
5284 mips_elf_set_cr_format (cptrel, CRF_MIPS_LONG);
5285 cptrel.vaddr = (rel->r_offset
5286 + input_section->output_section->vma
5287 + input_section->output_offset);
5288 if (r_type == R_MIPS_REL32)
5289 mips_elf_set_cr_type (cptrel, CRT_MIPS_REL32);
5290 else
5291 mips_elf_set_cr_type (cptrel, CRT_MIPS_WORD);
5292 mips_elf_set_cr_dist2to (cptrel, 0);
5293 cptrel.konst = *addendp;
5294
5295 cr = (scpt->contents
5296 + sizeof (Elf32_External_compact_rel));
abc0f8d0 5297 mips_elf_set_cr_relvaddr (cptrel, 0);
b49e97c9
TS
5298 bfd_elf32_swap_crinfo_out (output_bfd, &cptrel,
5299 ((Elf32_External_crinfo *) cr
5300 + scpt->reloc_count));
5301 ++scpt->reloc_count;
5302 }
5303 }
5304
943284cc
DJ
5305 /* If we've written this relocation for a readonly section,
5306 we need to set DF_TEXTREL again, so that we do not delete the
5307 DT_TEXTREL tag. */
5308 if (MIPS_ELF_READONLY_SECTION (input_section))
5309 info->flags |= DF_TEXTREL;
5310
b34976b6 5311 return TRUE;
b49e97c9
TS
5312}
5313\f
b49e97c9
TS
5314/* Return the MACH for a MIPS e_flags value. */
5315
5316unsigned long
9719ad41 5317_bfd_elf_mips_mach (flagword flags)
b49e97c9
TS
5318{
5319 switch (flags & EF_MIPS_MACH)
5320 {
5321 case E_MIPS_MACH_3900:
5322 return bfd_mach_mips3900;
5323
5324 case E_MIPS_MACH_4010:
5325 return bfd_mach_mips4010;
5326
5327 case E_MIPS_MACH_4100:
5328 return bfd_mach_mips4100;
5329
5330 case E_MIPS_MACH_4111:
5331 return bfd_mach_mips4111;
5332
00707a0e
RS
5333 case E_MIPS_MACH_4120:
5334 return bfd_mach_mips4120;
5335
b49e97c9
TS
5336 case E_MIPS_MACH_4650:
5337 return bfd_mach_mips4650;
5338
00707a0e
RS
5339 case E_MIPS_MACH_5400:
5340 return bfd_mach_mips5400;
5341
5342 case E_MIPS_MACH_5500:
5343 return bfd_mach_mips5500;
5344
0d2e43ed
ILT
5345 case E_MIPS_MACH_9000:
5346 return bfd_mach_mips9000;
5347
b49e97c9
TS
5348 case E_MIPS_MACH_SB1:
5349 return bfd_mach_mips_sb1;
5350
350cc38d
MS
5351 case E_MIPS_MACH_LS2E:
5352 return bfd_mach_mips_loongson_2e;
5353
5354 case E_MIPS_MACH_LS2F:
5355 return bfd_mach_mips_loongson_2f;
5356
6f179bd0
AN
5357 case E_MIPS_MACH_OCTEON:
5358 return bfd_mach_mips_octeon;
5359
b49e97c9
TS
5360 default:
5361 switch (flags & EF_MIPS_ARCH)
5362 {
5363 default:
5364 case E_MIPS_ARCH_1:
5365 return bfd_mach_mips3000;
b49e97c9
TS
5366
5367 case E_MIPS_ARCH_2:
5368 return bfd_mach_mips6000;
b49e97c9
TS
5369
5370 case E_MIPS_ARCH_3:
5371 return bfd_mach_mips4000;
b49e97c9
TS
5372
5373 case E_MIPS_ARCH_4:
5374 return bfd_mach_mips8000;
b49e97c9
TS
5375
5376 case E_MIPS_ARCH_5:
5377 return bfd_mach_mips5;
b49e97c9
TS
5378
5379 case E_MIPS_ARCH_32:
5380 return bfd_mach_mipsisa32;
b49e97c9
TS
5381
5382 case E_MIPS_ARCH_64:
5383 return bfd_mach_mipsisa64;
af7ee8bf
CD
5384
5385 case E_MIPS_ARCH_32R2:
5386 return bfd_mach_mipsisa32r2;
5f74bc13
CD
5387
5388 case E_MIPS_ARCH_64R2:
5389 return bfd_mach_mipsisa64r2;
b49e97c9
TS
5390 }
5391 }
5392
5393 return 0;
5394}
5395
5396/* Return printable name for ABI. */
5397
5398static INLINE char *
9719ad41 5399elf_mips_abi_name (bfd *abfd)
b49e97c9
TS
5400{
5401 flagword flags;
5402
5403 flags = elf_elfheader (abfd)->e_flags;
5404 switch (flags & EF_MIPS_ABI)
5405 {
5406 case 0:
5407 if (ABI_N32_P (abfd))
5408 return "N32";
5409 else if (ABI_64_P (abfd))
5410 return "64";
5411 else
5412 return "none";
5413 case E_MIPS_ABI_O32:
5414 return "O32";
5415 case E_MIPS_ABI_O64:
5416 return "O64";
5417 case E_MIPS_ABI_EABI32:
5418 return "EABI32";
5419 case E_MIPS_ABI_EABI64:
5420 return "EABI64";
5421 default:
5422 return "unknown abi";
5423 }
5424}
5425\f
5426/* MIPS ELF uses two common sections. One is the usual one, and the
5427 other is for small objects. All the small objects are kept
5428 together, and then referenced via the gp pointer, which yields
5429 faster assembler code. This is what we use for the small common
5430 section. This approach is copied from ecoff.c. */
5431static asection mips_elf_scom_section;
5432static asymbol mips_elf_scom_symbol;
5433static asymbol *mips_elf_scom_symbol_ptr;
5434
5435/* MIPS ELF also uses an acommon section, which represents an
5436 allocated common symbol which may be overridden by a
5437 definition in a shared library. */
5438static asection mips_elf_acom_section;
5439static asymbol mips_elf_acom_symbol;
5440static asymbol *mips_elf_acom_symbol_ptr;
5441
738e5348 5442/* This is used for both the 32-bit and the 64-bit ABI. */
b49e97c9
TS
5443
5444void
9719ad41 5445_bfd_mips_elf_symbol_processing (bfd *abfd, asymbol *asym)
b49e97c9
TS
5446{
5447 elf_symbol_type *elfsym;
5448
738e5348 5449 /* Handle the special MIPS section numbers that a symbol may use. */
b49e97c9
TS
5450 elfsym = (elf_symbol_type *) asym;
5451 switch (elfsym->internal_elf_sym.st_shndx)
5452 {
5453 case SHN_MIPS_ACOMMON:
5454 /* This section is used in a dynamically linked executable file.
5455 It is an allocated common section. The dynamic linker can
5456 either resolve these symbols to something in a shared
5457 library, or it can just leave them here. For our purposes,
5458 we can consider these symbols to be in a new section. */
5459 if (mips_elf_acom_section.name == NULL)
5460 {
5461 /* Initialize the acommon section. */
5462 mips_elf_acom_section.name = ".acommon";
5463 mips_elf_acom_section.flags = SEC_ALLOC;
5464 mips_elf_acom_section.output_section = &mips_elf_acom_section;
5465 mips_elf_acom_section.symbol = &mips_elf_acom_symbol;
5466 mips_elf_acom_section.symbol_ptr_ptr = &mips_elf_acom_symbol_ptr;
5467 mips_elf_acom_symbol.name = ".acommon";
5468 mips_elf_acom_symbol.flags = BSF_SECTION_SYM;
5469 mips_elf_acom_symbol.section = &mips_elf_acom_section;
5470 mips_elf_acom_symbol_ptr = &mips_elf_acom_symbol;
5471 }
5472 asym->section = &mips_elf_acom_section;
5473 break;
5474
5475 case SHN_COMMON:
5476 /* Common symbols less than the GP size are automatically
5477 treated as SHN_MIPS_SCOMMON symbols on IRIX5. */
5478 if (asym->value > elf_gp_size (abfd)
b59eed79 5479 || ELF_ST_TYPE (elfsym->internal_elf_sym.st_info) == STT_TLS
b49e97c9
TS
5480 || IRIX_COMPAT (abfd) == ict_irix6)
5481 break;
5482 /* Fall through. */
5483 case SHN_MIPS_SCOMMON:
5484 if (mips_elf_scom_section.name == NULL)
5485 {
5486 /* Initialize the small common section. */
5487 mips_elf_scom_section.name = ".scommon";
5488 mips_elf_scom_section.flags = SEC_IS_COMMON;
5489 mips_elf_scom_section.output_section = &mips_elf_scom_section;
5490 mips_elf_scom_section.symbol = &mips_elf_scom_symbol;
5491 mips_elf_scom_section.symbol_ptr_ptr = &mips_elf_scom_symbol_ptr;
5492 mips_elf_scom_symbol.name = ".scommon";
5493 mips_elf_scom_symbol.flags = BSF_SECTION_SYM;
5494 mips_elf_scom_symbol.section = &mips_elf_scom_section;
5495 mips_elf_scom_symbol_ptr = &mips_elf_scom_symbol;
5496 }
5497 asym->section = &mips_elf_scom_section;
5498 asym->value = elfsym->internal_elf_sym.st_size;
5499 break;
5500
5501 case SHN_MIPS_SUNDEFINED:
5502 asym->section = bfd_und_section_ptr;
5503 break;
5504
b49e97c9 5505 case SHN_MIPS_TEXT:
00b4930b
TS
5506 {
5507 asection *section = bfd_get_section_by_name (abfd, ".text");
5508
5509 BFD_ASSERT (SGI_COMPAT (abfd));
5510 if (section != NULL)
5511 {
5512 asym->section = section;
5513 /* MIPS_TEXT is a bit special, the address is not an offset
5514 to the base of the .text section. So substract the section
5515 base address to make it an offset. */
5516 asym->value -= section->vma;
5517 }
5518 }
b49e97c9
TS
5519 break;
5520
5521 case SHN_MIPS_DATA:
00b4930b
TS
5522 {
5523 asection *section = bfd_get_section_by_name (abfd, ".data");
5524
5525 BFD_ASSERT (SGI_COMPAT (abfd));
5526 if (section != NULL)
5527 {
5528 asym->section = section;
5529 /* MIPS_DATA is a bit special, the address is not an offset
5530 to the base of the .data section. So substract the section
5531 base address to make it an offset. */
5532 asym->value -= section->vma;
5533 }
5534 }
b49e97c9 5535 break;
b49e97c9 5536 }
738e5348
RS
5537
5538 /* If this is an odd-valued function symbol, assume it's a MIPS16 one. */
5539 if (ELF_ST_TYPE (elfsym->internal_elf_sym.st_info) == STT_FUNC
5540 && (asym->value & 1) != 0)
5541 {
5542 asym->value--;
5543 elfsym->internal_elf_sym.st_other
5544 = ELF_ST_SET_MIPS16 (elfsym->internal_elf_sym.st_other);
5545 }
b49e97c9
TS
5546}
5547\f
8c946ed5
RS
5548/* Implement elf_backend_eh_frame_address_size. This differs from
5549 the default in the way it handles EABI64.
5550
5551 EABI64 was originally specified as an LP64 ABI, and that is what
5552 -mabi=eabi normally gives on a 64-bit target. However, gcc has
5553 historically accepted the combination of -mabi=eabi and -mlong32,
5554 and this ILP32 variation has become semi-official over time.
5555 Both forms use elf32 and have pointer-sized FDE addresses.
5556
5557 If an EABI object was generated by GCC 4.0 or above, it will have
5558 an empty .gcc_compiled_longXX section, where XX is the size of longs
5559 in bits. Unfortunately, ILP32 objects generated by earlier compilers
5560 have no special marking to distinguish them from LP64 objects.
5561
5562 We don't want users of the official LP64 ABI to be punished for the
5563 existence of the ILP32 variant, but at the same time, we don't want
5564 to mistakenly interpret pre-4.0 ILP32 objects as being LP64 objects.
5565 We therefore take the following approach:
5566
5567 - If ABFD contains a .gcc_compiled_longXX section, use it to
5568 determine the pointer size.
5569
5570 - Otherwise check the type of the first relocation. Assume that
5571 the LP64 ABI is being used if the relocation is of type R_MIPS_64.
5572
5573 - Otherwise punt.
5574
5575 The second check is enough to detect LP64 objects generated by pre-4.0
5576 compilers because, in the kind of output generated by those compilers,
5577 the first relocation will be associated with either a CIE personality
5578 routine or an FDE start address. Furthermore, the compilers never
5579 used a special (non-pointer) encoding for this ABI.
5580
5581 Checking the relocation type should also be safe because there is no
5582 reason to use R_MIPS_64 in an ILP32 object. Pre-4.0 compilers never
5583 did so. */
5584
5585unsigned int
5586_bfd_mips_elf_eh_frame_address_size (bfd *abfd, asection *sec)
5587{
5588 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
5589 return 8;
5590 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64)
5591 {
5592 bfd_boolean long32_p, long64_p;
5593
5594 long32_p = bfd_get_section_by_name (abfd, ".gcc_compiled_long32") != 0;
5595 long64_p = bfd_get_section_by_name (abfd, ".gcc_compiled_long64") != 0;
5596 if (long32_p && long64_p)
5597 return 0;
5598 if (long32_p)
5599 return 4;
5600 if (long64_p)
5601 return 8;
5602
5603 if (sec->reloc_count > 0
5604 && elf_section_data (sec)->relocs != NULL
5605 && (ELF32_R_TYPE (elf_section_data (sec)->relocs[0].r_info)
5606 == R_MIPS_64))
5607 return 8;
5608
5609 return 0;
5610 }
5611 return 4;
5612}
5613\f
174fd7f9
RS
5614/* There appears to be a bug in the MIPSpro linker that causes GOT_DISP
5615 relocations against two unnamed section symbols to resolve to the
5616 same address. For example, if we have code like:
5617
5618 lw $4,%got_disp(.data)($gp)
5619 lw $25,%got_disp(.text)($gp)
5620 jalr $25
5621
5622 then the linker will resolve both relocations to .data and the program
5623 will jump there rather than to .text.
5624
5625 We can work around this problem by giving names to local section symbols.
5626 This is also what the MIPSpro tools do. */
5627
5628bfd_boolean
5629_bfd_mips_elf_name_local_section_symbols (bfd *abfd)
5630{
5631 return SGI_COMPAT (abfd);
5632}
5633\f
b49e97c9
TS
5634/* Work over a section just before writing it out. This routine is
5635 used by both the 32-bit and the 64-bit ABI. FIXME: We recognize
5636 sections that need the SHF_MIPS_GPREL flag by name; there has to be
5637 a better way. */
5638
b34976b6 5639bfd_boolean
9719ad41 5640_bfd_mips_elf_section_processing (bfd *abfd, Elf_Internal_Shdr *hdr)
b49e97c9
TS
5641{
5642 if (hdr->sh_type == SHT_MIPS_REGINFO
5643 && hdr->sh_size > 0)
5644 {
5645 bfd_byte buf[4];
5646
5647 BFD_ASSERT (hdr->sh_size == sizeof (Elf32_External_RegInfo));
5648 BFD_ASSERT (hdr->contents == NULL);
5649
5650 if (bfd_seek (abfd,
5651 hdr->sh_offset + sizeof (Elf32_External_RegInfo) - 4,
5652 SEEK_SET) != 0)
b34976b6 5653 return FALSE;
b49e97c9 5654 H_PUT_32 (abfd, elf_gp (abfd), buf);
9719ad41 5655 if (bfd_bwrite (buf, 4, abfd) != 4)
b34976b6 5656 return FALSE;
b49e97c9
TS
5657 }
5658
5659 if (hdr->sh_type == SHT_MIPS_OPTIONS
5660 && hdr->bfd_section != NULL
f0abc2a1
AM
5661 && mips_elf_section_data (hdr->bfd_section) != NULL
5662 && mips_elf_section_data (hdr->bfd_section)->u.tdata != NULL)
b49e97c9
TS
5663 {
5664 bfd_byte *contents, *l, *lend;
5665
f0abc2a1
AM
5666 /* We stored the section contents in the tdata field in the
5667 set_section_contents routine. We save the section contents
5668 so that we don't have to read them again.
b49e97c9
TS
5669 At this point we know that elf_gp is set, so we can look
5670 through the section contents to see if there is an
5671 ODK_REGINFO structure. */
5672
f0abc2a1 5673 contents = mips_elf_section_data (hdr->bfd_section)->u.tdata;
b49e97c9
TS
5674 l = contents;
5675 lend = contents + hdr->sh_size;
5676 while (l + sizeof (Elf_External_Options) <= lend)
5677 {
5678 Elf_Internal_Options intopt;
5679
5680 bfd_mips_elf_swap_options_in (abfd, (Elf_External_Options *) l,
5681 &intopt);
1bc8074d
MR
5682 if (intopt.size < sizeof (Elf_External_Options))
5683 {
5684 (*_bfd_error_handler)
5685 (_("%B: Warning: bad `%s' option size %u smaller than its header"),
5686 abfd, MIPS_ELF_OPTIONS_SECTION_NAME (abfd), intopt.size);
5687 break;
5688 }
b49e97c9
TS
5689 if (ABI_64_P (abfd) && intopt.kind == ODK_REGINFO)
5690 {
5691 bfd_byte buf[8];
5692
5693 if (bfd_seek (abfd,
5694 (hdr->sh_offset
5695 + (l - contents)
5696 + sizeof (Elf_External_Options)
5697 + (sizeof (Elf64_External_RegInfo) - 8)),
5698 SEEK_SET) != 0)
b34976b6 5699 return FALSE;
b49e97c9 5700 H_PUT_64 (abfd, elf_gp (abfd), buf);
9719ad41 5701 if (bfd_bwrite (buf, 8, abfd) != 8)
b34976b6 5702 return FALSE;
b49e97c9
TS
5703 }
5704 else if (intopt.kind == ODK_REGINFO)
5705 {
5706 bfd_byte buf[4];
5707
5708 if (bfd_seek (abfd,
5709 (hdr->sh_offset
5710 + (l - contents)
5711 + sizeof (Elf_External_Options)
5712 + (sizeof (Elf32_External_RegInfo) - 4)),
5713 SEEK_SET) != 0)
b34976b6 5714 return FALSE;
b49e97c9 5715 H_PUT_32 (abfd, elf_gp (abfd), buf);
9719ad41 5716 if (bfd_bwrite (buf, 4, abfd) != 4)
b34976b6 5717 return FALSE;
b49e97c9
TS
5718 }
5719 l += intopt.size;
5720 }
5721 }
5722
5723 if (hdr->bfd_section != NULL)
5724 {
5725 const char *name = bfd_get_section_name (abfd, hdr->bfd_section);
5726
5727 if (strcmp (name, ".sdata") == 0
5728 || strcmp (name, ".lit8") == 0
5729 || strcmp (name, ".lit4") == 0)
5730 {
5731 hdr->sh_flags |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL;
5732 hdr->sh_type = SHT_PROGBITS;
5733 }
5734 else if (strcmp (name, ".sbss") == 0)
5735 {
5736 hdr->sh_flags |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL;
5737 hdr->sh_type = SHT_NOBITS;
5738 }
5739 else if (strcmp (name, ".srdata") == 0)
5740 {
5741 hdr->sh_flags |= SHF_ALLOC | SHF_MIPS_GPREL;
5742 hdr->sh_type = SHT_PROGBITS;
5743 }
5744 else if (strcmp (name, ".compact_rel") == 0)
5745 {
5746 hdr->sh_flags = 0;
5747 hdr->sh_type = SHT_PROGBITS;
5748 }
5749 else if (strcmp (name, ".rtproc") == 0)
5750 {
5751 if (hdr->sh_addralign != 0 && hdr->sh_entsize == 0)
5752 {
5753 unsigned int adjust;
5754
5755 adjust = hdr->sh_size % hdr->sh_addralign;
5756 if (adjust != 0)
5757 hdr->sh_size += hdr->sh_addralign - adjust;
5758 }
5759 }
5760 }
5761
b34976b6 5762 return TRUE;
b49e97c9
TS
5763}
5764
5765/* Handle a MIPS specific section when reading an object file. This
5766 is called when elfcode.h finds a section with an unknown type.
5767 This routine supports both the 32-bit and 64-bit ELF ABI.
5768
5769 FIXME: We need to handle the SHF_MIPS_GPREL flag, but I'm not sure
5770 how to. */
5771
b34976b6 5772bfd_boolean
6dc132d9
L
5773_bfd_mips_elf_section_from_shdr (bfd *abfd,
5774 Elf_Internal_Shdr *hdr,
5775 const char *name,
5776 int shindex)
b49e97c9
TS
5777{
5778 flagword flags = 0;
5779
5780 /* There ought to be a place to keep ELF backend specific flags, but
5781 at the moment there isn't one. We just keep track of the
5782 sections by their name, instead. Fortunately, the ABI gives
5783 suggested names for all the MIPS specific sections, so we will
5784 probably get away with this. */
5785 switch (hdr->sh_type)
5786 {
5787 case SHT_MIPS_LIBLIST:
5788 if (strcmp (name, ".liblist") != 0)
b34976b6 5789 return FALSE;
b49e97c9
TS
5790 break;
5791 case SHT_MIPS_MSYM:
5792 if (strcmp (name, ".msym") != 0)
b34976b6 5793 return FALSE;
b49e97c9
TS
5794 break;
5795 case SHT_MIPS_CONFLICT:
5796 if (strcmp (name, ".conflict") != 0)
b34976b6 5797 return FALSE;
b49e97c9
TS
5798 break;
5799 case SHT_MIPS_GPTAB:
0112cd26 5800 if (! CONST_STRNEQ (name, ".gptab."))
b34976b6 5801 return FALSE;
b49e97c9
TS
5802 break;
5803 case SHT_MIPS_UCODE:
5804 if (strcmp (name, ".ucode") != 0)
b34976b6 5805 return FALSE;
b49e97c9
TS
5806 break;
5807 case SHT_MIPS_DEBUG:
5808 if (strcmp (name, ".mdebug") != 0)
b34976b6 5809 return FALSE;
b49e97c9
TS
5810 flags = SEC_DEBUGGING;
5811 break;
5812 case SHT_MIPS_REGINFO:
5813 if (strcmp (name, ".reginfo") != 0
5814 || hdr->sh_size != sizeof (Elf32_External_RegInfo))
b34976b6 5815 return FALSE;
b49e97c9
TS
5816 flags = (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_SAME_SIZE);
5817 break;
5818 case SHT_MIPS_IFACE:
5819 if (strcmp (name, ".MIPS.interfaces") != 0)
b34976b6 5820 return FALSE;
b49e97c9
TS
5821 break;
5822 case SHT_MIPS_CONTENT:
0112cd26 5823 if (! CONST_STRNEQ (name, ".MIPS.content"))
b34976b6 5824 return FALSE;
b49e97c9
TS
5825 break;
5826 case SHT_MIPS_OPTIONS:
cc2e31b9 5827 if (!MIPS_ELF_OPTIONS_SECTION_NAME_P (name))
b34976b6 5828 return FALSE;
b49e97c9
TS
5829 break;
5830 case SHT_MIPS_DWARF:
1b315056 5831 if (! CONST_STRNEQ (name, ".debug_")
355d10dc 5832 && ! CONST_STRNEQ (name, ".zdebug_"))
b34976b6 5833 return FALSE;
b49e97c9
TS
5834 break;
5835 case SHT_MIPS_SYMBOL_LIB:
5836 if (strcmp (name, ".MIPS.symlib") != 0)
b34976b6 5837 return FALSE;
b49e97c9
TS
5838 break;
5839 case SHT_MIPS_EVENTS:
0112cd26
NC
5840 if (! CONST_STRNEQ (name, ".MIPS.events")
5841 && ! CONST_STRNEQ (name, ".MIPS.post_rel"))
b34976b6 5842 return FALSE;
b49e97c9
TS
5843 break;
5844 default:
cc2e31b9 5845 break;
b49e97c9
TS
5846 }
5847
6dc132d9 5848 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
b34976b6 5849 return FALSE;
b49e97c9
TS
5850
5851 if (flags)
5852 {
5853 if (! bfd_set_section_flags (abfd, hdr->bfd_section,
5854 (bfd_get_section_flags (abfd,
5855 hdr->bfd_section)
5856 | flags)))
b34976b6 5857 return FALSE;
b49e97c9
TS
5858 }
5859
5860 /* FIXME: We should record sh_info for a .gptab section. */
5861
5862 /* For a .reginfo section, set the gp value in the tdata information
5863 from the contents of this section. We need the gp value while
5864 processing relocs, so we just get it now. The .reginfo section
5865 is not used in the 64-bit MIPS ELF ABI. */
5866 if (hdr->sh_type == SHT_MIPS_REGINFO)
5867 {
5868 Elf32_External_RegInfo ext;
5869 Elf32_RegInfo s;
5870
9719ad41
RS
5871 if (! bfd_get_section_contents (abfd, hdr->bfd_section,
5872 &ext, 0, sizeof ext))
b34976b6 5873 return FALSE;
b49e97c9
TS
5874 bfd_mips_elf32_swap_reginfo_in (abfd, &ext, &s);
5875 elf_gp (abfd) = s.ri_gp_value;
5876 }
5877
5878 /* For a SHT_MIPS_OPTIONS section, look for a ODK_REGINFO entry, and
5879 set the gp value based on what we find. We may see both
5880 SHT_MIPS_REGINFO and SHT_MIPS_OPTIONS/ODK_REGINFO; in that case,
5881 they should agree. */
5882 if (hdr->sh_type == SHT_MIPS_OPTIONS)
5883 {
5884 bfd_byte *contents, *l, *lend;
5885
9719ad41 5886 contents = bfd_malloc (hdr->sh_size);
b49e97c9 5887 if (contents == NULL)
b34976b6 5888 return FALSE;
b49e97c9 5889 if (! bfd_get_section_contents (abfd, hdr->bfd_section, contents,
9719ad41 5890 0, hdr->sh_size))
b49e97c9
TS
5891 {
5892 free (contents);
b34976b6 5893 return FALSE;
b49e97c9
TS
5894 }
5895 l = contents;
5896 lend = contents + hdr->sh_size;
5897 while (l + sizeof (Elf_External_Options) <= lend)
5898 {
5899 Elf_Internal_Options intopt;
5900
5901 bfd_mips_elf_swap_options_in (abfd, (Elf_External_Options *) l,
5902 &intopt);
1bc8074d
MR
5903 if (intopt.size < sizeof (Elf_External_Options))
5904 {
5905 (*_bfd_error_handler)
5906 (_("%B: Warning: bad `%s' option size %u smaller than its header"),
5907 abfd, MIPS_ELF_OPTIONS_SECTION_NAME (abfd), intopt.size);
5908 break;
5909 }
b49e97c9
TS
5910 if (ABI_64_P (abfd) && intopt.kind == ODK_REGINFO)
5911 {
5912 Elf64_Internal_RegInfo intreg;
5913
5914 bfd_mips_elf64_swap_reginfo_in
5915 (abfd,
5916 ((Elf64_External_RegInfo *)
5917 (l + sizeof (Elf_External_Options))),
5918 &intreg);
5919 elf_gp (abfd) = intreg.ri_gp_value;
5920 }
5921 else if (intopt.kind == ODK_REGINFO)
5922 {
5923 Elf32_RegInfo intreg;
5924
5925 bfd_mips_elf32_swap_reginfo_in
5926 (abfd,
5927 ((Elf32_External_RegInfo *)
5928 (l + sizeof (Elf_External_Options))),
5929 &intreg);
5930 elf_gp (abfd) = intreg.ri_gp_value;
5931 }
5932 l += intopt.size;
5933 }
5934 free (contents);
5935 }
5936
b34976b6 5937 return TRUE;
b49e97c9
TS
5938}
5939
5940/* Set the correct type for a MIPS ELF section. We do this by the
5941 section name, which is a hack, but ought to work. This routine is
5942 used by both the 32-bit and the 64-bit ABI. */
5943
b34976b6 5944bfd_boolean
9719ad41 5945_bfd_mips_elf_fake_sections (bfd *abfd, Elf_Internal_Shdr *hdr, asection *sec)
b49e97c9 5946{
0414f35b 5947 const char *name = bfd_get_section_name (abfd, sec);
b49e97c9
TS
5948
5949 if (strcmp (name, ".liblist") == 0)
5950 {
5951 hdr->sh_type = SHT_MIPS_LIBLIST;
eea6121a 5952 hdr->sh_info = sec->size / sizeof (Elf32_Lib);
b49e97c9
TS
5953 /* The sh_link field is set in final_write_processing. */
5954 }
5955 else if (strcmp (name, ".conflict") == 0)
5956 hdr->sh_type = SHT_MIPS_CONFLICT;
0112cd26 5957 else if (CONST_STRNEQ (name, ".gptab."))
b49e97c9
TS
5958 {
5959 hdr->sh_type = SHT_MIPS_GPTAB;
5960 hdr->sh_entsize = sizeof (Elf32_External_gptab);
5961 /* The sh_info field is set in final_write_processing. */
5962 }
5963 else if (strcmp (name, ".ucode") == 0)
5964 hdr->sh_type = SHT_MIPS_UCODE;
5965 else if (strcmp (name, ".mdebug") == 0)
5966 {
5967 hdr->sh_type = SHT_MIPS_DEBUG;
8dc1a139 5968 /* In a shared object on IRIX 5.3, the .mdebug section has an
b49e97c9
TS
5969 entsize of 0. FIXME: Does this matter? */
5970 if (SGI_COMPAT (abfd) && (abfd->flags & DYNAMIC) != 0)
5971 hdr->sh_entsize = 0;
5972 else
5973 hdr->sh_entsize = 1;
5974 }
5975 else if (strcmp (name, ".reginfo") == 0)
5976 {
5977 hdr->sh_type = SHT_MIPS_REGINFO;
8dc1a139 5978 /* In a shared object on IRIX 5.3, the .reginfo section has an
b49e97c9
TS
5979 entsize of 0x18. FIXME: Does this matter? */
5980 if (SGI_COMPAT (abfd))
5981 {
5982 if ((abfd->flags & DYNAMIC) != 0)
5983 hdr->sh_entsize = sizeof (Elf32_External_RegInfo);
5984 else
5985 hdr->sh_entsize = 1;
5986 }
5987 else
5988 hdr->sh_entsize = sizeof (Elf32_External_RegInfo);
5989 }
5990 else if (SGI_COMPAT (abfd)
5991 && (strcmp (name, ".hash") == 0
5992 || strcmp (name, ".dynamic") == 0
5993 || strcmp (name, ".dynstr") == 0))
5994 {
5995 if (SGI_COMPAT (abfd))
5996 hdr->sh_entsize = 0;
5997#if 0
8dc1a139 5998 /* This isn't how the IRIX6 linker behaves. */
b49e97c9
TS
5999 hdr->sh_info = SIZEOF_MIPS_DYNSYM_SECNAMES;
6000#endif
6001 }
6002 else if (strcmp (name, ".got") == 0
6003 || strcmp (name, ".srdata") == 0
6004 || strcmp (name, ".sdata") == 0
6005 || strcmp (name, ".sbss") == 0
6006 || strcmp (name, ".lit4") == 0
6007 || strcmp (name, ".lit8") == 0)
6008 hdr->sh_flags |= SHF_MIPS_GPREL;
6009 else if (strcmp (name, ".MIPS.interfaces") == 0)
6010 {
6011 hdr->sh_type = SHT_MIPS_IFACE;
6012 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
6013 }
0112cd26 6014 else if (CONST_STRNEQ (name, ".MIPS.content"))
b49e97c9
TS
6015 {
6016 hdr->sh_type = SHT_MIPS_CONTENT;
6017 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
6018 /* The sh_info field is set in final_write_processing. */
6019 }
cc2e31b9 6020 else if (MIPS_ELF_OPTIONS_SECTION_NAME_P (name))
b49e97c9
TS
6021 {
6022 hdr->sh_type = SHT_MIPS_OPTIONS;
6023 hdr->sh_entsize = 1;
6024 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
6025 }
1b315056
CS
6026 else if (CONST_STRNEQ (name, ".debug_")
6027 || CONST_STRNEQ (name, ".zdebug_"))
b5482f21
NC
6028 {
6029 hdr->sh_type = SHT_MIPS_DWARF;
6030
6031 /* Irix facilities such as libexc expect a single .debug_frame
6032 per executable, the system ones have NOSTRIP set and the linker
6033 doesn't merge sections with different flags so ... */
6034 if (SGI_COMPAT (abfd) && CONST_STRNEQ (name, ".debug_frame"))
6035 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
6036 }
b49e97c9
TS
6037 else if (strcmp (name, ".MIPS.symlib") == 0)
6038 {
6039 hdr->sh_type = SHT_MIPS_SYMBOL_LIB;
6040 /* The sh_link and sh_info fields are set in
6041 final_write_processing. */
6042 }
0112cd26
NC
6043 else if (CONST_STRNEQ (name, ".MIPS.events")
6044 || CONST_STRNEQ (name, ".MIPS.post_rel"))
b49e97c9
TS
6045 {
6046 hdr->sh_type = SHT_MIPS_EVENTS;
6047 hdr->sh_flags |= SHF_MIPS_NOSTRIP;
6048 /* The sh_link field is set in final_write_processing. */
6049 }
6050 else if (strcmp (name, ".msym") == 0)
6051 {
6052 hdr->sh_type = SHT_MIPS_MSYM;
6053 hdr->sh_flags |= SHF_ALLOC;
6054 hdr->sh_entsize = 8;
6055 }
6056
7a79a000
TS
6057 /* The generic elf_fake_sections will set up REL_HDR using the default
6058 kind of relocations. We used to set up a second header for the
6059 non-default kind of relocations here, but only NewABI would use
6060 these, and the IRIX ld doesn't like resulting empty RELA sections.
6061 Thus we create those header only on demand now. */
b49e97c9 6062
b34976b6 6063 return TRUE;
b49e97c9
TS
6064}
6065
6066/* Given a BFD section, try to locate the corresponding ELF section
6067 index. This is used by both the 32-bit and the 64-bit ABI.
6068 Actually, it's not clear to me that the 64-bit ABI supports these,
6069 but for non-PIC objects we will certainly want support for at least
6070 the .scommon section. */
6071
b34976b6 6072bfd_boolean
9719ad41
RS
6073_bfd_mips_elf_section_from_bfd_section (bfd *abfd ATTRIBUTE_UNUSED,
6074 asection *sec, int *retval)
b49e97c9
TS
6075{
6076 if (strcmp (bfd_get_section_name (abfd, sec), ".scommon") == 0)
6077 {
6078 *retval = SHN_MIPS_SCOMMON;
b34976b6 6079 return TRUE;
b49e97c9
TS
6080 }
6081 if (strcmp (bfd_get_section_name (abfd, sec), ".acommon") == 0)
6082 {
6083 *retval = SHN_MIPS_ACOMMON;
b34976b6 6084 return TRUE;
b49e97c9 6085 }
b34976b6 6086 return FALSE;
b49e97c9
TS
6087}
6088\f
6089/* Hook called by the linker routine which adds symbols from an object
6090 file. We must handle the special MIPS section numbers here. */
6091
b34976b6 6092bfd_boolean
9719ad41 6093_bfd_mips_elf_add_symbol_hook (bfd *abfd, struct bfd_link_info *info,
555cd476 6094 Elf_Internal_Sym *sym, const char **namep,
9719ad41
RS
6095 flagword *flagsp ATTRIBUTE_UNUSED,
6096 asection **secp, bfd_vma *valp)
b49e97c9
TS
6097{
6098 if (SGI_COMPAT (abfd)
6099 && (abfd->flags & DYNAMIC) != 0
6100 && strcmp (*namep, "_rld_new_interface") == 0)
6101 {
8dc1a139 6102 /* Skip IRIX5 rld entry name. */
b49e97c9 6103 *namep = NULL;
b34976b6 6104 return TRUE;
b49e97c9
TS
6105 }
6106
eedecc07
DD
6107 /* Shared objects may have a dynamic symbol '_gp_disp' defined as
6108 a SECTION *ABS*. This causes ld to think it can resolve _gp_disp
6109 by setting a DT_NEEDED for the shared object. Since _gp_disp is
6110 a magic symbol resolved by the linker, we ignore this bogus definition
6111 of _gp_disp. New ABI objects do not suffer from this problem so this
6112 is not done for them. */
6113 if (!NEWABI_P(abfd)
6114 && (sym->st_shndx == SHN_ABS)
6115 && (strcmp (*namep, "_gp_disp") == 0))
6116 {
6117 *namep = NULL;
6118 return TRUE;
6119 }
6120
b49e97c9
TS
6121 switch (sym->st_shndx)
6122 {
6123 case SHN_COMMON:
6124 /* Common symbols less than the GP size are automatically
6125 treated as SHN_MIPS_SCOMMON symbols. */
6126 if (sym->st_size > elf_gp_size (abfd)
b59eed79 6127 || ELF_ST_TYPE (sym->st_info) == STT_TLS
b49e97c9
TS
6128 || IRIX_COMPAT (abfd) == ict_irix6)
6129 break;
6130 /* Fall through. */
6131 case SHN_MIPS_SCOMMON:
6132 *secp = bfd_make_section_old_way (abfd, ".scommon");
6133 (*secp)->flags |= SEC_IS_COMMON;
6134 *valp = sym->st_size;
6135 break;
6136
6137 case SHN_MIPS_TEXT:
6138 /* This section is used in a shared object. */
6139 if (elf_tdata (abfd)->elf_text_section == NULL)
6140 {
6141 asymbol *elf_text_symbol;
6142 asection *elf_text_section;
6143 bfd_size_type amt = sizeof (asection);
6144
6145 elf_text_section = bfd_zalloc (abfd, amt);
6146 if (elf_text_section == NULL)
b34976b6 6147 return FALSE;
b49e97c9
TS
6148
6149 amt = sizeof (asymbol);
6150 elf_text_symbol = bfd_zalloc (abfd, amt);
6151 if (elf_text_symbol == NULL)
b34976b6 6152 return FALSE;
b49e97c9
TS
6153
6154 /* Initialize the section. */
6155
6156 elf_tdata (abfd)->elf_text_section = elf_text_section;
6157 elf_tdata (abfd)->elf_text_symbol = elf_text_symbol;
6158
6159 elf_text_section->symbol = elf_text_symbol;
6160 elf_text_section->symbol_ptr_ptr = &elf_tdata (abfd)->elf_text_symbol;
6161
6162 elf_text_section->name = ".text";
6163 elf_text_section->flags = SEC_NO_FLAGS;
6164 elf_text_section->output_section = NULL;
6165 elf_text_section->owner = abfd;
6166 elf_text_symbol->name = ".text";
6167 elf_text_symbol->flags = BSF_SECTION_SYM | BSF_DYNAMIC;
6168 elf_text_symbol->section = elf_text_section;
6169 }
6170 /* This code used to do *secp = bfd_und_section_ptr if
6171 info->shared. I don't know why, and that doesn't make sense,
6172 so I took it out. */
6173 *secp = elf_tdata (abfd)->elf_text_section;
6174 break;
6175
6176 case SHN_MIPS_ACOMMON:
6177 /* Fall through. XXX Can we treat this as allocated data? */
6178 case SHN_MIPS_DATA:
6179 /* This section is used in a shared object. */
6180 if (elf_tdata (abfd)->elf_data_section == NULL)
6181 {
6182 asymbol *elf_data_symbol;
6183 asection *elf_data_section;
6184 bfd_size_type amt = sizeof (asection);
6185
6186 elf_data_section = bfd_zalloc (abfd, amt);
6187 if (elf_data_section == NULL)
b34976b6 6188 return FALSE;
b49e97c9
TS
6189
6190 amt = sizeof (asymbol);
6191 elf_data_symbol = bfd_zalloc (abfd, amt);
6192 if (elf_data_symbol == NULL)
b34976b6 6193 return FALSE;
b49e97c9
TS
6194
6195 /* Initialize the section. */
6196
6197 elf_tdata (abfd)->elf_data_section = elf_data_section;
6198 elf_tdata (abfd)->elf_data_symbol = elf_data_symbol;
6199
6200 elf_data_section->symbol = elf_data_symbol;
6201 elf_data_section->symbol_ptr_ptr = &elf_tdata (abfd)->elf_data_symbol;
6202
6203 elf_data_section->name = ".data";
6204 elf_data_section->flags = SEC_NO_FLAGS;
6205 elf_data_section->output_section = NULL;
6206 elf_data_section->owner = abfd;
6207 elf_data_symbol->name = ".data";
6208 elf_data_symbol->flags = BSF_SECTION_SYM | BSF_DYNAMIC;
6209 elf_data_symbol->section = elf_data_section;
6210 }
6211 /* This code used to do *secp = bfd_und_section_ptr if
6212 info->shared. I don't know why, and that doesn't make sense,
6213 so I took it out. */
6214 *secp = elf_tdata (abfd)->elf_data_section;
6215 break;
6216
6217 case SHN_MIPS_SUNDEFINED:
6218 *secp = bfd_und_section_ptr;
6219 break;
6220 }
6221
6222 if (SGI_COMPAT (abfd)
6223 && ! info->shared
f13a99db 6224 && info->output_bfd->xvec == abfd->xvec
b49e97c9
TS
6225 && strcmp (*namep, "__rld_obj_head") == 0)
6226 {
6227 struct elf_link_hash_entry *h;
14a793b2 6228 struct bfd_link_hash_entry *bh;
b49e97c9
TS
6229
6230 /* Mark __rld_obj_head as dynamic. */
14a793b2 6231 bh = NULL;
b49e97c9 6232 if (! (_bfd_generic_link_add_one_symbol
9719ad41 6233 (info, abfd, *namep, BSF_GLOBAL, *secp, *valp, NULL, FALSE,
14a793b2 6234 get_elf_backend_data (abfd)->collect, &bh)))
b34976b6 6235 return FALSE;
14a793b2
AM
6236
6237 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
6238 h->non_elf = 0;
6239 h->def_regular = 1;
b49e97c9
TS
6240 h->type = STT_OBJECT;
6241
c152c796 6242 if (! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 6243 return FALSE;
b49e97c9 6244
b34976b6 6245 mips_elf_hash_table (info)->use_rld_obj_head = TRUE;
b49e97c9
TS
6246 }
6247
6248 /* If this is a mips16 text symbol, add 1 to the value to make it
6249 odd. This will cause something like .word SYM to come up with
6250 the right value when it is loaded into the PC. */
30c09090 6251 if (ELF_ST_IS_MIPS16 (sym->st_other))
b49e97c9
TS
6252 ++*valp;
6253
b34976b6 6254 return TRUE;
b49e97c9
TS
6255}
6256
6257/* This hook function is called before the linker writes out a global
6258 symbol. We mark symbols as small common if appropriate. This is
6259 also where we undo the increment of the value for a mips16 symbol. */
6260
b34976b6 6261bfd_boolean
9719ad41
RS
6262_bfd_mips_elf_link_output_symbol_hook
6263 (struct bfd_link_info *info ATTRIBUTE_UNUSED,
6264 const char *name ATTRIBUTE_UNUSED, Elf_Internal_Sym *sym,
6265 asection *input_sec, struct elf_link_hash_entry *h ATTRIBUTE_UNUSED)
b49e97c9
TS
6266{
6267 /* If we see a common symbol, which implies a relocatable link, then
6268 if a symbol was small common in an input file, mark it as small
6269 common in the output file. */
6270 if (sym->st_shndx == SHN_COMMON
6271 && strcmp (input_sec->name, ".scommon") == 0)
6272 sym->st_shndx = SHN_MIPS_SCOMMON;
6273
30c09090 6274 if (ELF_ST_IS_MIPS16 (sym->st_other))
79cda7cf 6275 sym->st_value &= ~1;
b49e97c9 6276
b34976b6 6277 return TRUE;
b49e97c9
TS
6278}
6279\f
6280/* Functions for the dynamic linker. */
6281
6282/* Create dynamic sections when linking against a dynamic object. */
6283
b34976b6 6284bfd_boolean
9719ad41 6285_bfd_mips_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
b49e97c9
TS
6286{
6287 struct elf_link_hash_entry *h;
14a793b2 6288 struct bfd_link_hash_entry *bh;
b49e97c9
TS
6289 flagword flags;
6290 register asection *s;
6291 const char * const *namep;
0a44bf69 6292 struct mips_elf_link_hash_table *htab;
b49e97c9 6293
0a44bf69 6294 htab = mips_elf_hash_table (info);
b49e97c9
TS
6295 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
6296 | SEC_LINKER_CREATED | SEC_READONLY);
6297
0a44bf69
RS
6298 /* The psABI requires a read-only .dynamic section, but the VxWorks
6299 EABI doesn't. */
6300 if (!htab->is_vxworks)
b49e97c9 6301 {
0a44bf69
RS
6302 s = bfd_get_section_by_name (abfd, ".dynamic");
6303 if (s != NULL)
6304 {
6305 if (! bfd_set_section_flags (abfd, s, flags))
6306 return FALSE;
6307 }
b49e97c9
TS
6308 }
6309
6310 /* We need to create .got section. */
f4416af6
AO
6311 if (! mips_elf_create_got_section (abfd, info, FALSE))
6312 return FALSE;
6313
0a44bf69 6314 if (! mips_elf_rel_dyn_section (info, TRUE))
b34976b6 6315 return FALSE;
b49e97c9 6316
b49e97c9 6317 /* Create .stub section. */
4e41d0d7
RS
6318 s = bfd_make_section_with_flags (abfd,
6319 MIPS_ELF_STUB_SECTION_NAME (abfd),
6320 flags | SEC_CODE);
6321 if (s == NULL
6322 || ! bfd_set_section_alignment (abfd, s,
6323 MIPS_ELF_LOG_FILE_ALIGN (abfd)))
6324 return FALSE;
6325 htab->sstubs = s;
b49e97c9
TS
6326
6327 if ((IRIX_COMPAT (abfd) == ict_irix5 || IRIX_COMPAT (abfd) == ict_none)
6328 && !info->shared
6329 && bfd_get_section_by_name (abfd, ".rld_map") == NULL)
6330 {
3496cb2a
L
6331 s = bfd_make_section_with_flags (abfd, ".rld_map",
6332 flags &~ (flagword) SEC_READONLY);
b49e97c9 6333 if (s == NULL
b49e97c9
TS
6334 || ! bfd_set_section_alignment (abfd, s,
6335 MIPS_ELF_LOG_FILE_ALIGN (abfd)))
b34976b6 6336 return FALSE;
b49e97c9
TS
6337 }
6338
6339 /* On IRIX5, we adjust add some additional symbols and change the
6340 alignments of several sections. There is no ABI documentation
6341 indicating that this is necessary on IRIX6, nor any evidence that
6342 the linker takes such action. */
6343 if (IRIX_COMPAT (abfd) == ict_irix5)
6344 {
6345 for (namep = mips_elf_dynsym_rtproc_names; *namep != NULL; namep++)
6346 {
14a793b2 6347 bh = NULL;
b49e97c9 6348 if (! (_bfd_generic_link_add_one_symbol
9719ad41
RS
6349 (info, abfd, *namep, BSF_GLOBAL, bfd_und_section_ptr, 0,
6350 NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
b34976b6 6351 return FALSE;
14a793b2
AM
6352
6353 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
6354 h->non_elf = 0;
6355 h->def_regular = 1;
b49e97c9
TS
6356 h->type = STT_SECTION;
6357
c152c796 6358 if (! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 6359 return FALSE;
b49e97c9
TS
6360 }
6361
6362 /* We need to create a .compact_rel section. */
6363 if (SGI_COMPAT (abfd))
6364 {
6365 if (!mips_elf_create_compact_rel_section (abfd, info))
b34976b6 6366 return FALSE;
b49e97c9
TS
6367 }
6368
44c410de 6369 /* Change alignments of some sections. */
b49e97c9
TS
6370 s = bfd_get_section_by_name (abfd, ".hash");
6371 if (s != NULL)
d80dcc6a 6372 bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
b49e97c9
TS
6373 s = bfd_get_section_by_name (abfd, ".dynsym");
6374 if (s != NULL)
d80dcc6a 6375 bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
b49e97c9
TS
6376 s = bfd_get_section_by_name (abfd, ".dynstr");
6377 if (s != NULL)
d80dcc6a 6378 bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
b49e97c9
TS
6379 s = bfd_get_section_by_name (abfd, ".reginfo");
6380 if (s != NULL)
d80dcc6a 6381 bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
b49e97c9
TS
6382 s = bfd_get_section_by_name (abfd, ".dynamic");
6383 if (s != NULL)
d80dcc6a 6384 bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
b49e97c9
TS
6385 }
6386
6387 if (!info->shared)
6388 {
14a793b2
AM
6389 const char *name;
6390
6391 name = SGI_COMPAT (abfd) ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING";
6392 bh = NULL;
6393 if (!(_bfd_generic_link_add_one_symbol
9719ad41
RS
6394 (info, abfd, name, BSF_GLOBAL, bfd_abs_section_ptr, 0,
6395 NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
b34976b6 6396 return FALSE;
14a793b2
AM
6397
6398 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
6399 h->non_elf = 0;
6400 h->def_regular = 1;
b49e97c9
TS
6401 h->type = STT_SECTION;
6402
c152c796 6403 if (! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 6404 return FALSE;
b49e97c9
TS
6405
6406 if (! mips_elf_hash_table (info)->use_rld_obj_head)
6407 {
6408 /* __rld_map is a four byte word located in the .data section
6409 and is filled in by the rtld to contain a pointer to
6410 the _r_debug structure. Its symbol value will be set in
6411 _bfd_mips_elf_finish_dynamic_symbol. */
6412 s = bfd_get_section_by_name (abfd, ".rld_map");
6413 BFD_ASSERT (s != NULL);
6414
14a793b2
AM
6415 name = SGI_COMPAT (abfd) ? "__rld_map" : "__RLD_MAP";
6416 bh = NULL;
6417 if (!(_bfd_generic_link_add_one_symbol
9719ad41 6418 (info, abfd, name, BSF_GLOBAL, s, 0, NULL, FALSE,
14a793b2 6419 get_elf_backend_data (abfd)->collect, &bh)))
b34976b6 6420 return FALSE;
14a793b2
AM
6421
6422 h = (struct elf_link_hash_entry *) bh;
f5385ebf
AM
6423 h->non_elf = 0;
6424 h->def_regular = 1;
b49e97c9
TS
6425 h->type = STT_OBJECT;
6426
c152c796 6427 if (! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 6428 return FALSE;
b49e97c9
TS
6429 }
6430 }
6431
0a44bf69
RS
6432 if (htab->is_vxworks)
6433 {
6434 /* Create the .plt, .rela.plt, .dynbss and .rela.bss sections.
6435 Also create the _PROCEDURE_LINKAGE_TABLE symbol. */
6436 if (!_bfd_elf_create_dynamic_sections (abfd, info))
6437 return FALSE;
6438
6439 /* Cache the sections created above. */
6440 htab->sdynbss = bfd_get_section_by_name (abfd, ".dynbss");
6441 htab->srelbss = bfd_get_section_by_name (abfd, ".rela.bss");
6442 htab->srelplt = bfd_get_section_by_name (abfd, ".rela.plt");
6443 htab->splt = bfd_get_section_by_name (abfd, ".plt");
6444 if (!htab->sdynbss
6445 || (!htab->srelbss && !info->shared)
6446 || !htab->srelplt
6447 || !htab->splt)
6448 abort ();
6449
6450 /* Do the usual VxWorks handling. */
6451 if (!elf_vxworks_create_dynamic_sections (abfd, info, &htab->srelplt2))
6452 return FALSE;
6453
6454 /* Work out the PLT sizes. */
6455 if (info->shared)
6456 {
6457 htab->plt_header_size
6458 = 4 * ARRAY_SIZE (mips_vxworks_shared_plt0_entry);
6459 htab->plt_entry_size
6460 = 4 * ARRAY_SIZE (mips_vxworks_shared_plt_entry);
6461 }
6462 else
6463 {
6464 htab->plt_header_size
6465 = 4 * ARRAY_SIZE (mips_vxworks_exec_plt0_entry);
6466 htab->plt_entry_size
6467 = 4 * ARRAY_SIZE (mips_vxworks_exec_plt_entry);
6468 }
6469 }
6470
b34976b6 6471 return TRUE;
b49e97c9
TS
6472}
6473\f
c224138d
RS
6474/* Return true if relocation REL against section SEC is a REL rather than
6475 RELA relocation. RELOCS is the first relocation in the section and
6476 ABFD is the bfd that contains SEC. */
6477
6478static bfd_boolean
6479mips_elf_rel_relocation_p (bfd *abfd, asection *sec,
6480 const Elf_Internal_Rela *relocs,
6481 const Elf_Internal_Rela *rel)
6482{
6483 Elf_Internal_Shdr *rel_hdr;
6484 const struct elf_backend_data *bed;
6485
6486 /* To determine which flavor or relocation this is, we depend on the
6487 fact that the INPUT_SECTION's REL_HDR is read before its REL_HDR2. */
6488 rel_hdr = &elf_section_data (sec)->rel_hdr;
6489 bed = get_elf_backend_data (abfd);
6490 if ((size_t) (rel - relocs)
6491 >= (NUM_SHDR_ENTRIES (rel_hdr) * bed->s->int_rels_per_ext_rel))
6492 rel_hdr = elf_section_data (sec)->rel_hdr2;
6493 return rel_hdr->sh_entsize == MIPS_ELF_REL_SIZE (abfd);
6494}
6495
6496/* Read the addend for REL relocation REL, which belongs to bfd ABFD.
6497 HOWTO is the relocation's howto and CONTENTS points to the contents
6498 of the section that REL is against. */
6499
6500static bfd_vma
6501mips_elf_read_rel_addend (bfd *abfd, const Elf_Internal_Rela *rel,
6502 reloc_howto_type *howto, bfd_byte *contents)
6503{
6504 bfd_byte *location;
6505 unsigned int r_type;
6506 bfd_vma addend;
6507
6508 r_type = ELF_R_TYPE (abfd, rel->r_info);
6509 location = contents + rel->r_offset;
6510
6511 /* Get the addend, which is stored in the input file. */
6512 _bfd_mips16_elf_reloc_unshuffle (abfd, r_type, FALSE, location);
6513 addend = mips_elf_obtain_contents (howto, rel, abfd, contents);
6514 _bfd_mips16_elf_reloc_shuffle (abfd, r_type, FALSE, location);
6515
6516 return addend & howto->src_mask;
6517}
6518
6519/* REL is a relocation in ABFD that needs a partnering LO16 relocation
6520 and *ADDEND is the addend for REL itself. Look for the LO16 relocation
6521 and update *ADDEND with the final addend. Return true on success
6522 or false if the LO16 could not be found. RELEND is the exclusive
6523 upper bound on the relocations for REL's section. */
6524
6525static bfd_boolean
6526mips_elf_add_lo16_rel_addend (bfd *abfd,
6527 const Elf_Internal_Rela *rel,
6528 const Elf_Internal_Rela *relend,
6529 bfd_byte *contents, bfd_vma *addend)
6530{
6531 unsigned int r_type, lo16_type;
6532 const Elf_Internal_Rela *lo16_relocation;
6533 reloc_howto_type *lo16_howto;
6534 bfd_vma l;
6535
6536 r_type = ELF_R_TYPE (abfd, rel->r_info);
738e5348 6537 if (mips16_reloc_p (r_type))
c224138d
RS
6538 lo16_type = R_MIPS16_LO16;
6539 else
6540 lo16_type = R_MIPS_LO16;
6541
6542 /* The combined value is the sum of the HI16 addend, left-shifted by
6543 sixteen bits, and the LO16 addend, sign extended. (Usually, the
6544 code does a `lui' of the HI16 value, and then an `addiu' of the
6545 LO16 value.)
6546
6547 Scan ahead to find a matching LO16 relocation.
6548
6549 According to the MIPS ELF ABI, the R_MIPS_LO16 relocation must
6550 be immediately following. However, for the IRIX6 ABI, the next
6551 relocation may be a composed relocation consisting of several
6552 relocations for the same address. In that case, the R_MIPS_LO16
6553 relocation may occur as one of these. We permit a similar
6554 extension in general, as that is useful for GCC.
6555
6556 In some cases GCC dead code elimination removes the LO16 but keeps
6557 the corresponding HI16. This is strictly speaking a violation of
6558 the ABI but not immediately harmful. */
6559 lo16_relocation = mips_elf_next_relocation (abfd, lo16_type, rel, relend);
6560 if (lo16_relocation == NULL)
6561 return FALSE;
6562
6563 /* Obtain the addend kept there. */
6564 lo16_howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, lo16_type, FALSE);
6565 l = mips_elf_read_rel_addend (abfd, lo16_relocation, lo16_howto, contents);
6566
6567 l <<= lo16_howto->rightshift;
6568 l = _bfd_mips_elf_sign_extend (l, 16);
6569
6570 *addend <<= 16;
6571 *addend += l;
6572 return TRUE;
6573}
6574
6575/* Try to read the contents of section SEC in bfd ABFD. Return true and
6576 store the contents in *CONTENTS on success. Assume that *CONTENTS
6577 already holds the contents if it is nonull on entry. */
6578
6579static bfd_boolean
6580mips_elf_get_section_contents (bfd *abfd, asection *sec, bfd_byte **contents)
6581{
6582 if (*contents)
6583 return TRUE;
6584
6585 /* Get cached copy if it exists. */
6586 if (elf_section_data (sec)->this_hdr.contents != NULL)
6587 {
6588 *contents = elf_section_data (sec)->this_hdr.contents;
6589 return TRUE;
6590 }
6591
6592 return bfd_malloc_and_get_section (abfd, sec, contents);
6593}
6594
b49e97c9
TS
6595/* Look through the relocs for a section during the first phase, and
6596 allocate space in the global offset table. */
6597
b34976b6 6598bfd_boolean
9719ad41
RS
6599_bfd_mips_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
6600 asection *sec, const Elf_Internal_Rela *relocs)
b49e97c9
TS
6601{
6602 const char *name;
6603 bfd *dynobj;
6604 Elf_Internal_Shdr *symtab_hdr;
6605 struct elf_link_hash_entry **sym_hashes;
b49e97c9
TS
6606 size_t extsymoff;
6607 const Elf_Internal_Rela *rel;
6608 const Elf_Internal_Rela *rel_end;
b49e97c9 6609 asection *sreloc;
9c5bfbb7 6610 const struct elf_backend_data *bed;
0a44bf69 6611 struct mips_elf_link_hash_table *htab;
c224138d
RS
6612 bfd_byte *contents;
6613 bfd_vma addend;
6614 reloc_howto_type *howto;
b49e97c9 6615
1049f94e 6616 if (info->relocatable)
b34976b6 6617 return TRUE;
b49e97c9 6618
0a44bf69 6619 htab = mips_elf_hash_table (info);
b49e97c9
TS
6620 dynobj = elf_hash_table (info)->dynobj;
6621 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
6622 sym_hashes = elf_sym_hashes (abfd);
6623 extsymoff = (elf_bad_symtab (abfd)) ? 0 : symtab_hdr->sh_info;
6624
738e5348
RS
6625 bed = get_elf_backend_data (abfd);
6626 rel_end = relocs + sec->reloc_count * bed->s->int_rels_per_ext_rel;
6627
b49e97c9
TS
6628 /* Check for the mips16 stub sections. */
6629
6630 name = bfd_get_section_name (abfd, sec);
b9d58d71 6631 if (FN_STUB_P (name))
b49e97c9
TS
6632 {
6633 unsigned long r_symndx;
6634
6635 /* Look at the relocation information to figure out which symbol
6636 this is for. */
6637
738e5348
RS
6638 r_symndx = mips16_stub_symndx (sec, relocs, rel_end);
6639 if (r_symndx == 0)
6640 {
6641 (*_bfd_error_handler)
6642 (_("%B: Warning: cannot determine the target function for"
6643 " stub section `%s'"),
6644 abfd, name);
6645 bfd_set_error (bfd_error_bad_value);
6646 return FALSE;
6647 }
b49e97c9
TS
6648
6649 if (r_symndx < extsymoff
6650 || sym_hashes[r_symndx - extsymoff] == NULL)
6651 {
6652 asection *o;
6653
6654 /* This stub is for a local symbol. This stub will only be
6655 needed if there is some relocation in this BFD, other
6656 than a 16 bit function call, which refers to this symbol. */
6657 for (o = abfd->sections; o != NULL; o = o->next)
6658 {
6659 Elf_Internal_Rela *sec_relocs;
6660 const Elf_Internal_Rela *r, *rend;
6661
6662 /* We can ignore stub sections when looking for relocs. */
6663 if ((o->flags & SEC_RELOC) == 0
6664 || o->reloc_count == 0
738e5348 6665 || section_allows_mips16_refs_p (o))
b49e97c9
TS
6666 continue;
6667
45d6a902 6668 sec_relocs
9719ad41 6669 = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
45d6a902 6670 info->keep_memory);
b49e97c9 6671 if (sec_relocs == NULL)
b34976b6 6672 return FALSE;
b49e97c9
TS
6673
6674 rend = sec_relocs + o->reloc_count;
6675 for (r = sec_relocs; r < rend; r++)
6676 if (ELF_R_SYM (abfd, r->r_info) == r_symndx
738e5348 6677 && !mips16_call_reloc_p (ELF_R_TYPE (abfd, r->r_info)))
b49e97c9
TS
6678 break;
6679
6cdc0ccc 6680 if (elf_section_data (o)->relocs != sec_relocs)
b49e97c9
TS
6681 free (sec_relocs);
6682
6683 if (r < rend)
6684 break;
6685 }
6686
6687 if (o == NULL)
6688 {
6689 /* There is no non-call reloc for this stub, so we do
6690 not need it. Since this function is called before
6691 the linker maps input sections to output sections, we
6692 can easily discard it by setting the SEC_EXCLUDE
6693 flag. */
6694 sec->flags |= SEC_EXCLUDE;
b34976b6 6695 return TRUE;
b49e97c9
TS
6696 }
6697
6698 /* Record this stub in an array of local symbol stubs for
6699 this BFD. */
6700 if (elf_tdata (abfd)->local_stubs == NULL)
6701 {
6702 unsigned long symcount;
6703 asection **n;
6704 bfd_size_type amt;
6705
6706 if (elf_bad_symtab (abfd))
6707 symcount = NUM_SHDR_ENTRIES (symtab_hdr);
6708 else
6709 symcount = symtab_hdr->sh_info;
6710 amt = symcount * sizeof (asection *);
9719ad41 6711 n = bfd_zalloc (abfd, amt);
b49e97c9 6712 if (n == NULL)
b34976b6 6713 return FALSE;
b49e97c9
TS
6714 elf_tdata (abfd)->local_stubs = n;
6715 }
6716
b9d58d71 6717 sec->flags |= SEC_KEEP;
b49e97c9
TS
6718 elf_tdata (abfd)->local_stubs[r_symndx] = sec;
6719
6720 /* We don't need to set mips16_stubs_seen in this case.
6721 That flag is used to see whether we need to look through
6722 the global symbol table for stubs. We don't need to set
6723 it here, because we just have a local stub. */
6724 }
6725 else
6726 {
6727 struct mips_elf_link_hash_entry *h;
6728
6729 h = ((struct mips_elf_link_hash_entry *)
6730 sym_hashes[r_symndx - extsymoff]);
6731
973a3492
L
6732 while (h->root.root.type == bfd_link_hash_indirect
6733 || h->root.root.type == bfd_link_hash_warning)
6734 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
6735
b49e97c9
TS
6736 /* H is the symbol this stub is for. */
6737
b9d58d71
TS
6738 /* If we already have an appropriate stub for this function, we
6739 don't need another one, so we can discard this one. Since
6740 this function is called before the linker maps input sections
6741 to output sections, we can easily discard it by setting the
6742 SEC_EXCLUDE flag. */
6743 if (h->fn_stub != NULL)
6744 {
6745 sec->flags |= SEC_EXCLUDE;
6746 return TRUE;
6747 }
6748
6749 sec->flags |= SEC_KEEP;
b49e97c9 6750 h->fn_stub = sec;
b34976b6 6751 mips_elf_hash_table (info)->mips16_stubs_seen = TRUE;
b49e97c9
TS
6752 }
6753 }
b9d58d71 6754 else if (CALL_STUB_P (name) || CALL_FP_STUB_P (name))
b49e97c9
TS
6755 {
6756 unsigned long r_symndx;
6757 struct mips_elf_link_hash_entry *h;
6758 asection **loc;
6759
6760 /* Look at the relocation information to figure out which symbol
6761 this is for. */
6762
738e5348
RS
6763 r_symndx = mips16_stub_symndx (sec, relocs, rel_end);
6764 if (r_symndx == 0)
6765 {
6766 (*_bfd_error_handler)
6767 (_("%B: Warning: cannot determine the target function for"
6768 " stub section `%s'"),
6769 abfd, name);
6770 bfd_set_error (bfd_error_bad_value);
6771 return FALSE;
6772 }
b49e97c9
TS
6773
6774 if (r_symndx < extsymoff
6775 || sym_hashes[r_symndx - extsymoff] == NULL)
6776 {
b9d58d71 6777 asection *o;
b49e97c9 6778
b9d58d71
TS
6779 /* This stub is for a local symbol. This stub will only be
6780 needed if there is some relocation (R_MIPS16_26) in this BFD
6781 that refers to this symbol. */
6782 for (o = abfd->sections; o != NULL; o = o->next)
6783 {
6784 Elf_Internal_Rela *sec_relocs;
6785 const Elf_Internal_Rela *r, *rend;
6786
6787 /* We can ignore stub sections when looking for relocs. */
6788 if ((o->flags & SEC_RELOC) == 0
6789 || o->reloc_count == 0
738e5348 6790 || section_allows_mips16_refs_p (o))
b9d58d71
TS
6791 continue;
6792
6793 sec_relocs
6794 = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
6795 info->keep_memory);
6796 if (sec_relocs == NULL)
6797 return FALSE;
6798
6799 rend = sec_relocs + o->reloc_count;
6800 for (r = sec_relocs; r < rend; r++)
6801 if (ELF_R_SYM (abfd, r->r_info) == r_symndx
6802 && ELF_R_TYPE (abfd, r->r_info) == R_MIPS16_26)
6803 break;
6804
6805 if (elf_section_data (o)->relocs != sec_relocs)
6806 free (sec_relocs);
6807
6808 if (r < rend)
6809 break;
6810 }
6811
6812 if (o == NULL)
6813 {
6814 /* There is no non-call reloc for this stub, so we do
6815 not need it. Since this function is called before
6816 the linker maps input sections to output sections, we
6817 can easily discard it by setting the SEC_EXCLUDE
6818 flag. */
6819 sec->flags |= SEC_EXCLUDE;
6820 return TRUE;
6821 }
6822
6823 /* Record this stub in an array of local symbol call_stubs for
6824 this BFD. */
6825 if (elf_tdata (abfd)->local_call_stubs == NULL)
6826 {
6827 unsigned long symcount;
6828 asection **n;
6829 bfd_size_type amt;
6830
6831 if (elf_bad_symtab (abfd))
6832 symcount = NUM_SHDR_ENTRIES (symtab_hdr);
6833 else
6834 symcount = symtab_hdr->sh_info;
6835 amt = symcount * sizeof (asection *);
6836 n = bfd_zalloc (abfd, amt);
6837 if (n == NULL)
6838 return FALSE;
6839 elf_tdata (abfd)->local_call_stubs = n;
6840 }
b49e97c9 6841
b9d58d71
TS
6842 sec->flags |= SEC_KEEP;
6843 elf_tdata (abfd)->local_call_stubs[r_symndx] = sec;
b49e97c9 6844
b9d58d71
TS
6845 /* We don't need to set mips16_stubs_seen in this case.
6846 That flag is used to see whether we need to look through
6847 the global symbol table for stubs. We don't need to set
6848 it here, because we just have a local stub. */
6849 }
b49e97c9 6850 else
b49e97c9 6851 {
b9d58d71
TS
6852 h = ((struct mips_elf_link_hash_entry *)
6853 sym_hashes[r_symndx - extsymoff]);
6854
6855 /* H is the symbol this stub is for. */
6856
6857 if (CALL_FP_STUB_P (name))
6858 loc = &h->call_fp_stub;
6859 else
6860 loc = &h->call_stub;
6861
6862 /* If we already have an appropriate stub for this function, we
6863 don't need another one, so we can discard this one. Since
6864 this function is called before the linker maps input sections
6865 to output sections, we can easily discard it by setting the
6866 SEC_EXCLUDE flag. */
6867 if (*loc != NULL)
6868 {
6869 sec->flags |= SEC_EXCLUDE;
6870 return TRUE;
6871 }
b49e97c9 6872
b9d58d71
TS
6873 sec->flags |= SEC_KEEP;
6874 *loc = sec;
6875 mips_elf_hash_table (info)->mips16_stubs_seen = TRUE;
6876 }
b49e97c9
TS
6877 }
6878
b49e97c9 6879 sreloc = NULL;
c224138d 6880 contents = NULL;
b49e97c9
TS
6881 for (rel = relocs; rel < rel_end; ++rel)
6882 {
6883 unsigned long r_symndx;
6884 unsigned int r_type;
6885 struct elf_link_hash_entry *h;
6886
6887 r_symndx = ELF_R_SYM (abfd, rel->r_info);
6888 r_type = ELF_R_TYPE (abfd, rel->r_info);
6889
6890 if (r_symndx < extsymoff)
6891 h = NULL;
6892 else if (r_symndx >= extsymoff + NUM_SHDR_ENTRIES (symtab_hdr))
6893 {
6894 (*_bfd_error_handler)
d003868e
AM
6895 (_("%B: Malformed reloc detected for section %s"),
6896 abfd, name);
b49e97c9 6897 bfd_set_error (bfd_error_bad_value);
b34976b6 6898 return FALSE;
b49e97c9
TS
6899 }
6900 else
6901 {
6902 h = sym_hashes[r_symndx - extsymoff];
6903
6904 /* This may be an indirect symbol created because of a version. */
6905 if (h != NULL)
6906 {
6907 while (h->root.type == bfd_link_hash_indirect)
6908 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6909 }
6910 }
6911
6912 /* Some relocs require a global offset table. */
a8028dd0 6913 if (dynobj == NULL || htab->sgot == NULL)
b49e97c9
TS
6914 {
6915 switch (r_type)
6916 {
738e5348
RS
6917 case R_MIPS16_GOT16:
6918 case R_MIPS16_CALL16:
b49e97c9
TS
6919 case R_MIPS_GOT16:
6920 case R_MIPS_CALL16:
6921 case R_MIPS_CALL_HI16:
6922 case R_MIPS_CALL_LO16:
6923 case R_MIPS_GOT_HI16:
6924 case R_MIPS_GOT_LO16:
6925 case R_MIPS_GOT_PAGE:
6926 case R_MIPS_GOT_OFST:
6927 case R_MIPS_GOT_DISP:
86324f90 6928 case R_MIPS_TLS_GOTTPREL:
0f20cc35
DJ
6929 case R_MIPS_TLS_GD:
6930 case R_MIPS_TLS_LDM:
b49e97c9
TS
6931 if (dynobj == NULL)
6932 elf_hash_table (info)->dynobj = dynobj = abfd;
f4416af6 6933 if (! mips_elf_create_got_section (dynobj, info, FALSE))
b34976b6 6934 return FALSE;
0a44bf69
RS
6935 if (htab->is_vxworks && !info->shared)
6936 {
6937 (*_bfd_error_handler)
6938 (_("%B: GOT reloc at 0x%lx not expected in executables"),
6939 abfd, (unsigned long) rel->r_offset);
6940 bfd_set_error (bfd_error_bad_value);
6941 return FALSE;
6942 }
b49e97c9
TS
6943 break;
6944
6945 case R_MIPS_32:
6946 case R_MIPS_REL32:
6947 case R_MIPS_64:
0a44bf69
RS
6948 /* In VxWorks executables, references to external symbols
6949 are handled using copy relocs or PLT stubs, so there's
6950 no need to add a dynamic relocation here. */
b49e97c9 6951 if (dynobj == NULL
0a44bf69 6952 && (info->shared || (h != NULL && !htab->is_vxworks))
b49e97c9
TS
6953 && (sec->flags & SEC_ALLOC) != 0)
6954 elf_hash_table (info)->dynobj = dynobj = abfd;
6955 break;
6956
6957 default:
6958 break;
6959 }
6960 }
6961
0a44bf69
RS
6962 if (h)
6963 {
6964 ((struct mips_elf_link_hash_entry *) h)->is_relocation_target = TRUE;
6965
6966 /* Relocations against the special VxWorks __GOTT_BASE__ and
6967 __GOTT_INDEX__ symbols must be left to the loader. Allocate
6968 room for them in .rela.dyn. */
6969 if (is_gott_symbol (info, h))
6970 {
6971 if (sreloc == NULL)
6972 {
6973 sreloc = mips_elf_rel_dyn_section (info, TRUE);
6974 if (sreloc == NULL)
6975 return FALSE;
6976 }
6977 mips_elf_allocate_dynamic_relocations (dynobj, info, 1);
9e3313ae
RS
6978 if (MIPS_ELF_READONLY_SECTION (sec))
6979 /* We tell the dynamic linker that there are
6980 relocations against the text segment. */
6981 info->flags |= DF_TEXTREL;
0a44bf69
RS
6982 }
6983 }
6984 else if (r_type == R_MIPS_CALL_LO16
6985 || r_type == R_MIPS_GOT_LO16
6986 || r_type == R_MIPS_GOT_DISP
738e5348 6987 || (got16_reloc_p (r_type) && htab->is_vxworks))
b49e97c9
TS
6988 {
6989 /* We may need a local GOT entry for this relocation. We
6990 don't count R_MIPS_GOT_PAGE because we can estimate the
6991 maximum number of pages needed by looking at the size of
738e5348
RS
6992 the segment. Similar comments apply to R_MIPS*_GOT16 and
6993 R_MIPS*_CALL16, except on VxWorks, where GOT relocations
0a44bf69 6994 always evaluate to "G". We don't count R_MIPS_GOT_HI16, or
b49e97c9 6995 R_MIPS_CALL_HI16 because these are always followed by an
b15e6682 6996 R_MIPS_GOT_LO16 or R_MIPS_CALL_LO16. */
a8028dd0
RS
6997 if (!mips_elf_record_local_got_symbol (abfd, r_symndx,
6998 rel->r_addend, info, 0))
f4416af6 6999 return FALSE;
b49e97c9
TS
7000 }
7001
7002 switch (r_type)
7003 {
7004 case R_MIPS_CALL16:
738e5348 7005 case R_MIPS16_CALL16:
b49e97c9
TS
7006 if (h == NULL)
7007 {
7008 (*_bfd_error_handler)
d003868e
AM
7009 (_("%B: CALL16 reloc at 0x%lx not against global symbol"),
7010 abfd, (unsigned long) rel->r_offset);
b49e97c9 7011 bfd_set_error (bfd_error_bad_value);
b34976b6 7012 return FALSE;
b49e97c9
TS
7013 }
7014 /* Fall through. */
7015
7016 case R_MIPS_CALL_HI16:
7017 case R_MIPS_CALL_LO16:
7018 if (h != NULL)
7019 {
0a44bf69
RS
7020 /* VxWorks call relocations point the function's .got.plt
7021 entry, which will be allocated by adjust_dynamic_symbol.
7022 Otherwise, this symbol requires a global GOT entry. */
8275b357 7023 if ((!htab->is_vxworks || h->forced_local)
a8028dd0 7024 && !mips_elf_record_global_got_symbol (h, abfd, info, 0))
b34976b6 7025 return FALSE;
b49e97c9
TS
7026
7027 /* We need a stub, not a plt entry for the undefined
7028 function. But we record it as if it needs plt. See
c152c796 7029 _bfd_elf_adjust_dynamic_symbol. */
f5385ebf 7030 h->needs_plt = 1;
b49e97c9
TS
7031 h->type = STT_FUNC;
7032 }
7033 break;
7034
0fdc1bf1
AO
7035 case R_MIPS_GOT_PAGE:
7036 /* If this is a global, overridable symbol, GOT_PAGE will
7037 decay to GOT_DISP, so we'll need a GOT entry for it. */
c224138d 7038 if (h)
0fdc1bf1
AO
7039 {
7040 struct mips_elf_link_hash_entry *hmips =
7041 (struct mips_elf_link_hash_entry *) h;
143d77c5 7042
0fdc1bf1
AO
7043 while (hmips->root.root.type == bfd_link_hash_indirect
7044 || hmips->root.root.type == bfd_link_hash_warning)
7045 hmips = (struct mips_elf_link_hash_entry *)
7046 hmips->root.root.u.i.link;
143d77c5 7047
3a3b6725 7048 /* This symbol is definitely not overridable. */
f5385ebf 7049 if (hmips->root.def_regular
0fdc1bf1 7050 && ! (info->shared && ! info->symbolic
f5385ebf 7051 && ! hmips->root.forced_local))
c224138d 7052 h = NULL;
0fdc1bf1
AO
7053 }
7054 /* Fall through. */
7055
738e5348 7056 case R_MIPS16_GOT16:
b49e97c9
TS
7057 case R_MIPS_GOT16:
7058 case R_MIPS_GOT_HI16:
7059 case R_MIPS_GOT_LO16:
3a3b6725 7060 if (!h || r_type == R_MIPS_GOT_PAGE)
c224138d 7061 {
3a3b6725
DJ
7062 /* This relocation needs (or may need, if h != NULL) a
7063 page entry in the GOT. For R_MIPS_GOT_PAGE we do not
7064 know for sure until we know whether the symbol is
7065 preemptible. */
c224138d
RS
7066 if (mips_elf_rel_relocation_p (abfd, sec, relocs, rel))
7067 {
7068 if (!mips_elf_get_section_contents (abfd, sec, &contents))
7069 return FALSE;
7070 howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, r_type, FALSE);
7071 addend = mips_elf_read_rel_addend (abfd, rel,
7072 howto, contents);
7073 if (r_type == R_MIPS_GOT16)
7074 mips_elf_add_lo16_rel_addend (abfd, rel, rel_end,
7075 contents, &addend);
7076 else
7077 addend <<= howto->rightshift;
7078 }
7079 else
7080 addend = rel->r_addend;
a8028dd0
RS
7081 if (!mips_elf_record_got_page_entry (info, abfd, r_symndx,
7082 addend))
c224138d
RS
7083 return FALSE;
7084 break;
7085 }
7086 /* Fall through. */
7087
b49e97c9 7088 case R_MIPS_GOT_DISP:
a8028dd0 7089 if (h && !mips_elf_record_global_got_symbol (h, abfd, info, 0))
b34976b6 7090 return FALSE;
b49e97c9
TS
7091 break;
7092
0f20cc35
DJ
7093 case R_MIPS_TLS_GOTTPREL:
7094 if (info->shared)
7095 info->flags |= DF_STATIC_TLS;
7096 /* Fall through */
7097
7098 case R_MIPS_TLS_LDM:
7099 if (r_type == R_MIPS_TLS_LDM)
7100 {
7101 r_symndx = 0;
7102 h = NULL;
7103 }
7104 /* Fall through */
7105
7106 case R_MIPS_TLS_GD:
7107 /* This symbol requires a global offset table entry, or two
7108 for TLS GD relocations. */
7109 {
7110 unsigned char flag = (r_type == R_MIPS_TLS_GD
7111 ? GOT_TLS_GD
7112 : r_type == R_MIPS_TLS_LDM
7113 ? GOT_TLS_LDM
7114 : GOT_TLS_IE);
7115 if (h != NULL)
7116 {
7117 struct mips_elf_link_hash_entry *hmips =
7118 (struct mips_elf_link_hash_entry *) h;
7119 hmips->tls_type |= flag;
7120
a8028dd0
RS
7121 if (h && !mips_elf_record_global_got_symbol (h, abfd,
7122 info, flag))
0f20cc35
DJ
7123 return FALSE;
7124 }
7125 else
7126 {
7127 BFD_ASSERT (flag == GOT_TLS_LDM || r_symndx != 0);
7128
a8028dd0
RS
7129 if (!mips_elf_record_local_got_symbol (abfd, r_symndx,
7130 rel->r_addend,
7131 info, flag))
0f20cc35
DJ
7132 return FALSE;
7133 }
7134 }
7135 break;
7136
b49e97c9
TS
7137 case R_MIPS_32:
7138 case R_MIPS_REL32:
7139 case R_MIPS_64:
0a44bf69
RS
7140 /* In VxWorks executables, references to external symbols
7141 are handled using copy relocs or PLT stubs, so there's
7142 no need to add a .rela.dyn entry for this relocation. */
7143 if ((info->shared || (h != NULL && !htab->is_vxworks))
738e5348 7144 && !(h && strcmp (h->root.root.string, "__gnu_local_gp") == 0)
b49e97c9
TS
7145 && (sec->flags & SEC_ALLOC) != 0)
7146 {
7147 if (sreloc == NULL)
7148 {
0a44bf69 7149 sreloc = mips_elf_rel_dyn_section (info, TRUE);
b49e97c9 7150 if (sreloc == NULL)
f4416af6 7151 return FALSE;
b49e97c9 7152 }
9a59ad6b 7153 if (info->shared && h == NULL)
82f0cfbd
EC
7154 {
7155 /* When creating a shared object, we must copy these
7156 reloc types into the output file as R_MIPS_REL32
0a44bf69
RS
7157 relocs. Make room for this reloc in .rel(a).dyn. */
7158 mips_elf_allocate_dynamic_relocations (dynobj, info, 1);
943284cc 7159 if (MIPS_ELF_READONLY_SECTION (sec))
82f0cfbd
EC
7160 /* We tell the dynamic linker that there are
7161 relocations against the text segment. */
7162 info->flags |= DF_TEXTREL;
7163 }
b49e97c9
TS
7164 else
7165 {
7166 struct mips_elf_link_hash_entry *hmips;
82f0cfbd 7167
9a59ad6b
DJ
7168 /* For a shared object, we must copy this relocation
7169 unless the symbol turns out to be undefined and
7170 weak with non-default visibility, in which case
7171 it will be left as zero.
7172
7173 We could elide R_MIPS_REL32 for locally binding symbols
7174 in shared libraries, but do not yet do so.
7175
7176 For an executable, we only need to copy this
7177 reloc if the symbol is defined in a dynamic
7178 object. */
b49e97c9
TS
7179 hmips = (struct mips_elf_link_hash_entry *) h;
7180 ++hmips->possibly_dynamic_relocs;
943284cc 7181 if (MIPS_ELF_READONLY_SECTION (sec))
82f0cfbd
EC
7182 /* We need it to tell the dynamic linker if there
7183 are relocations against the text segment. */
7184 hmips->readonly_reloc = TRUE;
b49e97c9
TS
7185 }
7186
7187 /* Even though we don't directly need a GOT entry for
7188 this symbol, a symbol must have a dynamic symbol
7189 table index greater that DT_MIPS_GOTSYM if there are
0a44bf69
RS
7190 dynamic relocations against it. This does not apply
7191 to VxWorks, which does not have the usual coupling
7192 between global GOT entries and .dynsym entries. */
7193 if (h != NULL && !htab->is_vxworks)
f4416af6
AO
7194 {
7195 if (dynobj == NULL)
7196 elf_hash_table (info)->dynobj = dynobj = abfd;
7197 if (! mips_elf_create_got_section (dynobj, info, TRUE))
7198 return FALSE;
a8028dd0 7199 if (!mips_elf_record_global_got_symbol (h, abfd, info, 0))
f4416af6
AO
7200 return FALSE;
7201 }
b49e97c9
TS
7202 }
7203
7204 if (SGI_COMPAT (abfd))
7205 mips_elf_hash_table (info)->compact_rel_size +=
7206 sizeof (Elf32_External_crinfo);
7207 break;
7208
0a44bf69
RS
7209 case R_MIPS_PC16:
7210 if (h)
7211 ((struct mips_elf_link_hash_entry *) h)->is_branch_target = TRUE;
7212 break;
7213
b49e97c9 7214 case R_MIPS_26:
0a44bf69
RS
7215 if (h)
7216 ((struct mips_elf_link_hash_entry *) h)->is_branch_target = TRUE;
7217 /* Fall through. */
7218
b49e97c9
TS
7219 case R_MIPS_GPREL16:
7220 case R_MIPS_LITERAL:
7221 case R_MIPS_GPREL32:
7222 if (SGI_COMPAT (abfd))
7223 mips_elf_hash_table (info)->compact_rel_size +=
7224 sizeof (Elf32_External_crinfo);
7225 break;
7226
7227 /* This relocation describes the C++ object vtable hierarchy.
7228 Reconstruct it for later use during GC. */
7229 case R_MIPS_GNU_VTINHERIT:
c152c796 7230 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
b34976b6 7231 return FALSE;
b49e97c9
TS
7232 break;
7233
7234 /* This relocation describes which C++ vtable entries are actually
7235 used. Record for later use during GC. */
7236 case R_MIPS_GNU_VTENTRY:
d17e0c6e
JB
7237 BFD_ASSERT (h != NULL);
7238 if (h != NULL
7239 && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset))
b34976b6 7240 return FALSE;
b49e97c9
TS
7241 break;
7242
7243 default:
7244 break;
7245 }
7246
7247 /* We must not create a stub for a symbol that has relocations
0a44bf69
RS
7248 related to taking the function's address. This doesn't apply to
7249 VxWorks, where CALL relocs refer to a .got.plt entry instead of
7250 a normal .got entry. */
7251 if (!htab->is_vxworks && h != NULL)
7252 switch (r_type)
7253 {
7254 default:
7255 ((struct mips_elf_link_hash_entry *) h)->no_fn_stub = TRUE;
7256 break;
738e5348 7257 case R_MIPS16_CALL16:
0a44bf69
RS
7258 case R_MIPS_CALL16:
7259 case R_MIPS_CALL_HI16:
7260 case R_MIPS_CALL_LO16:
7261 case R_MIPS_JALR:
7262 break;
7263 }
b49e97c9 7264
738e5348
RS
7265 /* See if this reloc would need to refer to a MIPS16 hard-float stub,
7266 if there is one. We only need to handle global symbols here;
7267 we decide whether to keep or delete stubs for local symbols
7268 when processing the stub's relocations. */
b49e97c9 7269 if (h != NULL
738e5348
RS
7270 && !mips16_call_reloc_p (r_type)
7271 && !section_allows_mips16_refs_p (sec))
b49e97c9
TS
7272 {
7273 struct mips_elf_link_hash_entry *mh;
7274
7275 mh = (struct mips_elf_link_hash_entry *) h;
b34976b6 7276 mh->need_fn_stub = TRUE;
b49e97c9
TS
7277 }
7278 }
7279
b34976b6 7280 return TRUE;
b49e97c9
TS
7281}
7282\f
d0647110 7283bfd_boolean
9719ad41
RS
7284_bfd_mips_relax_section (bfd *abfd, asection *sec,
7285 struct bfd_link_info *link_info,
7286 bfd_boolean *again)
d0647110
AO
7287{
7288 Elf_Internal_Rela *internal_relocs;
7289 Elf_Internal_Rela *irel, *irelend;
7290 Elf_Internal_Shdr *symtab_hdr;
7291 bfd_byte *contents = NULL;
d0647110
AO
7292 size_t extsymoff;
7293 bfd_boolean changed_contents = FALSE;
7294 bfd_vma sec_start = sec->output_section->vma + sec->output_offset;
7295 Elf_Internal_Sym *isymbuf = NULL;
7296
7297 /* We are not currently changing any sizes, so only one pass. */
7298 *again = FALSE;
7299
1049f94e 7300 if (link_info->relocatable)
d0647110
AO
7301 return TRUE;
7302
9719ad41 7303 internal_relocs = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
45d6a902 7304 link_info->keep_memory);
d0647110
AO
7305 if (internal_relocs == NULL)
7306 return TRUE;
7307
7308 irelend = internal_relocs + sec->reloc_count
7309 * get_elf_backend_data (abfd)->s->int_rels_per_ext_rel;
7310 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
7311 extsymoff = (elf_bad_symtab (abfd)) ? 0 : symtab_hdr->sh_info;
7312
7313 for (irel = internal_relocs; irel < irelend; irel++)
7314 {
7315 bfd_vma symval;
7316 bfd_signed_vma sym_offset;
7317 unsigned int r_type;
7318 unsigned long r_symndx;
7319 asection *sym_sec;
7320 unsigned long instruction;
7321
7322 /* Turn jalr into bgezal, and jr into beq, if they're marked
7323 with a JALR relocation, that indicate where they jump to.
7324 This saves some pipeline bubbles. */
7325 r_type = ELF_R_TYPE (abfd, irel->r_info);
7326 if (r_type != R_MIPS_JALR)
7327 continue;
7328
7329 r_symndx = ELF_R_SYM (abfd, irel->r_info);
7330 /* Compute the address of the jump target. */
7331 if (r_symndx >= extsymoff)
7332 {
7333 struct mips_elf_link_hash_entry *h
7334 = ((struct mips_elf_link_hash_entry *)
7335 elf_sym_hashes (abfd) [r_symndx - extsymoff]);
7336
7337 while (h->root.root.type == bfd_link_hash_indirect
7338 || h->root.root.type == bfd_link_hash_warning)
7339 h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
143d77c5 7340
d0647110
AO
7341 /* If a symbol is undefined, or if it may be overridden,
7342 skip it. */
7343 if (! ((h->root.root.type == bfd_link_hash_defined
7344 || h->root.root.type == bfd_link_hash_defweak)
7345 && h->root.root.u.def.section)
7346 || (link_info->shared && ! link_info->symbolic
f5385ebf 7347 && !h->root.forced_local))
d0647110
AO
7348 continue;
7349
7350 sym_sec = h->root.root.u.def.section;
7351 if (sym_sec->output_section)
7352 symval = (h->root.root.u.def.value
7353 + sym_sec->output_section->vma
7354 + sym_sec->output_offset);
7355 else
7356 symval = h->root.root.u.def.value;
7357 }
7358 else
7359 {
7360 Elf_Internal_Sym *isym;
7361
7362 /* Read this BFD's symbols if we haven't done so already. */
7363 if (isymbuf == NULL && symtab_hdr->sh_info != 0)
7364 {
7365 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
7366 if (isymbuf == NULL)
7367 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
7368 symtab_hdr->sh_info, 0,
7369 NULL, NULL, NULL);
7370 if (isymbuf == NULL)
7371 goto relax_return;
7372 }
7373
7374 isym = isymbuf + r_symndx;
7375 if (isym->st_shndx == SHN_UNDEF)
7376 continue;
7377 else if (isym->st_shndx == SHN_ABS)
7378 sym_sec = bfd_abs_section_ptr;
7379 else if (isym->st_shndx == SHN_COMMON)
7380 sym_sec = bfd_com_section_ptr;
7381 else
7382 sym_sec
7383 = bfd_section_from_elf_index (abfd, isym->st_shndx);
7384 symval = isym->st_value
7385 + sym_sec->output_section->vma
7386 + sym_sec->output_offset;
7387 }
7388
7389 /* Compute branch offset, from delay slot of the jump to the
7390 branch target. */
7391 sym_offset = (symval + irel->r_addend)
7392 - (sec_start + irel->r_offset + 4);
7393
7394 /* Branch offset must be properly aligned. */
7395 if ((sym_offset & 3) != 0)
7396 continue;
7397
7398 sym_offset >>= 2;
7399
7400 /* Check that it's in range. */
7401 if (sym_offset < -0x8000 || sym_offset >= 0x8000)
7402 continue;
143d77c5 7403
d0647110 7404 /* Get the section contents if we haven't done so already. */
c224138d
RS
7405 if (!mips_elf_get_section_contents (abfd, sec, &contents))
7406 goto relax_return;
d0647110
AO
7407
7408 instruction = bfd_get_32 (abfd, contents + irel->r_offset);
7409
7410 /* If it was jalr <reg>, turn it into bgezal $zero, <target>. */
7411 if ((instruction & 0xfc1fffff) == 0x0000f809)
7412 instruction = 0x04110000;
7413 /* If it was jr <reg>, turn it into b <target>. */
7414 else if ((instruction & 0xfc1fffff) == 0x00000008)
7415 instruction = 0x10000000;
7416 else
7417 continue;
7418
7419 instruction |= (sym_offset & 0xffff);
7420 bfd_put_32 (abfd, instruction, contents + irel->r_offset);
7421 changed_contents = TRUE;
7422 }
7423
7424 if (contents != NULL
7425 && elf_section_data (sec)->this_hdr.contents != contents)
7426 {
7427 if (!changed_contents && !link_info->keep_memory)
7428 free (contents);
7429 else
7430 {
7431 /* Cache the section contents for elf_link_input_bfd. */
7432 elf_section_data (sec)->this_hdr.contents = contents;
7433 }
7434 }
7435 return TRUE;
7436
143d77c5 7437 relax_return:
eea6121a
AM
7438 if (contents != NULL
7439 && elf_section_data (sec)->this_hdr.contents != contents)
7440 free (contents);
d0647110
AO
7441 return FALSE;
7442}
7443\f
9a59ad6b
DJ
7444/* Allocate space for global sym dynamic relocs. */
7445
7446static bfd_boolean
7447allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
7448{
7449 struct bfd_link_info *info = inf;
7450 bfd *dynobj;
7451 struct mips_elf_link_hash_entry *hmips;
7452 struct mips_elf_link_hash_table *htab;
7453
7454 htab = mips_elf_hash_table (info);
7455 dynobj = elf_hash_table (info)->dynobj;
7456 hmips = (struct mips_elf_link_hash_entry *) h;
7457
7458 /* VxWorks executables are handled elsewhere; we only need to
7459 allocate relocations in shared objects. */
7460 if (htab->is_vxworks && !info->shared)
7461 return TRUE;
7462
7463 /* If this symbol is defined in a dynamic object, or we are creating
7464 a shared library, we will need to copy any R_MIPS_32 or
7465 R_MIPS_REL32 relocs against it into the output file. */
7466 if (! info->relocatable
7467 && hmips->possibly_dynamic_relocs != 0
7468 && (h->root.type == bfd_link_hash_defweak
7469 || !h->def_regular
7470 || info->shared))
7471 {
7472 bfd_boolean do_copy = TRUE;
7473
7474 if (h->root.type == bfd_link_hash_undefweak)
7475 {
7476 /* Do not copy relocations for undefined weak symbols with
7477 non-default visibility. */
7478 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
7479 do_copy = FALSE;
7480
7481 /* Make sure undefined weak symbols are output as a dynamic
7482 symbol in PIEs. */
7483 else if (h->dynindx == -1 && !h->forced_local)
7484 {
7485 if (! bfd_elf_link_record_dynamic_symbol (info, h))
7486 return FALSE;
7487 }
7488 }
7489
7490 if (do_copy)
7491 {
7492 mips_elf_allocate_dynamic_relocations
7493 (dynobj, info, hmips->possibly_dynamic_relocs);
7494 if (hmips->readonly_reloc)
7495 /* We tell the dynamic linker that there are relocations
7496 against the text segment. */
7497 info->flags |= DF_TEXTREL;
7498 }
7499 }
7500
7501 return TRUE;
7502}
7503
b49e97c9
TS
7504/* Adjust a symbol defined by a dynamic object and referenced by a
7505 regular object. The current definition is in some section of the
7506 dynamic object, but we're not including those sections. We have to
7507 change the definition to something the rest of the link can
7508 understand. */
7509
b34976b6 7510bfd_boolean
9719ad41
RS
7511_bfd_mips_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
7512 struct elf_link_hash_entry *h)
b49e97c9
TS
7513{
7514 bfd *dynobj;
7515 struct mips_elf_link_hash_entry *hmips;
5108fc1b 7516 struct mips_elf_link_hash_table *htab;
b49e97c9 7517
5108fc1b 7518 htab = mips_elf_hash_table (info);
b49e97c9
TS
7519 dynobj = elf_hash_table (info)->dynobj;
7520
7521 /* Make sure we know what is going on here. */
7522 BFD_ASSERT (dynobj != NULL
f5385ebf 7523 && (h->needs_plt
f6e332e6 7524 || h->u.weakdef != NULL
f5385ebf
AM
7525 || (h->def_dynamic
7526 && h->ref_regular
7527 && !h->def_regular)));
b49e97c9 7528
b49e97c9 7529 hmips = (struct mips_elf_link_hash_entry *) h;
b49e97c9
TS
7530
7531 /* For a function, create a stub, if allowed. */
7532 if (! hmips->no_fn_stub
f5385ebf 7533 && h->needs_plt)
b49e97c9
TS
7534 {
7535 if (! elf_hash_table (info)->dynamic_sections_created)
b34976b6 7536 return TRUE;
b49e97c9
TS
7537
7538 /* If this symbol is not defined in a regular file, then set
7539 the symbol to the stub location. This is required to make
7540 function pointers compare as equal between the normal
7541 executable and the shared library. */
f5385ebf 7542 if (!h->def_regular)
b49e97c9
TS
7543 {
7544 /* We need .stub section. */
4e41d0d7
RS
7545 h->root.u.def.section = htab->sstubs;
7546 h->root.u.def.value = htab->sstubs->size;
b49e97c9
TS
7547
7548 /* XXX Write this stub address somewhere. */
4e41d0d7 7549 h->plt.offset = htab->sstubs->size;
b49e97c9
TS
7550
7551 /* Make room for this stub code. */
4e41d0d7 7552 htab->sstubs->size += htab->function_stub_size;
b49e97c9
TS
7553
7554 /* The last half word of the stub will be filled with the index
7555 of this symbol in .dynsym section. */
b34976b6 7556 return TRUE;
b49e97c9
TS
7557 }
7558 }
7559 else if ((h->type == STT_FUNC)
f5385ebf 7560 && !h->needs_plt)
b49e97c9
TS
7561 {
7562 /* This will set the entry for this symbol in the GOT to 0, and
7563 the dynamic linker will take care of this. */
7564 h->root.u.def.value = 0;
b34976b6 7565 return TRUE;
b49e97c9
TS
7566 }
7567
7568 /* If this is a weak symbol, and there is a real definition, the
7569 processor independent code will have arranged for us to see the
7570 real definition first, and we can just use the same value. */
f6e332e6 7571 if (h->u.weakdef != NULL)
b49e97c9 7572 {
f6e332e6
AM
7573 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
7574 || h->u.weakdef->root.type == bfd_link_hash_defweak);
7575 h->root.u.def.section = h->u.weakdef->root.u.def.section;
7576 h->root.u.def.value = h->u.weakdef->root.u.def.value;
b34976b6 7577 return TRUE;
b49e97c9
TS
7578 }
7579
7580 /* This is a reference to a symbol defined by a dynamic object which
7581 is not a function. */
7582
b34976b6 7583 return TRUE;
b49e97c9 7584}
0a44bf69
RS
7585
7586/* Likewise, for VxWorks. */
7587
7588bfd_boolean
7589_bfd_mips_vxworks_adjust_dynamic_symbol (struct bfd_link_info *info,
7590 struct elf_link_hash_entry *h)
7591{
7592 bfd *dynobj;
7593 struct mips_elf_link_hash_entry *hmips;
7594 struct mips_elf_link_hash_table *htab;
0a44bf69
RS
7595
7596 htab = mips_elf_hash_table (info);
7597 dynobj = elf_hash_table (info)->dynobj;
7598 hmips = (struct mips_elf_link_hash_entry *) h;
7599
7600 /* Make sure we know what is going on here. */
7601 BFD_ASSERT (dynobj != NULL
7602 && (h->needs_plt
7603 || h->needs_copy
7604 || h->u.weakdef != NULL
7605 || (h->def_dynamic
7606 && h->ref_regular
7607 && !h->def_regular)));
7608
7609 /* If the symbol is defined by a dynamic object, we need a PLT stub if
7610 either (a) we want to branch to the symbol or (b) we're linking an
7611 executable that needs a canonical function address. In the latter
7612 case, the canonical address will be the address of the executable's
7613 load stub. */
7614 if ((hmips->is_branch_target
7615 || (!info->shared
7616 && h->type == STT_FUNC
7617 && hmips->is_relocation_target))
7618 && h->def_dynamic
7619 && h->ref_regular
7620 && !h->def_regular
7621 && !h->forced_local)
7622 h->needs_plt = 1;
7623
7624 /* Locally-binding symbols do not need a PLT stub; we can refer to
7625 the functions directly. */
7626 else if (h->needs_plt
7627 && (SYMBOL_CALLS_LOCAL (info, h)
7628 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
7629 && h->root.type == bfd_link_hash_undefweak)))
7630 {
7631 h->needs_plt = 0;
7632 return TRUE;
7633 }
7634
7635 if (h->needs_plt)
7636 {
7637 /* If this is the first symbol to need a PLT entry, allocate room
7638 for the header, and for the header's .rela.plt.unloaded entries. */
7639 if (htab->splt->size == 0)
7640 {
7641 htab->splt->size += htab->plt_header_size;
7642 if (!info->shared)
7643 htab->srelplt2->size += 2 * sizeof (Elf32_External_Rela);
7644 }
7645
7646 /* Assign the next .plt entry to this symbol. */
7647 h->plt.offset = htab->splt->size;
7648 htab->splt->size += htab->plt_entry_size;
7649
7650 /* If the output file has no definition of the symbol, set the
131eb6b7
NS
7651 symbol's value to the address of the stub. Point at the PLT
7652 load stub rather than the lazy resolution stub; this stub
7653 will become the canonical function address. */
7654 if (!info->shared && !h->def_regular)
0a44bf69
RS
7655 {
7656 h->root.u.def.section = htab->splt;
7657 h->root.u.def.value = h->plt.offset;
131eb6b7 7658 h->root.u.def.value += 8;
0a44bf69
RS
7659 }
7660
7661 /* Make room for the .got.plt entry and the R_JUMP_SLOT relocation. */
7662 htab->sgotplt->size += 4;
7663 htab->srelplt->size += sizeof (Elf32_External_Rela);
7664
7665 /* Make room for the .rela.plt.unloaded relocations. */
7666 if (!info->shared)
7667 htab->srelplt2->size += 3 * sizeof (Elf32_External_Rela);
7668
7669 return TRUE;
7670 }
7671
7672 /* If a function symbol is defined by a dynamic object, and we do not
7673 need a PLT stub for it, the symbol's value should be zero. */
7674 if (h->type == STT_FUNC
7675 && h->def_dynamic
7676 && h->ref_regular
7677 && !h->def_regular)
7678 {
7679 h->root.u.def.value = 0;
7680 return TRUE;
7681 }
7682
7683 /* If this is a weak symbol, and there is a real definition, the
7684 processor independent code will have arranged for us to see the
7685 real definition first, and we can just use the same value. */
7686 if (h->u.weakdef != NULL)
7687 {
7688 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
7689 || h->u.weakdef->root.type == bfd_link_hash_defweak);
7690 h->root.u.def.section = h->u.weakdef->root.u.def.section;
7691 h->root.u.def.value = h->u.weakdef->root.u.def.value;
7692 return TRUE;
7693 }
7694
7695 /* This is a reference to a symbol defined by a dynamic object which
7696 is not a function. */
7697 if (info->shared)
7698 return TRUE;
7699
7700 /* We must allocate the symbol in our .dynbss section, which will
7701 become part of the .bss section of the executable. There will be
7702 an entry for this symbol in the .dynsym section. The dynamic
7703 object will contain position independent code, so all references
7704 from the dynamic object to this symbol will go through the global
7705 offset table. The dynamic linker will use the .dynsym entry to
7706 determine the address it must put in the global offset table, so
7707 both the dynamic object and the regular object will refer to the
7708 same memory location for the variable. */
7709
7710 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
7711 {
7712 htab->srelbss->size += sizeof (Elf32_External_Rela);
7713 h->needs_copy = 1;
7714 }
7715
027297b7 7716 return _bfd_elf_adjust_dynamic_copy (h, htab->sdynbss);
0a44bf69 7717}
b49e97c9 7718\f
5108fc1b
RS
7719/* Return the number of dynamic section symbols required by OUTPUT_BFD.
7720 The number might be exact or a worst-case estimate, depending on how
7721 much information is available to elf_backend_omit_section_dynsym at
7722 the current linking stage. */
7723
7724static bfd_size_type
7725count_section_dynsyms (bfd *output_bfd, struct bfd_link_info *info)
7726{
7727 bfd_size_type count;
7728
7729 count = 0;
7730 if (info->shared || elf_hash_table (info)->is_relocatable_executable)
7731 {
7732 asection *p;
7733 const struct elf_backend_data *bed;
7734
7735 bed = get_elf_backend_data (output_bfd);
7736 for (p = output_bfd->sections; p ; p = p->next)
7737 if ((p->flags & SEC_EXCLUDE) == 0
7738 && (p->flags & SEC_ALLOC) != 0
7739 && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
7740 ++count;
7741 }
7742 return count;
7743}
7744
b49e97c9
TS
7745/* This function is called after all the input files have been read,
7746 and the input sections have been assigned to output sections. We
7747 check for any mips16 stub sections that we can discard. */
7748
b34976b6 7749bfd_boolean
9719ad41
RS
7750_bfd_mips_elf_always_size_sections (bfd *output_bfd,
7751 struct bfd_link_info *info)
b49e97c9
TS
7752{
7753 asection *ri;
7754
f4416af6
AO
7755 asection *s;
7756 struct mips_got_info *g;
7757 int i;
7758 bfd_size_type loadable_size = 0;
c224138d 7759 bfd_size_type page_gotno;
5108fc1b 7760 bfd_size_type dynsymcount;
f4416af6 7761 bfd *sub;
0f20cc35 7762 struct mips_elf_count_tls_arg count_tls_arg;
0a44bf69
RS
7763 struct mips_elf_link_hash_table *htab;
7764
7765 htab = mips_elf_hash_table (info);
f4416af6 7766
b49e97c9
TS
7767 /* The .reginfo section has a fixed size. */
7768 ri = bfd_get_section_by_name (output_bfd, ".reginfo");
7769 if (ri != NULL)
9719ad41 7770 bfd_set_section_size (output_bfd, ri, sizeof (Elf32_External_RegInfo));
b49e97c9 7771
1049f94e 7772 if (! (info->relocatable
f4416af6
AO
7773 || ! mips_elf_hash_table (info)->mips16_stubs_seen))
7774 mips_elf_link_hash_traverse (mips_elf_hash_table (info),
738e5348 7775 mips_elf_check_mips16_stubs, info);
f4416af6 7776
a8028dd0 7777 s = htab->sgot;
f4416af6 7778 if (s == NULL)
b34976b6 7779 return TRUE;
b49e97c9 7780
a8028dd0
RS
7781 g = htab->got_info;
7782
f4416af6
AO
7783 /* Calculate the total loadable size of the output. That
7784 will give us the maximum number of GOT_PAGE entries
7785 required. */
7786 for (sub = info->input_bfds; sub; sub = sub->link_next)
7787 {
7788 asection *subsection;
7789
7790 for (subsection = sub->sections;
7791 subsection;
7792 subsection = subsection->next)
7793 {
7794 if ((subsection->flags & SEC_ALLOC) == 0)
7795 continue;
eea6121a 7796 loadable_size += ((subsection->size + 0xf)
f4416af6
AO
7797 &~ (bfd_size_type) 0xf);
7798 }
7799 }
7800
7801 /* There has to be a global GOT entry for every symbol with
7802 a dynamic symbol table index of DT_MIPS_GOTSYM or
7803 higher. Therefore, it make sense to put those symbols
7804 that need GOT entries at the end of the symbol table. We
7805 do that here. */
7806 if (! mips_elf_sort_hash_table (info, 1))
7807 return FALSE;
7808
7809 if (g->global_gotsym != NULL)
7810 i = elf_hash_table (info)->dynsymcount - g->global_gotsym->dynindx;
7811 else
7812 /* If there are no global symbols, or none requiring
7813 relocations, then GLOBAL_GOTSYM will be NULL. */
7814 i = 0;
7815
5108fc1b
RS
7816 /* Get a worst-case estimate of the number of dynamic symbols needed.
7817 At this point, dynsymcount does not account for section symbols
7818 and count_section_dynsyms may overestimate the number that will
7819 be needed. */
7820 dynsymcount = (elf_hash_table (info)->dynsymcount
7821 + count_section_dynsyms (output_bfd, info));
7822
7823 /* Determine the size of one stub entry. */
7824 htab->function_stub_size = (dynsymcount > 0x10000
7825 ? MIPS_FUNCTION_STUB_BIG_SIZE
7826 : MIPS_FUNCTION_STUB_NORMAL_SIZE);
7827
f4416af6
AO
7828 /* In the worst case, we'll get one stub per dynamic symbol, plus
7829 one to account for the dummy entry at the end required by IRIX
7830 rld. */
5108fc1b 7831 loadable_size += htab->function_stub_size * (i + 1);
f4416af6 7832
0a44bf69 7833 if (htab->is_vxworks)
738e5348 7834 /* There's no need to allocate page entries for VxWorks; R_MIPS*_GOT16
0a44bf69
RS
7835 relocations against local symbols evaluate to "G", and the EABI does
7836 not include R_MIPS_GOT_PAGE. */
c224138d 7837 page_gotno = 0;
0a44bf69
RS
7838 else
7839 /* Assume there are two loadable segments consisting of contiguous
7840 sections. Is 5 enough? */
c224138d
RS
7841 page_gotno = (loadable_size >> 16) + 5;
7842
7843 /* Choose the smaller of the two estimates; both are intended to be
7844 conservative. */
7845 if (page_gotno > g->page_gotno)
7846 page_gotno = g->page_gotno;
f4416af6 7847
c224138d 7848 g->local_gotno += page_gotno;
eea6121a 7849 s->size += g->local_gotno * MIPS_ELF_GOT_SIZE (output_bfd);
f4416af6
AO
7850
7851 g->global_gotno = i;
eea6121a 7852 s->size += i * MIPS_ELF_GOT_SIZE (output_bfd);
f4416af6 7853
0f20cc35
DJ
7854 /* We need to calculate tls_gotno for global symbols at this point
7855 instead of building it up earlier, to avoid doublecounting
7856 entries for one global symbol from multiple input files. */
7857 count_tls_arg.info = info;
7858 count_tls_arg.needed = 0;
7859 elf_link_hash_traverse (elf_hash_table (info),
7860 mips_elf_count_global_tls_entries,
7861 &count_tls_arg);
7862 g->tls_gotno += count_tls_arg.needed;
7863 s->size += g->tls_gotno * MIPS_ELF_GOT_SIZE (output_bfd);
7864
7865 mips_elf_resolve_final_got_entries (g);
7866
0a44bf69
RS
7867 /* VxWorks does not support multiple GOTs. It initializes $gp to
7868 __GOTT_BASE__[__GOTT_INDEX__], the value of which is set by the
7869 dynamic loader. */
7870 if (!htab->is_vxworks && s->size > MIPS_ELF_GOT_MAX_SIZE (info))
0f20cc35 7871 {
a8028dd0 7872 if (!mips_elf_multi_got (output_bfd, info, s, page_gotno))
0f20cc35
DJ
7873 return FALSE;
7874 }
7875 else
7876 {
7877 /* Set up TLS entries for the first GOT. */
7878 g->tls_assigned_gotno = g->global_gotno + g->local_gotno;
7879 htab_traverse (g->got_entries, mips_elf_initialize_tls_index, g);
7880 }
8275b357 7881 htab->computed_got_sizes = TRUE;
b49e97c9 7882
b34976b6 7883 return TRUE;
b49e97c9
TS
7884}
7885
7886/* Set the sizes of the dynamic sections. */
7887
b34976b6 7888bfd_boolean
9719ad41
RS
7889_bfd_mips_elf_size_dynamic_sections (bfd *output_bfd,
7890 struct bfd_link_info *info)
b49e97c9
TS
7891{
7892 bfd *dynobj;
0a44bf69 7893 asection *s, *sreldyn;
b34976b6 7894 bfd_boolean reltext;
0a44bf69 7895 struct mips_elf_link_hash_table *htab;
b49e97c9 7896
0a44bf69 7897 htab = mips_elf_hash_table (info);
b49e97c9
TS
7898 dynobj = elf_hash_table (info)->dynobj;
7899 BFD_ASSERT (dynobj != NULL);
7900
7901 if (elf_hash_table (info)->dynamic_sections_created)
7902 {
7903 /* Set the contents of the .interp section to the interpreter. */
893c4fe2 7904 if (info->executable)
b49e97c9
TS
7905 {
7906 s = bfd_get_section_by_name (dynobj, ".interp");
7907 BFD_ASSERT (s != NULL);
eea6121a 7908 s->size
b49e97c9
TS
7909 = strlen (ELF_DYNAMIC_INTERPRETER (output_bfd)) + 1;
7910 s->contents
7911 = (bfd_byte *) ELF_DYNAMIC_INTERPRETER (output_bfd);
7912 }
4e41d0d7
RS
7913 }
7914
7915 /* IRIX rld assumes that the function stub isn't at the end
7916 of the .text section, so add a dummy entry to the end. */
7917 if (htab->sstubs && htab->sstubs->size > 0)
7918 htab->sstubs->size += htab->function_stub_size;
b49e97c9 7919
9a59ad6b
DJ
7920 /* Allocate space for global sym dynamic relocs. */
7921 elf_link_hash_traverse (&htab->root, allocate_dynrelocs, (PTR) info);
7922
b49e97c9
TS
7923 /* The check_relocs and adjust_dynamic_symbol entry points have
7924 determined the sizes of the various dynamic sections. Allocate
7925 memory for them. */
b34976b6 7926 reltext = FALSE;
0a44bf69 7927 sreldyn = NULL;
b49e97c9
TS
7928 for (s = dynobj->sections; s != NULL; s = s->next)
7929 {
7930 const char *name;
b49e97c9
TS
7931
7932 /* It's OK to base decisions on the section name, because none
7933 of the dynobj section names depend upon the input files. */
7934 name = bfd_get_section_name (dynobj, s);
7935
7936 if ((s->flags & SEC_LINKER_CREATED) == 0)
7937 continue;
7938
0112cd26 7939 if (CONST_STRNEQ (name, ".rel"))
b49e97c9 7940 {
c456f082 7941 if (s->size != 0)
b49e97c9
TS
7942 {
7943 const char *outname;
7944 asection *target;
7945
7946 /* If this relocation section applies to a read only
7947 section, then we probably need a DT_TEXTREL entry.
0a44bf69 7948 If the relocation section is .rel(a).dyn, we always
b49e97c9
TS
7949 assert a DT_TEXTREL entry rather than testing whether
7950 there exists a relocation to a read only section or
7951 not. */
7952 outname = bfd_get_section_name (output_bfd,
7953 s->output_section);
7954 target = bfd_get_section_by_name (output_bfd, outname + 4);
7955 if ((target != NULL
7956 && (target->flags & SEC_READONLY) != 0
7957 && (target->flags & SEC_ALLOC) != 0)
0a44bf69 7958 || strcmp (outname, MIPS_ELF_REL_DYN_NAME (info)) == 0)
b34976b6 7959 reltext = TRUE;
b49e97c9
TS
7960
7961 /* We use the reloc_count field as a counter if we need
7962 to copy relocs into the output file. */
0a44bf69 7963 if (strcmp (name, MIPS_ELF_REL_DYN_NAME (info)) != 0)
b49e97c9 7964 s->reloc_count = 0;
f4416af6
AO
7965
7966 /* If combreloc is enabled, elf_link_sort_relocs() will
7967 sort relocations, but in a different way than we do,
7968 and before we're done creating relocations. Also, it
7969 will move them around between input sections'
7970 relocation's contents, so our sorting would be
7971 broken, so don't let it run. */
7972 info->combreloc = 0;
b49e97c9
TS
7973 }
7974 }
0a44bf69
RS
7975 else if (htab->is_vxworks && strcmp (name, ".got") == 0)
7976 {
7977 /* Executables do not need a GOT. */
7978 if (info->shared)
7979 {
7980 /* Allocate relocations for all but the reserved entries. */
0a44bf69
RS
7981 unsigned int count;
7982
a8028dd0
RS
7983 count = (htab->got_info->global_gotno
7984 + htab->got_info->local_gotno
0a44bf69
RS
7985 - MIPS_RESERVED_GOTNO (info));
7986 mips_elf_allocate_dynamic_relocations (dynobj, info, count);
7987 }
7988 }
0112cd26 7989 else if (!htab->is_vxworks && CONST_STRNEQ (name, ".got"))
b49e97c9 7990 {
f4416af6
AO
7991 /* _bfd_mips_elf_always_size_sections() has already done
7992 most of the work, but some symbols may have been mapped
7993 to versions that we must now resolve in the got_entries
7994 hash tables. */
a8028dd0 7995 struct mips_got_info *gg = htab->got_info;
f4416af6
AO
7996 struct mips_got_info *g = gg;
7997 struct mips_elf_set_global_got_offset_arg set_got_offset_arg;
7998 unsigned int needed_relocs = 0;
143d77c5 7999
f4416af6 8000 if (gg->next)
b49e97c9 8001 {
f4416af6
AO
8002 set_got_offset_arg.value = MIPS_ELF_GOT_SIZE (output_bfd);
8003 set_got_offset_arg.info = info;
b49e97c9 8004
0f20cc35
DJ
8005 /* NOTE 2005-02-03: How can this call, or the next, ever
8006 find any indirect entries to resolve? They were all
8007 resolved in mips_elf_multi_got. */
f4416af6
AO
8008 mips_elf_resolve_final_got_entries (gg);
8009 for (g = gg->next; g && g->next != gg; g = g->next)
b49e97c9 8010 {
f4416af6
AO
8011 unsigned int save_assign;
8012
8013 mips_elf_resolve_final_got_entries (g);
8014
8015 /* Assign offsets to global GOT entries. */
8016 save_assign = g->assigned_gotno;
8017 g->assigned_gotno = g->local_gotno;
8018 set_got_offset_arg.g = g;
8019 set_got_offset_arg.needed_relocs = 0;
8020 htab_traverse (g->got_entries,
8021 mips_elf_set_global_got_offset,
8022 &set_got_offset_arg);
8023 needed_relocs += set_got_offset_arg.needed_relocs;
8024 BFD_ASSERT (g->assigned_gotno - g->local_gotno
8025 <= g->global_gotno);
8026
8027 g->assigned_gotno = save_assign;
8028 if (info->shared)
8029 {
8030 needed_relocs += g->local_gotno - g->assigned_gotno;
8031 BFD_ASSERT (g->assigned_gotno == g->next->local_gotno
8032 + g->next->global_gotno
0f20cc35 8033 + g->next->tls_gotno
0a44bf69 8034 + MIPS_RESERVED_GOTNO (info));
f4416af6 8035 }
b49e97c9 8036 }
0f20cc35
DJ
8037 }
8038 else
8039 {
8040 struct mips_elf_count_tls_arg arg;
8041 arg.info = info;
8042 arg.needed = 0;
b49e97c9 8043
0f20cc35
DJ
8044 htab_traverse (gg->got_entries, mips_elf_count_local_tls_relocs,
8045 &arg);
8046 elf_link_hash_traverse (elf_hash_table (info),
8047 mips_elf_count_global_tls_relocs,
8048 &arg);
8049
8050 needed_relocs += arg.needed;
f4416af6 8051 }
0f20cc35
DJ
8052
8053 if (needed_relocs)
0a44bf69
RS
8054 mips_elf_allocate_dynamic_relocations (dynobj, info,
8055 needed_relocs);
b49e97c9 8056 }
b49e97c9
TS
8057 else if (! info->shared
8058 && ! mips_elf_hash_table (info)->use_rld_obj_head
0112cd26 8059 && CONST_STRNEQ (name, ".rld_map"))
b49e97c9 8060 {
5108fc1b 8061 /* We add a room for __rld_map. It will be filled in by the
b49e97c9 8062 rtld to contain a pointer to the _r_debug structure. */
eea6121a 8063 s->size += 4;
b49e97c9
TS
8064 }
8065 else if (SGI_COMPAT (output_bfd)
0112cd26 8066 && CONST_STRNEQ (name, ".compact_rel"))
eea6121a 8067 s->size += mips_elf_hash_table (info)->compact_rel_size;
0112cd26 8068 else if (! CONST_STRNEQ (name, ".init")
0a44bf69 8069 && s != htab->sgotplt
4e41d0d7
RS
8070 && s != htab->splt
8071 && s != htab->sstubs)
b49e97c9
TS
8072 {
8073 /* It's not one of our sections, so don't allocate space. */
8074 continue;
8075 }
8076
c456f082 8077 if (s->size == 0)
b49e97c9 8078 {
8423293d 8079 s->flags |= SEC_EXCLUDE;
b49e97c9
TS
8080 continue;
8081 }
8082
c456f082
AM
8083 if ((s->flags & SEC_HAS_CONTENTS) == 0)
8084 continue;
8085
0a44bf69
RS
8086 /* Allocate memory for this section last, since we may increase its
8087 size above. */
8088 if (strcmp (name, MIPS_ELF_REL_DYN_NAME (info)) == 0)
8089 {
8090 sreldyn = s;
8091 continue;
8092 }
8093
b49e97c9 8094 /* Allocate memory for the section contents. */
eea6121a 8095 s->contents = bfd_zalloc (dynobj, s->size);
c456f082 8096 if (s->contents == NULL)
b49e97c9
TS
8097 {
8098 bfd_set_error (bfd_error_no_memory);
b34976b6 8099 return FALSE;
b49e97c9
TS
8100 }
8101 }
8102
0a44bf69
RS
8103 /* Allocate memory for the .rel(a).dyn section. */
8104 if (sreldyn != NULL)
8105 {
8106 sreldyn->contents = bfd_zalloc (dynobj, sreldyn->size);
8107 if (sreldyn->contents == NULL)
8108 {
8109 bfd_set_error (bfd_error_no_memory);
8110 return FALSE;
8111 }
8112 }
8113
b49e97c9
TS
8114 if (elf_hash_table (info)->dynamic_sections_created)
8115 {
8116 /* Add some entries to the .dynamic section. We fill in the
8117 values later, in _bfd_mips_elf_finish_dynamic_sections, but we
8118 must add the entries now so that we get the correct size for
5750dcec 8119 the .dynamic section. */
af5978fb
RS
8120
8121 /* SGI object has the equivalence of DT_DEBUG in the
5750dcec
DJ
8122 DT_MIPS_RLD_MAP entry. This must come first because glibc
8123 only fills in DT_MIPS_RLD_MAP (not DT_DEBUG) and GDB only
8124 looks at the first one it sees. */
af5978fb
RS
8125 if (!info->shared
8126 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_RLD_MAP, 0))
8127 return FALSE;
b49e97c9 8128
5750dcec
DJ
8129 /* The DT_DEBUG entry may be filled in by the dynamic linker and
8130 used by the debugger. */
8131 if (info->executable
8132 && !SGI_COMPAT (output_bfd)
8133 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_DEBUG, 0))
8134 return FALSE;
8135
0a44bf69 8136 if (reltext && (SGI_COMPAT (output_bfd) || htab->is_vxworks))
b49e97c9
TS
8137 info->flags |= DF_TEXTREL;
8138
8139 if ((info->flags & DF_TEXTREL) != 0)
8140 {
8141 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_TEXTREL, 0))
b34976b6 8142 return FALSE;
943284cc
DJ
8143
8144 /* Clear the DF_TEXTREL flag. It will be set again if we
8145 write out an actual text relocation; we may not, because
8146 at this point we do not know whether e.g. any .eh_frame
8147 absolute relocations have been converted to PC-relative. */
8148 info->flags &= ~DF_TEXTREL;
b49e97c9
TS
8149 }
8150
8151 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTGOT, 0))
b34976b6 8152 return FALSE;
b49e97c9 8153
0a44bf69 8154 if (htab->is_vxworks)
b49e97c9 8155 {
0a44bf69
RS
8156 /* VxWorks uses .rela.dyn instead of .rel.dyn. It does not
8157 use any of the DT_MIPS_* tags. */
8158 if (mips_elf_rel_dyn_section (info, FALSE))
8159 {
8160 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELA, 0))
8161 return FALSE;
b49e97c9 8162
0a44bf69
RS
8163 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELASZ, 0))
8164 return FALSE;
b49e97c9 8165
0a44bf69
RS
8166 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELAENT, 0))
8167 return FALSE;
8168 }
8169 if (htab->splt->size > 0)
8170 {
8171 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTREL, 0))
8172 return FALSE;
8173
8174 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_JMPREL, 0))
8175 return FALSE;
8176
8177 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTRELSZ, 0))
8178 return FALSE;
8179 }
b49e97c9 8180 }
0a44bf69
RS
8181 else
8182 {
8183 if (mips_elf_rel_dyn_section (info, FALSE))
8184 {
8185 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_REL, 0))
8186 return FALSE;
b49e97c9 8187
0a44bf69
RS
8188 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELSZ, 0))
8189 return FALSE;
b49e97c9 8190
0a44bf69
RS
8191 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELENT, 0))
8192 return FALSE;
8193 }
b49e97c9 8194
0a44bf69
RS
8195 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_RLD_VERSION, 0))
8196 return FALSE;
b49e97c9 8197
0a44bf69
RS
8198 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_FLAGS, 0))
8199 return FALSE;
b49e97c9 8200
0a44bf69
RS
8201 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_BASE_ADDRESS, 0))
8202 return FALSE;
b49e97c9 8203
0a44bf69
RS
8204 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_LOCAL_GOTNO, 0))
8205 return FALSE;
b49e97c9 8206
0a44bf69
RS
8207 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_SYMTABNO, 0))
8208 return FALSE;
b49e97c9 8209
0a44bf69
RS
8210 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_UNREFEXTNO, 0))
8211 return FALSE;
b49e97c9 8212
0a44bf69
RS
8213 if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_GOTSYM, 0))
8214 return FALSE;
8215
8216 if (IRIX_COMPAT (dynobj) == ict_irix5
8217 && ! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_HIPAGENO, 0))
8218 return FALSE;
8219
8220 if (IRIX_COMPAT (dynobj) == ict_irix6
8221 && (bfd_get_section_by_name
8222 (dynobj, MIPS_ELF_OPTIONS_SECTION_NAME (dynobj)))
8223 && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_OPTIONS, 0))
8224 return FALSE;
8225 }
7a2b07ff
NS
8226 if (htab->is_vxworks
8227 && !elf_vxworks_add_dynamic_entries (output_bfd, info))
8228 return FALSE;
b49e97c9
TS
8229 }
8230
b34976b6 8231 return TRUE;
b49e97c9
TS
8232}
8233\f
81d43bff
RS
8234/* REL is a relocation in INPUT_BFD that is being copied to OUTPUT_BFD.
8235 Adjust its R_ADDEND field so that it is correct for the output file.
8236 LOCAL_SYMS and LOCAL_SECTIONS are arrays of INPUT_BFD's local symbols
8237 and sections respectively; both use symbol indexes. */
8238
8239static void
8240mips_elf_adjust_addend (bfd *output_bfd, struct bfd_link_info *info,
8241 bfd *input_bfd, Elf_Internal_Sym *local_syms,
8242 asection **local_sections, Elf_Internal_Rela *rel)
8243{
8244 unsigned int r_type, r_symndx;
8245 Elf_Internal_Sym *sym;
8246 asection *sec;
8247
8248 if (mips_elf_local_relocation_p (input_bfd, rel, local_sections, FALSE))
8249 {
8250 r_type = ELF_R_TYPE (output_bfd, rel->r_info);
8251 if (r_type == R_MIPS16_GPREL
8252 || r_type == R_MIPS_GPREL16
8253 || r_type == R_MIPS_GPREL32
8254 || r_type == R_MIPS_LITERAL)
8255 {
8256 rel->r_addend += _bfd_get_gp_value (input_bfd);
8257 rel->r_addend -= _bfd_get_gp_value (output_bfd);
8258 }
8259
8260 r_symndx = ELF_R_SYM (output_bfd, rel->r_info);
8261 sym = local_syms + r_symndx;
8262
8263 /* Adjust REL's addend to account for section merging. */
8264 if (!info->relocatable)
8265 {
8266 sec = local_sections[r_symndx];
8267 _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
8268 }
8269
8270 /* This would normally be done by the rela_normal code in elflink.c. */
8271 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
8272 rel->r_addend += local_sections[r_symndx]->output_offset;
8273 }
8274}
8275
b49e97c9
TS
8276/* Relocate a MIPS ELF section. */
8277
b34976b6 8278bfd_boolean
9719ad41
RS
8279_bfd_mips_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
8280 bfd *input_bfd, asection *input_section,
8281 bfd_byte *contents, Elf_Internal_Rela *relocs,
8282 Elf_Internal_Sym *local_syms,
8283 asection **local_sections)
b49e97c9
TS
8284{
8285 Elf_Internal_Rela *rel;
8286 const Elf_Internal_Rela *relend;
8287 bfd_vma addend = 0;
b34976b6 8288 bfd_boolean use_saved_addend_p = FALSE;
9c5bfbb7 8289 const struct elf_backend_data *bed;
b49e97c9
TS
8290
8291 bed = get_elf_backend_data (output_bfd);
8292 relend = relocs + input_section->reloc_count * bed->s->int_rels_per_ext_rel;
8293 for (rel = relocs; rel < relend; ++rel)
8294 {
8295 const char *name;
c9adbffe 8296 bfd_vma value = 0;
b49e97c9 8297 reloc_howto_type *howto;
b34976b6
AM
8298 bfd_boolean require_jalx;
8299 /* TRUE if the relocation is a RELA relocation, rather than a
b49e97c9 8300 REL relocation. */
b34976b6 8301 bfd_boolean rela_relocation_p = TRUE;
b49e97c9 8302 unsigned int r_type = ELF_R_TYPE (output_bfd, rel->r_info);
9719ad41 8303 const char *msg;
ab96bf03
AM
8304 unsigned long r_symndx;
8305 asection *sec;
749b8d9d
L
8306 Elf_Internal_Shdr *symtab_hdr;
8307 struct elf_link_hash_entry *h;
b49e97c9
TS
8308
8309 /* Find the relocation howto for this relocation. */
ab96bf03
AM
8310 howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, r_type,
8311 NEWABI_P (input_bfd)
8312 && (MIPS_RELOC_RELA_P
8313 (input_bfd, input_section,
8314 rel - relocs)));
8315
8316 r_symndx = ELF_R_SYM (input_bfd, rel->r_info);
749b8d9d 8317 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
ab96bf03 8318 if (mips_elf_local_relocation_p (input_bfd, rel, local_sections, FALSE))
749b8d9d
L
8319 {
8320 sec = local_sections[r_symndx];
8321 h = NULL;
8322 }
ab96bf03
AM
8323 else
8324 {
ab96bf03 8325 unsigned long extsymoff;
ab96bf03 8326
ab96bf03
AM
8327 extsymoff = 0;
8328 if (!elf_bad_symtab (input_bfd))
8329 extsymoff = symtab_hdr->sh_info;
8330 h = elf_sym_hashes (input_bfd) [r_symndx - extsymoff];
8331 while (h->root.type == bfd_link_hash_indirect
8332 || h->root.type == bfd_link_hash_warning)
8333 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8334
8335 sec = NULL;
8336 if (h->root.type == bfd_link_hash_defined
8337 || h->root.type == bfd_link_hash_defweak)
8338 sec = h->root.u.def.section;
8339 }
8340
8341 if (sec != NULL && elf_discarded_section (sec))
8342 {
8343 /* For relocs against symbols from removed linkonce sections,
8344 or sections discarded by a linker script, we just want the
8345 section contents zeroed. Avoid any special processing. */
8346 _bfd_clear_contents (howto, input_bfd, contents + rel->r_offset);
8347 rel->r_info = 0;
8348 rel->r_addend = 0;
8349 continue;
8350 }
8351
4a14403c 8352 if (r_type == R_MIPS_64 && ! NEWABI_P (input_bfd))
b49e97c9
TS
8353 {
8354 /* Some 32-bit code uses R_MIPS_64. In particular, people use
8355 64-bit code, but make sure all their addresses are in the
8356 lowermost or uppermost 32-bit section of the 64-bit address
8357 space. Thus, when they use an R_MIPS_64 they mean what is
8358 usually meant by R_MIPS_32, with the exception that the
8359 stored value is sign-extended to 64 bits. */
b34976b6 8360 howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, R_MIPS_32, FALSE);
b49e97c9
TS
8361
8362 /* On big-endian systems, we need to lie about the position
8363 of the reloc. */
8364 if (bfd_big_endian (input_bfd))
8365 rel->r_offset += 4;
8366 }
b49e97c9
TS
8367
8368 if (!use_saved_addend_p)
8369 {
b49e97c9
TS
8370 /* If these relocations were originally of the REL variety,
8371 we must pull the addend out of the field that will be
8372 relocated. Otherwise, we simply use the contents of the
c224138d
RS
8373 RELA relocation. */
8374 if (mips_elf_rel_relocation_p (input_bfd, input_section,
8375 relocs, rel))
b49e97c9 8376 {
b34976b6 8377 rela_relocation_p = FALSE;
c224138d
RS
8378 addend = mips_elf_read_rel_addend (input_bfd, rel,
8379 howto, contents);
738e5348
RS
8380 if (hi16_reloc_p (r_type)
8381 || (got16_reloc_p (r_type)
b49e97c9 8382 && mips_elf_local_relocation_p (input_bfd, rel,
b34976b6 8383 local_sections, FALSE)))
b49e97c9 8384 {
c224138d
RS
8385 if (!mips_elf_add_lo16_rel_addend (input_bfd, rel, relend,
8386 contents, &addend))
749b8d9d
L
8387 {
8388 const char *name;
8389
8390 if (h)
8391 name = h->root.root.string;
8392 else
8393 name = bfd_elf_sym_name (input_bfd, symtab_hdr,
8394 local_syms + r_symndx,
8395 sec);
8396 (*_bfd_error_handler)
8397 (_("%B: Can't find matching LO16 reloc against `%s' for %s at 0x%lx in section `%A'"),
8398 input_bfd, input_section, name, howto->name,
8399 rel->r_offset);
749b8d9d 8400 }
b49e97c9 8401 }
30ac9238
RS
8402 else
8403 addend <<= howto->rightshift;
b49e97c9
TS
8404 }
8405 else
8406 addend = rel->r_addend;
81d43bff
RS
8407 mips_elf_adjust_addend (output_bfd, info, input_bfd,
8408 local_syms, local_sections, rel);
b49e97c9
TS
8409 }
8410
1049f94e 8411 if (info->relocatable)
b49e97c9 8412 {
4a14403c 8413 if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd)
b49e97c9
TS
8414 && bfd_big_endian (input_bfd))
8415 rel->r_offset -= 4;
8416
81d43bff 8417 if (!rela_relocation_p && rel->r_addend)
5a659663 8418 {
81d43bff 8419 addend += rel->r_addend;
738e5348 8420 if (hi16_reloc_p (r_type) || got16_reloc_p (r_type))
5a659663
TS
8421 addend = mips_elf_high (addend);
8422 else if (r_type == R_MIPS_HIGHER)
8423 addend = mips_elf_higher (addend);
8424 else if (r_type == R_MIPS_HIGHEST)
8425 addend = mips_elf_highest (addend);
30ac9238
RS
8426 else
8427 addend >>= howto->rightshift;
b49e97c9 8428
30ac9238
RS
8429 /* We use the source mask, rather than the destination
8430 mask because the place to which we are writing will be
8431 source of the addend in the final link. */
b49e97c9
TS
8432 addend &= howto->src_mask;
8433
5a659663 8434 if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd))
b49e97c9
TS
8435 /* See the comment above about using R_MIPS_64 in the 32-bit
8436 ABI. Here, we need to update the addend. It would be
8437 possible to get away with just using the R_MIPS_32 reloc
8438 but for endianness. */
8439 {
8440 bfd_vma sign_bits;
8441 bfd_vma low_bits;
8442 bfd_vma high_bits;
8443
8444 if (addend & ((bfd_vma) 1 << 31))
8445#ifdef BFD64
8446 sign_bits = ((bfd_vma) 1 << 32) - 1;
8447#else
8448 sign_bits = -1;
8449#endif
8450 else
8451 sign_bits = 0;
8452
8453 /* If we don't know that we have a 64-bit type,
8454 do two separate stores. */
8455 if (bfd_big_endian (input_bfd))
8456 {
8457 /* Store the sign-bits (which are most significant)
8458 first. */
8459 low_bits = sign_bits;
8460 high_bits = addend;
8461 }
8462 else
8463 {
8464 low_bits = addend;
8465 high_bits = sign_bits;
8466 }
8467 bfd_put_32 (input_bfd, low_bits,
8468 contents + rel->r_offset);
8469 bfd_put_32 (input_bfd, high_bits,
8470 contents + rel->r_offset + 4);
8471 continue;
8472 }
8473
8474 if (! mips_elf_perform_relocation (info, howto, rel, addend,
8475 input_bfd, input_section,
b34976b6
AM
8476 contents, FALSE))
8477 return FALSE;
b49e97c9
TS
8478 }
8479
8480 /* Go on to the next relocation. */
8481 continue;
8482 }
8483
8484 /* In the N32 and 64-bit ABIs there may be multiple consecutive
8485 relocations for the same offset. In that case we are
8486 supposed to treat the output of each relocation as the addend
8487 for the next. */
8488 if (rel + 1 < relend
8489 && rel->r_offset == rel[1].r_offset
8490 && ELF_R_TYPE (input_bfd, rel[1].r_info) != R_MIPS_NONE)
b34976b6 8491 use_saved_addend_p = TRUE;
b49e97c9 8492 else
b34976b6 8493 use_saved_addend_p = FALSE;
b49e97c9
TS
8494
8495 /* Figure out what value we are supposed to relocate. */
8496 switch (mips_elf_calculate_relocation (output_bfd, input_bfd,
8497 input_section, info, rel,
8498 addend, howto, local_syms,
8499 local_sections, &value,
bce03d3d
AO
8500 &name, &require_jalx,
8501 use_saved_addend_p))
b49e97c9
TS
8502 {
8503 case bfd_reloc_continue:
8504 /* There's nothing to do. */
8505 continue;
8506
8507 case bfd_reloc_undefined:
8508 /* mips_elf_calculate_relocation already called the
8509 undefined_symbol callback. There's no real point in
8510 trying to perform the relocation at this point, so we
8511 just skip ahead to the next relocation. */
8512 continue;
8513
8514 case bfd_reloc_notsupported:
8515 msg = _("internal error: unsupported relocation error");
8516 info->callbacks->warning
8517 (info, msg, name, input_bfd, input_section, rel->r_offset);
b34976b6 8518 return FALSE;
b49e97c9
TS
8519
8520 case bfd_reloc_overflow:
8521 if (use_saved_addend_p)
8522 /* Ignore overflow until we reach the last relocation for
8523 a given location. */
8524 ;
8525 else
8526 {
0e53d9da
AN
8527 struct mips_elf_link_hash_table *htab;
8528
8529 htab = mips_elf_hash_table (info);
b49e97c9 8530 BFD_ASSERT (name != NULL);
0e53d9da
AN
8531 if (!htab->small_data_overflow_reported
8532 && (howto->type == R_MIPS_GPREL16
8533 || howto->type == R_MIPS_LITERAL))
8534 {
8535 const char *msg =
8536 _("small-data section exceeds 64KB;"
8537 " lower small-data size limit (see option -G)");
8538
8539 htab->small_data_overflow_reported = TRUE;
8540 (*info->callbacks->einfo) ("%P: %s\n", msg);
8541 }
b49e97c9 8542 if (! ((*info->callbacks->reloc_overflow)
dfeffb9f 8543 (info, NULL, name, howto->name, (bfd_vma) 0,
b49e97c9 8544 input_bfd, input_section, rel->r_offset)))
b34976b6 8545 return FALSE;
b49e97c9
TS
8546 }
8547 break;
8548
8549 case bfd_reloc_ok:
8550 break;
8551
8552 default:
8553 abort ();
8554 break;
8555 }
8556
8557 /* If we've got another relocation for the address, keep going
8558 until we reach the last one. */
8559 if (use_saved_addend_p)
8560 {
8561 addend = value;
8562 continue;
8563 }
8564
4a14403c 8565 if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd))
b49e97c9
TS
8566 /* See the comment above about using R_MIPS_64 in the 32-bit
8567 ABI. Until now, we've been using the HOWTO for R_MIPS_32;
8568 that calculated the right value. Now, however, we
8569 sign-extend the 32-bit result to 64-bits, and store it as a
8570 64-bit value. We are especially generous here in that we
8571 go to extreme lengths to support this usage on systems with
8572 only a 32-bit VMA. */
8573 {
8574 bfd_vma sign_bits;
8575 bfd_vma low_bits;
8576 bfd_vma high_bits;
8577
8578 if (value & ((bfd_vma) 1 << 31))
8579#ifdef BFD64
8580 sign_bits = ((bfd_vma) 1 << 32) - 1;
8581#else
8582 sign_bits = -1;
8583#endif
8584 else
8585 sign_bits = 0;
8586
8587 /* If we don't know that we have a 64-bit type,
8588 do two separate stores. */
8589 if (bfd_big_endian (input_bfd))
8590 {
8591 /* Undo what we did above. */
8592 rel->r_offset -= 4;
8593 /* Store the sign-bits (which are most significant)
8594 first. */
8595 low_bits = sign_bits;
8596 high_bits = value;
8597 }
8598 else
8599 {
8600 low_bits = value;
8601 high_bits = sign_bits;
8602 }
8603 bfd_put_32 (input_bfd, low_bits,
8604 contents + rel->r_offset);
8605 bfd_put_32 (input_bfd, high_bits,
8606 contents + rel->r_offset + 4);
8607 continue;
8608 }
8609
8610 /* Actually perform the relocation. */
8611 if (! mips_elf_perform_relocation (info, howto, rel, value,
8612 input_bfd, input_section,
8613 contents, require_jalx))
b34976b6 8614 return FALSE;
b49e97c9
TS
8615 }
8616
b34976b6 8617 return TRUE;
b49e97c9
TS
8618}
8619\f
8620/* If NAME is one of the special IRIX6 symbols defined by the linker,
8621 adjust it appropriately now. */
8622
8623static void
9719ad41
RS
8624mips_elf_irix6_finish_dynamic_symbol (bfd *abfd ATTRIBUTE_UNUSED,
8625 const char *name, Elf_Internal_Sym *sym)
b49e97c9
TS
8626{
8627 /* The linker script takes care of providing names and values for
8628 these, but we must place them into the right sections. */
8629 static const char* const text_section_symbols[] = {
8630 "_ftext",
8631 "_etext",
8632 "__dso_displacement",
8633 "__elf_header",
8634 "__program_header_table",
8635 NULL
8636 };
8637
8638 static const char* const data_section_symbols[] = {
8639 "_fdata",
8640 "_edata",
8641 "_end",
8642 "_fbss",
8643 NULL
8644 };
8645
8646 const char* const *p;
8647 int i;
8648
8649 for (i = 0; i < 2; ++i)
8650 for (p = (i == 0) ? text_section_symbols : data_section_symbols;
8651 *p;
8652 ++p)
8653 if (strcmp (*p, name) == 0)
8654 {
8655 /* All of these symbols are given type STT_SECTION by the
8656 IRIX6 linker. */
8657 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
e10609d3 8658 sym->st_other = STO_PROTECTED;
b49e97c9
TS
8659
8660 /* The IRIX linker puts these symbols in special sections. */
8661 if (i == 0)
8662 sym->st_shndx = SHN_MIPS_TEXT;
8663 else
8664 sym->st_shndx = SHN_MIPS_DATA;
8665
8666 break;
8667 }
8668}
8669
8670/* Finish up dynamic symbol handling. We set the contents of various
8671 dynamic sections here. */
8672
b34976b6 8673bfd_boolean
9719ad41
RS
8674_bfd_mips_elf_finish_dynamic_symbol (bfd *output_bfd,
8675 struct bfd_link_info *info,
8676 struct elf_link_hash_entry *h,
8677 Elf_Internal_Sym *sym)
b49e97c9
TS
8678{
8679 bfd *dynobj;
b49e97c9 8680 asection *sgot;
f4416af6 8681 struct mips_got_info *g, *gg;
b49e97c9 8682 const char *name;
3d6746ca 8683 int idx;
5108fc1b 8684 struct mips_elf_link_hash_table *htab;
738e5348 8685 struct mips_elf_link_hash_entry *hmips;
b49e97c9 8686
5108fc1b 8687 htab = mips_elf_hash_table (info);
b49e97c9 8688 dynobj = elf_hash_table (info)->dynobj;
738e5348 8689 hmips = (struct mips_elf_link_hash_entry *) h;
b49e97c9 8690
c5ae1840 8691 if (h->plt.offset != MINUS_ONE)
b49e97c9 8692 {
5108fc1b 8693 bfd_byte stub[MIPS_FUNCTION_STUB_BIG_SIZE];
b49e97c9
TS
8694
8695 /* This symbol has a stub. Set it up. */
8696
8697 BFD_ASSERT (h->dynindx != -1);
8698
5108fc1b
RS
8699 BFD_ASSERT ((htab->function_stub_size == MIPS_FUNCTION_STUB_BIG_SIZE)
8700 || (h->dynindx <= 0xffff));
3d6746ca
DD
8701
8702 /* Values up to 2^31 - 1 are allowed. Larger values would cause
5108fc1b
RS
8703 sign extension at runtime in the stub, resulting in a negative
8704 index value. */
8705 if (h->dynindx & ~0x7fffffff)
b34976b6 8706 return FALSE;
b49e97c9
TS
8707
8708 /* Fill the stub. */
3d6746ca
DD
8709 idx = 0;
8710 bfd_put_32 (output_bfd, STUB_LW (output_bfd), stub + idx);
8711 idx += 4;
8712 bfd_put_32 (output_bfd, STUB_MOVE (output_bfd), stub + idx);
8713 idx += 4;
5108fc1b 8714 if (htab->function_stub_size == MIPS_FUNCTION_STUB_BIG_SIZE)
3d6746ca 8715 {
5108fc1b 8716 bfd_put_32 (output_bfd, STUB_LUI ((h->dynindx >> 16) & 0x7fff),
3d6746ca
DD
8717 stub + idx);
8718 idx += 4;
8719 }
8720 bfd_put_32 (output_bfd, STUB_JALR, stub + idx);
8721 idx += 4;
b49e97c9 8722
3d6746ca
DD
8723 /* If a large stub is not required and sign extension is not a
8724 problem, then use legacy code in the stub. */
5108fc1b
RS
8725 if (htab->function_stub_size == MIPS_FUNCTION_STUB_BIG_SIZE)
8726 bfd_put_32 (output_bfd, STUB_ORI (h->dynindx & 0xffff), stub + idx);
8727 else if (h->dynindx & ~0x7fff)
3d6746ca
DD
8728 bfd_put_32 (output_bfd, STUB_LI16U (h->dynindx & 0xffff), stub + idx);
8729 else
5108fc1b
RS
8730 bfd_put_32 (output_bfd, STUB_LI16S (output_bfd, h->dynindx),
8731 stub + idx);
8732
4e41d0d7
RS
8733 BFD_ASSERT (h->plt.offset <= htab->sstubs->size);
8734 memcpy (htab->sstubs->contents + h->plt.offset,
8735 stub, htab->function_stub_size);
b49e97c9
TS
8736
8737 /* Mark the symbol as undefined. plt.offset != -1 occurs
8738 only for the referenced symbol. */
8739 sym->st_shndx = SHN_UNDEF;
8740
8741 /* The run-time linker uses the st_value field of the symbol
8742 to reset the global offset table entry for this external
8743 to its stub address when unlinking a shared object. */
4e41d0d7
RS
8744 sym->st_value = (htab->sstubs->output_section->vma
8745 + htab->sstubs->output_offset
c5ae1840 8746 + h->plt.offset);
b49e97c9
TS
8747 }
8748
738e5348
RS
8749 /* If we have a MIPS16 function with a stub, the dynamic symbol must
8750 refer to the stub, since only the stub uses the standard calling
8751 conventions. */
8752 if (h->dynindx != -1 && hmips->fn_stub != NULL)
8753 {
8754 BFD_ASSERT (hmips->need_fn_stub);
8755 sym->st_value = (hmips->fn_stub->output_section->vma
8756 + hmips->fn_stub->output_offset);
8757 sym->st_size = hmips->fn_stub->size;
8758 sym->st_other = ELF_ST_VISIBILITY (sym->st_other);
8759 }
8760
b49e97c9 8761 BFD_ASSERT (h->dynindx != -1
f5385ebf 8762 || h->forced_local);
b49e97c9 8763
a8028dd0 8764 sgot = mips_elf_got_section (info);
b49e97c9 8765 BFD_ASSERT (sgot != NULL);
a8028dd0 8766 g = htab->got_info;
b49e97c9
TS
8767 BFD_ASSERT (g != NULL);
8768
8769 /* Run through the global symbol table, creating GOT entries for all
8770 the symbols that need them. */
8771 if (g->global_gotsym != NULL
8772 && h->dynindx >= g->global_gotsym->dynindx)
8773 {
8774 bfd_vma offset;
8775 bfd_vma value;
8776
6eaa6adc 8777 value = sym->st_value;
738e5348
RS
8778 offset = mips_elf_global_got_index (dynobj, output_bfd, h,
8779 R_MIPS_GOT16, info);
b49e97c9
TS
8780 MIPS_ELF_PUT_WORD (output_bfd, value, sgot->contents + offset);
8781 }
8782
0f20cc35 8783 if (g->next && h->dynindx != -1 && h->type != STT_TLS)
f4416af6
AO
8784 {
8785 struct mips_got_entry e, *p;
0626d451 8786 bfd_vma entry;
f4416af6 8787 bfd_vma offset;
f4416af6
AO
8788
8789 gg = g;
8790
8791 e.abfd = output_bfd;
8792 e.symndx = -1;
738e5348 8793 e.d.h = hmips;
0f20cc35 8794 e.tls_type = 0;
143d77c5 8795
f4416af6
AO
8796 for (g = g->next; g->next != gg; g = g->next)
8797 {
8798 if (g->got_entries
8799 && (p = (struct mips_got_entry *) htab_find (g->got_entries,
8800 &e)))
8801 {
8802 offset = p->gotidx;
0626d451
RS
8803 if (info->shared
8804 || (elf_hash_table (info)->dynamic_sections_created
8805 && p->d.h != NULL
f5385ebf
AM
8806 && p->d.h->root.def_dynamic
8807 && !p->d.h->root.def_regular))
0626d451
RS
8808 {
8809 /* Create an R_MIPS_REL32 relocation for this entry. Due to
8810 the various compatibility problems, it's easier to mock
8811 up an R_MIPS_32 or R_MIPS_64 relocation and leave
8812 mips_elf_create_dynamic_relocation to calculate the
8813 appropriate addend. */
8814 Elf_Internal_Rela rel[3];
8815
8816 memset (rel, 0, sizeof (rel));
8817 if (ABI_64_P (output_bfd))
8818 rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_64);
8819 else
8820 rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_32);
8821 rel[0].r_offset = rel[1].r_offset = rel[2].r_offset = offset;
8822
8823 entry = 0;
8824 if (! (mips_elf_create_dynamic_relocation
8825 (output_bfd, info, rel,
8826 e.d.h, NULL, sym->st_value, &entry, sgot)))
8827 return FALSE;
8828 }
8829 else
8830 entry = sym->st_value;
8831 MIPS_ELF_PUT_WORD (output_bfd, entry, sgot->contents + offset);
f4416af6
AO
8832 }
8833 }
8834 }
8835
b49e97c9
TS
8836 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
8837 name = h->root.root.string;
8838 if (strcmp (name, "_DYNAMIC") == 0
22edb2f1 8839 || h == elf_hash_table (info)->hgot)
b49e97c9
TS
8840 sym->st_shndx = SHN_ABS;
8841 else if (strcmp (name, "_DYNAMIC_LINK") == 0
8842 || strcmp (name, "_DYNAMIC_LINKING") == 0)
8843 {
8844 sym->st_shndx = SHN_ABS;
8845 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8846 sym->st_value = 1;
8847 }
4a14403c 8848 else if (strcmp (name, "_gp_disp") == 0 && ! NEWABI_P (output_bfd))
b49e97c9
TS
8849 {
8850 sym->st_shndx = SHN_ABS;
8851 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8852 sym->st_value = elf_gp (output_bfd);
8853 }
8854 else if (SGI_COMPAT (output_bfd))
8855 {
8856 if (strcmp (name, mips_elf_dynsym_rtproc_names[0]) == 0
8857 || strcmp (name, mips_elf_dynsym_rtproc_names[1]) == 0)
8858 {
8859 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8860 sym->st_other = STO_PROTECTED;
8861 sym->st_value = 0;
8862 sym->st_shndx = SHN_MIPS_DATA;
8863 }
8864 else if (strcmp (name, mips_elf_dynsym_rtproc_names[2]) == 0)
8865 {
8866 sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8867 sym->st_other = STO_PROTECTED;
8868 sym->st_value = mips_elf_hash_table (info)->procedure_count;
8869 sym->st_shndx = SHN_ABS;
8870 }
8871 else if (sym->st_shndx != SHN_UNDEF && sym->st_shndx != SHN_ABS)
8872 {
8873 if (h->type == STT_FUNC)
8874 sym->st_shndx = SHN_MIPS_TEXT;
8875 else if (h->type == STT_OBJECT)
8876 sym->st_shndx = SHN_MIPS_DATA;
8877 }
8878 }
8879
8880 /* Handle the IRIX6-specific symbols. */
8881 if (IRIX_COMPAT (output_bfd) == ict_irix6)
8882 mips_elf_irix6_finish_dynamic_symbol (output_bfd, name, sym);
8883
8884 if (! info->shared)
8885 {
8886 if (! mips_elf_hash_table (info)->use_rld_obj_head
8887 && (strcmp (name, "__rld_map") == 0
8888 || strcmp (name, "__RLD_MAP") == 0))
8889 {
8890 asection *s = bfd_get_section_by_name (dynobj, ".rld_map");
8891 BFD_ASSERT (s != NULL);
8892 sym->st_value = s->output_section->vma + s->output_offset;
9719ad41 8893 bfd_put_32 (output_bfd, 0, s->contents);
b49e97c9
TS
8894 if (mips_elf_hash_table (info)->rld_value == 0)
8895 mips_elf_hash_table (info)->rld_value = sym->st_value;
8896 }
8897 else if (mips_elf_hash_table (info)->use_rld_obj_head
8898 && strcmp (name, "__rld_obj_head") == 0)
8899 {
8900 /* IRIX6 does not use a .rld_map section. */
8901 if (IRIX_COMPAT (output_bfd) == ict_irix5
8902 || IRIX_COMPAT (output_bfd) == ict_none)
8903 BFD_ASSERT (bfd_get_section_by_name (dynobj, ".rld_map")
8904 != NULL);
8905 mips_elf_hash_table (info)->rld_value = sym->st_value;
8906 }
8907 }
8908
738e5348
RS
8909 /* Keep dynamic MIPS16 symbols odd. This allows the dynamic linker to
8910 treat MIPS16 symbols like any other. */
30c09090 8911 if (ELF_ST_IS_MIPS16 (sym->st_other))
738e5348
RS
8912 {
8913 BFD_ASSERT (sym->st_value & 1);
8914 sym->st_other -= STO_MIPS16;
8915 }
b49e97c9 8916
b34976b6 8917 return TRUE;
b49e97c9
TS
8918}
8919
0a44bf69
RS
8920/* Likewise, for VxWorks. */
8921
8922bfd_boolean
8923_bfd_mips_vxworks_finish_dynamic_symbol (bfd *output_bfd,
8924 struct bfd_link_info *info,
8925 struct elf_link_hash_entry *h,
8926 Elf_Internal_Sym *sym)
8927{
8928 bfd *dynobj;
8929 asection *sgot;
8930 struct mips_got_info *g;
8931 struct mips_elf_link_hash_table *htab;
8932
8933 htab = mips_elf_hash_table (info);
8934 dynobj = elf_hash_table (info)->dynobj;
8935
8936 if (h->plt.offset != (bfd_vma) -1)
8937 {
6d79d2ed 8938 bfd_byte *loc;
0a44bf69
RS
8939 bfd_vma plt_address, plt_index, got_address, got_offset, branch_offset;
8940 Elf_Internal_Rela rel;
8941 static const bfd_vma *plt_entry;
8942
8943 BFD_ASSERT (h->dynindx != -1);
8944 BFD_ASSERT (htab->splt != NULL);
8945 BFD_ASSERT (h->plt.offset <= htab->splt->size);
8946
8947 /* Calculate the address of the .plt entry. */
8948 plt_address = (htab->splt->output_section->vma
8949 + htab->splt->output_offset
8950 + h->plt.offset);
8951
8952 /* Calculate the index of the entry. */
8953 plt_index = ((h->plt.offset - htab->plt_header_size)
8954 / htab->plt_entry_size);
8955
8956 /* Calculate the address of the .got.plt entry. */
8957 got_address = (htab->sgotplt->output_section->vma
8958 + htab->sgotplt->output_offset
8959 + plt_index * 4);
8960
8961 /* Calculate the offset of the .got.plt entry from
8962 _GLOBAL_OFFSET_TABLE_. */
8963 got_offset = mips_elf_gotplt_index (info, h);
8964
8965 /* Calculate the offset for the branch at the start of the PLT
8966 entry. The branch jumps to the beginning of .plt. */
8967 branch_offset = -(h->plt.offset / 4 + 1) & 0xffff;
8968
8969 /* Fill in the initial value of the .got.plt entry. */
8970 bfd_put_32 (output_bfd, plt_address,
8971 htab->sgotplt->contents + plt_index * 4);
8972
8973 /* Find out where the .plt entry should go. */
8974 loc = htab->splt->contents + h->plt.offset;
8975
8976 if (info->shared)
8977 {
8978 plt_entry = mips_vxworks_shared_plt_entry;
8979 bfd_put_32 (output_bfd, plt_entry[0] | branch_offset, loc);
8980 bfd_put_32 (output_bfd, plt_entry[1] | plt_index, loc + 4);
8981 }
8982 else
8983 {
8984 bfd_vma got_address_high, got_address_low;
8985
8986 plt_entry = mips_vxworks_exec_plt_entry;
8987 got_address_high = ((got_address + 0x8000) >> 16) & 0xffff;
8988 got_address_low = got_address & 0xffff;
8989
8990 bfd_put_32 (output_bfd, plt_entry[0] | branch_offset, loc);
8991 bfd_put_32 (output_bfd, plt_entry[1] | plt_index, loc + 4);
8992 bfd_put_32 (output_bfd, plt_entry[2] | got_address_high, loc + 8);
8993 bfd_put_32 (output_bfd, plt_entry[3] | got_address_low, loc + 12);
8994 bfd_put_32 (output_bfd, plt_entry[4], loc + 16);
8995 bfd_put_32 (output_bfd, plt_entry[5], loc + 20);
8996 bfd_put_32 (output_bfd, plt_entry[6], loc + 24);
8997 bfd_put_32 (output_bfd, plt_entry[7], loc + 28);
8998
8999 loc = (htab->srelplt2->contents
9000 + (plt_index * 3 + 2) * sizeof (Elf32_External_Rela));
9001
9002 /* Emit a relocation for the .got.plt entry. */
9003 rel.r_offset = got_address;
9004 rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_MIPS_32);
9005 rel.r_addend = h->plt.offset;
9006 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
9007
9008 /* Emit a relocation for the lui of %hi(<.got.plt slot>). */
9009 loc += sizeof (Elf32_External_Rela);
9010 rel.r_offset = plt_address + 8;
9011 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
9012 rel.r_addend = got_offset;
9013 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
9014
9015 /* Emit a relocation for the addiu of %lo(<.got.plt slot>). */
9016 loc += sizeof (Elf32_External_Rela);
9017 rel.r_offset += 4;
9018 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
9019 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
9020 }
9021
9022 /* Emit an R_MIPS_JUMP_SLOT relocation against the .got.plt entry. */
9023 loc = htab->srelplt->contents + plt_index * sizeof (Elf32_External_Rela);
9024 rel.r_offset = got_address;
9025 rel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_JUMP_SLOT);
9026 rel.r_addend = 0;
9027 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
9028
9029 if (!h->def_regular)
9030 sym->st_shndx = SHN_UNDEF;
9031 }
9032
9033 BFD_ASSERT (h->dynindx != -1 || h->forced_local);
9034
a8028dd0 9035 sgot = mips_elf_got_section (info);
0a44bf69 9036 BFD_ASSERT (sgot != NULL);
a8028dd0 9037 g = htab->got_info;
0a44bf69
RS
9038 BFD_ASSERT (g != NULL);
9039
9040 /* See if this symbol has an entry in the GOT. */
9041 if (g->global_gotsym != NULL
9042 && h->dynindx >= g->global_gotsym->dynindx)
9043 {
9044 bfd_vma offset;
9045 Elf_Internal_Rela outrel;
9046 bfd_byte *loc;
9047 asection *s;
9048
9049 /* Install the symbol value in the GOT. */
9050 offset = mips_elf_global_got_index (dynobj, output_bfd, h,
9051 R_MIPS_GOT16, info);
9052 MIPS_ELF_PUT_WORD (output_bfd, sym->st_value, sgot->contents + offset);
9053
9054 /* Add a dynamic relocation for it. */
9055 s = mips_elf_rel_dyn_section (info, FALSE);
9056 loc = s->contents + (s->reloc_count++ * sizeof (Elf32_External_Rela));
9057 outrel.r_offset = (sgot->output_section->vma
9058 + sgot->output_offset
9059 + offset);
9060 outrel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_32);
9061 outrel.r_addend = 0;
9062 bfd_elf32_swap_reloca_out (dynobj, &outrel, loc);
9063 }
9064
9065 /* Emit a copy reloc, if needed. */
9066 if (h->needs_copy)
9067 {
9068 Elf_Internal_Rela rel;
9069
9070 BFD_ASSERT (h->dynindx != -1);
9071
9072 rel.r_offset = (h->root.u.def.section->output_section->vma
9073 + h->root.u.def.section->output_offset
9074 + h->root.u.def.value);
9075 rel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_COPY);
9076 rel.r_addend = 0;
9077 bfd_elf32_swap_reloca_out (output_bfd, &rel,
9078 htab->srelbss->contents
9079 + (htab->srelbss->reloc_count
9080 * sizeof (Elf32_External_Rela)));
9081 ++htab->srelbss->reloc_count;
9082 }
9083
9084 /* If this is a mips16 symbol, force the value to be even. */
30c09090 9085 if (ELF_ST_IS_MIPS16 (sym->st_other))
0a44bf69
RS
9086 sym->st_value &= ~1;
9087
9088 return TRUE;
9089}
9090
9091/* Install the PLT header for a VxWorks executable and finalize the
9092 contents of .rela.plt.unloaded. */
9093
9094static void
9095mips_vxworks_finish_exec_plt (bfd *output_bfd, struct bfd_link_info *info)
9096{
9097 Elf_Internal_Rela rela;
9098 bfd_byte *loc;
9099 bfd_vma got_value, got_value_high, got_value_low, plt_address;
9100 static const bfd_vma *plt_entry;
9101 struct mips_elf_link_hash_table *htab;
9102
9103 htab = mips_elf_hash_table (info);
9104 plt_entry = mips_vxworks_exec_plt0_entry;
9105
9106 /* Calculate the value of _GLOBAL_OFFSET_TABLE_. */
9107 got_value = (htab->root.hgot->root.u.def.section->output_section->vma
9108 + htab->root.hgot->root.u.def.section->output_offset
9109 + htab->root.hgot->root.u.def.value);
9110
9111 got_value_high = ((got_value + 0x8000) >> 16) & 0xffff;
9112 got_value_low = got_value & 0xffff;
9113
9114 /* Calculate the address of the PLT header. */
9115 plt_address = htab->splt->output_section->vma + htab->splt->output_offset;
9116
9117 /* Install the PLT header. */
9118 loc = htab->splt->contents;
9119 bfd_put_32 (output_bfd, plt_entry[0] | got_value_high, loc);
9120 bfd_put_32 (output_bfd, plt_entry[1] | got_value_low, loc + 4);
9121 bfd_put_32 (output_bfd, plt_entry[2], loc + 8);
9122 bfd_put_32 (output_bfd, plt_entry[3], loc + 12);
9123 bfd_put_32 (output_bfd, plt_entry[4], loc + 16);
9124 bfd_put_32 (output_bfd, plt_entry[5], loc + 20);
9125
9126 /* Output the relocation for the lui of %hi(_GLOBAL_OFFSET_TABLE_). */
9127 loc = htab->srelplt2->contents;
9128 rela.r_offset = plt_address;
9129 rela.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
9130 rela.r_addend = 0;
9131 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
9132 loc += sizeof (Elf32_External_Rela);
9133
9134 /* Output the relocation for the following addiu of
9135 %lo(_GLOBAL_OFFSET_TABLE_). */
9136 rela.r_offset += 4;
9137 rela.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
9138 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
9139 loc += sizeof (Elf32_External_Rela);
9140
9141 /* Fix up the remaining relocations. They may have the wrong
9142 symbol index for _G_O_T_ or _P_L_T_ depending on the order
9143 in which symbols were output. */
9144 while (loc < htab->srelplt2->contents + htab->srelplt2->size)
9145 {
9146 Elf_Internal_Rela rel;
9147
9148 bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
9149 rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_MIPS_32);
9150 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
9151 loc += sizeof (Elf32_External_Rela);
9152
9153 bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
9154 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
9155 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
9156 loc += sizeof (Elf32_External_Rela);
9157
9158 bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
9159 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
9160 bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
9161 loc += sizeof (Elf32_External_Rela);
9162 }
9163}
9164
9165/* Install the PLT header for a VxWorks shared library. */
9166
9167static void
9168mips_vxworks_finish_shared_plt (bfd *output_bfd, struct bfd_link_info *info)
9169{
9170 unsigned int i;
9171 struct mips_elf_link_hash_table *htab;
9172
9173 htab = mips_elf_hash_table (info);
9174
9175 /* We just need to copy the entry byte-by-byte. */
9176 for (i = 0; i < ARRAY_SIZE (mips_vxworks_shared_plt0_entry); i++)
9177 bfd_put_32 (output_bfd, mips_vxworks_shared_plt0_entry[i],
9178 htab->splt->contents + i * 4);
9179}
9180
b49e97c9
TS
9181/* Finish up the dynamic sections. */
9182
b34976b6 9183bfd_boolean
9719ad41
RS
9184_bfd_mips_elf_finish_dynamic_sections (bfd *output_bfd,
9185 struct bfd_link_info *info)
b49e97c9
TS
9186{
9187 bfd *dynobj;
9188 asection *sdyn;
9189 asection *sgot;
f4416af6 9190 struct mips_got_info *gg, *g;
0a44bf69 9191 struct mips_elf_link_hash_table *htab;
b49e97c9 9192
0a44bf69 9193 htab = mips_elf_hash_table (info);
b49e97c9
TS
9194 dynobj = elf_hash_table (info)->dynobj;
9195
9196 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
9197
a8028dd0 9198 sgot = mips_elf_got_section (info);
b49e97c9 9199 if (sgot == NULL)
f4416af6 9200 gg = g = NULL;
b49e97c9
TS
9201 else
9202 {
a8028dd0 9203 gg = htab->got_info;
f4416af6 9204 g = mips_elf_got_for_ibfd (gg, output_bfd);
b49e97c9
TS
9205 BFD_ASSERT (g != NULL);
9206 }
9207
9208 if (elf_hash_table (info)->dynamic_sections_created)
9209 {
9210 bfd_byte *b;
943284cc 9211 int dyn_to_skip = 0, dyn_skipped = 0;
b49e97c9
TS
9212
9213 BFD_ASSERT (sdyn != NULL);
9214 BFD_ASSERT (g != NULL);
9215
9216 for (b = sdyn->contents;
eea6121a 9217 b < sdyn->contents + sdyn->size;
b49e97c9
TS
9218 b += MIPS_ELF_DYN_SIZE (dynobj))
9219 {
9220 Elf_Internal_Dyn dyn;
9221 const char *name;
9222 size_t elemsize;
9223 asection *s;
b34976b6 9224 bfd_boolean swap_out_p;
b49e97c9
TS
9225
9226 /* Read in the current dynamic entry. */
9227 (*get_elf_backend_data (dynobj)->s->swap_dyn_in) (dynobj, b, &dyn);
9228
9229 /* Assume that we're going to modify it and write it out. */
b34976b6 9230 swap_out_p = TRUE;
b49e97c9
TS
9231
9232 switch (dyn.d_tag)
9233 {
9234 case DT_RELENT:
b49e97c9
TS
9235 dyn.d_un.d_val = MIPS_ELF_REL_SIZE (dynobj);
9236 break;
9237
0a44bf69
RS
9238 case DT_RELAENT:
9239 BFD_ASSERT (htab->is_vxworks);
9240 dyn.d_un.d_val = MIPS_ELF_RELA_SIZE (dynobj);
9241 break;
9242
b49e97c9
TS
9243 case DT_STRSZ:
9244 /* Rewrite DT_STRSZ. */
9245 dyn.d_un.d_val =
9246 _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
9247 break;
9248
9249 case DT_PLTGOT:
9250 name = ".got";
0a44bf69
RS
9251 if (htab->is_vxworks)
9252 {
9253 /* _GLOBAL_OFFSET_TABLE_ is defined to be the beginning
9254 of the ".got" section in DYNOBJ. */
9255 s = bfd_get_section_by_name (dynobj, name);
9256 BFD_ASSERT (s != NULL);
9257 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
9258 }
9259 else
9260 {
9261 s = bfd_get_section_by_name (output_bfd, name);
9262 BFD_ASSERT (s != NULL);
9263 dyn.d_un.d_ptr = s->vma;
9264 }
b49e97c9
TS
9265 break;
9266
9267 case DT_MIPS_RLD_VERSION:
9268 dyn.d_un.d_val = 1; /* XXX */
9269 break;
9270
9271 case DT_MIPS_FLAGS:
9272 dyn.d_un.d_val = RHF_NOTPOT; /* XXX */
9273 break;
9274
b49e97c9 9275 case DT_MIPS_TIME_STAMP:
6edfbbad
DJ
9276 {
9277 time_t t;
9278 time (&t);
9279 dyn.d_un.d_val = t;
9280 }
b49e97c9
TS
9281 break;
9282
9283 case DT_MIPS_ICHECKSUM:
9284 /* XXX FIXME: */
b34976b6 9285 swap_out_p = FALSE;
b49e97c9
TS
9286 break;
9287
9288 case DT_MIPS_IVERSION:
9289 /* XXX FIXME: */
b34976b6 9290 swap_out_p = FALSE;
b49e97c9
TS
9291 break;
9292
9293 case DT_MIPS_BASE_ADDRESS:
9294 s = output_bfd->sections;
9295 BFD_ASSERT (s != NULL);
9296 dyn.d_un.d_ptr = s->vma & ~(bfd_vma) 0xffff;
9297 break;
9298
9299 case DT_MIPS_LOCAL_GOTNO:
9300 dyn.d_un.d_val = g->local_gotno;
9301 break;
9302
9303 case DT_MIPS_UNREFEXTNO:
9304 /* The index into the dynamic symbol table which is the
9305 entry of the first external symbol that is not
9306 referenced within the same object. */
9307 dyn.d_un.d_val = bfd_count_sections (output_bfd) + 1;
9308 break;
9309
9310 case DT_MIPS_GOTSYM:
f4416af6 9311 if (gg->global_gotsym)
b49e97c9 9312 {
f4416af6 9313 dyn.d_un.d_val = gg->global_gotsym->dynindx;
b49e97c9
TS
9314 break;
9315 }
9316 /* In case if we don't have global got symbols we default
9317 to setting DT_MIPS_GOTSYM to the same value as
9318 DT_MIPS_SYMTABNO, so we just fall through. */
9319
9320 case DT_MIPS_SYMTABNO:
9321 name = ".dynsym";
9322 elemsize = MIPS_ELF_SYM_SIZE (output_bfd);
9323 s = bfd_get_section_by_name (output_bfd, name);
9324 BFD_ASSERT (s != NULL);
9325
eea6121a 9326 dyn.d_un.d_val = s->size / elemsize;
b49e97c9
TS
9327 break;
9328
9329 case DT_MIPS_HIPAGENO:
0a44bf69 9330 dyn.d_un.d_val = g->local_gotno - MIPS_RESERVED_GOTNO (info);
b49e97c9
TS
9331 break;
9332
9333 case DT_MIPS_RLD_MAP:
9334 dyn.d_un.d_ptr = mips_elf_hash_table (info)->rld_value;
9335 break;
9336
9337 case DT_MIPS_OPTIONS:
9338 s = (bfd_get_section_by_name
9339 (output_bfd, MIPS_ELF_OPTIONS_SECTION_NAME (output_bfd)));
9340 dyn.d_un.d_ptr = s->vma;
9341 break;
9342
0a44bf69
RS
9343 case DT_RELASZ:
9344 BFD_ASSERT (htab->is_vxworks);
9345 /* The count does not include the JUMP_SLOT relocations. */
9346 if (htab->srelplt)
9347 dyn.d_un.d_val -= htab->srelplt->size;
9348 break;
9349
9350 case DT_PLTREL:
9351 BFD_ASSERT (htab->is_vxworks);
9352 dyn.d_un.d_val = DT_RELA;
9353 break;
9354
9355 case DT_PLTRELSZ:
9356 BFD_ASSERT (htab->is_vxworks);
9357 dyn.d_un.d_val = htab->srelplt->size;
9358 break;
9359
9360 case DT_JMPREL:
9361 BFD_ASSERT (htab->is_vxworks);
9362 dyn.d_un.d_val = (htab->srelplt->output_section->vma
9363 + htab->srelplt->output_offset);
9364 break;
9365
943284cc
DJ
9366 case DT_TEXTREL:
9367 /* If we didn't need any text relocations after all, delete
9368 the dynamic tag. */
9369 if (!(info->flags & DF_TEXTREL))
9370 {
9371 dyn_to_skip = MIPS_ELF_DYN_SIZE (dynobj);
9372 swap_out_p = FALSE;
9373 }
9374 break;
9375
9376 case DT_FLAGS:
9377 /* If we didn't need any text relocations after all, clear
9378 DF_TEXTREL from DT_FLAGS. */
9379 if (!(info->flags & DF_TEXTREL))
9380 dyn.d_un.d_val &= ~DF_TEXTREL;
9381 else
9382 swap_out_p = FALSE;
9383 break;
9384
b49e97c9 9385 default:
b34976b6 9386 swap_out_p = FALSE;
7a2b07ff
NS
9387 if (htab->is_vxworks
9388 && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
9389 swap_out_p = TRUE;
b49e97c9
TS
9390 break;
9391 }
9392
943284cc 9393 if (swap_out_p || dyn_skipped)
b49e97c9 9394 (*get_elf_backend_data (dynobj)->s->swap_dyn_out)
943284cc
DJ
9395 (dynobj, &dyn, b - dyn_skipped);
9396
9397 if (dyn_to_skip)
9398 {
9399 dyn_skipped += dyn_to_skip;
9400 dyn_to_skip = 0;
9401 }
b49e97c9 9402 }
943284cc
DJ
9403
9404 /* Wipe out any trailing entries if we shifted down a dynamic tag. */
9405 if (dyn_skipped > 0)
9406 memset (b - dyn_skipped, 0, dyn_skipped);
b49e97c9
TS
9407 }
9408
b55fd4d4
DJ
9409 if (sgot != NULL && sgot->size > 0
9410 && !bfd_is_abs_section (sgot->output_section))
b49e97c9 9411 {
0a44bf69
RS
9412 if (htab->is_vxworks)
9413 {
9414 /* The first entry of the global offset table points to the
9415 ".dynamic" section. The second is initialized by the
9416 loader and contains the shared library identifier.
9417 The third is also initialized by the loader and points
9418 to the lazy resolution stub. */
9419 MIPS_ELF_PUT_WORD (output_bfd,
9420 sdyn->output_offset + sdyn->output_section->vma,
9421 sgot->contents);
9422 MIPS_ELF_PUT_WORD (output_bfd, 0,
9423 sgot->contents + MIPS_ELF_GOT_SIZE (output_bfd));
9424 MIPS_ELF_PUT_WORD (output_bfd, 0,
9425 sgot->contents
9426 + 2 * MIPS_ELF_GOT_SIZE (output_bfd));
9427 }
9428 else
9429 {
9430 /* The first entry of the global offset table will be filled at
9431 runtime. The second entry will be used by some runtime loaders.
9432 This isn't the case of IRIX rld. */
9433 MIPS_ELF_PUT_WORD (output_bfd, (bfd_vma) 0, sgot->contents);
51e38d68 9434 MIPS_ELF_PUT_WORD (output_bfd, MIPS_ELF_GNU_GOT1_MASK (output_bfd),
0a44bf69
RS
9435 sgot->contents + MIPS_ELF_GOT_SIZE (output_bfd));
9436 }
b49e97c9 9437
54938e2a
TS
9438 elf_section_data (sgot->output_section)->this_hdr.sh_entsize
9439 = MIPS_ELF_GOT_SIZE (output_bfd);
9440 }
b49e97c9 9441
f4416af6
AO
9442 /* Generate dynamic relocations for the non-primary gots. */
9443 if (gg != NULL && gg->next)
9444 {
9445 Elf_Internal_Rela rel[3];
9446 bfd_vma addend = 0;
9447
9448 memset (rel, 0, sizeof (rel));
9449 rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_REL32);
9450
9451 for (g = gg->next; g->next != gg; g = g->next)
9452 {
0f20cc35
DJ
9453 bfd_vma index = g->next->local_gotno + g->next->global_gotno
9454 + g->next->tls_gotno;
f4416af6 9455
9719ad41 9456 MIPS_ELF_PUT_WORD (output_bfd, 0, sgot->contents
f4416af6 9457 + index++ * MIPS_ELF_GOT_SIZE (output_bfd));
51e38d68
RS
9458 MIPS_ELF_PUT_WORD (output_bfd, MIPS_ELF_GNU_GOT1_MASK (output_bfd),
9459 sgot->contents
f4416af6
AO
9460 + index++ * MIPS_ELF_GOT_SIZE (output_bfd));
9461
9462 if (! info->shared)
9463 continue;
9464
9465 while (index < g->assigned_gotno)
9466 {
9467 rel[0].r_offset = rel[1].r_offset = rel[2].r_offset
9468 = index++ * MIPS_ELF_GOT_SIZE (output_bfd);
9469 if (!(mips_elf_create_dynamic_relocation
9470 (output_bfd, info, rel, NULL,
9471 bfd_abs_section_ptr,
9472 0, &addend, sgot)))
9473 return FALSE;
9474 BFD_ASSERT (addend == 0);
9475 }
9476 }
9477 }
9478
3133ddbf
DJ
9479 /* The generation of dynamic relocations for the non-primary gots
9480 adds more dynamic relocations. We cannot count them until
9481 here. */
9482
9483 if (elf_hash_table (info)->dynamic_sections_created)
9484 {
9485 bfd_byte *b;
9486 bfd_boolean swap_out_p;
9487
9488 BFD_ASSERT (sdyn != NULL);
9489
9490 for (b = sdyn->contents;
9491 b < sdyn->contents + sdyn->size;
9492 b += MIPS_ELF_DYN_SIZE (dynobj))
9493 {
9494 Elf_Internal_Dyn dyn;
9495 asection *s;
9496
9497 /* Read in the current dynamic entry. */
9498 (*get_elf_backend_data (dynobj)->s->swap_dyn_in) (dynobj, b, &dyn);
9499
9500 /* Assume that we're going to modify it and write it out. */
9501 swap_out_p = TRUE;
9502
9503 switch (dyn.d_tag)
9504 {
9505 case DT_RELSZ:
9506 /* Reduce DT_RELSZ to account for any relocations we
9507 decided not to make. This is for the n64 irix rld,
9508 which doesn't seem to apply any relocations if there
9509 are trailing null entries. */
0a44bf69 9510 s = mips_elf_rel_dyn_section (info, FALSE);
3133ddbf
DJ
9511 dyn.d_un.d_val = (s->reloc_count
9512 * (ABI_64_P (output_bfd)
9513 ? sizeof (Elf64_Mips_External_Rel)
9514 : sizeof (Elf32_External_Rel)));
bcfdf036
RS
9515 /* Adjust the section size too. Tools like the prelinker
9516 can reasonably expect the values to the same. */
9517 elf_section_data (s->output_section)->this_hdr.sh_size
9518 = dyn.d_un.d_val;
3133ddbf
DJ
9519 break;
9520
9521 default:
9522 swap_out_p = FALSE;
9523 break;
9524 }
9525
9526 if (swap_out_p)
9527 (*get_elf_backend_data (dynobj)->s->swap_dyn_out)
9528 (dynobj, &dyn, b);
9529 }
9530 }
9531
b49e97c9 9532 {
b49e97c9
TS
9533 asection *s;
9534 Elf32_compact_rel cpt;
9535
b49e97c9
TS
9536 if (SGI_COMPAT (output_bfd))
9537 {
9538 /* Write .compact_rel section out. */
9539 s = bfd_get_section_by_name (dynobj, ".compact_rel");
9540 if (s != NULL)
9541 {
9542 cpt.id1 = 1;
9543 cpt.num = s->reloc_count;
9544 cpt.id2 = 2;
9545 cpt.offset = (s->output_section->filepos
9546 + sizeof (Elf32_External_compact_rel));
9547 cpt.reserved0 = 0;
9548 cpt.reserved1 = 0;
9549 bfd_elf32_swap_compact_rel_out (output_bfd, &cpt,
9550 ((Elf32_External_compact_rel *)
9551 s->contents));
9552
9553 /* Clean up a dummy stub function entry in .text. */
4e41d0d7 9554 if (htab->sstubs != NULL)
b49e97c9
TS
9555 {
9556 file_ptr dummy_offset;
9557
4e41d0d7
RS
9558 BFD_ASSERT (htab->sstubs->size >= htab->function_stub_size);
9559 dummy_offset = htab->sstubs->size - htab->function_stub_size;
9560 memset (htab->sstubs->contents + dummy_offset, 0,
5108fc1b 9561 htab->function_stub_size);
b49e97c9
TS
9562 }
9563 }
9564 }
9565
0a44bf69
RS
9566 /* The psABI says that the dynamic relocations must be sorted in
9567 increasing order of r_symndx. The VxWorks EABI doesn't require
9568 this, and because the code below handles REL rather than RELA
9569 relocations, using it for VxWorks would be outright harmful. */
9570 if (!htab->is_vxworks)
b49e97c9 9571 {
0a44bf69
RS
9572 s = mips_elf_rel_dyn_section (info, FALSE);
9573 if (s != NULL
9574 && s->size > (bfd_vma)2 * MIPS_ELF_REL_SIZE (output_bfd))
9575 {
9576 reldyn_sorting_bfd = output_bfd;
b49e97c9 9577
0a44bf69
RS
9578 if (ABI_64_P (output_bfd))
9579 qsort ((Elf64_External_Rel *) s->contents + 1,
9580 s->reloc_count - 1, sizeof (Elf64_Mips_External_Rel),
9581 sort_dynamic_relocs_64);
9582 else
9583 qsort ((Elf32_External_Rel *) s->contents + 1,
9584 s->reloc_count - 1, sizeof (Elf32_External_Rel),
9585 sort_dynamic_relocs);
9586 }
b49e97c9 9587 }
b49e97c9
TS
9588 }
9589
0a44bf69
RS
9590 if (htab->is_vxworks && htab->splt->size > 0)
9591 {
9592 if (info->shared)
9593 mips_vxworks_finish_shared_plt (output_bfd, info);
9594 else
9595 mips_vxworks_finish_exec_plt (output_bfd, info);
9596 }
b34976b6 9597 return TRUE;
b49e97c9
TS
9598}
9599
b49e97c9 9600
64543e1a
RS
9601/* Set ABFD's EF_MIPS_ARCH and EF_MIPS_MACH flags. */
9602
9603static void
9719ad41 9604mips_set_isa_flags (bfd *abfd)
b49e97c9 9605{
64543e1a 9606 flagword val;
b49e97c9
TS
9607
9608 switch (bfd_get_mach (abfd))
9609 {
9610 default:
9611 case bfd_mach_mips3000:
9612 val = E_MIPS_ARCH_1;
9613 break;
9614
9615 case bfd_mach_mips3900:
9616 val = E_MIPS_ARCH_1 | E_MIPS_MACH_3900;
9617 break;
9618
9619 case bfd_mach_mips6000:
9620 val = E_MIPS_ARCH_2;
9621 break;
9622
9623 case bfd_mach_mips4000:
9624 case bfd_mach_mips4300:
9625 case bfd_mach_mips4400:
9626 case bfd_mach_mips4600:
9627 val = E_MIPS_ARCH_3;
9628 break;
9629
9630 case bfd_mach_mips4010:
9631 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4010;
9632 break;
9633
9634 case bfd_mach_mips4100:
9635 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4100;
9636 break;
9637
9638 case bfd_mach_mips4111:
9639 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4111;
9640 break;
9641
00707a0e
RS
9642 case bfd_mach_mips4120:
9643 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4120;
9644 break;
9645
b49e97c9
TS
9646 case bfd_mach_mips4650:
9647 val = E_MIPS_ARCH_3 | E_MIPS_MACH_4650;
9648 break;
9649
00707a0e
RS
9650 case bfd_mach_mips5400:
9651 val = E_MIPS_ARCH_4 | E_MIPS_MACH_5400;
9652 break;
9653
9654 case bfd_mach_mips5500:
9655 val = E_MIPS_ARCH_4 | E_MIPS_MACH_5500;
9656 break;
9657
0d2e43ed
ILT
9658 case bfd_mach_mips9000:
9659 val = E_MIPS_ARCH_4 | E_MIPS_MACH_9000;
9660 break;
9661
b49e97c9 9662 case bfd_mach_mips5000:
5a7ea749 9663 case bfd_mach_mips7000:
b49e97c9
TS
9664 case bfd_mach_mips8000:
9665 case bfd_mach_mips10000:
9666 case bfd_mach_mips12000:
9667 val = E_MIPS_ARCH_4;
9668 break;
9669
9670 case bfd_mach_mips5:
9671 val = E_MIPS_ARCH_5;
9672 break;
9673
350cc38d
MS
9674 case bfd_mach_mips_loongson_2e:
9675 val = E_MIPS_ARCH_3 | E_MIPS_MACH_LS2E;
9676 break;
9677
9678 case bfd_mach_mips_loongson_2f:
9679 val = E_MIPS_ARCH_3 | E_MIPS_MACH_LS2F;
9680 break;
9681
b49e97c9
TS
9682 case bfd_mach_mips_sb1:
9683 val = E_MIPS_ARCH_64 | E_MIPS_MACH_SB1;
9684 break;
9685
6f179bd0
AN
9686 case bfd_mach_mips_octeon:
9687 val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_OCTEON;
9688 break;
9689
b49e97c9
TS
9690 case bfd_mach_mipsisa32:
9691 val = E_MIPS_ARCH_32;
9692 break;
9693
9694 case bfd_mach_mipsisa64:
9695 val = E_MIPS_ARCH_64;
af7ee8bf
CD
9696 break;
9697
9698 case bfd_mach_mipsisa32r2:
9699 val = E_MIPS_ARCH_32R2;
9700 break;
5f74bc13
CD
9701
9702 case bfd_mach_mipsisa64r2:
9703 val = E_MIPS_ARCH_64R2;
9704 break;
b49e97c9 9705 }
b49e97c9
TS
9706 elf_elfheader (abfd)->e_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH);
9707 elf_elfheader (abfd)->e_flags |= val;
9708
64543e1a
RS
9709}
9710
9711
9712/* The final processing done just before writing out a MIPS ELF object
9713 file. This gets the MIPS architecture right based on the machine
9714 number. This is used by both the 32-bit and the 64-bit ABI. */
9715
9716void
9719ad41
RS
9717_bfd_mips_elf_final_write_processing (bfd *abfd,
9718 bfd_boolean linker ATTRIBUTE_UNUSED)
64543e1a
RS
9719{
9720 unsigned int i;
9721 Elf_Internal_Shdr **hdrpp;
9722 const char *name;
9723 asection *sec;
9724
9725 /* Keep the existing EF_MIPS_MACH and EF_MIPS_ARCH flags if the former
9726 is nonzero. This is for compatibility with old objects, which used
9727 a combination of a 32-bit EF_MIPS_ARCH and a 64-bit EF_MIPS_MACH. */
9728 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == 0)
9729 mips_set_isa_flags (abfd);
9730
b49e97c9
TS
9731 /* Set the sh_info field for .gptab sections and other appropriate
9732 info for each special section. */
9733 for (i = 1, hdrpp = elf_elfsections (abfd) + 1;
9734 i < elf_numsections (abfd);
9735 i++, hdrpp++)
9736 {
9737 switch ((*hdrpp)->sh_type)
9738 {
9739 case SHT_MIPS_MSYM:
9740 case SHT_MIPS_LIBLIST:
9741 sec = bfd_get_section_by_name (abfd, ".dynstr");
9742 if (sec != NULL)
9743 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
9744 break;
9745
9746 case SHT_MIPS_GPTAB:
9747 BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
9748 name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section);
9749 BFD_ASSERT (name != NULL
0112cd26 9750 && CONST_STRNEQ (name, ".gptab."));
b49e97c9
TS
9751 sec = bfd_get_section_by_name (abfd, name + sizeof ".gptab" - 1);
9752 BFD_ASSERT (sec != NULL);
9753 (*hdrpp)->sh_info = elf_section_data (sec)->this_idx;
9754 break;
9755
9756 case SHT_MIPS_CONTENT:
9757 BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
9758 name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section);
9759 BFD_ASSERT (name != NULL
0112cd26 9760 && CONST_STRNEQ (name, ".MIPS.content"));
b49e97c9
TS
9761 sec = bfd_get_section_by_name (abfd,
9762 name + sizeof ".MIPS.content" - 1);
9763 BFD_ASSERT (sec != NULL);
9764 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
9765 break;
9766
9767 case SHT_MIPS_SYMBOL_LIB:
9768 sec = bfd_get_section_by_name (abfd, ".dynsym");
9769 if (sec != NULL)
9770 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
9771 sec = bfd_get_section_by_name (abfd, ".liblist");
9772 if (sec != NULL)
9773 (*hdrpp)->sh_info = elf_section_data (sec)->this_idx;
9774 break;
9775
9776 case SHT_MIPS_EVENTS:
9777 BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
9778 name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section);
9779 BFD_ASSERT (name != NULL);
0112cd26 9780 if (CONST_STRNEQ (name, ".MIPS.events"))
b49e97c9
TS
9781 sec = bfd_get_section_by_name (abfd,
9782 name + sizeof ".MIPS.events" - 1);
9783 else
9784 {
0112cd26 9785 BFD_ASSERT (CONST_STRNEQ (name, ".MIPS.post_rel"));
b49e97c9
TS
9786 sec = bfd_get_section_by_name (abfd,
9787 (name
9788 + sizeof ".MIPS.post_rel" - 1));
9789 }
9790 BFD_ASSERT (sec != NULL);
9791 (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
9792 break;
9793
9794 }
9795 }
9796}
9797\f
8dc1a139 9798/* When creating an IRIX5 executable, we need REGINFO and RTPROC
b49e97c9
TS
9799 segments. */
9800
9801int
a6b96beb
AM
9802_bfd_mips_elf_additional_program_headers (bfd *abfd,
9803 struct bfd_link_info *info ATTRIBUTE_UNUSED)
b49e97c9
TS
9804{
9805 asection *s;
9806 int ret = 0;
9807
9808 /* See if we need a PT_MIPS_REGINFO segment. */
9809 s = bfd_get_section_by_name (abfd, ".reginfo");
9810 if (s && (s->flags & SEC_LOAD))
9811 ++ret;
9812
9813 /* See if we need a PT_MIPS_OPTIONS segment. */
9814 if (IRIX_COMPAT (abfd) == ict_irix6
9815 && bfd_get_section_by_name (abfd,
9816 MIPS_ELF_OPTIONS_SECTION_NAME (abfd)))
9817 ++ret;
9818
9819 /* See if we need a PT_MIPS_RTPROC segment. */
9820 if (IRIX_COMPAT (abfd) == ict_irix5
9821 && bfd_get_section_by_name (abfd, ".dynamic")
9822 && bfd_get_section_by_name (abfd, ".mdebug"))
9823 ++ret;
9824
98c904a8
RS
9825 /* Allocate a PT_NULL header in dynamic objects. See
9826 _bfd_mips_elf_modify_segment_map for details. */
9827 if (!SGI_COMPAT (abfd)
9828 && bfd_get_section_by_name (abfd, ".dynamic"))
9829 ++ret;
9830
b49e97c9
TS
9831 return ret;
9832}
9833
8dc1a139 9834/* Modify the segment map for an IRIX5 executable. */
b49e97c9 9835
b34976b6 9836bfd_boolean
9719ad41 9837_bfd_mips_elf_modify_segment_map (bfd *abfd,
7c8b76cc 9838 struct bfd_link_info *info)
b49e97c9
TS
9839{
9840 asection *s;
9841 struct elf_segment_map *m, **pm;
9842 bfd_size_type amt;
9843
9844 /* If there is a .reginfo section, we need a PT_MIPS_REGINFO
9845 segment. */
9846 s = bfd_get_section_by_name (abfd, ".reginfo");
9847 if (s != NULL && (s->flags & SEC_LOAD) != 0)
9848 {
9849 for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
9850 if (m->p_type == PT_MIPS_REGINFO)
9851 break;
9852 if (m == NULL)
9853 {
9854 amt = sizeof *m;
9719ad41 9855 m = bfd_zalloc (abfd, amt);
b49e97c9 9856 if (m == NULL)
b34976b6 9857 return FALSE;
b49e97c9
TS
9858
9859 m->p_type = PT_MIPS_REGINFO;
9860 m->count = 1;
9861 m->sections[0] = s;
9862
9863 /* We want to put it after the PHDR and INTERP segments. */
9864 pm = &elf_tdata (abfd)->segment_map;
9865 while (*pm != NULL
9866 && ((*pm)->p_type == PT_PHDR
9867 || (*pm)->p_type == PT_INTERP))
9868 pm = &(*pm)->next;
9869
9870 m->next = *pm;
9871 *pm = m;
9872 }
9873 }
9874
9875 /* For IRIX 6, we don't have .mdebug sections, nor does anything but
9876 .dynamic end up in PT_DYNAMIC. However, we do have to insert a
98a8deaf 9877 PT_MIPS_OPTIONS segment immediately following the program header
b49e97c9 9878 table. */
c1fd6598
AO
9879 if (NEWABI_P (abfd)
9880 /* On non-IRIX6 new abi, we'll have already created a segment
9881 for this section, so don't create another. I'm not sure this
9882 is not also the case for IRIX 6, but I can't test it right
9883 now. */
9884 && IRIX_COMPAT (abfd) == ict_irix6)
b49e97c9
TS
9885 {
9886 for (s = abfd->sections; s; s = s->next)
9887 if (elf_section_data (s)->this_hdr.sh_type == SHT_MIPS_OPTIONS)
9888 break;
9889
9890 if (s)
9891 {
9892 struct elf_segment_map *options_segment;
9893
98a8deaf
RS
9894 pm = &elf_tdata (abfd)->segment_map;
9895 while (*pm != NULL
9896 && ((*pm)->p_type == PT_PHDR
9897 || (*pm)->p_type == PT_INTERP))
9898 pm = &(*pm)->next;
b49e97c9 9899
8ded5a0f
AM
9900 if (*pm == NULL || (*pm)->p_type != PT_MIPS_OPTIONS)
9901 {
9902 amt = sizeof (struct elf_segment_map);
9903 options_segment = bfd_zalloc (abfd, amt);
9904 options_segment->next = *pm;
9905 options_segment->p_type = PT_MIPS_OPTIONS;
9906 options_segment->p_flags = PF_R;
9907 options_segment->p_flags_valid = TRUE;
9908 options_segment->count = 1;
9909 options_segment->sections[0] = s;
9910 *pm = options_segment;
9911 }
b49e97c9
TS
9912 }
9913 }
9914 else
9915 {
9916 if (IRIX_COMPAT (abfd) == ict_irix5)
9917 {
9918 /* If there are .dynamic and .mdebug sections, we make a room
9919 for the RTPROC header. FIXME: Rewrite without section names. */
9920 if (bfd_get_section_by_name (abfd, ".interp") == NULL
9921 && bfd_get_section_by_name (abfd, ".dynamic") != NULL
9922 && bfd_get_section_by_name (abfd, ".mdebug") != NULL)
9923 {
9924 for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
9925 if (m->p_type == PT_MIPS_RTPROC)
9926 break;
9927 if (m == NULL)
9928 {
9929 amt = sizeof *m;
9719ad41 9930 m = bfd_zalloc (abfd, amt);
b49e97c9 9931 if (m == NULL)
b34976b6 9932 return FALSE;
b49e97c9
TS
9933
9934 m->p_type = PT_MIPS_RTPROC;
9935
9936 s = bfd_get_section_by_name (abfd, ".rtproc");
9937 if (s == NULL)
9938 {
9939 m->count = 0;
9940 m->p_flags = 0;
9941 m->p_flags_valid = 1;
9942 }
9943 else
9944 {
9945 m->count = 1;
9946 m->sections[0] = s;
9947 }
9948
9949 /* We want to put it after the DYNAMIC segment. */
9950 pm = &elf_tdata (abfd)->segment_map;
9951 while (*pm != NULL && (*pm)->p_type != PT_DYNAMIC)
9952 pm = &(*pm)->next;
9953 if (*pm != NULL)
9954 pm = &(*pm)->next;
9955
9956 m->next = *pm;
9957 *pm = m;
9958 }
9959 }
9960 }
8dc1a139 9961 /* On IRIX5, the PT_DYNAMIC segment includes the .dynamic,
b49e97c9
TS
9962 .dynstr, .dynsym, and .hash sections, and everything in
9963 between. */
9964 for (pm = &elf_tdata (abfd)->segment_map; *pm != NULL;
9965 pm = &(*pm)->next)
9966 if ((*pm)->p_type == PT_DYNAMIC)
9967 break;
9968 m = *pm;
9969 if (m != NULL && IRIX_COMPAT (abfd) == ict_none)
9970 {
9971 /* For a normal mips executable the permissions for the PT_DYNAMIC
9972 segment are read, write and execute. We do that here since
9973 the code in elf.c sets only the read permission. This matters
9974 sometimes for the dynamic linker. */
9975 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
9976 {
9977 m->p_flags = PF_R | PF_W | PF_X;
9978 m->p_flags_valid = 1;
9979 }
9980 }
f6f62d6f
RS
9981 /* GNU/Linux binaries do not need the extended PT_DYNAMIC section.
9982 glibc's dynamic linker has traditionally derived the number of
9983 tags from the p_filesz field, and sometimes allocates stack
9984 arrays of that size. An overly-big PT_DYNAMIC segment can
9985 be actively harmful in such cases. Making PT_DYNAMIC contain
9986 other sections can also make life hard for the prelinker,
9987 which might move one of the other sections to a different
9988 PT_LOAD segment. */
9989 if (SGI_COMPAT (abfd)
9990 && m != NULL
9991 && m->count == 1
9992 && strcmp (m->sections[0]->name, ".dynamic") == 0)
b49e97c9
TS
9993 {
9994 static const char *sec_names[] =
9995 {
9996 ".dynamic", ".dynstr", ".dynsym", ".hash"
9997 };
9998 bfd_vma low, high;
9999 unsigned int i, c;
10000 struct elf_segment_map *n;
10001
792b4a53 10002 low = ~(bfd_vma) 0;
b49e97c9
TS
10003 high = 0;
10004 for (i = 0; i < sizeof sec_names / sizeof sec_names[0]; i++)
10005 {
10006 s = bfd_get_section_by_name (abfd, sec_names[i]);
10007 if (s != NULL && (s->flags & SEC_LOAD) != 0)
10008 {
10009 bfd_size_type sz;
10010
10011 if (low > s->vma)
10012 low = s->vma;
eea6121a 10013 sz = s->size;
b49e97c9
TS
10014 if (high < s->vma + sz)
10015 high = s->vma + sz;
10016 }
10017 }
10018
10019 c = 0;
10020 for (s = abfd->sections; s != NULL; s = s->next)
10021 if ((s->flags & SEC_LOAD) != 0
10022 && s->vma >= low
eea6121a 10023 && s->vma + s->size <= high)
b49e97c9
TS
10024 ++c;
10025
10026 amt = sizeof *n + (bfd_size_type) (c - 1) * sizeof (asection *);
9719ad41 10027 n = bfd_zalloc (abfd, amt);
b49e97c9 10028 if (n == NULL)
b34976b6 10029 return FALSE;
b49e97c9
TS
10030 *n = *m;
10031 n->count = c;
10032
10033 i = 0;
10034 for (s = abfd->sections; s != NULL; s = s->next)
10035 {
10036 if ((s->flags & SEC_LOAD) != 0
10037 && s->vma >= low
eea6121a 10038 && s->vma + s->size <= high)
b49e97c9
TS
10039 {
10040 n->sections[i] = s;
10041 ++i;
10042 }
10043 }
10044
10045 *pm = n;
10046 }
10047 }
10048
98c904a8
RS
10049 /* Allocate a spare program header in dynamic objects so that tools
10050 like the prelinker can add an extra PT_LOAD entry.
10051
10052 If the prelinker needs to make room for a new PT_LOAD entry, its
10053 standard procedure is to move the first (read-only) sections into
10054 the new (writable) segment. However, the MIPS ABI requires
10055 .dynamic to be in a read-only segment, and the section will often
10056 start within sizeof (ElfNN_Phdr) bytes of the last program header.
10057
10058 Although the prelinker could in principle move .dynamic to a
10059 writable segment, it seems better to allocate a spare program
10060 header instead, and avoid the need to move any sections.
10061 There is a long tradition of allocating spare dynamic tags,
10062 so allocating a spare program header seems like a natural
7c8b76cc
JM
10063 extension.
10064
10065 If INFO is NULL, we may be copying an already prelinked binary
10066 with objcopy or strip, so do not add this header. */
10067 if (info != NULL
10068 && !SGI_COMPAT (abfd)
98c904a8
RS
10069 && bfd_get_section_by_name (abfd, ".dynamic"))
10070 {
10071 for (pm = &elf_tdata (abfd)->segment_map; *pm != NULL; pm = &(*pm)->next)
10072 if ((*pm)->p_type == PT_NULL)
10073 break;
10074 if (*pm == NULL)
10075 {
10076 m = bfd_zalloc (abfd, sizeof (*m));
10077 if (m == NULL)
10078 return FALSE;
10079
10080 m->p_type = PT_NULL;
10081 *pm = m;
10082 }
10083 }
10084
b34976b6 10085 return TRUE;
b49e97c9
TS
10086}
10087\f
10088/* Return the section that should be marked against GC for a given
10089 relocation. */
10090
10091asection *
9719ad41 10092_bfd_mips_elf_gc_mark_hook (asection *sec,
07adf181 10093 struct bfd_link_info *info,
9719ad41
RS
10094 Elf_Internal_Rela *rel,
10095 struct elf_link_hash_entry *h,
10096 Elf_Internal_Sym *sym)
b49e97c9
TS
10097{
10098 /* ??? Do mips16 stub sections need to be handled special? */
10099
10100 if (h != NULL)
07adf181
AM
10101 switch (ELF_R_TYPE (sec->owner, rel->r_info))
10102 {
10103 case R_MIPS_GNU_VTINHERIT:
10104 case R_MIPS_GNU_VTENTRY:
10105 return NULL;
10106 }
b49e97c9 10107
07adf181 10108 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
b49e97c9
TS
10109}
10110
10111/* Update the got entry reference counts for the section being removed. */
10112
b34976b6 10113bfd_boolean
9719ad41
RS
10114_bfd_mips_elf_gc_sweep_hook (bfd *abfd ATTRIBUTE_UNUSED,
10115 struct bfd_link_info *info ATTRIBUTE_UNUSED,
10116 asection *sec ATTRIBUTE_UNUSED,
10117 const Elf_Internal_Rela *relocs ATTRIBUTE_UNUSED)
b49e97c9
TS
10118{
10119#if 0
10120 Elf_Internal_Shdr *symtab_hdr;
10121 struct elf_link_hash_entry **sym_hashes;
10122 bfd_signed_vma *local_got_refcounts;
10123 const Elf_Internal_Rela *rel, *relend;
10124 unsigned long r_symndx;
10125 struct elf_link_hash_entry *h;
10126
7dda2462
TG
10127 if (info->relocatable)
10128 return TRUE;
10129
b49e97c9
TS
10130 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
10131 sym_hashes = elf_sym_hashes (abfd);
10132 local_got_refcounts = elf_local_got_refcounts (abfd);
10133
10134 relend = relocs + sec->reloc_count;
10135 for (rel = relocs; rel < relend; rel++)
10136 switch (ELF_R_TYPE (abfd, rel->r_info))
10137 {
738e5348
RS
10138 case R_MIPS16_GOT16:
10139 case R_MIPS16_CALL16:
b49e97c9
TS
10140 case R_MIPS_GOT16:
10141 case R_MIPS_CALL16:
10142 case R_MIPS_CALL_HI16:
10143 case R_MIPS_CALL_LO16:
10144 case R_MIPS_GOT_HI16:
10145 case R_MIPS_GOT_LO16:
4a14403c
TS
10146 case R_MIPS_GOT_DISP:
10147 case R_MIPS_GOT_PAGE:
10148 case R_MIPS_GOT_OFST:
b49e97c9
TS
10149 /* ??? It would seem that the existing MIPS code does no sort
10150 of reference counting or whatnot on its GOT and PLT entries,
10151 so it is not possible to garbage collect them at this time. */
10152 break;
10153
10154 default:
10155 break;
10156 }
10157#endif
10158
b34976b6 10159 return TRUE;
b49e97c9
TS
10160}
10161\f
10162/* Copy data from a MIPS ELF indirect symbol to its direct symbol,
10163 hiding the old indirect symbol. Process additional relocation
10164 information. Also called for weakdefs, in which case we just let
10165 _bfd_elf_link_hash_copy_indirect copy the flags for us. */
10166
10167void
fcfa13d2 10168_bfd_mips_elf_copy_indirect_symbol (struct bfd_link_info *info,
9719ad41
RS
10169 struct elf_link_hash_entry *dir,
10170 struct elf_link_hash_entry *ind)
b49e97c9
TS
10171{
10172 struct mips_elf_link_hash_entry *dirmips, *indmips;
10173
fcfa13d2 10174 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
b49e97c9
TS
10175
10176 if (ind->root.type != bfd_link_hash_indirect)
10177 return;
10178
10179 dirmips = (struct mips_elf_link_hash_entry *) dir;
10180 indmips = (struct mips_elf_link_hash_entry *) ind;
10181 dirmips->possibly_dynamic_relocs += indmips->possibly_dynamic_relocs;
10182 if (indmips->readonly_reloc)
b34976b6 10183 dirmips->readonly_reloc = TRUE;
b49e97c9 10184 if (indmips->no_fn_stub)
b34976b6 10185 dirmips->no_fn_stub = TRUE;
0f20cc35
DJ
10186
10187 if (dirmips->tls_type == 0)
10188 dirmips->tls_type = indmips->tls_type;
b49e97c9
TS
10189}
10190
10191void
9719ad41
RS
10192_bfd_mips_elf_hide_symbol (struct bfd_link_info *info,
10193 struct elf_link_hash_entry *entry,
10194 bfd_boolean force_local)
b49e97c9
TS
10195{
10196 bfd *dynobj;
b49e97c9
TS
10197 struct mips_got_info *g;
10198 struct mips_elf_link_hash_entry *h;
8275b357 10199 struct mips_elf_link_hash_table *htab;
7c5fcef7 10200
b49e97c9 10201 h = (struct mips_elf_link_hash_entry *) entry;
7c5fcef7
L
10202 if (h->forced_local)
10203 return;
4b555070 10204 h->forced_local = force_local;
7c5fcef7 10205
b49e97c9 10206 dynobj = elf_hash_table (info)->dynobj;
8275b357 10207 htab = mips_elf_hash_table (info);
a8028dd0
RS
10208 if (dynobj != NULL
10209 && force_local
10210 && h->root.type != STT_TLS
10211 && htab->got_info != NULL)
f4416af6 10212 {
a8028dd0 10213 g = htab->got_info;
c45a316a
AM
10214 if (g->next)
10215 {
10216 struct mips_got_entry e;
10217 struct mips_got_info *gg = g;
10218
10219 /* Since we're turning what used to be a global symbol into a
10220 local one, bump up the number of local entries of each GOT
10221 that had an entry for it. This will automatically decrease
10222 the number of global entries, since global_gotno is actually
10223 the upper limit of global entries. */
10224 e.abfd = dynobj;
10225 e.symndx = -1;
10226 e.d.h = h;
0f20cc35 10227 e.tls_type = 0;
c45a316a
AM
10228
10229 for (g = g->next; g != gg; g = g->next)
10230 if (htab_find (g->got_entries, &e))
10231 {
10232 BFD_ASSERT (g->global_gotno > 0);
10233 g->local_gotno++;
10234 g->global_gotno--;
10235 }
b49e97c9 10236
c45a316a
AM
10237 /* If this was a global symbol forced into the primary GOT, we
10238 no longer need an entry for it. We can't release the entry
10239 at this point, but we must at least stop counting it as one
10240 of the symbols that required a forced got entry. */
10241 if (h->root.got.offset == 2)
10242 {
10243 BFD_ASSERT (gg->assigned_gotno > 0);
10244 gg->assigned_gotno--;
10245 }
10246 }
c45a316a 10247 else if (h->root.got.offset == 1)
f4416af6 10248 {
8275b357
RS
10249 /* check_relocs didn't know that this symbol would be
10250 forced-local, so add an extra local got entry. */
c45a316a 10251 g->local_gotno++;
8275b357
RS
10252 if (htab->computed_got_sizes)
10253 {
10254 /* We'll have treated this symbol as global rather
10255 than local. */
10256 BFD_ASSERT (g->global_gotno > 0);
10257 g->global_gotno--;
10258 }
f4416af6 10259 }
8275b357
RS
10260 else if (htab->is_vxworks && h->root.needs_plt)
10261 {
10262 /* check_relocs didn't know that this symbol would be
10263 forced-local, so add an extra local got entry. */
10264 g->local_gotno++;
10265 if (htab->computed_got_sizes)
10266 /* The symbol is only used in call relocations, so we'll
10267 have assumed it only needs a .got.plt entry. Increase
10268 the size of .got accordingly. */
a8028dd0 10269 htab->sgot->size += MIPS_ELF_GOT_SIZE (dynobj);
8275b357 10270 }
f4416af6 10271 }
f4416af6
AO
10272
10273 _bfd_elf_link_hash_hide_symbol (info, &h->root, force_local);
b49e97c9
TS
10274}
10275\f
d01414a5
TS
10276#define PDR_SIZE 32
10277
b34976b6 10278bfd_boolean
9719ad41
RS
10279_bfd_mips_elf_discard_info (bfd *abfd, struct elf_reloc_cookie *cookie,
10280 struct bfd_link_info *info)
d01414a5
TS
10281{
10282 asection *o;
b34976b6 10283 bfd_boolean ret = FALSE;
d01414a5
TS
10284 unsigned char *tdata;
10285 size_t i, skip;
10286
10287 o = bfd_get_section_by_name (abfd, ".pdr");
10288 if (! o)
b34976b6 10289 return FALSE;
eea6121a 10290 if (o->size == 0)
b34976b6 10291 return FALSE;
eea6121a 10292 if (o->size % PDR_SIZE != 0)
b34976b6 10293 return FALSE;
d01414a5
TS
10294 if (o->output_section != NULL
10295 && bfd_is_abs_section (o->output_section))
b34976b6 10296 return FALSE;
d01414a5 10297
eea6121a 10298 tdata = bfd_zmalloc (o->size / PDR_SIZE);
d01414a5 10299 if (! tdata)
b34976b6 10300 return FALSE;
d01414a5 10301
9719ad41 10302 cookie->rels = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
45d6a902 10303 info->keep_memory);
d01414a5
TS
10304 if (!cookie->rels)
10305 {
10306 free (tdata);
b34976b6 10307 return FALSE;
d01414a5
TS
10308 }
10309
10310 cookie->rel = cookie->rels;
10311 cookie->relend = cookie->rels + o->reloc_count;
10312
eea6121a 10313 for (i = 0, skip = 0; i < o->size / PDR_SIZE; i ++)
d01414a5 10314 {
c152c796 10315 if (bfd_elf_reloc_symbol_deleted_p (i * PDR_SIZE, cookie))
d01414a5
TS
10316 {
10317 tdata[i] = 1;
10318 skip ++;
10319 }
10320 }
10321
10322 if (skip != 0)
10323 {
f0abc2a1 10324 mips_elf_section_data (o)->u.tdata = tdata;
eea6121a 10325 o->size -= skip * PDR_SIZE;
b34976b6 10326 ret = TRUE;
d01414a5
TS
10327 }
10328 else
10329 free (tdata);
10330
10331 if (! info->keep_memory)
10332 free (cookie->rels);
10333
10334 return ret;
10335}
10336
b34976b6 10337bfd_boolean
9719ad41 10338_bfd_mips_elf_ignore_discarded_relocs (asection *sec)
53bfd6b4
MR
10339{
10340 if (strcmp (sec->name, ".pdr") == 0)
b34976b6
AM
10341 return TRUE;
10342 return FALSE;
53bfd6b4 10343}
d01414a5 10344
b34976b6 10345bfd_boolean
c7b8f16e
JB
10346_bfd_mips_elf_write_section (bfd *output_bfd,
10347 struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
10348 asection *sec, bfd_byte *contents)
d01414a5
TS
10349{
10350 bfd_byte *to, *from, *end;
10351 int i;
10352
10353 if (strcmp (sec->name, ".pdr") != 0)
b34976b6 10354 return FALSE;
d01414a5 10355
f0abc2a1 10356 if (mips_elf_section_data (sec)->u.tdata == NULL)
b34976b6 10357 return FALSE;
d01414a5
TS
10358
10359 to = contents;
eea6121a 10360 end = contents + sec->size;
d01414a5
TS
10361 for (from = contents, i = 0;
10362 from < end;
10363 from += PDR_SIZE, i++)
10364 {
f0abc2a1 10365 if ((mips_elf_section_data (sec)->u.tdata)[i] == 1)
d01414a5
TS
10366 continue;
10367 if (to != from)
10368 memcpy (to, from, PDR_SIZE);
10369 to += PDR_SIZE;
10370 }
10371 bfd_set_section_contents (output_bfd, sec->output_section, contents,
eea6121a 10372 sec->output_offset, sec->size);
b34976b6 10373 return TRUE;
d01414a5 10374}
53bfd6b4 10375\f
b49e97c9
TS
10376/* MIPS ELF uses a special find_nearest_line routine in order the
10377 handle the ECOFF debugging information. */
10378
10379struct mips_elf_find_line
10380{
10381 struct ecoff_debug_info d;
10382 struct ecoff_find_line i;
10383};
10384
b34976b6 10385bfd_boolean
9719ad41
RS
10386_bfd_mips_elf_find_nearest_line (bfd *abfd, asection *section,
10387 asymbol **symbols, bfd_vma offset,
10388 const char **filename_ptr,
10389 const char **functionname_ptr,
10390 unsigned int *line_ptr)
b49e97c9
TS
10391{
10392 asection *msec;
10393
10394 if (_bfd_dwarf1_find_nearest_line (abfd, section, symbols, offset,
10395 filename_ptr, functionname_ptr,
10396 line_ptr))
b34976b6 10397 return TRUE;
b49e97c9
TS
10398
10399 if (_bfd_dwarf2_find_nearest_line (abfd, section, symbols, offset,
10400 filename_ptr, functionname_ptr,
9719ad41 10401 line_ptr, ABI_64_P (abfd) ? 8 : 0,
b49e97c9 10402 &elf_tdata (abfd)->dwarf2_find_line_info))
b34976b6 10403 return TRUE;
b49e97c9
TS
10404
10405 msec = bfd_get_section_by_name (abfd, ".mdebug");
10406 if (msec != NULL)
10407 {
10408 flagword origflags;
10409 struct mips_elf_find_line *fi;
10410 const struct ecoff_debug_swap * const swap =
10411 get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
10412
10413 /* If we are called during a link, mips_elf_final_link may have
10414 cleared the SEC_HAS_CONTENTS field. We force it back on here
10415 if appropriate (which it normally will be). */
10416 origflags = msec->flags;
10417 if (elf_section_data (msec)->this_hdr.sh_type != SHT_NOBITS)
10418 msec->flags |= SEC_HAS_CONTENTS;
10419
10420 fi = elf_tdata (abfd)->find_line_info;
10421 if (fi == NULL)
10422 {
10423 bfd_size_type external_fdr_size;
10424 char *fraw_src;
10425 char *fraw_end;
10426 struct fdr *fdr_ptr;
10427 bfd_size_type amt = sizeof (struct mips_elf_find_line);
10428
9719ad41 10429 fi = bfd_zalloc (abfd, amt);
b49e97c9
TS
10430 if (fi == NULL)
10431 {
10432 msec->flags = origflags;
b34976b6 10433 return FALSE;
b49e97c9
TS
10434 }
10435
10436 if (! _bfd_mips_elf_read_ecoff_info (abfd, msec, &fi->d))
10437 {
10438 msec->flags = origflags;
b34976b6 10439 return FALSE;
b49e97c9
TS
10440 }
10441
10442 /* Swap in the FDR information. */
10443 amt = fi->d.symbolic_header.ifdMax * sizeof (struct fdr);
9719ad41 10444 fi->d.fdr = bfd_alloc (abfd, amt);
b49e97c9
TS
10445 if (fi->d.fdr == NULL)
10446 {
10447 msec->flags = origflags;
b34976b6 10448 return FALSE;
b49e97c9
TS
10449 }
10450 external_fdr_size = swap->external_fdr_size;
10451 fdr_ptr = fi->d.fdr;
10452 fraw_src = (char *) fi->d.external_fdr;
10453 fraw_end = (fraw_src
10454 + fi->d.symbolic_header.ifdMax * external_fdr_size);
10455 for (; fraw_src < fraw_end; fraw_src += external_fdr_size, fdr_ptr++)
9719ad41 10456 (*swap->swap_fdr_in) (abfd, fraw_src, fdr_ptr);
b49e97c9
TS
10457
10458 elf_tdata (abfd)->find_line_info = fi;
10459
10460 /* Note that we don't bother to ever free this information.
10461 find_nearest_line is either called all the time, as in
10462 objdump -l, so the information should be saved, or it is
10463 rarely called, as in ld error messages, so the memory
10464 wasted is unimportant. Still, it would probably be a
10465 good idea for free_cached_info to throw it away. */
10466 }
10467
10468 if (_bfd_ecoff_locate_line (abfd, section, offset, &fi->d, swap,
10469 &fi->i, filename_ptr, functionname_ptr,
10470 line_ptr))
10471 {
10472 msec->flags = origflags;
b34976b6 10473 return TRUE;
b49e97c9
TS
10474 }
10475
10476 msec->flags = origflags;
10477 }
10478
10479 /* Fall back on the generic ELF find_nearest_line routine. */
10480
10481 return _bfd_elf_find_nearest_line (abfd, section, symbols, offset,
10482 filename_ptr, functionname_ptr,
10483 line_ptr);
10484}
4ab527b0
FF
10485
10486bfd_boolean
10487_bfd_mips_elf_find_inliner_info (bfd *abfd,
10488 const char **filename_ptr,
10489 const char **functionname_ptr,
10490 unsigned int *line_ptr)
10491{
10492 bfd_boolean found;
10493 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
10494 functionname_ptr, line_ptr,
10495 & elf_tdata (abfd)->dwarf2_find_line_info);
10496 return found;
10497}
10498
b49e97c9
TS
10499\f
10500/* When are writing out the .options or .MIPS.options section,
10501 remember the bytes we are writing out, so that we can install the
10502 GP value in the section_processing routine. */
10503
b34976b6 10504bfd_boolean
9719ad41
RS
10505_bfd_mips_elf_set_section_contents (bfd *abfd, sec_ptr section,
10506 const void *location,
10507 file_ptr offset, bfd_size_type count)
b49e97c9 10508{
cc2e31b9 10509 if (MIPS_ELF_OPTIONS_SECTION_NAME_P (section->name))
b49e97c9
TS
10510 {
10511 bfd_byte *c;
10512
10513 if (elf_section_data (section) == NULL)
10514 {
10515 bfd_size_type amt = sizeof (struct bfd_elf_section_data);
9719ad41 10516 section->used_by_bfd = bfd_zalloc (abfd, amt);
b49e97c9 10517 if (elf_section_data (section) == NULL)
b34976b6 10518 return FALSE;
b49e97c9 10519 }
f0abc2a1 10520 c = mips_elf_section_data (section)->u.tdata;
b49e97c9
TS
10521 if (c == NULL)
10522 {
eea6121a 10523 c = bfd_zalloc (abfd, section->size);
b49e97c9 10524 if (c == NULL)
b34976b6 10525 return FALSE;
f0abc2a1 10526 mips_elf_section_data (section)->u.tdata = c;
b49e97c9
TS
10527 }
10528
9719ad41 10529 memcpy (c + offset, location, count);
b49e97c9
TS
10530 }
10531
10532 return _bfd_elf_set_section_contents (abfd, section, location, offset,
10533 count);
10534}
10535
10536/* This is almost identical to bfd_generic_get_... except that some
10537 MIPS relocations need to be handled specially. Sigh. */
10538
10539bfd_byte *
9719ad41
RS
10540_bfd_elf_mips_get_relocated_section_contents
10541 (bfd *abfd,
10542 struct bfd_link_info *link_info,
10543 struct bfd_link_order *link_order,
10544 bfd_byte *data,
10545 bfd_boolean relocatable,
10546 asymbol **symbols)
b49e97c9
TS
10547{
10548 /* Get enough memory to hold the stuff */
10549 bfd *input_bfd = link_order->u.indirect.section->owner;
10550 asection *input_section = link_order->u.indirect.section;
eea6121a 10551 bfd_size_type sz;
b49e97c9
TS
10552
10553 long reloc_size = bfd_get_reloc_upper_bound (input_bfd, input_section);
10554 arelent **reloc_vector = NULL;
10555 long reloc_count;
10556
10557 if (reloc_size < 0)
10558 goto error_return;
10559
9719ad41 10560 reloc_vector = bfd_malloc (reloc_size);
b49e97c9
TS
10561 if (reloc_vector == NULL && reloc_size != 0)
10562 goto error_return;
10563
10564 /* read in the section */
eea6121a
AM
10565 sz = input_section->rawsize ? input_section->rawsize : input_section->size;
10566 if (!bfd_get_section_contents (input_bfd, input_section, data, 0, sz))
b49e97c9
TS
10567 goto error_return;
10568
b49e97c9
TS
10569 reloc_count = bfd_canonicalize_reloc (input_bfd,
10570 input_section,
10571 reloc_vector,
10572 symbols);
10573 if (reloc_count < 0)
10574 goto error_return;
10575
10576 if (reloc_count > 0)
10577 {
10578 arelent **parent;
10579 /* for mips */
10580 int gp_found;
10581 bfd_vma gp = 0x12345678; /* initialize just to shut gcc up */
10582
10583 {
10584 struct bfd_hash_entry *h;
10585 struct bfd_link_hash_entry *lh;
10586 /* Skip all this stuff if we aren't mixing formats. */
10587 if (abfd && input_bfd
10588 && abfd->xvec == input_bfd->xvec)
10589 lh = 0;
10590 else
10591 {
b34976b6 10592 h = bfd_hash_lookup (&link_info->hash->table, "_gp", FALSE, FALSE);
b49e97c9
TS
10593 lh = (struct bfd_link_hash_entry *) h;
10594 }
10595 lookup:
10596 if (lh)
10597 {
10598 switch (lh->type)
10599 {
10600 case bfd_link_hash_undefined:
10601 case bfd_link_hash_undefweak:
10602 case bfd_link_hash_common:
10603 gp_found = 0;
10604 break;
10605 case bfd_link_hash_defined:
10606 case bfd_link_hash_defweak:
10607 gp_found = 1;
10608 gp = lh->u.def.value;
10609 break;
10610 case bfd_link_hash_indirect:
10611 case bfd_link_hash_warning:
10612 lh = lh->u.i.link;
10613 /* @@FIXME ignoring warning for now */
10614 goto lookup;
10615 case bfd_link_hash_new:
10616 default:
10617 abort ();
10618 }
10619 }
10620 else
10621 gp_found = 0;
10622 }
10623 /* end mips */
9719ad41 10624 for (parent = reloc_vector; *parent != NULL; parent++)
b49e97c9 10625 {
9719ad41 10626 char *error_message = NULL;
b49e97c9
TS
10627 bfd_reloc_status_type r;
10628
10629 /* Specific to MIPS: Deal with relocation types that require
10630 knowing the gp of the output bfd. */
10631 asymbol *sym = *(*parent)->sym_ptr_ptr;
b49e97c9 10632
8236346f
EC
10633 /* If we've managed to find the gp and have a special
10634 function for the relocation then go ahead, else default
10635 to the generic handling. */
10636 if (gp_found
10637 && (*parent)->howto->special_function
10638 == _bfd_mips_elf32_gprel16_reloc)
10639 r = _bfd_mips_elf_gprel16_with_gp (input_bfd, sym, *parent,
10640 input_section, relocatable,
10641 data, gp);
10642 else
86324f90 10643 r = bfd_perform_relocation (input_bfd, *parent, data,
8236346f
EC
10644 input_section,
10645 relocatable ? abfd : NULL,
10646 &error_message);
b49e97c9 10647
1049f94e 10648 if (relocatable)
b49e97c9
TS
10649 {
10650 asection *os = input_section->output_section;
10651
10652 /* A partial link, so keep the relocs */
10653 os->orelocation[os->reloc_count] = *parent;
10654 os->reloc_count++;
10655 }
10656
10657 if (r != bfd_reloc_ok)
10658 {
10659 switch (r)
10660 {
10661 case bfd_reloc_undefined:
10662 if (!((*link_info->callbacks->undefined_symbol)
10663 (link_info, bfd_asymbol_name (*(*parent)->sym_ptr_ptr),
5e2b0d47 10664 input_bfd, input_section, (*parent)->address, TRUE)))
b49e97c9
TS
10665 goto error_return;
10666 break;
10667 case bfd_reloc_dangerous:
9719ad41 10668 BFD_ASSERT (error_message != NULL);
b49e97c9
TS
10669 if (!((*link_info->callbacks->reloc_dangerous)
10670 (link_info, error_message, input_bfd, input_section,
10671 (*parent)->address)))
10672 goto error_return;
10673 break;
10674 case bfd_reloc_overflow:
10675 if (!((*link_info->callbacks->reloc_overflow)
dfeffb9f
L
10676 (link_info, NULL,
10677 bfd_asymbol_name (*(*parent)->sym_ptr_ptr),
b49e97c9
TS
10678 (*parent)->howto->name, (*parent)->addend,
10679 input_bfd, input_section, (*parent)->address)))
10680 goto error_return;
10681 break;
10682 case bfd_reloc_outofrange:
10683 default:
10684 abort ();
10685 break;
10686 }
10687
10688 }
10689 }
10690 }
10691 if (reloc_vector != NULL)
10692 free (reloc_vector);
10693 return data;
10694
10695error_return:
10696 if (reloc_vector != NULL)
10697 free (reloc_vector);
10698 return NULL;
10699}
10700\f
10701/* Create a MIPS ELF linker hash table. */
10702
10703struct bfd_link_hash_table *
9719ad41 10704_bfd_mips_elf_link_hash_table_create (bfd *abfd)
b49e97c9
TS
10705{
10706 struct mips_elf_link_hash_table *ret;
10707 bfd_size_type amt = sizeof (struct mips_elf_link_hash_table);
10708
9719ad41
RS
10709 ret = bfd_malloc (amt);
10710 if (ret == NULL)
b49e97c9
TS
10711 return NULL;
10712
66eb6687
AM
10713 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
10714 mips_elf_link_hash_newfunc,
10715 sizeof (struct mips_elf_link_hash_entry)))
b49e97c9 10716 {
e2d34d7d 10717 free (ret);
b49e97c9
TS
10718 return NULL;
10719 }
10720
10721#if 0
10722 /* We no longer use this. */
10723 for (i = 0; i < SIZEOF_MIPS_DYNSYM_SECNAMES; i++)
10724 ret->dynsym_sec_strindex[i] = (bfd_size_type) -1;
10725#endif
10726 ret->procedure_count = 0;
10727 ret->compact_rel_size = 0;
b34976b6 10728 ret->use_rld_obj_head = FALSE;
b49e97c9 10729 ret->rld_value = 0;
b34976b6 10730 ret->mips16_stubs_seen = FALSE;
8275b357 10731 ret->computed_got_sizes = FALSE;
0a44bf69 10732 ret->is_vxworks = FALSE;
0e53d9da 10733 ret->small_data_overflow_reported = FALSE;
0a44bf69
RS
10734 ret->srelbss = NULL;
10735 ret->sdynbss = NULL;
10736 ret->srelplt = NULL;
10737 ret->srelplt2 = NULL;
10738 ret->sgotplt = NULL;
10739 ret->splt = NULL;
4e41d0d7 10740 ret->sstubs = NULL;
a8028dd0
RS
10741 ret->sgot = NULL;
10742 ret->got_info = NULL;
0a44bf69
RS
10743 ret->plt_header_size = 0;
10744 ret->plt_entry_size = 0;
5108fc1b 10745 ret->function_stub_size = 0;
b49e97c9
TS
10746
10747 return &ret->root.root;
10748}
0a44bf69
RS
10749
10750/* Likewise, but indicate that the target is VxWorks. */
10751
10752struct bfd_link_hash_table *
10753_bfd_mips_vxworks_link_hash_table_create (bfd *abfd)
10754{
10755 struct bfd_link_hash_table *ret;
10756
10757 ret = _bfd_mips_elf_link_hash_table_create (abfd);
10758 if (ret)
10759 {
10760 struct mips_elf_link_hash_table *htab;
10761
10762 htab = (struct mips_elf_link_hash_table *) ret;
10763 htab->is_vxworks = 1;
10764 }
10765 return ret;
10766}
b49e97c9
TS
10767\f
10768/* We need to use a special link routine to handle the .reginfo and
10769 the .mdebug sections. We need to merge all instances of these
10770 sections together, not write them all out sequentially. */
10771
b34976b6 10772bfd_boolean
9719ad41 10773_bfd_mips_elf_final_link (bfd *abfd, struct bfd_link_info *info)
b49e97c9 10774{
b49e97c9
TS
10775 asection *o;
10776 struct bfd_link_order *p;
10777 asection *reginfo_sec, *mdebug_sec, *gptab_data_sec, *gptab_bss_sec;
10778 asection *rtproc_sec;
10779 Elf32_RegInfo reginfo;
10780 struct ecoff_debug_info debug;
7a2a6943
NC
10781 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10782 const struct ecoff_debug_swap *swap = bed->elf_backend_ecoff_debug_swap;
b49e97c9 10783 HDRR *symhdr = &debug.symbolic_header;
9719ad41 10784 void *mdebug_handle = NULL;
b49e97c9
TS
10785 asection *s;
10786 EXTR esym;
10787 unsigned int i;
10788 bfd_size_type amt;
0a44bf69 10789 struct mips_elf_link_hash_table *htab;
b49e97c9
TS
10790
10791 static const char * const secname[] =
10792 {
10793 ".text", ".init", ".fini", ".data",
10794 ".rodata", ".sdata", ".sbss", ".bss"
10795 };
10796 static const int sc[] =
10797 {
10798 scText, scInit, scFini, scData,
10799 scRData, scSData, scSBss, scBss
10800 };
10801
b49e97c9
TS
10802 /* We'd carefully arranged the dynamic symbol indices, and then the
10803 generic size_dynamic_sections renumbered them out from under us.
10804 Rather than trying somehow to prevent the renumbering, just do
10805 the sort again. */
0a44bf69 10806 htab = mips_elf_hash_table (info);
b49e97c9
TS
10807 if (elf_hash_table (info)->dynamic_sections_created)
10808 {
b49e97c9 10809 struct mips_got_info *g;
7a2a6943 10810 bfd_size_type dynsecsymcount;
b49e97c9
TS
10811
10812 /* When we resort, we must tell mips_elf_sort_hash_table what
10813 the lowest index it may use is. That's the number of section
10814 symbols we're going to add. The generic ELF linker only
10815 adds these symbols when building a shared object. Note that
10816 we count the sections after (possibly) removing the .options
10817 section above. */
7a2a6943 10818
5108fc1b 10819 dynsecsymcount = count_section_dynsyms (abfd, info);
7a2a6943 10820 if (! mips_elf_sort_hash_table (info, dynsecsymcount + 1))
b34976b6 10821 return FALSE;
b49e97c9
TS
10822
10823 /* Make sure we didn't grow the global .got region. */
a8028dd0 10824 g = htab->got_info;
b49e97c9
TS
10825 if (g->global_gotsym != NULL)
10826 BFD_ASSERT ((elf_hash_table (info)->dynsymcount
10827 - g->global_gotsym->dynindx)
10828 <= g->global_gotno);
10829 }
10830
b49e97c9
TS
10831 /* Get a value for the GP register. */
10832 if (elf_gp (abfd) == 0)
10833 {
10834 struct bfd_link_hash_entry *h;
10835
b34976b6 10836 h = bfd_link_hash_lookup (info->hash, "_gp", FALSE, FALSE, TRUE);
9719ad41 10837 if (h != NULL && h->type == bfd_link_hash_defined)
b49e97c9
TS
10838 elf_gp (abfd) = (h->u.def.value
10839 + h->u.def.section->output_section->vma
10840 + h->u.def.section->output_offset);
0a44bf69
RS
10841 else if (htab->is_vxworks
10842 && (h = bfd_link_hash_lookup (info->hash,
10843 "_GLOBAL_OFFSET_TABLE_",
10844 FALSE, FALSE, TRUE))
10845 && h->type == bfd_link_hash_defined)
10846 elf_gp (abfd) = (h->u.def.section->output_section->vma
10847 + h->u.def.section->output_offset
10848 + h->u.def.value);
1049f94e 10849 else if (info->relocatable)
b49e97c9
TS
10850 {
10851 bfd_vma lo = MINUS_ONE;
10852
10853 /* Find the GP-relative section with the lowest offset. */
9719ad41 10854 for (o = abfd->sections; o != NULL; o = o->next)
b49e97c9
TS
10855 if (o->vma < lo
10856 && (elf_section_data (o)->this_hdr.sh_flags & SHF_MIPS_GPREL))
10857 lo = o->vma;
10858
10859 /* And calculate GP relative to that. */
0a44bf69 10860 elf_gp (abfd) = lo + ELF_MIPS_GP_OFFSET (info);
b49e97c9
TS
10861 }
10862 else
10863 {
10864 /* If the relocate_section function needs to do a reloc
10865 involving the GP value, it should make a reloc_dangerous
10866 callback to warn that GP is not defined. */
10867 }
10868 }
10869
10870 /* Go through the sections and collect the .reginfo and .mdebug
10871 information. */
10872 reginfo_sec = NULL;
10873 mdebug_sec = NULL;
10874 gptab_data_sec = NULL;
10875 gptab_bss_sec = NULL;
9719ad41 10876 for (o = abfd->sections; o != NULL; o = o->next)
b49e97c9
TS
10877 {
10878 if (strcmp (o->name, ".reginfo") == 0)
10879 {
10880 memset (&reginfo, 0, sizeof reginfo);
10881
10882 /* We have found the .reginfo section in the output file.
10883 Look through all the link_orders comprising it and merge
10884 the information together. */
8423293d 10885 for (p = o->map_head.link_order; p != NULL; p = p->next)
b49e97c9
TS
10886 {
10887 asection *input_section;
10888 bfd *input_bfd;
10889 Elf32_External_RegInfo ext;
10890 Elf32_RegInfo sub;
10891
10892 if (p->type != bfd_indirect_link_order)
10893 {
10894 if (p->type == bfd_data_link_order)
10895 continue;
10896 abort ();
10897 }
10898
10899 input_section = p->u.indirect.section;
10900 input_bfd = input_section->owner;
10901
b49e97c9 10902 if (! bfd_get_section_contents (input_bfd, input_section,
9719ad41 10903 &ext, 0, sizeof ext))
b34976b6 10904 return FALSE;
b49e97c9
TS
10905
10906 bfd_mips_elf32_swap_reginfo_in (input_bfd, &ext, &sub);
10907
10908 reginfo.ri_gprmask |= sub.ri_gprmask;
10909 reginfo.ri_cprmask[0] |= sub.ri_cprmask[0];
10910 reginfo.ri_cprmask[1] |= sub.ri_cprmask[1];
10911 reginfo.ri_cprmask[2] |= sub.ri_cprmask[2];
10912 reginfo.ri_cprmask[3] |= sub.ri_cprmask[3];
10913
10914 /* ri_gp_value is set by the function
10915 mips_elf32_section_processing when the section is
10916 finally written out. */
10917
10918 /* Hack: reset the SEC_HAS_CONTENTS flag so that
10919 elf_link_input_bfd ignores this section. */
10920 input_section->flags &= ~SEC_HAS_CONTENTS;
10921 }
10922
10923 /* Size has been set in _bfd_mips_elf_always_size_sections. */
eea6121a 10924 BFD_ASSERT(o->size == sizeof (Elf32_External_RegInfo));
b49e97c9
TS
10925
10926 /* Skip this section later on (I don't think this currently
10927 matters, but someday it might). */
8423293d 10928 o->map_head.link_order = NULL;
b49e97c9
TS
10929
10930 reginfo_sec = o;
10931 }
10932
10933 if (strcmp (o->name, ".mdebug") == 0)
10934 {
10935 struct extsym_info einfo;
10936 bfd_vma last;
10937
10938 /* We have found the .mdebug section in the output file.
10939 Look through all the link_orders comprising it and merge
10940 the information together. */
10941 symhdr->magic = swap->sym_magic;
10942 /* FIXME: What should the version stamp be? */
10943 symhdr->vstamp = 0;
10944 symhdr->ilineMax = 0;
10945 symhdr->cbLine = 0;
10946 symhdr->idnMax = 0;
10947 symhdr->ipdMax = 0;
10948 symhdr->isymMax = 0;
10949 symhdr->ioptMax = 0;
10950 symhdr->iauxMax = 0;
10951 symhdr->issMax = 0;
10952 symhdr->issExtMax = 0;
10953 symhdr->ifdMax = 0;
10954 symhdr->crfd = 0;
10955 symhdr->iextMax = 0;
10956
10957 /* We accumulate the debugging information itself in the
10958 debug_info structure. */
10959 debug.line = NULL;
10960 debug.external_dnr = NULL;
10961 debug.external_pdr = NULL;
10962 debug.external_sym = NULL;
10963 debug.external_opt = NULL;
10964 debug.external_aux = NULL;
10965 debug.ss = NULL;
10966 debug.ssext = debug.ssext_end = NULL;
10967 debug.external_fdr = NULL;
10968 debug.external_rfd = NULL;
10969 debug.external_ext = debug.external_ext_end = NULL;
10970
10971 mdebug_handle = bfd_ecoff_debug_init (abfd, &debug, swap, info);
9719ad41 10972 if (mdebug_handle == NULL)
b34976b6 10973 return FALSE;
b49e97c9
TS
10974
10975 esym.jmptbl = 0;
10976 esym.cobol_main = 0;
10977 esym.weakext = 0;
10978 esym.reserved = 0;
10979 esym.ifd = ifdNil;
10980 esym.asym.iss = issNil;
10981 esym.asym.st = stLocal;
10982 esym.asym.reserved = 0;
10983 esym.asym.index = indexNil;
10984 last = 0;
10985 for (i = 0; i < sizeof (secname) / sizeof (secname[0]); i++)
10986 {
10987 esym.asym.sc = sc[i];
10988 s = bfd_get_section_by_name (abfd, secname[i]);
10989 if (s != NULL)
10990 {
10991 esym.asym.value = s->vma;
eea6121a 10992 last = s->vma + s->size;
b49e97c9
TS
10993 }
10994 else
10995 esym.asym.value = last;
10996 if (!bfd_ecoff_debug_one_external (abfd, &debug, swap,
10997 secname[i], &esym))
b34976b6 10998 return FALSE;
b49e97c9
TS
10999 }
11000
8423293d 11001 for (p = o->map_head.link_order; p != NULL; p = p->next)
b49e97c9
TS
11002 {
11003 asection *input_section;
11004 bfd *input_bfd;
11005 const struct ecoff_debug_swap *input_swap;
11006 struct ecoff_debug_info input_debug;
11007 char *eraw_src;
11008 char *eraw_end;
11009
11010 if (p->type != bfd_indirect_link_order)
11011 {
11012 if (p->type == bfd_data_link_order)
11013 continue;
11014 abort ();
11015 }
11016
11017 input_section = p->u.indirect.section;
11018 input_bfd = input_section->owner;
11019
11020 if (bfd_get_flavour (input_bfd) != bfd_target_elf_flavour
11021 || (get_elf_backend_data (input_bfd)
11022 ->elf_backend_ecoff_debug_swap) == NULL)
11023 {
11024 /* I don't know what a non MIPS ELF bfd would be
11025 doing with a .mdebug section, but I don't really
11026 want to deal with it. */
11027 continue;
11028 }
11029
11030 input_swap = (get_elf_backend_data (input_bfd)
11031 ->elf_backend_ecoff_debug_swap);
11032
eea6121a 11033 BFD_ASSERT (p->size == input_section->size);
b49e97c9
TS
11034
11035 /* The ECOFF linking code expects that we have already
11036 read in the debugging information and set up an
11037 ecoff_debug_info structure, so we do that now. */
11038 if (! _bfd_mips_elf_read_ecoff_info (input_bfd, input_section,
11039 &input_debug))
b34976b6 11040 return FALSE;
b49e97c9
TS
11041
11042 if (! (bfd_ecoff_debug_accumulate
11043 (mdebug_handle, abfd, &debug, swap, input_bfd,
11044 &input_debug, input_swap, info)))
b34976b6 11045 return FALSE;
b49e97c9
TS
11046
11047 /* Loop through the external symbols. For each one with
11048 interesting information, try to find the symbol in
11049 the linker global hash table and save the information
11050 for the output external symbols. */
11051 eraw_src = input_debug.external_ext;
11052 eraw_end = (eraw_src
11053 + (input_debug.symbolic_header.iextMax
11054 * input_swap->external_ext_size));
11055 for (;
11056 eraw_src < eraw_end;
11057 eraw_src += input_swap->external_ext_size)
11058 {
11059 EXTR ext;
11060 const char *name;
11061 struct mips_elf_link_hash_entry *h;
11062
9719ad41 11063 (*input_swap->swap_ext_in) (input_bfd, eraw_src, &ext);
b49e97c9
TS
11064 if (ext.asym.sc == scNil
11065 || ext.asym.sc == scUndefined
11066 || ext.asym.sc == scSUndefined)
11067 continue;
11068
11069 name = input_debug.ssext + ext.asym.iss;
11070 h = mips_elf_link_hash_lookup (mips_elf_hash_table (info),
b34976b6 11071 name, FALSE, FALSE, TRUE);
b49e97c9
TS
11072 if (h == NULL || h->esym.ifd != -2)
11073 continue;
11074
11075 if (ext.ifd != -1)
11076 {
11077 BFD_ASSERT (ext.ifd
11078 < input_debug.symbolic_header.ifdMax);
11079 ext.ifd = input_debug.ifdmap[ext.ifd];
11080 }
11081
11082 h->esym = ext;
11083 }
11084
11085 /* Free up the information we just read. */
11086 free (input_debug.line);
11087 free (input_debug.external_dnr);
11088 free (input_debug.external_pdr);
11089 free (input_debug.external_sym);
11090 free (input_debug.external_opt);
11091 free (input_debug.external_aux);
11092 free (input_debug.ss);
11093 free (input_debug.ssext);
11094 free (input_debug.external_fdr);
11095 free (input_debug.external_rfd);
11096 free (input_debug.external_ext);
11097
11098 /* Hack: reset the SEC_HAS_CONTENTS flag so that
11099 elf_link_input_bfd ignores this section. */
11100 input_section->flags &= ~SEC_HAS_CONTENTS;
11101 }
11102
11103 if (SGI_COMPAT (abfd) && info->shared)
11104 {
11105 /* Create .rtproc section. */
11106 rtproc_sec = bfd_get_section_by_name (abfd, ".rtproc");
11107 if (rtproc_sec == NULL)
11108 {
11109 flagword flags = (SEC_HAS_CONTENTS | SEC_IN_MEMORY
11110 | SEC_LINKER_CREATED | SEC_READONLY);
11111
3496cb2a
L
11112 rtproc_sec = bfd_make_section_with_flags (abfd,
11113 ".rtproc",
11114 flags);
b49e97c9 11115 if (rtproc_sec == NULL
b49e97c9 11116 || ! bfd_set_section_alignment (abfd, rtproc_sec, 4))
b34976b6 11117 return FALSE;
b49e97c9
TS
11118 }
11119
11120 if (! mips_elf_create_procedure_table (mdebug_handle, abfd,
11121 info, rtproc_sec,
11122 &debug))
b34976b6 11123 return FALSE;
b49e97c9
TS
11124 }
11125
11126 /* Build the external symbol information. */
11127 einfo.abfd = abfd;
11128 einfo.info = info;
11129 einfo.debug = &debug;
11130 einfo.swap = swap;
b34976b6 11131 einfo.failed = FALSE;
b49e97c9 11132 mips_elf_link_hash_traverse (mips_elf_hash_table (info),
9719ad41 11133 mips_elf_output_extsym, &einfo);
b49e97c9 11134 if (einfo.failed)
b34976b6 11135 return FALSE;
b49e97c9
TS
11136
11137 /* Set the size of the .mdebug section. */
eea6121a 11138 o->size = bfd_ecoff_debug_size (abfd, &debug, swap);
b49e97c9
TS
11139
11140 /* Skip this section later on (I don't think this currently
11141 matters, but someday it might). */
8423293d 11142 o->map_head.link_order = NULL;
b49e97c9
TS
11143
11144 mdebug_sec = o;
11145 }
11146
0112cd26 11147 if (CONST_STRNEQ (o->name, ".gptab."))
b49e97c9
TS
11148 {
11149 const char *subname;
11150 unsigned int c;
11151 Elf32_gptab *tab;
11152 Elf32_External_gptab *ext_tab;
11153 unsigned int j;
11154
11155 /* The .gptab.sdata and .gptab.sbss sections hold
11156 information describing how the small data area would
11157 change depending upon the -G switch. These sections
11158 not used in executables files. */
1049f94e 11159 if (! info->relocatable)
b49e97c9 11160 {
8423293d 11161 for (p = o->map_head.link_order; p != NULL; p = p->next)
b49e97c9
TS
11162 {
11163 asection *input_section;
11164
11165 if (p->type != bfd_indirect_link_order)
11166 {
11167 if (p->type == bfd_data_link_order)
11168 continue;
11169 abort ();
11170 }
11171
11172 input_section = p->u.indirect.section;
11173
11174 /* Hack: reset the SEC_HAS_CONTENTS flag so that
11175 elf_link_input_bfd ignores this section. */
11176 input_section->flags &= ~SEC_HAS_CONTENTS;
11177 }
11178
11179 /* Skip this section later on (I don't think this
11180 currently matters, but someday it might). */
8423293d 11181 o->map_head.link_order = NULL;
b49e97c9
TS
11182
11183 /* Really remove the section. */
5daa8fe7 11184 bfd_section_list_remove (abfd, o);
b49e97c9
TS
11185 --abfd->section_count;
11186
11187 continue;
11188 }
11189
11190 /* There is one gptab for initialized data, and one for
11191 uninitialized data. */
11192 if (strcmp (o->name, ".gptab.sdata") == 0)
11193 gptab_data_sec = o;
11194 else if (strcmp (o->name, ".gptab.sbss") == 0)
11195 gptab_bss_sec = o;
11196 else
11197 {
11198 (*_bfd_error_handler)
11199 (_("%s: illegal section name `%s'"),
11200 bfd_get_filename (abfd), o->name);
11201 bfd_set_error (bfd_error_nonrepresentable_section);
b34976b6 11202 return FALSE;
b49e97c9
TS
11203 }
11204
11205 /* The linker script always combines .gptab.data and
11206 .gptab.sdata into .gptab.sdata, and likewise for
11207 .gptab.bss and .gptab.sbss. It is possible that there is
11208 no .sdata or .sbss section in the output file, in which
11209 case we must change the name of the output section. */
11210 subname = o->name + sizeof ".gptab" - 1;
11211 if (bfd_get_section_by_name (abfd, subname) == NULL)
11212 {
11213 if (o == gptab_data_sec)
11214 o->name = ".gptab.data";
11215 else
11216 o->name = ".gptab.bss";
11217 subname = o->name + sizeof ".gptab" - 1;
11218 BFD_ASSERT (bfd_get_section_by_name (abfd, subname) != NULL);
11219 }
11220
11221 /* Set up the first entry. */
11222 c = 1;
11223 amt = c * sizeof (Elf32_gptab);
9719ad41 11224 tab = bfd_malloc (amt);
b49e97c9 11225 if (tab == NULL)
b34976b6 11226 return FALSE;
b49e97c9
TS
11227 tab[0].gt_header.gt_current_g_value = elf_gp_size (abfd);
11228 tab[0].gt_header.gt_unused = 0;
11229
11230 /* Combine the input sections. */
8423293d 11231 for (p = o->map_head.link_order; p != NULL; p = p->next)
b49e97c9
TS
11232 {
11233 asection *input_section;
11234 bfd *input_bfd;
11235 bfd_size_type size;
11236 unsigned long last;
11237 bfd_size_type gpentry;
11238
11239 if (p->type != bfd_indirect_link_order)
11240 {
11241 if (p->type == bfd_data_link_order)
11242 continue;
11243 abort ();
11244 }
11245
11246 input_section = p->u.indirect.section;
11247 input_bfd = input_section->owner;
11248
11249 /* Combine the gptab entries for this input section one
11250 by one. We know that the input gptab entries are
11251 sorted by ascending -G value. */
eea6121a 11252 size = input_section->size;
b49e97c9
TS
11253 last = 0;
11254 for (gpentry = sizeof (Elf32_External_gptab);
11255 gpentry < size;
11256 gpentry += sizeof (Elf32_External_gptab))
11257 {
11258 Elf32_External_gptab ext_gptab;
11259 Elf32_gptab int_gptab;
11260 unsigned long val;
11261 unsigned long add;
b34976b6 11262 bfd_boolean exact;
b49e97c9
TS
11263 unsigned int look;
11264
11265 if (! (bfd_get_section_contents
9719ad41
RS
11266 (input_bfd, input_section, &ext_gptab, gpentry,
11267 sizeof (Elf32_External_gptab))))
b49e97c9
TS
11268 {
11269 free (tab);
b34976b6 11270 return FALSE;
b49e97c9
TS
11271 }
11272
11273 bfd_mips_elf32_swap_gptab_in (input_bfd, &ext_gptab,
11274 &int_gptab);
11275 val = int_gptab.gt_entry.gt_g_value;
11276 add = int_gptab.gt_entry.gt_bytes - last;
11277
b34976b6 11278 exact = FALSE;
b49e97c9
TS
11279 for (look = 1; look < c; look++)
11280 {
11281 if (tab[look].gt_entry.gt_g_value >= val)
11282 tab[look].gt_entry.gt_bytes += add;
11283
11284 if (tab[look].gt_entry.gt_g_value == val)
b34976b6 11285 exact = TRUE;
b49e97c9
TS
11286 }
11287
11288 if (! exact)
11289 {
11290 Elf32_gptab *new_tab;
11291 unsigned int max;
11292
11293 /* We need a new table entry. */
11294 amt = (bfd_size_type) (c + 1) * sizeof (Elf32_gptab);
9719ad41 11295 new_tab = bfd_realloc (tab, amt);
b49e97c9
TS
11296 if (new_tab == NULL)
11297 {
11298 free (tab);
b34976b6 11299 return FALSE;
b49e97c9
TS
11300 }
11301 tab = new_tab;
11302 tab[c].gt_entry.gt_g_value = val;
11303 tab[c].gt_entry.gt_bytes = add;
11304
11305 /* Merge in the size for the next smallest -G
11306 value, since that will be implied by this new
11307 value. */
11308 max = 0;
11309 for (look = 1; look < c; look++)
11310 {
11311 if (tab[look].gt_entry.gt_g_value < val
11312 && (max == 0
11313 || (tab[look].gt_entry.gt_g_value
11314 > tab[max].gt_entry.gt_g_value)))
11315 max = look;
11316 }
11317 if (max != 0)
11318 tab[c].gt_entry.gt_bytes +=
11319 tab[max].gt_entry.gt_bytes;
11320
11321 ++c;
11322 }
11323
11324 last = int_gptab.gt_entry.gt_bytes;
11325 }
11326
11327 /* Hack: reset the SEC_HAS_CONTENTS flag so that
11328 elf_link_input_bfd ignores this section. */
11329 input_section->flags &= ~SEC_HAS_CONTENTS;
11330 }
11331
11332 /* The table must be sorted by -G value. */
11333 if (c > 2)
11334 qsort (tab + 1, c - 1, sizeof (tab[0]), gptab_compare);
11335
11336 /* Swap out the table. */
11337 amt = (bfd_size_type) c * sizeof (Elf32_External_gptab);
9719ad41 11338 ext_tab = bfd_alloc (abfd, amt);
b49e97c9
TS
11339 if (ext_tab == NULL)
11340 {
11341 free (tab);
b34976b6 11342 return FALSE;
b49e97c9
TS
11343 }
11344
11345 for (j = 0; j < c; j++)
11346 bfd_mips_elf32_swap_gptab_out (abfd, tab + j, ext_tab + j);
11347 free (tab);
11348
eea6121a 11349 o->size = c * sizeof (Elf32_External_gptab);
b49e97c9
TS
11350 o->contents = (bfd_byte *) ext_tab;
11351
11352 /* Skip this section later on (I don't think this currently
11353 matters, but someday it might). */
8423293d 11354 o->map_head.link_order = NULL;
b49e97c9
TS
11355 }
11356 }
11357
11358 /* Invoke the regular ELF backend linker to do all the work. */
c152c796 11359 if (!bfd_elf_final_link (abfd, info))
b34976b6 11360 return FALSE;
b49e97c9
TS
11361
11362 /* Now write out the computed sections. */
11363
9719ad41 11364 if (reginfo_sec != NULL)
b49e97c9
TS
11365 {
11366 Elf32_External_RegInfo ext;
11367
11368 bfd_mips_elf32_swap_reginfo_out (abfd, &reginfo, &ext);
9719ad41 11369 if (! bfd_set_section_contents (abfd, reginfo_sec, &ext, 0, sizeof ext))
b34976b6 11370 return FALSE;
b49e97c9
TS
11371 }
11372
9719ad41 11373 if (mdebug_sec != NULL)
b49e97c9
TS
11374 {
11375 BFD_ASSERT (abfd->output_has_begun);
11376 if (! bfd_ecoff_write_accumulated_debug (mdebug_handle, abfd, &debug,
11377 swap, info,
11378 mdebug_sec->filepos))
b34976b6 11379 return FALSE;
b49e97c9
TS
11380
11381 bfd_ecoff_debug_free (mdebug_handle, abfd, &debug, swap, info);
11382 }
11383
9719ad41 11384 if (gptab_data_sec != NULL)
b49e97c9
TS
11385 {
11386 if (! bfd_set_section_contents (abfd, gptab_data_sec,
11387 gptab_data_sec->contents,
eea6121a 11388 0, gptab_data_sec->size))
b34976b6 11389 return FALSE;
b49e97c9
TS
11390 }
11391
9719ad41 11392 if (gptab_bss_sec != NULL)
b49e97c9
TS
11393 {
11394 if (! bfd_set_section_contents (abfd, gptab_bss_sec,
11395 gptab_bss_sec->contents,
eea6121a 11396 0, gptab_bss_sec->size))
b34976b6 11397 return FALSE;
b49e97c9
TS
11398 }
11399
11400 if (SGI_COMPAT (abfd))
11401 {
11402 rtproc_sec = bfd_get_section_by_name (abfd, ".rtproc");
11403 if (rtproc_sec != NULL)
11404 {
11405 if (! bfd_set_section_contents (abfd, rtproc_sec,
11406 rtproc_sec->contents,
eea6121a 11407 0, rtproc_sec->size))
b34976b6 11408 return FALSE;
b49e97c9
TS
11409 }
11410 }
11411
b34976b6 11412 return TRUE;
b49e97c9
TS
11413}
11414\f
64543e1a
RS
11415/* Structure for saying that BFD machine EXTENSION extends BASE. */
11416
11417struct mips_mach_extension {
11418 unsigned long extension, base;
11419};
11420
11421
11422/* An array describing how BFD machines relate to one another. The entries
11423 are ordered topologically with MIPS I extensions listed last. */
11424
11425static const struct mips_mach_extension mips_mach_extensions[] = {
6f179bd0
AN
11426 /* MIPS64r2 extensions. */
11427 { bfd_mach_mips_octeon, bfd_mach_mipsisa64r2 },
11428
64543e1a 11429 /* MIPS64 extensions. */
5f74bc13 11430 { bfd_mach_mipsisa64r2, bfd_mach_mipsisa64 },
64543e1a
RS
11431 { bfd_mach_mips_sb1, bfd_mach_mipsisa64 },
11432
11433 /* MIPS V extensions. */
11434 { bfd_mach_mipsisa64, bfd_mach_mips5 },
11435
11436 /* R10000 extensions. */
11437 { bfd_mach_mips12000, bfd_mach_mips10000 },
11438
11439 /* R5000 extensions. Note: the vr5500 ISA is an extension of the core
11440 vr5400 ISA, but doesn't include the multimedia stuff. It seems
11441 better to allow vr5400 and vr5500 code to be merged anyway, since
11442 many libraries will just use the core ISA. Perhaps we could add
11443 some sort of ASE flag if this ever proves a problem. */
11444 { bfd_mach_mips5500, bfd_mach_mips5400 },
11445 { bfd_mach_mips5400, bfd_mach_mips5000 },
11446
11447 /* MIPS IV extensions. */
11448 { bfd_mach_mips5, bfd_mach_mips8000 },
11449 { bfd_mach_mips10000, bfd_mach_mips8000 },
11450 { bfd_mach_mips5000, bfd_mach_mips8000 },
5a7ea749 11451 { bfd_mach_mips7000, bfd_mach_mips8000 },
0d2e43ed 11452 { bfd_mach_mips9000, bfd_mach_mips8000 },
64543e1a
RS
11453
11454 /* VR4100 extensions. */
11455 { bfd_mach_mips4120, bfd_mach_mips4100 },
11456 { bfd_mach_mips4111, bfd_mach_mips4100 },
11457
11458 /* MIPS III extensions. */
350cc38d
MS
11459 { bfd_mach_mips_loongson_2e, bfd_mach_mips4000 },
11460 { bfd_mach_mips_loongson_2f, bfd_mach_mips4000 },
64543e1a
RS
11461 { bfd_mach_mips8000, bfd_mach_mips4000 },
11462 { bfd_mach_mips4650, bfd_mach_mips4000 },
11463 { bfd_mach_mips4600, bfd_mach_mips4000 },
11464 { bfd_mach_mips4400, bfd_mach_mips4000 },
11465 { bfd_mach_mips4300, bfd_mach_mips4000 },
11466 { bfd_mach_mips4100, bfd_mach_mips4000 },
11467 { bfd_mach_mips4010, bfd_mach_mips4000 },
11468
11469 /* MIPS32 extensions. */
11470 { bfd_mach_mipsisa32r2, bfd_mach_mipsisa32 },
11471
11472 /* MIPS II extensions. */
11473 { bfd_mach_mips4000, bfd_mach_mips6000 },
11474 { bfd_mach_mipsisa32, bfd_mach_mips6000 },
11475
11476 /* MIPS I extensions. */
11477 { bfd_mach_mips6000, bfd_mach_mips3000 },
11478 { bfd_mach_mips3900, bfd_mach_mips3000 }
11479};
11480
11481
11482/* Return true if bfd machine EXTENSION is an extension of machine BASE. */
11483
11484static bfd_boolean
9719ad41 11485mips_mach_extends_p (unsigned long base, unsigned long extension)
64543e1a
RS
11486{
11487 size_t i;
11488
c5211a54
RS
11489 if (extension == base)
11490 return TRUE;
11491
11492 if (base == bfd_mach_mipsisa32
11493 && mips_mach_extends_p (bfd_mach_mipsisa64, extension))
11494 return TRUE;
11495
11496 if (base == bfd_mach_mipsisa32r2
11497 && mips_mach_extends_p (bfd_mach_mipsisa64r2, extension))
11498 return TRUE;
11499
11500 for (i = 0; i < ARRAY_SIZE (mips_mach_extensions); i++)
64543e1a 11501 if (extension == mips_mach_extensions[i].extension)
c5211a54
RS
11502 {
11503 extension = mips_mach_extensions[i].base;
11504 if (extension == base)
11505 return TRUE;
11506 }
64543e1a 11507
c5211a54 11508 return FALSE;
64543e1a
RS
11509}
11510
11511
11512/* Return true if the given ELF header flags describe a 32-bit binary. */
00707a0e 11513
b34976b6 11514static bfd_boolean
9719ad41 11515mips_32bit_flags_p (flagword flags)
00707a0e 11516{
64543e1a
RS
11517 return ((flags & EF_MIPS_32BITMODE) != 0
11518 || (flags & EF_MIPS_ABI) == E_MIPS_ABI_O32
11519 || (flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI32
11520 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1
11521 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_2
11522 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32
11523 || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R2);
00707a0e
RS
11524}
11525
64543e1a 11526
2cf19d5c
JM
11527/* Merge object attributes from IBFD into OBFD. Raise an error if
11528 there are conflicting attributes. */
11529static bfd_boolean
11530mips_elf_merge_obj_attributes (bfd *ibfd, bfd *obfd)
11531{
11532 obj_attribute *in_attr;
11533 obj_attribute *out_attr;
11534
11535 if (!elf_known_obj_attributes_proc (obfd)[0].i)
11536 {
11537 /* This is the first object. Copy the attributes. */
11538 _bfd_elf_copy_obj_attributes (ibfd, obfd);
11539
11540 /* Use the Tag_null value to indicate the attributes have been
11541 initialized. */
11542 elf_known_obj_attributes_proc (obfd)[0].i = 1;
11543
11544 return TRUE;
11545 }
11546
11547 /* Check for conflicting Tag_GNU_MIPS_ABI_FP attributes and merge
11548 non-conflicting ones. */
11549 in_attr = elf_known_obj_attributes (ibfd)[OBJ_ATTR_GNU];
11550 out_attr = elf_known_obj_attributes (obfd)[OBJ_ATTR_GNU];
11551 if (in_attr[Tag_GNU_MIPS_ABI_FP].i != out_attr[Tag_GNU_MIPS_ABI_FP].i)
11552 {
11553 out_attr[Tag_GNU_MIPS_ABI_FP].type = 1;
11554 if (out_attr[Tag_GNU_MIPS_ABI_FP].i == 0)
11555 out_attr[Tag_GNU_MIPS_ABI_FP].i = in_attr[Tag_GNU_MIPS_ABI_FP].i;
11556 else if (in_attr[Tag_GNU_MIPS_ABI_FP].i == 0)
11557 ;
42554f6a 11558 else if (in_attr[Tag_GNU_MIPS_ABI_FP].i > 4)
2cf19d5c
JM
11559 _bfd_error_handler
11560 (_("Warning: %B uses unknown floating point ABI %d"), ibfd,
11561 in_attr[Tag_GNU_MIPS_ABI_FP].i);
42554f6a 11562 else if (out_attr[Tag_GNU_MIPS_ABI_FP].i > 4)
2cf19d5c
JM
11563 _bfd_error_handler
11564 (_("Warning: %B uses unknown floating point ABI %d"), obfd,
11565 out_attr[Tag_GNU_MIPS_ABI_FP].i);
11566 else
11567 switch (out_attr[Tag_GNU_MIPS_ABI_FP].i)
11568 {
11569 case 1:
11570 switch (in_attr[Tag_GNU_MIPS_ABI_FP].i)
11571 {
11572 case 2:
11573 _bfd_error_handler
11574 (_("Warning: %B uses -msingle-float, %B uses -mdouble-float"),
11575 obfd, ibfd);
51a0dd31 11576 break;
2cf19d5c
JM
11577
11578 case 3:
11579 _bfd_error_handler
11580 (_("Warning: %B uses hard float, %B uses soft float"),
11581 obfd, ibfd);
11582 break;
11583
42554f6a
TS
11584 case 4:
11585 _bfd_error_handler
11586 (_("Warning: %B uses -msingle-float, %B uses -mips32r2 -mfp64"),
11587 obfd, ibfd);
11588 break;
11589
2cf19d5c
JM
11590 default:
11591 abort ();
11592 }
11593 break;
11594
11595 case 2:
11596 switch (in_attr[Tag_GNU_MIPS_ABI_FP].i)
11597 {
11598 case 1:
11599 _bfd_error_handler
11600 (_("Warning: %B uses -msingle-float, %B uses -mdouble-float"),
11601 ibfd, obfd);
51a0dd31 11602 break;
2cf19d5c
JM
11603
11604 case 3:
11605 _bfd_error_handler
11606 (_("Warning: %B uses hard float, %B uses soft float"),
11607 obfd, ibfd);
11608 break;
11609
42554f6a
TS
11610 case 4:
11611 _bfd_error_handler
11612 (_("Warning: %B uses -mdouble-float, %B uses -mips32r2 -mfp64"),
11613 obfd, ibfd);
11614 break;
11615
2cf19d5c
JM
11616 default:
11617 abort ();
11618 }
11619 break;
11620
11621 case 3:
11622 switch (in_attr[Tag_GNU_MIPS_ABI_FP].i)
11623 {
11624 case 1:
11625 case 2:
42554f6a 11626 case 4:
2cf19d5c
JM
11627 _bfd_error_handler
11628 (_("Warning: %B uses hard float, %B uses soft float"),
11629 ibfd, obfd);
11630 break;
11631
11632 default:
11633 abort ();
11634 }
11635 break;
11636
42554f6a
TS
11637 case 4:
11638 switch (in_attr[Tag_GNU_MIPS_ABI_FP].i)
11639 {
11640 case 1:
11641 _bfd_error_handler
11642 (_("Warning: %B uses -msingle-float, %B uses -mips32r2 -mfp64"),
11643 ibfd, obfd);
11644 break;
11645
11646 case 2:
11647 _bfd_error_handler
11648 (_("Warning: %B uses -mdouble-float, %B uses -mips32r2 -mfp64"),
11649 ibfd, obfd);
11650 break;
11651
11652 case 3:
11653 _bfd_error_handler
11654 (_("Warning: %B uses hard float, %B uses soft float"),
11655 obfd, ibfd);
11656 break;
11657
11658 default:
11659 abort ();
11660 }
11661 break;
11662
2cf19d5c
JM
11663 default:
11664 abort ();
11665 }
11666 }
11667
11668 /* Merge Tag_compatibility attributes and any common GNU ones. */
11669 _bfd_elf_merge_object_attributes (ibfd, obfd);
11670
11671 return TRUE;
11672}
11673
b49e97c9
TS
11674/* Merge backend specific data from an object file to the output
11675 object file when linking. */
11676
b34976b6 11677bfd_boolean
9719ad41 11678_bfd_mips_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
b49e97c9
TS
11679{
11680 flagword old_flags;
11681 flagword new_flags;
b34976b6
AM
11682 bfd_boolean ok;
11683 bfd_boolean null_input_bfd = TRUE;
b49e97c9
TS
11684 asection *sec;
11685
11686 /* Check if we have the same endianess */
82e51918 11687 if (! _bfd_generic_verify_endian_match (ibfd, obfd))
aa701218
AO
11688 {
11689 (*_bfd_error_handler)
d003868e
AM
11690 (_("%B: endianness incompatible with that of the selected emulation"),
11691 ibfd);
aa701218
AO
11692 return FALSE;
11693 }
b49e97c9
TS
11694
11695 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
11696 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
b34976b6 11697 return TRUE;
b49e97c9 11698
aa701218
AO
11699 if (strcmp (bfd_get_target (ibfd), bfd_get_target (obfd)) != 0)
11700 {
11701 (*_bfd_error_handler)
d003868e
AM
11702 (_("%B: ABI is incompatible with that of the selected emulation"),
11703 ibfd);
aa701218
AO
11704 return FALSE;
11705 }
11706
2cf19d5c
JM
11707 if (!mips_elf_merge_obj_attributes (ibfd, obfd))
11708 return FALSE;
11709
b49e97c9
TS
11710 new_flags = elf_elfheader (ibfd)->e_flags;
11711 elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_NOREORDER;
11712 old_flags = elf_elfheader (obfd)->e_flags;
11713
11714 if (! elf_flags_init (obfd))
11715 {
b34976b6 11716 elf_flags_init (obfd) = TRUE;
b49e97c9
TS
11717 elf_elfheader (obfd)->e_flags = new_flags;
11718 elf_elfheader (obfd)->e_ident[EI_CLASS]
11719 = elf_elfheader (ibfd)->e_ident[EI_CLASS];
11720
11721 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
2907b861
TS
11722 && (bfd_get_arch_info (obfd)->the_default
11723 || mips_mach_extends_p (bfd_get_mach (obfd),
11724 bfd_get_mach (ibfd))))
b49e97c9
TS
11725 {
11726 if (! bfd_set_arch_mach (obfd, bfd_get_arch (ibfd),
11727 bfd_get_mach (ibfd)))
b34976b6 11728 return FALSE;
b49e97c9
TS
11729 }
11730
b34976b6 11731 return TRUE;
b49e97c9
TS
11732 }
11733
11734 /* Check flag compatibility. */
11735
11736 new_flags &= ~EF_MIPS_NOREORDER;
11737 old_flags &= ~EF_MIPS_NOREORDER;
11738
f4416af6
AO
11739 /* Some IRIX 6 BSD-compatibility objects have this bit set. It
11740 doesn't seem to matter. */
11741 new_flags &= ~EF_MIPS_XGOT;
11742 old_flags &= ~EF_MIPS_XGOT;
11743
98a8deaf
RS
11744 /* MIPSpro generates ucode info in n64 objects. Again, we should
11745 just be able to ignore this. */
11746 new_flags &= ~EF_MIPS_UCODE;
11747 old_flags &= ~EF_MIPS_UCODE;
11748
0a44bf69
RS
11749 /* Don't care about the PIC flags from dynamic objects; they are
11750 PIC by design. */
11751 if ((new_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) != 0
11752 && (ibfd->flags & DYNAMIC) != 0)
11753 new_flags &= ~ (EF_MIPS_PIC | EF_MIPS_CPIC);
11754
b49e97c9 11755 if (new_flags == old_flags)
b34976b6 11756 return TRUE;
b49e97c9
TS
11757
11758 /* Check to see if the input BFD actually contains any sections.
11759 If not, its flags may not have been initialised either, but it cannot
11760 actually cause any incompatibility. */
11761 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
11762 {
11763 /* Ignore synthetic sections and empty .text, .data and .bss sections
11764 which are automatically generated by gas. */
11765 if (strcmp (sec->name, ".reginfo")
11766 && strcmp (sec->name, ".mdebug")
eea6121a 11767 && (sec->size != 0
d13d89fa
NS
11768 || (strcmp (sec->name, ".text")
11769 && strcmp (sec->name, ".data")
11770 && strcmp (sec->name, ".bss"))))
b49e97c9 11771 {
b34976b6 11772 null_input_bfd = FALSE;
b49e97c9
TS
11773 break;
11774 }
11775 }
11776 if (null_input_bfd)
b34976b6 11777 return TRUE;
b49e97c9 11778
b34976b6 11779 ok = TRUE;
b49e97c9 11780
143d77c5
EC
11781 if (((new_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) != 0)
11782 != ((old_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) != 0))
b49e97c9 11783 {
b49e97c9 11784 (*_bfd_error_handler)
d003868e
AM
11785 (_("%B: warning: linking PIC files with non-PIC files"),
11786 ibfd);
143d77c5 11787 ok = TRUE;
b49e97c9
TS
11788 }
11789
143d77c5
EC
11790 if (new_flags & (EF_MIPS_PIC | EF_MIPS_CPIC))
11791 elf_elfheader (obfd)->e_flags |= EF_MIPS_CPIC;
11792 if (! (new_flags & EF_MIPS_PIC))
11793 elf_elfheader (obfd)->e_flags &= ~EF_MIPS_PIC;
11794
11795 new_flags &= ~ (EF_MIPS_PIC | EF_MIPS_CPIC);
11796 old_flags &= ~ (EF_MIPS_PIC | EF_MIPS_CPIC);
b49e97c9 11797
64543e1a
RS
11798 /* Compare the ISAs. */
11799 if (mips_32bit_flags_p (old_flags) != mips_32bit_flags_p (new_flags))
b49e97c9 11800 {
64543e1a 11801 (*_bfd_error_handler)
d003868e
AM
11802 (_("%B: linking 32-bit code with 64-bit code"),
11803 ibfd);
64543e1a
RS
11804 ok = FALSE;
11805 }
11806 else if (!mips_mach_extends_p (bfd_get_mach (ibfd), bfd_get_mach (obfd)))
11807 {
11808 /* OBFD's ISA isn't the same as, or an extension of, IBFD's. */
11809 if (mips_mach_extends_p (bfd_get_mach (obfd), bfd_get_mach (ibfd)))
b49e97c9 11810 {
64543e1a
RS
11811 /* Copy the architecture info from IBFD to OBFD. Also copy
11812 the 32-bit flag (if set) so that we continue to recognise
11813 OBFD as a 32-bit binary. */
11814 bfd_set_arch_info (obfd, bfd_get_arch_info (ibfd));
11815 elf_elfheader (obfd)->e_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH);
11816 elf_elfheader (obfd)->e_flags
11817 |= new_flags & (EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
11818
11819 /* Copy across the ABI flags if OBFD doesn't use them
11820 and if that was what caused us to treat IBFD as 32-bit. */
11821 if ((old_flags & EF_MIPS_ABI) == 0
11822 && mips_32bit_flags_p (new_flags)
11823 && !mips_32bit_flags_p (new_flags & ~EF_MIPS_ABI))
11824 elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_ABI;
b49e97c9
TS
11825 }
11826 else
11827 {
64543e1a 11828 /* The ISAs aren't compatible. */
b49e97c9 11829 (*_bfd_error_handler)
d003868e
AM
11830 (_("%B: linking %s module with previous %s modules"),
11831 ibfd,
64543e1a
RS
11832 bfd_printable_name (ibfd),
11833 bfd_printable_name (obfd));
b34976b6 11834 ok = FALSE;
b49e97c9 11835 }
b49e97c9
TS
11836 }
11837
64543e1a
RS
11838 new_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
11839 old_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
11840
11841 /* Compare ABIs. The 64-bit ABI does not use EF_MIPS_ABI. But, it
b49e97c9
TS
11842 does set EI_CLASS differently from any 32-bit ABI. */
11843 if ((new_flags & EF_MIPS_ABI) != (old_flags & EF_MIPS_ABI)
11844 || (elf_elfheader (ibfd)->e_ident[EI_CLASS]
11845 != elf_elfheader (obfd)->e_ident[EI_CLASS]))
11846 {
11847 /* Only error if both are set (to different values). */
11848 if (((new_flags & EF_MIPS_ABI) && (old_flags & EF_MIPS_ABI))
11849 || (elf_elfheader (ibfd)->e_ident[EI_CLASS]
11850 != elf_elfheader (obfd)->e_ident[EI_CLASS]))
11851 {
11852 (*_bfd_error_handler)
d003868e
AM
11853 (_("%B: ABI mismatch: linking %s module with previous %s modules"),
11854 ibfd,
b49e97c9
TS
11855 elf_mips_abi_name (ibfd),
11856 elf_mips_abi_name (obfd));
b34976b6 11857 ok = FALSE;
b49e97c9
TS
11858 }
11859 new_flags &= ~EF_MIPS_ABI;
11860 old_flags &= ~EF_MIPS_ABI;
11861 }
11862
fb39dac1
RS
11863 /* For now, allow arbitrary mixing of ASEs (retain the union). */
11864 if ((new_flags & EF_MIPS_ARCH_ASE) != (old_flags & EF_MIPS_ARCH_ASE))
11865 {
11866 elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_ARCH_ASE;
11867
11868 new_flags &= ~ EF_MIPS_ARCH_ASE;
11869 old_flags &= ~ EF_MIPS_ARCH_ASE;
11870 }
11871
b49e97c9
TS
11872 /* Warn about any other mismatches */
11873 if (new_flags != old_flags)
11874 {
11875 (*_bfd_error_handler)
d003868e
AM
11876 (_("%B: uses different e_flags (0x%lx) fields than previous modules (0x%lx)"),
11877 ibfd, (unsigned long) new_flags,
b49e97c9 11878 (unsigned long) old_flags);
b34976b6 11879 ok = FALSE;
b49e97c9
TS
11880 }
11881
11882 if (! ok)
11883 {
11884 bfd_set_error (bfd_error_bad_value);
b34976b6 11885 return FALSE;
b49e97c9
TS
11886 }
11887
b34976b6 11888 return TRUE;
b49e97c9
TS
11889}
11890
11891/* Function to keep MIPS specific file flags like as EF_MIPS_PIC. */
11892
b34976b6 11893bfd_boolean
9719ad41 11894_bfd_mips_elf_set_private_flags (bfd *abfd, flagword flags)
b49e97c9
TS
11895{
11896 BFD_ASSERT (!elf_flags_init (abfd)
11897 || elf_elfheader (abfd)->e_flags == flags);
11898
11899 elf_elfheader (abfd)->e_flags = flags;
b34976b6
AM
11900 elf_flags_init (abfd) = TRUE;
11901 return TRUE;
b49e97c9
TS
11902}
11903
ad9563d6
CM
11904char *
11905_bfd_mips_elf_get_target_dtag (bfd_vma dtag)
11906{
11907 switch (dtag)
11908 {
11909 default: return "";
11910 case DT_MIPS_RLD_VERSION:
11911 return "MIPS_RLD_VERSION";
11912 case DT_MIPS_TIME_STAMP:
11913 return "MIPS_TIME_STAMP";
11914 case DT_MIPS_ICHECKSUM:
11915 return "MIPS_ICHECKSUM";
11916 case DT_MIPS_IVERSION:
11917 return "MIPS_IVERSION";
11918 case DT_MIPS_FLAGS:
11919 return "MIPS_FLAGS";
11920 case DT_MIPS_BASE_ADDRESS:
11921 return "MIPS_BASE_ADDRESS";
11922 case DT_MIPS_MSYM:
11923 return "MIPS_MSYM";
11924 case DT_MIPS_CONFLICT:
11925 return "MIPS_CONFLICT";
11926 case DT_MIPS_LIBLIST:
11927 return "MIPS_LIBLIST";
11928 case DT_MIPS_LOCAL_GOTNO:
11929 return "MIPS_LOCAL_GOTNO";
11930 case DT_MIPS_CONFLICTNO:
11931 return "MIPS_CONFLICTNO";
11932 case DT_MIPS_LIBLISTNO:
11933 return "MIPS_LIBLISTNO";
11934 case DT_MIPS_SYMTABNO:
11935 return "MIPS_SYMTABNO";
11936 case DT_MIPS_UNREFEXTNO:
11937 return "MIPS_UNREFEXTNO";
11938 case DT_MIPS_GOTSYM:
11939 return "MIPS_GOTSYM";
11940 case DT_MIPS_HIPAGENO:
11941 return "MIPS_HIPAGENO";
11942 case DT_MIPS_RLD_MAP:
11943 return "MIPS_RLD_MAP";
11944 case DT_MIPS_DELTA_CLASS:
11945 return "MIPS_DELTA_CLASS";
11946 case DT_MIPS_DELTA_CLASS_NO:
11947 return "MIPS_DELTA_CLASS_NO";
11948 case DT_MIPS_DELTA_INSTANCE:
11949 return "MIPS_DELTA_INSTANCE";
11950 case DT_MIPS_DELTA_INSTANCE_NO:
11951 return "MIPS_DELTA_INSTANCE_NO";
11952 case DT_MIPS_DELTA_RELOC:
11953 return "MIPS_DELTA_RELOC";
11954 case DT_MIPS_DELTA_RELOC_NO:
11955 return "MIPS_DELTA_RELOC_NO";
11956 case DT_MIPS_DELTA_SYM:
11957 return "MIPS_DELTA_SYM";
11958 case DT_MIPS_DELTA_SYM_NO:
11959 return "MIPS_DELTA_SYM_NO";
11960 case DT_MIPS_DELTA_CLASSSYM:
11961 return "MIPS_DELTA_CLASSSYM";
11962 case DT_MIPS_DELTA_CLASSSYM_NO:
11963 return "MIPS_DELTA_CLASSSYM_NO";
11964 case DT_MIPS_CXX_FLAGS:
11965 return "MIPS_CXX_FLAGS";
11966 case DT_MIPS_PIXIE_INIT:
11967 return "MIPS_PIXIE_INIT";
11968 case DT_MIPS_SYMBOL_LIB:
11969 return "MIPS_SYMBOL_LIB";
11970 case DT_MIPS_LOCALPAGE_GOTIDX:
11971 return "MIPS_LOCALPAGE_GOTIDX";
11972 case DT_MIPS_LOCAL_GOTIDX:
11973 return "MIPS_LOCAL_GOTIDX";
11974 case DT_MIPS_HIDDEN_GOTIDX:
11975 return "MIPS_HIDDEN_GOTIDX";
11976 case DT_MIPS_PROTECTED_GOTIDX:
11977 return "MIPS_PROTECTED_GOT_IDX";
11978 case DT_MIPS_OPTIONS:
11979 return "MIPS_OPTIONS";
11980 case DT_MIPS_INTERFACE:
11981 return "MIPS_INTERFACE";
11982 case DT_MIPS_DYNSTR_ALIGN:
11983 return "DT_MIPS_DYNSTR_ALIGN";
11984 case DT_MIPS_INTERFACE_SIZE:
11985 return "DT_MIPS_INTERFACE_SIZE";
11986 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR:
11987 return "DT_MIPS_RLD_TEXT_RESOLVE_ADDR";
11988 case DT_MIPS_PERF_SUFFIX:
11989 return "DT_MIPS_PERF_SUFFIX";
11990 case DT_MIPS_COMPACT_SIZE:
11991 return "DT_MIPS_COMPACT_SIZE";
11992 case DT_MIPS_GP_VALUE:
11993 return "DT_MIPS_GP_VALUE";
11994 case DT_MIPS_AUX_DYNAMIC:
11995 return "DT_MIPS_AUX_DYNAMIC";
11996 }
11997}
11998
b34976b6 11999bfd_boolean
9719ad41 12000_bfd_mips_elf_print_private_bfd_data (bfd *abfd, void *ptr)
b49e97c9 12001{
9719ad41 12002 FILE *file = ptr;
b49e97c9
TS
12003
12004 BFD_ASSERT (abfd != NULL && ptr != NULL);
12005
12006 /* Print normal ELF private data. */
12007 _bfd_elf_print_private_bfd_data (abfd, ptr);
12008
12009 /* xgettext:c-format */
12010 fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
12011
12012 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O32)
12013 fprintf (file, _(" [abi=O32]"));
12014 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O64)
12015 fprintf (file, _(" [abi=O64]"));
12016 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI32)
12017 fprintf (file, _(" [abi=EABI32]"));
12018 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64)
12019 fprintf (file, _(" [abi=EABI64]"));
12020 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI))
12021 fprintf (file, _(" [abi unknown]"));
12022 else if (ABI_N32_P (abfd))
12023 fprintf (file, _(" [abi=N32]"));
12024 else if (ABI_64_P (abfd))
12025 fprintf (file, _(" [abi=64]"));
12026 else
12027 fprintf (file, _(" [no abi set]"));
12028
12029 if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1)
ae0d2616 12030 fprintf (file, " [mips1]");
b49e97c9 12031 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_2)
ae0d2616 12032 fprintf (file, " [mips2]");
b49e97c9 12033 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_3)
ae0d2616 12034 fprintf (file, " [mips3]");
b49e97c9 12035 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_4)
ae0d2616 12036 fprintf (file, " [mips4]");
b49e97c9 12037 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_5)
ae0d2616 12038 fprintf (file, " [mips5]");
b49e97c9 12039 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32)
ae0d2616 12040 fprintf (file, " [mips32]");
b49e97c9 12041 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64)
ae0d2616 12042 fprintf (file, " [mips64]");
af7ee8bf 12043 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R2)
ae0d2616 12044 fprintf (file, " [mips32r2]");
5f74bc13 12045 else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64R2)
ae0d2616 12046 fprintf (file, " [mips64r2]");
b49e97c9
TS
12047 else
12048 fprintf (file, _(" [unknown ISA]"));
12049
40d32fc6 12050 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MDMX)
ae0d2616 12051 fprintf (file, " [mdmx]");
40d32fc6
CD
12052
12053 if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_M16)
ae0d2616 12054 fprintf (file, " [mips16]");
40d32fc6 12055
b49e97c9 12056 if (elf_elfheader (abfd)->e_flags & EF_MIPS_32BITMODE)
ae0d2616 12057 fprintf (file, " [32bitmode]");
b49e97c9
TS
12058 else
12059 fprintf (file, _(" [not 32bitmode]"));
12060
c0e3f241 12061 if (elf_elfheader (abfd)->e_flags & EF_MIPS_NOREORDER)
ae0d2616 12062 fprintf (file, " [noreorder]");
c0e3f241
CD
12063
12064 if (elf_elfheader (abfd)->e_flags & EF_MIPS_PIC)
ae0d2616 12065 fprintf (file, " [PIC]");
c0e3f241
CD
12066
12067 if (elf_elfheader (abfd)->e_flags & EF_MIPS_CPIC)
ae0d2616 12068 fprintf (file, " [CPIC]");
c0e3f241
CD
12069
12070 if (elf_elfheader (abfd)->e_flags & EF_MIPS_XGOT)
ae0d2616 12071 fprintf (file, " [XGOT]");
c0e3f241
CD
12072
12073 if (elf_elfheader (abfd)->e_flags & EF_MIPS_UCODE)
ae0d2616 12074 fprintf (file, " [UCODE]");
c0e3f241 12075
b49e97c9
TS
12076 fputc ('\n', file);
12077
b34976b6 12078 return TRUE;
b49e97c9 12079}
2f89ff8d 12080
b35d266b 12081const struct bfd_elf_special_section _bfd_mips_elf_special_sections[] =
2f89ff8d 12082{
0112cd26
NC
12083 { STRING_COMMA_LEN (".lit4"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
12084 { STRING_COMMA_LEN (".lit8"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
12085 { STRING_COMMA_LEN (".mdebug"), 0, SHT_MIPS_DEBUG, 0 },
12086 { STRING_COMMA_LEN (".sbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
12087 { STRING_COMMA_LEN (".sdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
12088 { STRING_COMMA_LEN (".ucode"), 0, SHT_MIPS_UCODE, 0 },
12089 { NULL, 0, 0, 0, 0 }
2f89ff8d 12090};
5e2b0d47 12091
8992f0d7
TS
12092/* Merge non visibility st_other attributes. Ensure that the
12093 STO_OPTIONAL flag is copied into h->other, even if this is not a
12094 definiton of the symbol. */
5e2b0d47
NC
12095void
12096_bfd_mips_elf_merge_symbol_attribute (struct elf_link_hash_entry *h,
12097 const Elf_Internal_Sym *isym,
12098 bfd_boolean definition,
12099 bfd_boolean dynamic ATTRIBUTE_UNUSED)
12100{
8992f0d7
TS
12101 if ((isym->st_other & ~ELF_ST_VISIBILITY (-1)) != 0)
12102 {
12103 unsigned char other;
12104
12105 other = (definition ? isym->st_other : h->other);
12106 other &= ~ELF_ST_VISIBILITY (-1);
12107 h->other = other | ELF_ST_VISIBILITY (h->other);
12108 }
12109
12110 if (!definition
5e2b0d47
NC
12111 && ELF_MIPS_IS_OPTIONAL (isym->st_other))
12112 h->other |= STO_OPTIONAL;
12113}
12ac1cf5
NC
12114
12115/* Decide whether an undefined symbol is special and can be ignored.
12116 This is the case for OPTIONAL symbols on IRIX. */
12117bfd_boolean
12118_bfd_mips_elf_ignore_undef_symbol (struct elf_link_hash_entry *h)
12119{
12120 return ELF_MIPS_IS_OPTIONAL (h->other) ? TRUE : FALSE;
12121}
e0764319
NC
12122
12123bfd_boolean
12124_bfd_mips_elf_common_definition (Elf_Internal_Sym *sym)
12125{
12126 return (sym->st_shndx == SHN_COMMON
12127 || sym->st_shndx == SHN_MIPS_ACOMMON
12128 || sym->st_shndx == SHN_MIPS_SCOMMON);
12129}
This page took 1.104118 seconds and 4 git commands to generate.