Fix mips segfault on GOT access of absolute symbol
[platform/upstream/binutils.git] / bfd / elfxx-mips.c
1 /* MIPS-specific support for ELF
2    Copyright 1993-2013 Free Software Foundation, Inc.
3
4    Most of the information added by Ian Lance Taylor, Cygnus Support,
5    <ian@cygnus.com>.
6    N32/64 ABI support added by Mark Mitchell, CodeSourcery, LLC.
7    <mark@codesourcery.com>
8    Traditional MIPS targets support added by Koundinya.K, Dansk Data
9    Elektronik & Operations Research Group. <kk@ddeorg.soft.net>
10
11    This file is part of BFD, the Binary File Descriptor library.
12
13    This program is free software; you can redistribute it and/or modify
14    it under the terms of the GNU General Public License as published by
15    the Free Software Foundation; either version 3 of the License, or
16    (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21    GNU General Public License for more details.
22
23    You should have received a copy of the GNU General Public License
24    along with this program; if not, write to the Free Software
25    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
26    MA 02110-1301, USA.  */
27
28
29 /* This file handles functionality common to the different MIPS ABI's.  */
30
31 #include "sysdep.h"
32 #include "bfd.h"
33 #include "libbfd.h"
34 #include "libiberty.h"
35 #include "elf-bfd.h"
36 #include "elfxx-mips.h"
37 #include "elf/mips.h"
38 #include "elf-vxworks.h"
39
40 /* Get the ECOFF swapping routines.  */
41 #include "coff/sym.h"
42 #include "coff/symconst.h"
43 #include "coff/ecoff.h"
44 #include "coff/mips.h"
45
46 #include "hashtab.h"
47
48 /* Types of TLS GOT entry.  */
49 enum mips_got_tls_type {
50   GOT_TLS_NONE,
51   GOT_TLS_GD,
52   GOT_TLS_LDM,
53   GOT_TLS_IE
54 };
55
56 /* This structure is used to hold information about one GOT entry.
57    There are four types of entry:
58
59       (1) an absolute address
60             requires: abfd == NULL
61             fields: d.address
62
63       (2) a SYMBOL + OFFSET address, where SYMBOL is local to an input bfd
64             requires: abfd != NULL, symndx >= 0, tls_type != GOT_TLS_LDM
65             fields: abfd, symndx, d.addend, tls_type
66
67       (3) a SYMBOL address, where SYMBOL is not local to an input bfd
68             requires: abfd != NULL, symndx == -1
69             fields: d.h, tls_type
70
71       (4) a TLS LDM slot
72             requires: abfd != NULL, symndx == 0, tls_type == GOT_TLS_LDM
73             fields: none; there's only one of these per GOT.  */
74 struct mips_got_entry
75 {
76   /* One input bfd that needs the GOT entry.  */
77   bfd *abfd;
78   /* The index of the symbol, as stored in the relocation r_info, if
79      we have a local symbol; -1 otherwise.  */
80   long symndx;
81   union
82   {
83     /* If abfd == NULL, an address that must be stored in the got.  */
84     bfd_vma address;
85     /* If abfd != NULL && symndx != -1, the addend of the relocation
86        that should be added to the symbol value.  */
87     bfd_vma addend;
88     /* If abfd != NULL && symndx == -1, the hash table entry
89        corresponding to a symbol in the GOT.  The symbol's entry
90        is in the local area if h->global_got_area is GGA_NONE,
91        otherwise it is in the global area.  */
92     struct mips_elf_link_hash_entry *h;
93   } d;
94
95   /* The TLS type of this GOT entry.  An LDM GOT entry will be a local
96      symbol entry with r_symndx == 0.  */
97   unsigned char tls_type;
98
99   /* True if we have filled in the GOT contents for a TLS entry,
100      and created the associated relocations.  */
101   unsigned char tls_initialized;
102
103   /* The offset from the beginning of the .got section to the entry
104      corresponding to this symbol+addend.  If it's a global symbol
105      whose offset is yet to be decided, it's going to be -1.  */
106   long gotidx;
107 };
108
109 /* This structure represents a GOT page reference from an input bfd.
110    Each instance represents a symbol + ADDEND, where the representation
111    of the symbol depends on whether it is local to the input bfd.
112    If it is, then SYMNDX >= 0, and the symbol has index SYMNDX in U.ABFD.
113    Otherwise, SYMNDX < 0 and U.H points to the symbol's hash table entry.
114
115    Page references with SYMNDX >= 0 always become page references
116    in the output.  Page references with SYMNDX < 0 only become page
117    references if the symbol binds locally; in other cases, the page
118    reference decays to a global GOT reference.  */
119 struct mips_got_page_ref
120 {
121   long symndx;
122   union
123   {
124     struct mips_elf_link_hash_entry *h;
125     bfd *abfd;
126   } u;
127   bfd_vma addend;
128 };
129
130 /* This structure describes a range of addends: [MIN_ADDEND, MAX_ADDEND].
131    The structures form a non-overlapping list that is sorted by increasing
132    MIN_ADDEND.  */
133 struct mips_got_page_range
134 {
135   struct mips_got_page_range *next;
136   bfd_signed_vma min_addend;
137   bfd_signed_vma max_addend;
138 };
139
140 /* This structure describes the range of addends that are applied to page
141    relocations against a given section.  */
142 struct mips_got_page_entry
143 {
144   /* The section that these entries are based on.  */
145   asection *sec;
146   /* The ranges for this page entry.  */
147   struct mips_got_page_range *ranges;
148   /* The maximum number of page entries needed for RANGES.  */
149   bfd_vma num_pages;
150 };
151
152 /* This structure is used to hold .got information when linking.  */
153
154 struct mips_got_info
155 {
156   /* The number of global .got entries.  */
157   unsigned int global_gotno;
158   /* The number of global .got entries that are in the GGA_RELOC_ONLY area.  */
159   unsigned int reloc_only_gotno;
160   /* The number of .got slots used for TLS.  */
161   unsigned int tls_gotno;
162   /* The first unused TLS .got entry.  Used only during
163      mips_elf_initialize_tls_index.  */
164   unsigned int tls_assigned_gotno;
165   /* The number of local .got entries, eventually including page entries.  */
166   unsigned int local_gotno;
167   /* The maximum number of page entries needed.  */
168   unsigned int page_gotno;
169   /* The number of relocations needed for the GOT entries.  */
170   unsigned int relocs;
171   /* The number of local .got entries we have used.  */
172   unsigned int assigned_gotno;
173   /* A hash table holding members of the got.  */
174   struct htab *got_entries;
175   /* A hash table holding mips_got_page_ref structures.  */
176   struct htab *got_page_refs;
177   /* A hash table of mips_got_page_entry structures.  */
178   struct htab *got_page_entries;
179   /* In multi-got links, a pointer to the next got (err, rather, most
180      of the time, it points to the previous got).  */
181   struct mips_got_info *next;
182 };
183
184 /* Structure passed when merging bfds' gots.  */
185
186 struct mips_elf_got_per_bfd_arg
187 {
188   /* The output bfd.  */
189   bfd *obfd;
190   /* The link information.  */
191   struct bfd_link_info *info;
192   /* A pointer to the primary got, i.e., the one that's going to get
193      the implicit relocations from DT_MIPS_LOCAL_GOTNO and
194      DT_MIPS_GOTSYM.  */
195   struct mips_got_info *primary;
196   /* A non-primary got we're trying to merge with other input bfd's
197      gots.  */
198   struct mips_got_info *current;
199   /* The maximum number of got entries that can be addressed with a
200      16-bit offset.  */
201   unsigned int max_count;
202   /* The maximum number of page entries needed by each got.  */
203   unsigned int max_pages;
204   /* The total number of global entries which will live in the
205      primary got and be automatically relocated.  This includes
206      those not referenced by the primary GOT but included in
207      the "master" GOT.  */
208   unsigned int global_count;
209 };
210
211 /* A structure used to pass information to htab_traverse callbacks
212    when laying out the GOT.  */
213
214 struct mips_elf_traverse_got_arg
215 {
216   struct bfd_link_info *info;
217   struct mips_got_info *g;
218   int value;
219 };
220
221 struct _mips_elf_section_data
222 {
223   struct bfd_elf_section_data elf;
224   union
225   {
226     bfd_byte *tdata;
227   } u;
228 };
229
230 #define mips_elf_section_data(sec) \
231   ((struct _mips_elf_section_data *) elf_section_data (sec))
232
233 #define is_mips_elf(bfd)                                \
234   (bfd_get_flavour (bfd) == bfd_target_elf_flavour      \
235    && elf_tdata (bfd) != NULL                           \
236    && elf_object_id (bfd) == MIPS_ELF_DATA)
237
238 /* The ABI says that every symbol used by dynamic relocations must have
239    a global GOT entry.  Among other things, this provides the dynamic
240    linker with a free, directly-indexed cache.  The GOT can therefore
241    contain symbols that are not referenced by GOT relocations themselves
242    (in other words, it may have symbols that are not referenced by things
243    like R_MIPS_GOT16 and R_MIPS_GOT_PAGE).
244
245    GOT relocations are less likely to overflow if we put the associated
246    GOT entries towards the beginning.  We therefore divide the global
247    GOT entries into two areas: "normal" and "reloc-only".  Entries in
248    the first area can be used for both dynamic relocations and GP-relative
249    accesses, while those in the "reloc-only" area are for dynamic
250    relocations only.
251
252    These GGA_* ("Global GOT Area") values are organised so that lower
253    values are more general than higher values.  Also, non-GGA_NONE
254    values are ordered by the position of the area in the GOT.  */
255 #define GGA_NORMAL 0
256 #define GGA_RELOC_ONLY 1
257 #define GGA_NONE 2
258
259 /* Information about a non-PIC interface to a PIC function.  There are
260    two ways of creating these interfaces.  The first is to add:
261
262         lui     $25,%hi(func)
263         addiu   $25,$25,%lo(func)
264
265    immediately before a PIC function "func".  The second is to add:
266
267         lui     $25,%hi(func)
268         j       func
269         addiu   $25,$25,%lo(func)
270
271    to a separate trampoline section.
272
273    Stubs of the first kind go in a new section immediately before the
274    target function.  Stubs of the second kind go in a single section
275    pointed to by the hash table's "strampoline" field.  */
276 struct mips_elf_la25_stub {
277   /* The generated section that contains this stub.  */
278   asection *stub_section;
279
280   /* The offset of the stub from the start of STUB_SECTION.  */
281   bfd_vma offset;
282
283   /* One symbol for the original function.  Its location is available
284      in H->root.root.u.def.  */
285   struct mips_elf_link_hash_entry *h;
286 };
287
288 /* Macros for populating a mips_elf_la25_stub.  */
289
290 #define LA25_LUI(VAL) (0x3c190000 | (VAL))      /* lui t9,VAL */
291 #define LA25_J(VAL) (0x08000000 | (((VAL) >> 2) & 0x3ffffff)) /* j VAL */
292 #define LA25_ADDIU(VAL) (0x27390000 | (VAL))    /* addiu t9,t9,VAL */
293 #define LA25_LUI_MICROMIPS(VAL)                                         \
294   (0x41b90000 | (VAL))                          /* lui t9,VAL */
295 #define LA25_J_MICROMIPS(VAL)                                           \
296   (0xd4000000 | (((VAL) >> 1) & 0x3ffffff))     /* j VAL */
297 #define LA25_ADDIU_MICROMIPS(VAL)                                       \
298   (0x33390000 | (VAL))                          /* addiu t9,t9,VAL */
299
300 /* This structure is passed to mips_elf_sort_hash_table_f when sorting
301    the dynamic symbols.  */
302
303 struct mips_elf_hash_sort_data
304 {
305   /* The symbol in the global GOT with the lowest dynamic symbol table
306      index.  */
307   struct elf_link_hash_entry *low;
308   /* The least dynamic symbol table index corresponding to a non-TLS
309      symbol with a GOT entry.  */
310   long min_got_dynindx;
311   /* The greatest dynamic symbol table index corresponding to a symbol
312      with a GOT entry that is not referenced (e.g., a dynamic symbol
313      with dynamic relocations pointing to it from non-primary GOTs).  */
314   long max_unref_got_dynindx;
315   /* The greatest dynamic symbol table index not corresponding to a
316      symbol without a GOT entry.  */
317   long max_non_got_dynindx;
318 };
319
320 /* We make up to two PLT entries if needed, one for standard MIPS code
321    and one for compressed code, either a MIPS16 or microMIPS one.  We
322    keep a separate record of traditional lazy-binding stubs, for easier
323    processing.  */
324
325 struct plt_entry
326 {
327   /* Traditional SVR4 stub offset, or -1 if none.  */
328   bfd_vma stub_offset;
329
330   /* Standard PLT entry offset, or -1 if none.  */
331   bfd_vma mips_offset;
332
333   /* Compressed PLT entry offset, or -1 if none.  */
334   bfd_vma comp_offset;
335
336   /* The corresponding .got.plt index, or -1 if none.  */
337   bfd_vma gotplt_index;
338
339   /* Whether we need a standard PLT entry.  */
340   unsigned int need_mips : 1;
341
342   /* Whether we need a compressed PLT entry.  */
343   unsigned int need_comp : 1;
344 };
345
346 /* The MIPS ELF linker needs additional information for each symbol in
347    the global hash table.  */
348
349 struct mips_elf_link_hash_entry
350 {
351   struct elf_link_hash_entry root;
352
353   /* External symbol information.  */
354   EXTR esym;
355
356   /* The la25 stub we have created for ths symbol, if any.  */
357   struct mips_elf_la25_stub *la25_stub;
358
359   /* Number of R_MIPS_32, R_MIPS_REL32, or R_MIPS_64 relocs against
360      this symbol.  */
361   unsigned int possibly_dynamic_relocs;
362
363   /* If there is a stub that 32 bit functions should use to call this
364      16 bit function, this points to the section containing the stub.  */
365   asection *fn_stub;
366
367   /* If there is a stub that 16 bit functions should use to call this
368      32 bit function, this points to the section containing the stub.  */
369   asection *call_stub;
370
371   /* This is like the call_stub field, but it is used if the function
372      being called returns a floating point value.  */
373   asection *call_fp_stub;
374
375   /* The highest GGA_* value that satisfies all references to this symbol.  */
376   unsigned int global_got_area : 2;
377
378   /* True if all GOT relocations against this symbol are for calls.  This is
379      a looser condition than no_fn_stub below, because there may be other
380      non-call non-GOT relocations against the symbol.  */
381   unsigned int got_only_for_calls : 1;
382
383   /* True if one of the relocations described by possibly_dynamic_relocs
384      is against a readonly section.  */
385   unsigned int readonly_reloc : 1;
386
387   /* True if there is a relocation against this symbol that must be
388      resolved by the static linker (in other words, if the relocation
389      cannot possibly be made dynamic).  */
390   unsigned int has_static_relocs : 1;
391
392   /* True if we must not create a .MIPS.stubs entry for this symbol.
393      This is set, for example, if there are relocations related to
394      taking the function's address, i.e. any but R_MIPS_CALL*16 ones.
395      See "MIPS ABI Supplement, 3rd Edition", p. 4-20.  */
396   unsigned int no_fn_stub : 1;
397
398   /* Whether we need the fn_stub; this is true if this symbol appears
399      in any relocs other than a 16 bit call.  */
400   unsigned int need_fn_stub : 1;
401
402   /* True if this symbol is referenced by branch relocations from
403      any non-PIC input file.  This is used to determine whether an
404      la25 stub is required.  */
405   unsigned int has_nonpic_branches : 1;
406
407   /* Does this symbol need a traditional MIPS lazy-binding stub
408      (as opposed to a PLT entry)?  */
409   unsigned int needs_lazy_stub : 1;
410
411   /* Does this symbol resolve to a PLT entry?  */
412   unsigned int use_plt_entry : 1;
413 };
414
415 /* MIPS ELF linker hash table.  */
416
417 struct mips_elf_link_hash_table
418 {
419   struct elf_link_hash_table root;
420
421   /* The number of .rtproc entries.  */
422   bfd_size_type procedure_count;
423
424   /* The size of the .compact_rel section (if SGI_COMPAT).  */
425   bfd_size_type compact_rel_size;
426
427   /* This flag indicates that the value of DT_MIPS_RLD_MAP dynamic entry
428      is set to the address of __rld_obj_head as in IRIX5 and IRIX6.  */
429   bfd_boolean use_rld_obj_head;
430
431   /* The  __rld_map or __rld_obj_head symbol. */
432   struct elf_link_hash_entry *rld_symbol;
433
434   /* This is set if we see any mips16 stub sections.  */
435   bfd_boolean mips16_stubs_seen;
436
437   /* True if we can generate copy relocs and PLTs.  */
438   bfd_boolean use_plts_and_copy_relocs;
439
440   /* True if we can only use 32-bit microMIPS instructions.  */
441   bfd_boolean insn32;
442
443   /* True if we're generating code for VxWorks.  */
444   bfd_boolean is_vxworks;
445
446   /* True if we already reported the small-data section overflow.  */
447   bfd_boolean small_data_overflow_reported;
448
449   /* Shortcuts to some dynamic sections, or NULL if they are not
450      being used.  */
451   asection *srelbss;
452   asection *sdynbss;
453   asection *srelplt;
454   asection *srelplt2;
455   asection *sgotplt;
456   asection *splt;
457   asection *sstubs;
458   asection *sgot;
459
460   /* The master GOT information.  */
461   struct mips_got_info *got_info;
462
463   /* The global symbol in the GOT with the lowest index in the dynamic
464      symbol table.  */
465   struct elf_link_hash_entry *global_gotsym;
466
467   /* The size of the PLT header in bytes.  */
468   bfd_vma plt_header_size;
469
470   /* The size of a standard PLT entry in bytes.  */
471   bfd_vma plt_mips_entry_size;
472
473   /* The size of a compressed PLT entry in bytes.  */
474   bfd_vma plt_comp_entry_size;
475
476   /* The offset of the next standard PLT entry to create.  */
477   bfd_vma plt_mips_offset;
478
479   /* The offset of the next compressed PLT entry to create.  */
480   bfd_vma plt_comp_offset;
481
482   /* The index of the next .got.plt entry to create.  */
483   bfd_vma plt_got_index;
484
485   /* The number of functions that need a lazy-binding stub.  */
486   bfd_vma lazy_stub_count;
487
488   /* The size of a function stub entry in bytes.  */
489   bfd_vma function_stub_size;
490
491   /* The number of reserved entries at the beginning of the GOT.  */
492   unsigned int reserved_gotno;
493
494   /* The section used for mips_elf_la25_stub trampolines.
495      See the comment above that structure for details.  */
496   asection *strampoline;
497
498   /* A table of mips_elf_la25_stubs, indexed by (input_section, offset)
499      pairs.  */
500   htab_t la25_stubs;
501
502   /* A function FN (NAME, IS, OS) that creates a new input section
503      called NAME and links it to output section OS.  If IS is nonnull,
504      the new section should go immediately before it, otherwise it
505      should go at the (current) beginning of OS.
506
507      The function returns the new section on success, otherwise it
508      returns null.  */
509   asection *(*add_stub_section) (const char *, asection *, asection *);
510
511   /* Small local sym cache.  */
512   struct sym_cache sym_cache;
513
514   /* Is the PLT header compressed?  */
515   unsigned int plt_header_is_comp : 1;
516 };
517
518 /* Get the MIPS ELF linker hash table from a link_info structure.  */
519
520 #define mips_elf_hash_table(p) \
521   (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
522   == MIPS_ELF_DATA ? ((struct mips_elf_link_hash_table *) ((p)->hash)) : NULL)
523
524 /* A structure used to communicate with htab_traverse callbacks.  */
525 struct mips_htab_traverse_info
526 {
527   /* The usual link-wide information.  */
528   struct bfd_link_info *info;
529   bfd *output_bfd;
530
531   /* Starts off FALSE and is set to TRUE if the link should be aborted.  */
532   bfd_boolean error;
533 };
534
535 /* MIPS ELF private object data.  */
536
537 struct mips_elf_obj_tdata
538 {
539   /* Generic ELF private object data.  */
540   struct elf_obj_tdata root;
541
542   /* Input BFD providing Tag_GNU_MIPS_ABI_FP attribute for output.  */
543   bfd *abi_fp_bfd;
544
545   /* Input BFD providing Tag_GNU_MIPS_ABI_MSA attribute for output.  */
546   bfd *abi_msa_bfd;
547
548   /* The GOT requirements of input bfds.  */
549   struct mips_got_info *got;
550
551   /* Used by _bfd_mips_elf_find_nearest_line.  The structure could be
552      included directly in this one, but there's no point to wasting
553      the memory just for the infrequently called find_nearest_line.  */
554   struct mips_elf_find_line *find_line_info;
555
556   /* An array of stub sections indexed by symbol number.  */
557   asection **local_stubs;
558   asection **local_call_stubs;
559
560   /* The Irix 5 support uses two virtual sections, which represent
561      text/data symbols defined in dynamic objects.  */
562   asymbol *elf_data_symbol;
563   asymbol *elf_text_symbol;
564   asection *elf_data_section;
565   asection *elf_text_section;
566 };
567
568 /* Get MIPS ELF private object data from BFD's tdata.  */
569
570 #define mips_elf_tdata(bfd) \
571   ((struct mips_elf_obj_tdata *) (bfd)->tdata.any)
572
573 #define TLS_RELOC_P(r_type) \
574   (r_type == R_MIPS_TLS_DTPMOD32                \
575    || r_type == R_MIPS_TLS_DTPMOD64             \
576    || r_type == R_MIPS_TLS_DTPREL32             \
577    || r_type == R_MIPS_TLS_DTPREL64             \
578    || r_type == R_MIPS_TLS_GD                   \
579    || r_type == R_MIPS_TLS_LDM                  \
580    || r_type == R_MIPS_TLS_DTPREL_HI16          \
581    || r_type == R_MIPS_TLS_DTPREL_LO16          \
582    || r_type == R_MIPS_TLS_GOTTPREL             \
583    || r_type == R_MIPS_TLS_TPREL32              \
584    || r_type == R_MIPS_TLS_TPREL64              \
585    || r_type == R_MIPS_TLS_TPREL_HI16           \
586    || r_type == R_MIPS_TLS_TPREL_LO16           \
587    || r_type == R_MIPS16_TLS_GD                 \
588    || r_type == R_MIPS16_TLS_LDM                \
589    || r_type == R_MIPS16_TLS_DTPREL_HI16        \
590    || r_type == R_MIPS16_TLS_DTPREL_LO16        \
591    || r_type == R_MIPS16_TLS_GOTTPREL           \
592    || r_type == R_MIPS16_TLS_TPREL_HI16         \
593    || r_type == R_MIPS16_TLS_TPREL_LO16         \
594    || r_type == R_MICROMIPS_TLS_GD              \
595    || r_type == R_MICROMIPS_TLS_LDM             \
596    || r_type == R_MICROMIPS_TLS_DTPREL_HI16     \
597    || r_type == R_MICROMIPS_TLS_DTPREL_LO16     \
598    || r_type == R_MICROMIPS_TLS_GOTTPREL        \
599    || r_type == R_MICROMIPS_TLS_TPREL_HI16      \
600    || r_type == R_MICROMIPS_TLS_TPREL_LO16)
601
602 /* Structure used to pass information to mips_elf_output_extsym.  */
603
604 struct extsym_info
605 {
606   bfd *abfd;
607   struct bfd_link_info *info;
608   struct ecoff_debug_info *debug;
609   const struct ecoff_debug_swap *swap;
610   bfd_boolean failed;
611 };
612
613 /* The names of the runtime procedure table symbols used on IRIX5.  */
614
615 static const char * const mips_elf_dynsym_rtproc_names[] =
616 {
617   "_procedure_table",
618   "_procedure_string_table",
619   "_procedure_table_size",
620   NULL
621 };
622
623 /* These structures are used to generate the .compact_rel section on
624    IRIX5.  */
625
626 typedef struct
627 {
628   unsigned long id1;            /* Always one?  */
629   unsigned long num;            /* Number of compact relocation entries.  */
630   unsigned long id2;            /* Always two?  */
631   unsigned long offset;         /* The file offset of the first relocation.  */
632   unsigned long reserved0;      /* Zero?  */
633   unsigned long reserved1;      /* Zero?  */
634 } Elf32_compact_rel;
635
636 typedef struct
637 {
638   bfd_byte id1[4];
639   bfd_byte num[4];
640   bfd_byte id2[4];
641   bfd_byte offset[4];
642   bfd_byte reserved0[4];
643   bfd_byte reserved1[4];
644 } Elf32_External_compact_rel;
645
646 typedef struct
647 {
648   unsigned int ctype : 1;       /* 1: long 0: short format. See below.  */
649   unsigned int rtype : 4;       /* Relocation types. See below.  */
650   unsigned int dist2to : 8;
651   unsigned int relvaddr : 19;   /* (VADDR - vaddr of the previous entry)/ 4 */
652   unsigned long konst;          /* KONST field. See below.  */
653   unsigned long vaddr;          /* VADDR to be relocated.  */
654 } Elf32_crinfo;
655
656 typedef struct
657 {
658   unsigned int ctype : 1;       /* 1: long 0: short format. See below.  */
659   unsigned int rtype : 4;       /* Relocation types. See below.  */
660   unsigned int dist2to : 8;
661   unsigned int relvaddr : 19;   /* (VADDR - vaddr of the previous entry)/ 4 */
662   unsigned long konst;          /* KONST field. See below.  */
663 } Elf32_crinfo2;
664
665 typedef struct
666 {
667   bfd_byte info[4];
668   bfd_byte konst[4];
669   bfd_byte vaddr[4];
670 } Elf32_External_crinfo;
671
672 typedef struct
673 {
674   bfd_byte info[4];
675   bfd_byte konst[4];
676 } Elf32_External_crinfo2;
677
678 /* These are the constants used to swap the bitfields in a crinfo.  */
679
680 #define CRINFO_CTYPE (0x1)
681 #define CRINFO_CTYPE_SH (31)
682 #define CRINFO_RTYPE (0xf)
683 #define CRINFO_RTYPE_SH (27)
684 #define CRINFO_DIST2TO (0xff)
685 #define CRINFO_DIST2TO_SH (19)
686 #define CRINFO_RELVADDR (0x7ffff)
687 #define CRINFO_RELVADDR_SH (0)
688
689 /* A compact relocation info has long (3 words) or short (2 words)
690    formats.  A short format doesn't have VADDR field and relvaddr
691    fields contains ((VADDR - vaddr of the previous entry) >> 2).  */
692 #define CRF_MIPS_LONG                   1
693 #define CRF_MIPS_SHORT                  0
694
695 /* There are 4 types of compact relocation at least. The value KONST
696    has different meaning for each type:
697
698    (type)               (konst)
699    CT_MIPS_REL32        Address in data
700    CT_MIPS_WORD         Address in word (XXX)
701    CT_MIPS_GPHI_LO      GP - vaddr
702    CT_MIPS_JMPAD        Address to jump
703    */
704
705 #define CRT_MIPS_REL32                  0xa
706 #define CRT_MIPS_WORD                   0xb
707 #define CRT_MIPS_GPHI_LO                0xc
708 #define CRT_MIPS_JMPAD                  0xd
709
710 #define mips_elf_set_cr_format(x,format)        ((x).ctype = (format))
711 #define mips_elf_set_cr_type(x,type)            ((x).rtype = (type))
712 #define mips_elf_set_cr_dist2to(x,v)            ((x).dist2to = (v))
713 #define mips_elf_set_cr_relvaddr(x,d)           ((x).relvaddr = (d)<<2)
714 \f
715 /* The structure of the runtime procedure descriptor created by the
716    loader for use by the static exception system.  */
717
718 typedef struct runtime_pdr {
719         bfd_vma adr;            /* Memory address of start of procedure.  */
720         long    regmask;        /* Save register mask.  */
721         long    regoffset;      /* Save register offset.  */
722         long    fregmask;       /* Save floating point register mask.  */
723         long    fregoffset;     /* Save floating point register offset.  */
724         long    frameoffset;    /* Frame size.  */
725         short   framereg;       /* Frame pointer register.  */
726         short   pcreg;          /* Offset or reg of return pc.  */
727         long    irpss;          /* Index into the runtime string table.  */
728         long    reserved;
729         struct exception_info *exception_info;/* Pointer to exception array.  */
730 } RPDR, *pRPDR;
731 #define cbRPDR sizeof (RPDR)
732 #define rpdNil ((pRPDR) 0)
733 \f
734 static struct mips_got_entry *mips_elf_create_local_got_entry
735   (bfd *, struct bfd_link_info *, bfd *, bfd_vma, unsigned long,
736    struct mips_elf_link_hash_entry *, int);
737 static bfd_boolean mips_elf_sort_hash_table_f
738   (struct mips_elf_link_hash_entry *, void *);
739 static bfd_vma mips_elf_high
740   (bfd_vma);
741 static bfd_boolean mips_elf_create_dynamic_relocation
742   (bfd *, struct bfd_link_info *, const Elf_Internal_Rela *,
743    struct mips_elf_link_hash_entry *, asection *, bfd_vma,
744    bfd_vma *, asection *);
745 static bfd_vma mips_elf_adjust_gp
746   (bfd *, struct mips_got_info *, bfd *);
747
748 /* This will be used when we sort the dynamic relocation records.  */
749 static bfd *reldyn_sorting_bfd;
750
751 /* True if ABFD is for CPUs with load interlocking that include
752    non-MIPS1 CPUs and R3900.  */
753 #define LOAD_INTERLOCKS_P(abfd) \
754   (   ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) != E_MIPS_ARCH_1) \
755    || ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == E_MIPS_MACH_3900))
756
757 /* True if ABFD is for CPUs that are faster if JAL is converted to BAL.
758    This should be safe for all architectures.  We enable this predicate
759    for RM9000 for now.  */
760 #define JAL_TO_BAL_P(abfd) \
761   ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == E_MIPS_MACH_9000)
762
763 /* True if ABFD is for CPUs that are faster if JALR is converted to BAL.
764    This should be safe for all architectures.  We enable this predicate for
765    all CPUs.  */
766 #define JALR_TO_BAL_P(abfd) 1
767
768 /* True if ABFD is for CPUs that are faster if JR is converted to B.
769    This should be safe for all architectures.  We enable this predicate for
770    all CPUs.  */
771 #define JR_TO_B_P(abfd) 1
772
773 /* True if ABFD is a PIC object.  */
774 #define PIC_OBJECT_P(abfd) \
775   ((elf_elfheader (abfd)->e_flags & EF_MIPS_PIC) != 0)
776
777 /* Nonzero if ABFD is using the N32 ABI.  */
778 #define ABI_N32_P(abfd) \
779   ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI2) != 0)
780
781 /* Nonzero if ABFD is using the N64 ABI.  */
782 #define ABI_64_P(abfd) \
783   (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64)
784
785 /* Nonzero if ABFD is using NewABI conventions.  */
786 #define NEWABI_P(abfd) (ABI_N32_P (abfd) || ABI_64_P (abfd))
787
788 /* Nonzero if ABFD has microMIPS code.  */
789 #define MICROMIPS_P(abfd) \
790   ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MICROMIPS) != 0)
791
792 /* The IRIX compatibility level we are striving for.  */
793 #define IRIX_COMPAT(abfd) \
794   (get_elf_backend_data (abfd)->elf_backend_mips_irix_compat (abfd))
795
796 /* Whether we are trying to be compatible with IRIX at all.  */
797 #define SGI_COMPAT(abfd) \
798   (IRIX_COMPAT (abfd) != ict_none)
799
800 /* The name of the options section.  */
801 #define MIPS_ELF_OPTIONS_SECTION_NAME(abfd) \
802   (NEWABI_P (abfd) ? ".MIPS.options" : ".options")
803
804 /* True if NAME is the recognized name of any SHT_MIPS_OPTIONS section.
805    Some IRIX system files do not use MIPS_ELF_OPTIONS_SECTION_NAME.  */
806 #define MIPS_ELF_OPTIONS_SECTION_NAME_P(NAME) \
807   (strcmp (NAME, ".MIPS.options") == 0 || strcmp (NAME, ".options") == 0)
808
809 /* Whether the section is readonly.  */
810 #define MIPS_ELF_READONLY_SECTION(sec) \
811   ((sec->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY))         \
812    == (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
813
814 /* The name of the stub section.  */
815 #define MIPS_ELF_STUB_SECTION_NAME(abfd) ".MIPS.stubs"
816
817 /* The size of an external REL relocation.  */
818 #define MIPS_ELF_REL_SIZE(abfd) \
819   (get_elf_backend_data (abfd)->s->sizeof_rel)
820
821 /* The size of an external RELA relocation.  */
822 #define MIPS_ELF_RELA_SIZE(abfd) \
823   (get_elf_backend_data (abfd)->s->sizeof_rela)
824
825 /* The size of an external dynamic table entry.  */
826 #define MIPS_ELF_DYN_SIZE(abfd) \
827   (get_elf_backend_data (abfd)->s->sizeof_dyn)
828
829 /* The size of a GOT entry.  */
830 #define MIPS_ELF_GOT_SIZE(abfd) \
831   (get_elf_backend_data (abfd)->s->arch_size / 8)
832
833 /* The size of the .rld_map section. */
834 #define MIPS_ELF_RLD_MAP_SIZE(abfd) \
835   (get_elf_backend_data (abfd)->s->arch_size / 8)
836
837 /* The size of a symbol-table entry.  */
838 #define MIPS_ELF_SYM_SIZE(abfd) \
839   (get_elf_backend_data (abfd)->s->sizeof_sym)
840
841 /* The default alignment for sections, as a power of two.  */
842 #define MIPS_ELF_LOG_FILE_ALIGN(abfd)                           \
843   (get_elf_backend_data (abfd)->s->log_file_align)
844
845 /* Get word-sized data.  */
846 #define MIPS_ELF_GET_WORD(abfd, ptr) \
847   (ABI_64_P (abfd) ? bfd_get_64 (abfd, ptr) : bfd_get_32 (abfd, ptr))
848
849 /* Put out word-sized data.  */
850 #define MIPS_ELF_PUT_WORD(abfd, val, ptr)       \
851   (ABI_64_P (abfd)                              \
852    ? bfd_put_64 (abfd, val, ptr)                \
853    : bfd_put_32 (abfd, val, ptr))
854
855 /* The opcode for word-sized loads (LW or LD).  */
856 #define MIPS_ELF_LOAD_WORD(abfd) \
857   (ABI_64_P (abfd) ? 0xdc000000 : 0x8c000000)
858
859 /* Add a dynamic symbol table-entry.  */
860 #define MIPS_ELF_ADD_DYNAMIC_ENTRY(info, tag, val)      \
861   _bfd_elf_add_dynamic_entry (info, tag, val)
862
863 #define MIPS_ELF_RTYPE_TO_HOWTO(abfd, rtype, rela)                      \
864   (get_elf_backend_data (abfd)->elf_backend_mips_rtype_to_howto (rtype, rela))
865
866 /* The name of the dynamic relocation section.  */
867 #define MIPS_ELF_REL_DYN_NAME(INFO) \
868   (mips_elf_hash_table (INFO)->is_vxworks ? ".rela.dyn" : ".rel.dyn")
869
870 /* In case we're on a 32-bit machine, construct a 64-bit "-1" value
871    from smaller values.  Start with zero, widen, *then* decrement.  */
872 #define MINUS_ONE       (((bfd_vma)0) - 1)
873 #define MINUS_TWO       (((bfd_vma)0) - 2)
874
875 /* The value to write into got[1] for SVR4 targets, to identify it is
876    a GNU object.  The dynamic linker can then use got[1] to store the
877    module pointer.  */
878 #define MIPS_ELF_GNU_GOT1_MASK(abfd) \
879   ((bfd_vma) 1 << (ABI_64_P (abfd) ? 63 : 31))
880
881 /* The offset of $gp from the beginning of the .got section.  */
882 #define ELF_MIPS_GP_OFFSET(INFO) \
883   (mips_elf_hash_table (INFO)->is_vxworks ? 0x0 : 0x7ff0)
884
885 /* The maximum size of the GOT for it to be addressable using 16-bit
886    offsets from $gp.  */
887 #define MIPS_ELF_GOT_MAX_SIZE(INFO) (ELF_MIPS_GP_OFFSET (INFO) + 0x7fff)
888
889 /* Instructions which appear in a stub.  */
890 #define STUB_LW(abfd)                                                   \
891   ((ABI_64_P (abfd)                                                     \
892     ? 0xdf998010                                /* ld t9,0x8010(gp) */  \
893     : 0x8f998010))                              /* lw t9,0x8010(gp) */
894 #define STUB_MOVE(abfd)                                                 \
895    ((ABI_64_P (abfd)                                                    \
896      ? 0x03e0782d                               /* daddu t7,ra */       \
897      : 0x03e07821))                             /* addu t7,ra */
898 #define STUB_LUI(VAL) (0x3c180000 + (VAL))      /* lui t8,VAL */
899 #define STUB_JALR 0x0320f809                    /* jalr t9,ra */
900 #define STUB_ORI(VAL) (0x37180000 + (VAL))      /* ori t8,t8,VAL */
901 #define STUB_LI16U(VAL) (0x34180000 + (VAL))    /* ori t8,zero,VAL unsigned */
902 #define STUB_LI16S(abfd, VAL)                                           \
903    ((ABI_64_P (abfd)                                                    \
904     ? (0x64180000 + (VAL))      /* daddiu t8,zero,VAL sign extended */  \
905     : (0x24180000 + (VAL))))    /* addiu t8,zero,VAL sign extended */
906
907 /* Likewise for the microMIPS ASE.  */
908 #define STUB_LW_MICROMIPS(abfd)                                         \
909   (ABI_64_P (abfd)                                                      \
910    ? 0xdf3c8010                                 /* ld t9,0x8010(gp) */  \
911    : 0xff3c8010)                                /* lw t9,0x8010(gp) */
912 #define STUB_MOVE_MICROMIPS 0x0dff              /* move t7,ra */
913 #define STUB_MOVE32_MICROMIPS(abfd)                                     \
914    (ABI_64_P (abfd)                                                     \
915     ? 0x581f7950                                /* daddu t7,ra,zero */  \
916     : 0x001f7950)                               /* addu t7,ra,zero */
917 #define STUB_LUI_MICROMIPS(VAL)                                         \
918    (0x41b80000 + (VAL))                         /* lui t8,VAL */
919 #define STUB_JALR_MICROMIPS 0x45d9              /* jalr t9 */
920 #define STUB_JALR32_MICROMIPS 0x03f90f3c        /* jalr ra,t9 */
921 #define STUB_ORI_MICROMIPS(VAL)                                         \
922   (0x53180000 + (VAL))                          /* ori t8,t8,VAL */
923 #define STUB_LI16U_MICROMIPS(VAL)                                       \
924   (0x53000000 + (VAL))                          /* ori t8,zero,VAL unsigned */
925 #define STUB_LI16S_MICROMIPS(abfd, VAL)                                 \
926    (ABI_64_P (abfd)                                                     \
927     ? 0x5f000000 + (VAL)        /* daddiu t8,zero,VAL sign extended */  \
928     : 0x33000000 + (VAL))       /* addiu t8,zero,VAL sign extended */
929
930 #define MIPS_FUNCTION_STUB_NORMAL_SIZE 16
931 #define MIPS_FUNCTION_STUB_BIG_SIZE 20
932 #define MICROMIPS_FUNCTION_STUB_NORMAL_SIZE 12
933 #define MICROMIPS_FUNCTION_STUB_BIG_SIZE 16
934 #define MICROMIPS_INSN32_FUNCTION_STUB_NORMAL_SIZE 16
935 #define MICROMIPS_INSN32_FUNCTION_STUB_BIG_SIZE 20
936
937 /* The name of the dynamic interpreter.  This is put in the .interp
938    section.  */
939
940 #define ELF_DYNAMIC_INTERPRETER(abfd)           \
941    (ABI_N32_P (abfd) ? "/usr/lib32/libc.so.1"   \
942     : ABI_64_P (abfd) ? "/usr/lib64/libc.so.1"  \
943     : "/usr/lib/libc.so.1")
944
945 #ifdef BFD64
946 #define MNAME(bfd,pre,pos) \
947   (ABI_64_P (bfd) ? CONCAT4 (pre,64,_,pos) : CONCAT4 (pre,32,_,pos))
948 #define ELF_R_SYM(bfd, i)                                       \
949   (ABI_64_P (bfd) ? ELF64_R_SYM (i) : ELF32_R_SYM (i))
950 #define ELF_R_TYPE(bfd, i)                                      \
951   (ABI_64_P (bfd) ? ELF64_MIPS_R_TYPE (i) : ELF32_R_TYPE (i))
952 #define ELF_R_INFO(bfd, s, t)                                   \
953   (ABI_64_P (bfd) ? ELF64_R_INFO (s, t) : ELF32_R_INFO (s, t))
954 #else
955 #define MNAME(bfd,pre,pos) CONCAT4 (pre,32,_,pos)
956 #define ELF_R_SYM(bfd, i)                                       \
957   (ELF32_R_SYM (i))
958 #define ELF_R_TYPE(bfd, i)                                      \
959   (ELF32_R_TYPE (i))
960 #define ELF_R_INFO(bfd, s, t)                                   \
961   (ELF32_R_INFO (s, t))
962 #endif
963 \f
964   /* The mips16 compiler uses a couple of special sections to handle
965      floating point arguments.
966
967      Section names that look like .mips16.fn.FNNAME contain stubs that
968      copy floating point arguments from the fp regs to the gp regs and
969      then jump to FNNAME.  If any 32 bit function calls FNNAME, the
970      call should be redirected to the stub instead.  If no 32 bit
971      function calls FNNAME, the stub should be discarded.  We need to
972      consider any reference to the function, not just a call, because
973      if the address of the function is taken we will need the stub,
974      since the address might be passed to a 32 bit function.
975
976      Section names that look like .mips16.call.FNNAME contain stubs
977      that copy floating point arguments from the gp regs to the fp
978      regs and then jump to FNNAME.  If FNNAME is a 32 bit function,
979      then any 16 bit function that calls FNNAME should be redirected
980      to the stub instead.  If FNNAME is not a 32 bit function, the
981      stub should be discarded.
982
983      .mips16.call.fp.FNNAME sections are similar, but contain stubs
984      which call FNNAME and then copy the return value from the fp regs
985      to the gp regs.  These stubs store the return value in $18 while
986      calling FNNAME; any function which might call one of these stubs
987      must arrange to save $18 around the call.  (This case is not
988      needed for 32 bit functions that call 16 bit functions, because
989      16 bit functions always return floating point values in both
990      $f0/$f1 and $2/$3.)
991
992      Note that in all cases FNNAME might be defined statically.
993      Therefore, FNNAME is not used literally.  Instead, the relocation
994      information will indicate which symbol the section is for.
995
996      We record any stubs that we find in the symbol table.  */
997
998 #define FN_STUB ".mips16.fn."
999 #define CALL_STUB ".mips16.call."
1000 #define CALL_FP_STUB ".mips16.call.fp."
1001
1002 #define FN_STUB_P(name) CONST_STRNEQ (name, FN_STUB)
1003 #define CALL_STUB_P(name) CONST_STRNEQ (name, CALL_STUB)
1004 #define CALL_FP_STUB_P(name) CONST_STRNEQ (name, CALL_FP_STUB)
1005 \f
1006 /* The format of the first PLT entry in an O32 executable.  */
1007 static const bfd_vma mips_o32_exec_plt0_entry[] =
1008 {
1009   0x3c1c0000,   /* lui $28, %hi(&GOTPLT[0])                             */
1010   0x8f990000,   /* lw $25, %lo(&GOTPLT[0])($28)                         */
1011   0x279c0000,   /* addiu $28, $28, %lo(&GOTPLT[0])                      */
1012   0x031cc023,   /* subu $24, $24, $28                                   */
1013   0x03e07821,   /* move $15, $31        # 32-bit move (addu)            */
1014   0x0018c082,   /* srl $24, $24, 2                                      */
1015   0x0320f809,   /* jalr $25                                             */
1016   0x2718fffe    /* subu $24, $24, 2                                     */
1017 };
1018
1019 /* The format of the first PLT entry in an N32 executable.  Different
1020    because gp ($28) is not available; we use t2 ($14) instead.  */
1021 static const bfd_vma mips_n32_exec_plt0_entry[] =
1022 {
1023   0x3c0e0000,   /* lui $14, %hi(&GOTPLT[0])                             */
1024   0x8dd90000,   /* lw $25, %lo(&GOTPLT[0])($14)                         */
1025   0x25ce0000,   /* addiu $14, $14, %lo(&GOTPLT[0])                      */
1026   0x030ec023,   /* subu $24, $24, $14                                   */
1027   0x03e07821,   /* move $15, $31        # 32-bit move (addu)            */
1028   0x0018c082,   /* srl $24, $24, 2                                      */
1029   0x0320f809,   /* jalr $25                                             */
1030   0x2718fffe    /* subu $24, $24, 2                                     */
1031 };
1032
1033 /* The format of the first PLT entry in an N64 executable.  Different
1034    from N32 because of the increased size of GOT entries.  */
1035 static const bfd_vma mips_n64_exec_plt0_entry[] =
1036 {
1037   0x3c0e0000,   /* lui $14, %hi(&GOTPLT[0])                             */
1038   0xddd90000,   /* ld $25, %lo(&GOTPLT[0])($14)                         */
1039   0x25ce0000,   /* addiu $14, $14, %lo(&GOTPLT[0])                      */
1040   0x030ec023,   /* subu $24, $24, $14                                   */
1041   0x03e0782d,   /* move $15, $31        # 64-bit move (daddu)           */
1042   0x0018c0c2,   /* srl $24, $24, 3                                      */
1043   0x0320f809,   /* jalr $25                                             */
1044   0x2718fffe    /* subu $24, $24, 2                                     */
1045 };
1046
1047 /* The format of the microMIPS first PLT entry in an O32 executable.
1048    We rely on v0 ($2) rather than t8 ($24) to contain the address
1049    of the GOTPLT entry handled, so this stub may only be used when
1050    all the subsequent PLT entries are microMIPS code too.
1051
1052    The trailing NOP is for alignment and correct disassembly only.  */
1053 static const bfd_vma micromips_o32_exec_plt0_entry[] =
1054 {
1055   0x7980, 0x0000,       /* addiupc $3, (&GOTPLT[0]) - .                 */
1056   0xff23, 0x0000,       /* lw $25, 0($3)                                */
1057   0x0535,               /* subu $2, $2, $3                              */
1058   0x2525,               /* srl $2, $2, 2                                */
1059   0x3302, 0xfffe,       /* subu $24, $2, 2                              */
1060   0x0dff,               /* move $15, $31                                */
1061   0x45f9,               /* jalrs $25                                    */
1062   0x0f83,               /* move $28, $3                                 */
1063   0x0c00                /* nop                                          */
1064 };
1065
1066 /* The format of the microMIPS first PLT entry in an O32 executable
1067    in the insn32 mode.  */
1068 static const bfd_vma micromips_insn32_o32_exec_plt0_entry[] =
1069 {
1070   0x41bc, 0x0000,       /* lui $28, %hi(&GOTPLT[0])                     */
1071   0xff3c, 0x0000,       /* lw $25, %lo(&GOTPLT[0])($28)                 */
1072   0x339c, 0x0000,       /* addiu $28, $28, %lo(&GOTPLT[0])              */
1073   0x0398, 0xc1d0,       /* subu $24, $24, $28                           */
1074   0x001f, 0x7950,       /* move $15, $31                                */
1075   0x0318, 0x1040,       /* srl $24, $24, 2                              */
1076   0x03f9, 0x0f3c,       /* jalr $25                                     */
1077   0x3318, 0xfffe        /* subu $24, $24, 2                             */
1078 };
1079
1080 /* The format of subsequent standard PLT entries.  */
1081 static const bfd_vma mips_exec_plt_entry[] =
1082 {
1083   0x3c0f0000,   /* lui $15, %hi(.got.plt entry)                 */
1084   0x01f90000,   /* l[wd] $25, %lo(.got.plt entry)($15)          */
1085   0x25f80000,   /* addiu $24, $15, %lo(.got.plt entry)          */
1086   0x03200008    /* jr $25                                       */
1087 };
1088
1089 /* The format of subsequent MIPS16 o32 PLT entries.  We use v0 ($2)
1090    and v1 ($3) as temporaries because t8 ($24) and t9 ($25) are not
1091    directly addressable.  */
1092 static const bfd_vma mips16_o32_exec_plt_entry[] =
1093 {
1094   0xb203,               /* lw $2, 12($pc)                       */
1095   0x9a60,               /* lw $3, 0($2)                         */
1096   0x651a,               /* move $24, $2                         */
1097   0xeb00,               /* jr $3                                */
1098   0x653b,               /* move $25, $3                         */
1099   0x6500,               /* nop                                  */
1100   0x0000, 0x0000        /* .word (.got.plt entry)               */
1101 };
1102
1103 /* The format of subsequent microMIPS o32 PLT entries.  We use v0 ($2)
1104    as a temporary because t8 ($24) is not addressable with ADDIUPC.  */
1105 static const bfd_vma micromips_o32_exec_plt_entry[] =
1106 {
1107   0x7900, 0x0000,       /* addiupc $2, (.got.plt entry) - .     */
1108   0xff22, 0x0000,       /* lw $25, 0($2)                        */
1109   0x4599,               /* jr $25                               */
1110   0x0f02                /* move $24, $2                         */
1111 };
1112
1113 /* The format of subsequent microMIPS o32 PLT entries in the insn32 mode.  */
1114 static const bfd_vma micromips_insn32_o32_exec_plt_entry[] =
1115 {
1116   0x41af, 0x0000,       /* lui $15, %hi(.got.plt entry)         */
1117   0xff2f, 0x0000,       /* lw $25, %lo(.got.plt entry)($15)     */
1118   0x0019, 0x0f3c,       /* jr $25                               */
1119   0x330f, 0x0000        /* addiu $24, $15, %lo(.got.plt entry)  */
1120 };
1121
1122 /* The format of the first PLT entry in a VxWorks executable.  */
1123 static const bfd_vma mips_vxworks_exec_plt0_entry[] =
1124 {
1125   0x3c190000,   /* lui t9, %hi(_GLOBAL_OFFSET_TABLE_)           */
1126   0x27390000,   /* addiu t9, t9, %lo(_GLOBAL_OFFSET_TABLE_)     */
1127   0x8f390008,   /* lw t9, 8(t9)                                 */
1128   0x00000000,   /* nop                                          */
1129   0x03200008,   /* jr t9                                        */
1130   0x00000000    /* nop                                          */
1131 };
1132
1133 /* The format of subsequent PLT entries.  */
1134 static const bfd_vma mips_vxworks_exec_plt_entry[] =
1135 {
1136   0x10000000,   /* b .PLT_resolver                      */
1137   0x24180000,   /* li t8, <pltindex>                    */
1138   0x3c190000,   /* lui t9, %hi(<.got.plt slot>)         */
1139   0x27390000,   /* addiu t9, t9, %lo(<.got.plt slot>)   */
1140   0x8f390000,   /* lw t9, 0(t9)                         */
1141   0x00000000,   /* nop                                  */
1142   0x03200008,   /* jr t9                                */
1143   0x00000000    /* nop                                  */
1144 };
1145
1146 /* The format of the first PLT entry in a VxWorks shared object.  */
1147 static const bfd_vma mips_vxworks_shared_plt0_entry[] =
1148 {
1149   0x8f990008,   /* lw t9, 8(gp)         */
1150   0x00000000,   /* nop                  */
1151   0x03200008,   /* jr t9                */
1152   0x00000000,   /* nop                  */
1153   0x00000000,   /* nop                  */
1154   0x00000000    /* nop                  */
1155 };
1156
1157 /* The format of subsequent PLT entries.  */
1158 static const bfd_vma mips_vxworks_shared_plt_entry[] =
1159 {
1160   0x10000000,   /* b .PLT_resolver      */
1161   0x24180000    /* li t8, <pltindex>    */
1162 };
1163 \f
1164 /* microMIPS 32-bit opcode helper installer.  */
1165
1166 static void
1167 bfd_put_micromips_32 (const bfd *abfd, bfd_vma opcode, bfd_byte *ptr)
1168 {
1169   bfd_put_16 (abfd, (opcode >> 16) & 0xffff, ptr);
1170   bfd_put_16 (abfd,  opcode        & 0xffff, ptr + 2);
1171 }
1172
1173 /* microMIPS 32-bit opcode helper retriever.  */
1174
1175 static bfd_vma
1176 bfd_get_micromips_32 (const bfd *abfd, const bfd_byte *ptr)
1177 {
1178   return (bfd_get_16 (abfd, ptr) << 16) | bfd_get_16 (abfd, ptr + 2);
1179 }
1180 \f
1181 /* Look up an entry in a MIPS ELF linker hash table.  */
1182
1183 #define mips_elf_link_hash_lookup(table, string, create, copy, follow)  \
1184   ((struct mips_elf_link_hash_entry *)                                  \
1185    elf_link_hash_lookup (&(table)->root, (string), (create),            \
1186                          (copy), (follow)))
1187
1188 /* Traverse a MIPS ELF linker hash table.  */
1189
1190 #define mips_elf_link_hash_traverse(table, func, info)                  \
1191   (elf_link_hash_traverse                                               \
1192    (&(table)->root,                                                     \
1193     (bfd_boolean (*) (struct elf_link_hash_entry *, void *)) (func),    \
1194     (info)))
1195
1196 /* Find the base offsets for thread-local storage in this object,
1197    for GD/LD and IE/LE respectively.  */
1198
1199 #define TP_OFFSET 0x7000
1200 #define DTP_OFFSET 0x8000
1201
1202 static bfd_vma
1203 dtprel_base (struct bfd_link_info *info)
1204 {
1205   /* If tls_sec is NULL, we should have signalled an error already.  */
1206   if (elf_hash_table (info)->tls_sec == NULL)
1207     return 0;
1208   return elf_hash_table (info)->tls_sec->vma + DTP_OFFSET;
1209 }
1210
1211 static bfd_vma
1212 tprel_base (struct bfd_link_info *info)
1213 {
1214   /* If tls_sec is NULL, we should have signalled an error already.  */
1215   if (elf_hash_table (info)->tls_sec == NULL)
1216     return 0;
1217   return elf_hash_table (info)->tls_sec->vma + TP_OFFSET;
1218 }
1219
1220 /* Create an entry in a MIPS ELF linker hash table.  */
1221
1222 static struct bfd_hash_entry *
1223 mips_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
1224                             struct bfd_hash_table *table, const char *string)
1225 {
1226   struct mips_elf_link_hash_entry *ret =
1227     (struct mips_elf_link_hash_entry *) entry;
1228
1229   /* Allocate the structure if it has not already been allocated by a
1230      subclass.  */
1231   if (ret == NULL)
1232     ret = bfd_hash_allocate (table, sizeof (struct mips_elf_link_hash_entry));
1233   if (ret == NULL)
1234     return (struct bfd_hash_entry *) ret;
1235
1236   /* Call the allocation method of the superclass.  */
1237   ret = ((struct mips_elf_link_hash_entry *)
1238          _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
1239                                      table, string));
1240   if (ret != NULL)
1241     {
1242       /* Set local fields.  */
1243       memset (&ret->esym, 0, sizeof (EXTR));
1244       /* We use -2 as a marker to indicate that the information has
1245          not been set.  -1 means there is no associated ifd.  */
1246       ret->esym.ifd = -2;
1247       ret->la25_stub = 0;
1248       ret->possibly_dynamic_relocs = 0;
1249       ret->fn_stub = NULL;
1250       ret->call_stub = NULL;
1251       ret->call_fp_stub = NULL;
1252       ret->global_got_area = GGA_NONE;
1253       ret->got_only_for_calls = TRUE;
1254       ret->readonly_reloc = FALSE;
1255       ret->has_static_relocs = FALSE;
1256       ret->no_fn_stub = FALSE;
1257       ret->need_fn_stub = FALSE;
1258       ret->has_nonpic_branches = FALSE;
1259       ret->needs_lazy_stub = FALSE;
1260       ret->use_plt_entry = FALSE;
1261     }
1262
1263   return (struct bfd_hash_entry *) ret;
1264 }
1265
1266 /* Allocate MIPS ELF private object data.  */
1267
1268 bfd_boolean
1269 _bfd_mips_elf_mkobject (bfd *abfd)
1270 {
1271   return bfd_elf_allocate_object (abfd, sizeof (struct mips_elf_obj_tdata),
1272                                   MIPS_ELF_DATA);
1273 }
1274
1275 bfd_boolean
1276 _bfd_mips_elf_new_section_hook (bfd *abfd, asection *sec)
1277 {
1278   if (!sec->used_by_bfd)
1279     {
1280       struct _mips_elf_section_data *sdata;
1281       bfd_size_type amt = sizeof (*sdata);
1282
1283       sdata = bfd_zalloc (abfd, amt);
1284       if (sdata == NULL)
1285         return FALSE;
1286       sec->used_by_bfd = sdata;
1287     }
1288
1289   return _bfd_elf_new_section_hook (abfd, sec);
1290 }
1291 \f
1292 /* Read ECOFF debugging information from a .mdebug section into a
1293    ecoff_debug_info structure.  */
1294
1295 bfd_boolean
1296 _bfd_mips_elf_read_ecoff_info (bfd *abfd, asection *section,
1297                                struct ecoff_debug_info *debug)
1298 {
1299   HDRR *symhdr;
1300   const struct ecoff_debug_swap *swap;
1301   char *ext_hdr;
1302
1303   swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
1304   memset (debug, 0, sizeof (*debug));
1305
1306   ext_hdr = bfd_malloc (swap->external_hdr_size);
1307   if (ext_hdr == NULL && swap->external_hdr_size != 0)
1308     goto error_return;
1309
1310   if (! bfd_get_section_contents (abfd, section, ext_hdr, 0,
1311                                   swap->external_hdr_size))
1312     goto error_return;
1313
1314   symhdr = &debug->symbolic_header;
1315   (*swap->swap_hdr_in) (abfd, ext_hdr, symhdr);
1316
1317   /* The symbolic header contains absolute file offsets and sizes to
1318      read.  */
1319 #define READ(ptr, offset, count, size, type)                            \
1320   if (symhdr->count == 0)                                               \
1321     debug->ptr = NULL;                                                  \
1322   else                                                                  \
1323     {                                                                   \
1324       bfd_size_type amt = (bfd_size_type) size * symhdr->count;         \
1325       debug->ptr = bfd_malloc (amt);                                    \
1326       if (debug->ptr == NULL)                                           \
1327         goto error_return;                                              \
1328       if (bfd_seek (abfd, symhdr->offset, SEEK_SET) != 0                \
1329           || bfd_bread (debug->ptr, amt, abfd) != amt)                  \
1330         goto error_return;                                              \
1331     }
1332
1333   READ (line, cbLineOffset, cbLine, sizeof (unsigned char), unsigned char *);
1334   READ (external_dnr, cbDnOffset, idnMax, swap->external_dnr_size, void *);
1335   READ (external_pdr, cbPdOffset, ipdMax, swap->external_pdr_size, void *);
1336   READ (external_sym, cbSymOffset, isymMax, swap->external_sym_size, void *);
1337   READ (external_opt, cbOptOffset, ioptMax, swap->external_opt_size, void *);
1338   READ (external_aux, cbAuxOffset, iauxMax, sizeof (union aux_ext),
1339         union aux_ext *);
1340   READ (ss, cbSsOffset, issMax, sizeof (char), char *);
1341   READ (ssext, cbSsExtOffset, issExtMax, sizeof (char), char *);
1342   READ (external_fdr, cbFdOffset, ifdMax, swap->external_fdr_size, void *);
1343   READ (external_rfd, cbRfdOffset, crfd, swap->external_rfd_size, void *);
1344   READ (external_ext, cbExtOffset, iextMax, swap->external_ext_size, void *);
1345 #undef READ
1346
1347   debug->fdr = NULL;
1348
1349   return TRUE;
1350
1351  error_return:
1352   if (ext_hdr != NULL)
1353     free (ext_hdr);
1354   if (debug->line != NULL)
1355     free (debug->line);
1356   if (debug->external_dnr != NULL)
1357     free (debug->external_dnr);
1358   if (debug->external_pdr != NULL)
1359     free (debug->external_pdr);
1360   if (debug->external_sym != NULL)
1361     free (debug->external_sym);
1362   if (debug->external_opt != NULL)
1363     free (debug->external_opt);
1364   if (debug->external_aux != NULL)
1365     free (debug->external_aux);
1366   if (debug->ss != NULL)
1367     free (debug->ss);
1368   if (debug->ssext != NULL)
1369     free (debug->ssext);
1370   if (debug->external_fdr != NULL)
1371     free (debug->external_fdr);
1372   if (debug->external_rfd != NULL)
1373     free (debug->external_rfd);
1374   if (debug->external_ext != NULL)
1375     free (debug->external_ext);
1376   return FALSE;
1377 }
1378 \f
1379 /* Swap RPDR (runtime procedure table entry) for output.  */
1380
1381 static void
1382 ecoff_swap_rpdr_out (bfd *abfd, const RPDR *in, struct rpdr_ext *ex)
1383 {
1384   H_PUT_S32 (abfd, in->adr, ex->p_adr);
1385   H_PUT_32 (abfd, in->regmask, ex->p_regmask);
1386   H_PUT_32 (abfd, in->regoffset, ex->p_regoffset);
1387   H_PUT_32 (abfd, in->fregmask, ex->p_fregmask);
1388   H_PUT_32 (abfd, in->fregoffset, ex->p_fregoffset);
1389   H_PUT_32 (abfd, in->frameoffset, ex->p_frameoffset);
1390
1391   H_PUT_16 (abfd, in->framereg, ex->p_framereg);
1392   H_PUT_16 (abfd, in->pcreg, ex->p_pcreg);
1393
1394   H_PUT_32 (abfd, in->irpss, ex->p_irpss);
1395 }
1396
1397 /* Create a runtime procedure table from the .mdebug section.  */
1398
1399 static bfd_boolean
1400 mips_elf_create_procedure_table (void *handle, bfd *abfd,
1401                                  struct bfd_link_info *info, asection *s,
1402                                  struct ecoff_debug_info *debug)
1403 {
1404   const struct ecoff_debug_swap *swap;
1405   HDRR *hdr = &debug->symbolic_header;
1406   RPDR *rpdr, *rp;
1407   struct rpdr_ext *erp;
1408   void *rtproc;
1409   struct pdr_ext *epdr;
1410   struct sym_ext *esym;
1411   char *ss, **sv;
1412   char *str;
1413   bfd_size_type size;
1414   bfd_size_type count;
1415   unsigned long sindex;
1416   unsigned long i;
1417   PDR pdr;
1418   SYMR sym;
1419   const char *no_name_func = _("static procedure (no name)");
1420
1421   epdr = NULL;
1422   rpdr = NULL;
1423   esym = NULL;
1424   ss = NULL;
1425   sv = NULL;
1426
1427   swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
1428
1429   sindex = strlen (no_name_func) + 1;
1430   count = hdr->ipdMax;
1431   if (count > 0)
1432     {
1433       size = swap->external_pdr_size;
1434
1435       epdr = bfd_malloc (size * count);
1436       if (epdr == NULL)
1437         goto error_return;
1438
1439       if (! _bfd_ecoff_get_accumulated_pdr (handle, (bfd_byte *) epdr))
1440         goto error_return;
1441
1442       size = sizeof (RPDR);
1443       rp = rpdr = bfd_malloc (size * count);
1444       if (rpdr == NULL)
1445         goto error_return;
1446
1447       size = sizeof (char *);
1448       sv = bfd_malloc (size * count);
1449       if (sv == NULL)
1450         goto error_return;
1451
1452       count = hdr->isymMax;
1453       size = swap->external_sym_size;
1454       esym = bfd_malloc (size * count);
1455       if (esym == NULL)
1456         goto error_return;
1457
1458       if (! _bfd_ecoff_get_accumulated_sym (handle, (bfd_byte *) esym))
1459         goto error_return;
1460
1461       count = hdr->issMax;
1462       ss = bfd_malloc (count);
1463       if (ss == NULL)
1464         goto error_return;
1465       if (! _bfd_ecoff_get_accumulated_ss (handle, (bfd_byte *) ss))
1466         goto error_return;
1467
1468       count = hdr->ipdMax;
1469       for (i = 0; i < (unsigned long) count; i++, rp++)
1470         {
1471           (*swap->swap_pdr_in) (abfd, epdr + i, &pdr);
1472           (*swap->swap_sym_in) (abfd, &esym[pdr.isym], &sym);
1473           rp->adr = sym.value;
1474           rp->regmask = pdr.regmask;
1475           rp->regoffset = pdr.regoffset;
1476           rp->fregmask = pdr.fregmask;
1477           rp->fregoffset = pdr.fregoffset;
1478           rp->frameoffset = pdr.frameoffset;
1479           rp->framereg = pdr.framereg;
1480           rp->pcreg = pdr.pcreg;
1481           rp->irpss = sindex;
1482           sv[i] = ss + sym.iss;
1483           sindex += strlen (sv[i]) + 1;
1484         }
1485     }
1486
1487   size = sizeof (struct rpdr_ext) * (count + 2) + sindex;
1488   size = BFD_ALIGN (size, 16);
1489   rtproc = bfd_alloc (abfd, size);
1490   if (rtproc == NULL)
1491     {
1492       mips_elf_hash_table (info)->procedure_count = 0;
1493       goto error_return;
1494     }
1495
1496   mips_elf_hash_table (info)->procedure_count = count + 2;
1497
1498   erp = rtproc;
1499   memset (erp, 0, sizeof (struct rpdr_ext));
1500   erp++;
1501   str = (char *) rtproc + sizeof (struct rpdr_ext) * (count + 2);
1502   strcpy (str, no_name_func);
1503   str += strlen (no_name_func) + 1;
1504   for (i = 0; i < count; i++)
1505     {
1506       ecoff_swap_rpdr_out (abfd, rpdr + i, erp + i);
1507       strcpy (str, sv[i]);
1508       str += strlen (sv[i]) + 1;
1509     }
1510   H_PUT_S32 (abfd, -1, (erp + count)->p_adr);
1511
1512   /* Set the size and contents of .rtproc section.  */
1513   s->size = size;
1514   s->contents = rtproc;
1515
1516   /* Skip this section later on (I don't think this currently
1517      matters, but someday it might).  */
1518   s->map_head.link_order = NULL;
1519
1520   if (epdr != NULL)
1521     free (epdr);
1522   if (rpdr != NULL)
1523     free (rpdr);
1524   if (esym != NULL)
1525     free (esym);
1526   if (ss != NULL)
1527     free (ss);
1528   if (sv != NULL)
1529     free (sv);
1530
1531   return TRUE;
1532
1533  error_return:
1534   if (epdr != NULL)
1535     free (epdr);
1536   if (rpdr != NULL)
1537     free (rpdr);
1538   if (esym != NULL)
1539     free (esym);
1540   if (ss != NULL)
1541     free (ss);
1542   if (sv != NULL)
1543     free (sv);
1544   return FALSE;
1545 }
1546 \f
1547 /* We're going to create a stub for H.  Create a symbol for the stub's
1548    value and size, to help make the disassembly easier to read.  */
1549
1550 static bfd_boolean
1551 mips_elf_create_stub_symbol (struct bfd_link_info *info,
1552                              struct mips_elf_link_hash_entry *h,
1553                              const char *prefix, asection *s, bfd_vma value,
1554                              bfd_vma size)
1555 {
1556   struct bfd_link_hash_entry *bh;
1557   struct elf_link_hash_entry *elfh;
1558   const char *name;
1559
1560   if (ELF_ST_IS_MICROMIPS (h->root.other))
1561     value |= 1;
1562
1563   /* Create a new symbol.  */
1564   name = ACONCAT ((prefix, h->root.root.root.string, NULL));
1565   bh = NULL;
1566   if (!_bfd_generic_link_add_one_symbol (info, s->owner, name,
1567                                          BSF_LOCAL, s, value, NULL,
1568                                          TRUE, FALSE, &bh))
1569     return FALSE;
1570
1571   /* Make it a local function.  */
1572   elfh = (struct elf_link_hash_entry *) bh;
1573   elfh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
1574   elfh->size = size;
1575   elfh->forced_local = 1;
1576   return TRUE;
1577 }
1578
1579 /* We're about to redefine H.  Create a symbol to represent H's
1580    current value and size, to help make the disassembly easier
1581    to read.  */
1582
1583 static bfd_boolean
1584 mips_elf_create_shadow_symbol (struct bfd_link_info *info,
1585                                struct mips_elf_link_hash_entry *h,
1586                                const char *prefix)
1587 {
1588   struct bfd_link_hash_entry *bh;
1589   struct elf_link_hash_entry *elfh;
1590   const char *name;
1591   asection *s;
1592   bfd_vma value;
1593
1594   /* Read the symbol's value.  */
1595   BFD_ASSERT (h->root.root.type == bfd_link_hash_defined
1596               || h->root.root.type == bfd_link_hash_defweak);
1597   s = h->root.root.u.def.section;
1598   value = h->root.root.u.def.value;
1599
1600   /* Create a new symbol.  */
1601   name = ACONCAT ((prefix, h->root.root.root.string, NULL));
1602   bh = NULL;
1603   if (!_bfd_generic_link_add_one_symbol (info, s->owner, name,
1604                                          BSF_LOCAL, s, value, NULL,
1605                                          TRUE, FALSE, &bh))
1606     return FALSE;
1607
1608   /* Make it local and copy the other attributes from H.  */
1609   elfh = (struct elf_link_hash_entry *) bh;
1610   elfh->type = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (h->root.type));
1611   elfh->other = h->root.other;
1612   elfh->size = h->root.size;
1613   elfh->forced_local = 1;
1614   return TRUE;
1615 }
1616
1617 /* Return TRUE if relocations in SECTION can refer directly to a MIPS16
1618    function rather than to a hard-float stub.  */
1619
1620 static bfd_boolean
1621 section_allows_mips16_refs_p (asection *section)
1622 {
1623   const char *name;
1624
1625   name = bfd_get_section_name (section->owner, section);
1626   return (FN_STUB_P (name)
1627           || CALL_STUB_P (name)
1628           || CALL_FP_STUB_P (name)
1629           || strcmp (name, ".pdr") == 0);
1630 }
1631
1632 /* [RELOCS, RELEND) are the relocations against SEC, which is a MIPS16
1633    stub section of some kind.  Return the R_SYMNDX of the target
1634    function, or 0 if we can't decide which function that is.  */
1635
1636 static unsigned long
1637 mips16_stub_symndx (const struct elf_backend_data *bed,
1638                     asection *sec ATTRIBUTE_UNUSED,
1639                     const Elf_Internal_Rela *relocs,
1640                     const Elf_Internal_Rela *relend)
1641 {
1642   int int_rels_per_ext_rel = bed->s->int_rels_per_ext_rel;
1643   const Elf_Internal_Rela *rel;
1644
1645   /* Trust the first R_MIPS_NONE relocation, if any, but not a subsequent
1646      one in a compound relocation.  */
1647   for (rel = relocs; rel < relend; rel += int_rels_per_ext_rel)
1648     if (ELF_R_TYPE (sec->owner, rel->r_info) == R_MIPS_NONE)
1649       return ELF_R_SYM (sec->owner, rel->r_info);
1650
1651   /* Otherwise trust the first relocation, whatever its kind.  This is
1652      the traditional behavior.  */
1653   if (relocs < relend)
1654     return ELF_R_SYM (sec->owner, relocs->r_info);
1655
1656   return 0;
1657 }
1658
1659 /* Check the mips16 stubs for a particular symbol, and see if we can
1660    discard them.  */
1661
1662 static void
1663 mips_elf_check_mips16_stubs (struct bfd_link_info *info,
1664                              struct mips_elf_link_hash_entry *h)
1665 {
1666   /* Dynamic symbols must use the standard call interface, in case other
1667      objects try to call them.  */
1668   if (h->fn_stub != NULL
1669       && h->root.dynindx != -1)
1670     {
1671       mips_elf_create_shadow_symbol (info, h, ".mips16.");
1672       h->need_fn_stub = TRUE;
1673     }
1674
1675   if (h->fn_stub != NULL
1676       && ! h->need_fn_stub)
1677     {
1678       /* We don't need the fn_stub; the only references to this symbol
1679          are 16 bit calls.  Clobber the size to 0 to prevent it from
1680          being included in the link.  */
1681       h->fn_stub->size = 0;
1682       h->fn_stub->flags &= ~SEC_RELOC;
1683       h->fn_stub->reloc_count = 0;
1684       h->fn_stub->flags |= SEC_EXCLUDE;
1685     }
1686
1687   if (h->call_stub != NULL
1688       && ELF_ST_IS_MIPS16 (h->root.other))
1689     {
1690       /* We don't need the call_stub; this is a 16 bit function, so
1691          calls from other 16 bit functions are OK.  Clobber the size
1692          to 0 to prevent it from being included in the link.  */
1693       h->call_stub->size = 0;
1694       h->call_stub->flags &= ~SEC_RELOC;
1695       h->call_stub->reloc_count = 0;
1696       h->call_stub->flags |= SEC_EXCLUDE;
1697     }
1698
1699   if (h->call_fp_stub != NULL
1700       && ELF_ST_IS_MIPS16 (h->root.other))
1701     {
1702       /* We don't need the call_stub; this is a 16 bit function, so
1703          calls from other 16 bit functions are OK.  Clobber the size
1704          to 0 to prevent it from being included in the link.  */
1705       h->call_fp_stub->size = 0;
1706       h->call_fp_stub->flags &= ~SEC_RELOC;
1707       h->call_fp_stub->reloc_count = 0;
1708       h->call_fp_stub->flags |= SEC_EXCLUDE;
1709     }
1710 }
1711
1712 /* Hashtable callbacks for mips_elf_la25_stubs.  */
1713
1714 static hashval_t
1715 mips_elf_la25_stub_hash (const void *entry_)
1716 {
1717   const struct mips_elf_la25_stub *entry;
1718
1719   entry = (struct mips_elf_la25_stub *) entry_;
1720   return entry->h->root.root.u.def.section->id
1721     + entry->h->root.root.u.def.value;
1722 }
1723
1724 static int
1725 mips_elf_la25_stub_eq (const void *entry1_, const void *entry2_)
1726 {
1727   const struct mips_elf_la25_stub *entry1, *entry2;
1728
1729   entry1 = (struct mips_elf_la25_stub *) entry1_;
1730   entry2 = (struct mips_elf_la25_stub *) entry2_;
1731   return ((entry1->h->root.root.u.def.section
1732            == entry2->h->root.root.u.def.section)
1733           && (entry1->h->root.root.u.def.value
1734               == entry2->h->root.root.u.def.value));
1735 }
1736
1737 /* Called by the linker to set up the la25 stub-creation code.  FN is
1738    the linker's implementation of add_stub_function.  Return true on
1739    success.  */
1740
1741 bfd_boolean
1742 _bfd_mips_elf_init_stubs (struct bfd_link_info *info,
1743                           asection *(*fn) (const char *, asection *,
1744                                            asection *))
1745 {
1746   struct mips_elf_link_hash_table *htab;
1747
1748   htab = mips_elf_hash_table (info);
1749   if (htab == NULL)
1750     return FALSE;
1751
1752   htab->add_stub_section = fn;
1753   htab->la25_stubs = htab_try_create (1, mips_elf_la25_stub_hash,
1754                                       mips_elf_la25_stub_eq, NULL);
1755   if (htab->la25_stubs == NULL)
1756     return FALSE;
1757
1758   return TRUE;
1759 }
1760
1761 /* Return true if H is a locally-defined PIC function, in the sense
1762    that it or its fn_stub might need $25 to be valid on entry.
1763    Note that MIPS16 functions set up $gp using PC-relative instructions,
1764    so they themselves never need $25 to be valid.  Only non-MIPS16
1765    entry points are of interest here.  */
1766
1767 static bfd_boolean
1768 mips_elf_local_pic_function_p (struct mips_elf_link_hash_entry *h)
1769 {
1770   return ((h->root.root.type == bfd_link_hash_defined
1771            || h->root.root.type == bfd_link_hash_defweak)
1772           && h->root.def_regular
1773           && !bfd_is_abs_section (h->root.root.u.def.section)
1774           && (!ELF_ST_IS_MIPS16 (h->root.other)
1775               || (h->fn_stub && h->need_fn_stub))
1776           && (PIC_OBJECT_P (h->root.root.u.def.section->owner)
1777               || ELF_ST_IS_MIPS_PIC (h->root.other)));
1778 }
1779
1780 /* Set *SEC to the input section that contains the target of STUB.
1781    Return the offset of the target from the start of that section.  */
1782
1783 static bfd_vma
1784 mips_elf_get_la25_target (struct mips_elf_la25_stub *stub,
1785                           asection **sec)
1786 {
1787   if (ELF_ST_IS_MIPS16 (stub->h->root.other))
1788     {
1789       BFD_ASSERT (stub->h->need_fn_stub);
1790       *sec = stub->h->fn_stub;
1791       return 0;
1792     }
1793   else
1794     {
1795       *sec = stub->h->root.root.u.def.section;
1796       return stub->h->root.root.u.def.value;
1797     }
1798 }
1799
1800 /* STUB describes an la25 stub that we have decided to implement
1801    by inserting an LUI/ADDIU pair before the target function.
1802    Create the section and redirect the function symbol to it.  */
1803
1804 static bfd_boolean
1805 mips_elf_add_la25_intro (struct mips_elf_la25_stub *stub,
1806                          struct bfd_link_info *info)
1807 {
1808   struct mips_elf_link_hash_table *htab;
1809   char *name;
1810   asection *s, *input_section;
1811   unsigned int align;
1812
1813   htab = mips_elf_hash_table (info);
1814   if (htab == NULL)
1815     return FALSE;
1816
1817   /* Create a unique name for the new section.  */
1818   name = bfd_malloc (11 + sizeof (".text.stub."));
1819   if (name == NULL)
1820     return FALSE;
1821   sprintf (name, ".text.stub.%d", (int) htab_elements (htab->la25_stubs));
1822
1823   /* Create the section.  */
1824   mips_elf_get_la25_target (stub, &input_section);
1825   s = htab->add_stub_section (name, input_section,
1826                               input_section->output_section);
1827   if (s == NULL)
1828     return FALSE;
1829
1830   /* Make sure that any padding goes before the stub.  */
1831   align = input_section->alignment_power;
1832   if (!bfd_set_section_alignment (s->owner, s, align))
1833     return FALSE;
1834   if (align > 3)
1835     s->size = (1 << align) - 8;
1836
1837   /* Create a symbol for the stub.  */
1838   mips_elf_create_stub_symbol (info, stub->h, ".pic.", s, s->size, 8);
1839   stub->stub_section = s;
1840   stub->offset = s->size;
1841
1842   /* Allocate room for it.  */
1843   s->size += 8;
1844   return TRUE;
1845 }
1846
1847 /* STUB describes an la25 stub that we have decided to implement
1848    with a separate trampoline.  Allocate room for it and redirect
1849    the function symbol to it.  */
1850
1851 static bfd_boolean
1852 mips_elf_add_la25_trampoline (struct mips_elf_la25_stub *stub,
1853                               struct bfd_link_info *info)
1854 {
1855   struct mips_elf_link_hash_table *htab;
1856   asection *s;
1857
1858   htab = mips_elf_hash_table (info);
1859   if (htab == NULL)
1860     return FALSE;
1861
1862   /* Create a trampoline section, if we haven't already.  */
1863   s = htab->strampoline;
1864   if (s == NULL)
1865     {
1866       asection *input_section = stub->h->root.root.u.def.section;
1867       s = htab->add_stub_section (".text", NULL,
1868                                   input_section->output_section);
1869       if (s == NULL || !bfd_set_section_alignment (s->owner, s, 4))
1870         return FALSE;
1871       htab->strampoline = s;
1872     }
1873
1874   /* Create a symbol for the stub.  */
1875   mips_elf_create_stub_symbol (info, stub->h, ".pic.", s, s->size, 16);
1876   stub->stub_section = s;
1877   stub->offset = s->size;
1878
1879   /* Allocate room for it.  */
1880   s->size += 16;
1881   return TRUE;
1882 }
1883
1884 /* H describes a symbol that needs an la25 stub.  Make sure that an
1885    appropriate stub exists and point H at it.  */
1886
1887 static bfd_boolean
1888 mips_elf_add_la25_stub (struct bfd_link_info *info,
1889                         struct mips_elf_link_hash_entry *h)
1890 {
1891   struct mips_elf_link_hash_table *htab;
1892   struct mips_elf_la25_stub search, *stub;
1893   bfd_boolean use_trampoline_p;
1894   asection *s;
1895   bfd_vma value;
1896   void **slot;
1897
1898   /* Describe the stub we want.  */
1899   search.stub_section = NULL;
1900   search.offset = 0;
1901   search.h = h;
1902
1903   /* See if we've already created an equivalent stub.  */
1904   htab = mips_elf_hash_table (info);
1905   if (htab == NULL)
1906     return FALSE;
1907
1908   slot = htab_find_slot (htab->la25_stubs, &search, INSERT);
1909   if (slot == NULL)
1910     return FALSE;
1911
1912   stub = (struct mips_elf_la25_stub *) *slot;
1913   if (stub != NULL)
1914     {
1915       /* We can reuse the existing stub.  */
1916       h->la25_stub = stub;
1917       return TRUE;
1918     }
1919
1920   /* Create a permanent copy of ENTRY and add it to the hash table.  */
1921   stub = bfd_malloc (sizeof (search));
1922   if (stub == NULL)
1923     return FALSE;
1924   *stub = search;
1925   *slot = stub;
1926
1927   /* Prefer to use LUI/ADDIU stubs if the function is at the beginning
1928      of the section and if we would need no more than 2 nops.  */
1929   value = mips_elf_get_la25_target (stub, &s);
1930   use_trampoline_p = (value != 0 || s->alignment_power > 4);
1931
1932   h->la25_stub = stub;
1933   return (use_trampoline_p
1934           ? mips_elf_add_la25_trampoline (stub, info)
1935           : mips_elf_add_la25_intro (stub, info));
1936 }
1937
1938 /* A mips_elf_link_hash_traverse callback that is called before sizing
1939    sections.  DATA points to a mips_htab_traverse_info structure.  */
1940
1941 static bfd_boolean
1942 mips_elf_check_symbols (struct mips_elf_link_hash_entry *h, void *data)
1943 {
1944   struct mips_htab_traverse_info *hti;
1945
1946   hti = (struct mips_htab_traverse_info *) data;
1947   if (!hti->info->relocatable)
1948     mips_elf_check_mips16_stubs (hti->info, h);
1949
1950   if (mips_elf_local_pic_function_p (h))
1951     {
1952       /* PR 12845: If H is in a section that has been garbage
1953          collected it will have its output section set to *ABS*.  */
1954       if (bfd_is_abs_section (h->root.root.u.def.section->output_section))
1955         return TRUE;
1956
1957       /* H is a function that might need $25 to be valid on entry.
1958          If we're creating a non-PIC relocatable object, mark H as
1959          being PIC.  If we're creating a non-relocatable object with
1960          non-PIC branches and jumps to H, make sure that H has an la25
1961          stub.  */
1962       if (hti->info->relocatable)
1963         {
1964           if (!PIC_OBJECT_P (hti->output_bfd))
1965             h->root.other = ELF_ST_SET_MIPS_PIC (h->root.other);
1966         }
1967       else if (h->has_nonpic_branches && !mips_elf_add_la25_stub (hti->info, h))
1968         {
1969           hti->error = TRUE;
1970           return FALSE;
1971         }
1972     }
1973   return TRUE;
1974 }
1975 \f
1976 /* R_MIPS16_26 is used for the mips16 jal and jalx instructions.
1977    Most mips16 instructions are 16 bits, but these instructions
1978    are 32 bits.
1979
1980    The format of these instructions is:
1981
1982    +--------------+--------------------------------+
1983    |     JALX     | X|   Imm 20:16  |   Imm 25:21  |
1984    +--------------+--------------------------------+
1985    |                Immediate  15:0                |
1986    +-----------------------------------------------+
1987
1988    JALX is the 5-bit value 00011.  X is 0 for jal, 1 for jalx.
1989    Note that the immediate value in the first word is swapped.
1990
1991    When producing a relocatable object file, R_MIPS16_26 is
1992    handled mostly like R_MIPS_26.  In particular, the addend is
1993    stored as a straight 26-bit value in a 32-bit instruction.
1994    (gas makes life simpler for itself by never adjusting a
1995    R_MIPS16_26 reloc to be against a section, so the addend is
1996    always zero).  However, the 32 bit instruction is stored as 2
1997    16-bit values, rather than a single 32-bit value.  In a
1998    big-endian file, the result is the same; in a little-endian
1999    file, the two 16-bit halves of the 32 bit value are swapped.
2000    This is so that a disassembler can recognize the jal
2001    instruction.
2002
2003    When doing a final link, R_MIPS16_26 is treated as a 32 bit
2004    instruction stored as two 16-bit values.  The addend A is the
2005    contents of the targ26 field.  The calculation is the same as
2006    R_MIPS_26.  When storing the calculated value, reorder the
2007    immediate value as shown above, and don't forget to store the
2008    value as two 16-bit values.
2009
2010    To put it in MIPS ABI terms, the relocation field is T-targ26-16,
2011    defined as
2012
2013    big-endian:
2014    +--------+----------------------+
2015    |        |                      |
2016    |        |    targ26-16         |
2017    |31    26|25                   0|
2018    +--------+----------------------+
2019
2020    little-endian:
2021    +----------+------+-------------+
2022    |          |      |             |
2023    |  sub1    |      |     sub2    |
2024    |0        9|10  15|16         31|
2025    +----------+--------------------+
2026    where targ26-16 is sub1 followed by sub2 (i.e., the addend field A is
2027    ((sub1 << 16) | sub2)).
2028
2029    When producing a relocatable object file, the calculation is
2030    (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
2031    When producing a fully linked file, the calculation is
2032    let R = (((A < 2) | ((P + 4) & 0xf0000000) + S) >> 2)
2033    ((R & 0x1f0000) << 5) | ((R & 0x3e00000) >> 5) | (R & 0xffff)
2034
2035    The table below lists the other MIPS16 instruction relocations.
2036    Each one is calculated in the same way as the non-MIPS16 relocation
2037    given on the right, but using the extended MIPS16 layout of 16-bit
2038    immediate fields:
2039
2040         R_MIPS16_GPREL          R_MIPS_GPREL16
2041         R_MIPS16_GOT16          R_MIPS_GOT16
2042         R_MIPS16_CALL16         R_MIPS_CALL16
2043         R_MIPS16_HI16           R_MIPS_HI16
2044         R_MIPS16_LO16           R_MIPS_LO16
2045
2046    A typical instruction will have a format like this:
2047
2048    +--------------+--------------------------------+
2049    |    EXTEND    |     Imm 10:5    |   Imm 15:11  |
2050    +--------------+--------------------------------+
2051    |    Major     |   rx   |   ry   |   Imm  4:0   |
2052    +--------------+--------------------------------+
2053
2054    EXTEND is the five bit value 11110.  Major is the instruction
2055    opcode.
2056
2057    All we need to do here is shuffle the bits appropriately.
2058    As above, the two 16-bit halves must be swapped on a
2059    little-endian system.  */
2060
2061 static inline bfd_boolean
2062 mips16_reloc_p (int r_type)
2063 {
2064   switch (r_type)
2065     {
2066     case R_MIPS16_26:
2067     case R_MIPS16_GPREL:
2068     case R_MIPS16_GOT16:
2069     case R_MIPS16_CALL16:
2070     case R_MIPS16_HI16:
2071     case R_MIPS16_LO16:
2072     case R_MIPS16_TLS_GD:
2073     case R_MIPS16_TLS_LDM:
2074     case R_MIPS16_TLS_DTPREL_HI16:
2075     case R_MIPS16_TLS_DTPREL_LO16:
2076     case R_MIPS16_TLS_GOTTPREL:
2077     case R_MIPS16_TLS_TPREL_HI16:
2078     case R_MIPS16_TLS_TPREL_LO16:
2079       return TRUE;
2080
2081     default:
2082       return FALSE;
2083     }
2084 }
2085
2086 /* Check if a microMIPS reloc.  */
2087
2088 static inline bfd_boolean
2089 micromips_reloc_p (unsigned int r_type)
2090 {
2091   return r_type >= R_MICROMIPS_min && r_type < R_MICROMIPS_max;
2092 }
2093
2094 /* Similar to MIPS16, the two 16-bit halves in microMIPS must be swapped
2095    on a little-endian system.  This does not apply to R_MICROMIPS_PC7_S1
2096    and R_MICROMIPS_PC10_S1 relocs that apply to 16-bit instructions.  */
2097
2098 static inline bfd_boolean
2099 micromips_reloc_shuffle_p (unsigned int r_type)
2100 {
2101   return (micromips_reloc_p (r_type)
2102           && r_type != R_MICROMIPS_PC7_S1
2103           && r_type != R_MICROMIPS_PC10_S1);
2104 }
2105
2106 static inline bfd_boolean
2107 got16_reloc_p (int r_type)
2108 {
2109   return (r_type == R_MIPS_GOT16
2110           || r_type == R_MIPS16_GOT16
2111           || r_type == R_MICROMIPS_GOT16);
2112 }
2113
2114 static inline bfd_boolean
2115 call16_reloc_p (int r_type)
2116 {
2117   return (r_type == R_MIPS_CALL16
2118           || r_type == R_MIPS16_CALL16
2119           || r_type == R_MICROMIPS_CALL16);
2120 }
2121
2122 static inline bfd_boolean
2123 got_disp_reloc_p (unsigned int r_type)
2124 {
2125   return r_type == R_MIPS_GOT_DISP || r_type == R_MICROMIPS_GOT_DISP;
2126 }
2127
2128 static inline bfd_boolean
2129 got_page_reloc_p (unsigned int r_type)
2130 {
2131   return r_type == R_MIPS_GOT_PAGE || r_type == R_MICROMIPS_GOT_PAGE;
2132 }
2133
2134 static inline bfd_boolean
2135 got_ofst_reloc_p (unsigned int r_type)
2136 {
2137   return r_type == R_MIPS_GOT_OFST || r_type == R_MICROMIPS_GOT_OFST;
2138 }
2139
2140 static inline bfd_boolean
2141 got_hi16_reloc_p (unsigned int r_type)
2142 {
2143   return r_type == R_MIPS_GOT_HI16 || r_type == R_MICROMIPS_GOT_HI16;
2144 }
2145
2146 static inline bfd_boolean
2147 got_lo16_reloc_p (unsigned int r_type)
2148 {
2149   return r_type == R_MIPS_GOT_LO16 || r_type == R_MICROMIPS_GOT_LO16;
2150 }
2151
2152 static inline bfd_boolean
2153 call_hi16_reloc_p (unsigned int r_type)
2154 {
2155   return r_type == R_MIPS_CALL_HI16 || r_type == R_MICROMIPS_CALL_HI16;
2156 }
2157
2158 static inline bfd_boolean
2159 call_lo16_reloc_p (unsigned int r_type)
2160 {
2161   return r_type == R_MIPS_CALL_LO16 || r_type == R_MICROMIPS_CALL_LO16;
2162 }
2163
2164 static inline bfd_boolean
2165 hi16_reloc_p (int r_type)
2166 {
2167   return (r_type == R_MIPS_HI16
2168           || r_type == R_MIPS16_HI16
2169           || r_type == R_MICROMIPS_HI16);
2170 }
2171
2172 static inline bfd_boolean
2173 lo16_reloc_p (int r_type)
2174 {
2175   return (r_type == R_MIPS_LO16
2176           || r_type == R_MIPS16_LO16
2177           || r_type == R_MICROMIPS_LO16);
2178 }
2179
2180 static inline bfd_boolean
2181 mips16_call_reloc_p (int r_type)
2182 {
2183   return r_type == R_MIPS16_26 || r_type == R_MIPS16_CALL16;
2184 }
2185
2186 static inline bfd_boolean
2187 jal_reloc_p (int r_type)
2188 {
2189   return (r_type == R_MIPS_26
2190           || r_type == R_MIPS16_26
2191           || r_type == R_MICROMIPS_26_S1);
2192 }
2193
2194 static inline bfd_boolean
2195 micromips_branch_reloc_p (int r_type)
2196 {
2197   return (r_type == R_MICROMIPS_26_S1
2198           || r_type == R_MICROMIPS_PC16_S1
2199           || r_type == R_MICROMIPS_PC10_S1
2200           || r_type == R_MICROMIPS_PC7_S1);
2201 }
2202
2203 static inline bfd_boolean
2204 tls_gd_reloc_p (unsigned int r_type)
2205 {
2206   return (r_type == R_MIPS_TLS_GD
2207           || r_type == R_MIPS16_TLS_GD
2208           || r_type == R_MICROMIPS_TLS_GD);
2209 }
2210
2211 static inline bfd_boolean
2212 tls_ldm_reloc_p (unsigned int r_type)
2213 {
2214   return (r_type == R_MIPS_TLS_LDM
2215           || r_type == R_MIPS16_TLS_LDM
2216           || r_type == R_MICROMIPS_TLS_LDM);
2217 }
2218
2219 static inline bfd_boolean
2220 tls_gottprel_reloc_p (unsigned int r_type)
2221 {
2222   return (r_type == R_MIPS_TLS_GOTTPREL
2223           || r_type == R_MIPS16_TLS_GOTTPREL
2224           || r_type == R_MICROMIPS_TLS_GOTTPREL);
2225 }
2226
2227 void
2228 _bfd_mips_elf_reloc_unshuffle (bfd *abfd, int r_type,
2229                                bfd_boolean jal_shuffle, bfd_byte *data)
2230 {
2231   bfd_vma first, second, val;
2232
2233   if (!mips16_reloc_p (r_type) && !micromips_reloc_shuffle_p (r_type))
2234     return;
2235
2236   /* Pick up the first and second halfwords of the instruction.  */
2237   first = bfd_get_16 (abfd, data);
2238   second = bfd_get_16 (abfd, data + 2);
2239   if (micromips_reloc_p (r_type) || (r_type == R_MIPS16_26 && !jal_shuffle))
2240     val = first << 16 | second;
2241   else if (r_type != R_MIPS16_26)
2242     val = (((first & 0xf800) << 16) | ((second & 0xffe0) << 11)
2243            | ((first & 0x1f) << 11) | (first & 0x7e0) | (second & 0x1f));
2244   else
2245     val = (((first & 0xfc00) << 16) | ((first & 0x3e0) << 11)
2246            | ((first & 0x1f) << 21) | second);
2247   bfd_put_32 (abfd, val, data);
2248 }
2249
2250 void
2251 _bfd_mips_elf_reloc_shuffle (bfd *abfd, int r_type,
2252                              bfd_boolean jal_shuffle, bfd_byte *data)
2253 {
2254   bfd_vma first, second, val;
2255
2256   if (!mips16_reloc_p (r_type) && !micromips_reloc_shuffle_p (r_type))
2257     return;
2258
2259   val = bfd_get_32 (abfd, data);
2260   if (micromips_reloc_p (r_type) || (r_type == R_MIPS16_26 && !jal_shuffle))
2261     {
2262       second = val & 0xffff;
2263       first = val >> 16;
2264     }
2265   else if (r_type != R_MIPS16_26)
2266     {
2267       second = ((val >> 11) & 0xffe0) | (val & 0x1f);
2268       first = ((val >> 16) & 0xf800) | ((val >> 11) & 0x1f) | (val & 0x7e0);
2269     }
2270   else
2271     {
2272       second = val & 0xffff;
2273       first = ((val >> 16) & 0xfc00) | ((val >> 11) & 0x3e0)
2274                | ((val >> 21) & 0x1f);
2275     }
2276   bfd_put_16 (abfd, second, data + 2);
2277   bfd_put_16 (abfd, first, data);
2278 }
2279
2280 bfd_reloc_status_type
2281 _bfd_mips_elf_gprel16_with_gp (bfd *abfd, asymbol *symbol,
2282                                arelent *reloc_entry, asection *input_section,
2283                                bfd_boolean relocatable, void *data, bfd_vma gp)
2284 {
2285   bfd_vma relocation;
2286   bfd_signed_vma val;
2287   bfd_reloc_status_type status;
2288
2289   if (bfd_is_com_section (symbol->section))
2290     relocation = 0;
2291   else
2292     relocation = symbol->value;
2293
2294   relocation += symbol->section->output_section->vma;
2295   relocation += symbol->section->output_offset;
2296
2297   if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
2298     return bfd_reloc_outofrange;
2299
2300   /* Set val to the offset into the section or symbol.  */
2301   val = reloc_entry->addend;
2302
2303   _bfd_mips_elf_sign_extend (val, 16);
2304
2305   /* Adjust val for the final section location and GP value.  If we
2306      are producing relocatable output, we don't want to do this for
2307      an external symbol.  */
2308   if (! relocatable
2309       || (symbol->flags & BSF_SECTION_SYM) != 0)
2310     val += relocation - gp;
2311
2312   if (reloc_entry->howto->partial_inplace)
2313     {
2314       status = _bfd_relocate_contents (reloc_entry->howto, abfd, val,
2315                                        (bfd_byte *) data
2316                                        + reloc_entry->address);
2317       if (status != bfd_reloc_ok)
2318         return status;
2319     }
2320   else
2321     reloc_entry->addend = val;
2322
2323   if (relocatable)
2324     reloc_entry->address += input_section->output_offset;
2325
2326   return bfd_reloc_ok;
2327 }
2328
2329 /* Used to store a REL high-part relocation such as R_MIPS_HI16 or
2330    R_MIPS_GOT16.  REL is the relocation, INPUT_SECTION is the section
2331    that contains the relocation field and DATA points to the start of
2332    INPUT_SECTION.  */
2333
2334 struct mips_hi16
2335 {
2336   struct mips_hi16 *next;
2337   bfd_byte *data;
2338   asection *input_section;
2339   arelent rel;
2340 };
2341
2342 /* FIXME: This should not be a static variable.  */
2343
2344 static struct mips_hi16 *mips_hi16_list;
2345
2346 /* A howto special_function for REL *HI16 relocations.  We can only
2347    calculate the correct value once we've seen the partnering
2348    *LO16 relocation, so just save the information for later.
2349
2350    The ABI requires that the *LO16 immediately follow the *HI16.
2351    However, as a GNU extension, we permit an arbitrary number of
2352    *HI16s to be associated with a single *LO16.  This significantly
2353    simplies the relocation handling in gcc.  */
2354
2355 bfd_reloc_status_type
2356 _bfd_mips_elf_hi16_reloc (bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry,
2357                           asymbol *symbol ATTRIBUTE_UNUSED, void *data,
2358                           asection *input_section, bfd *output_bfd,
2359                           char **error_message ATTRIBUTE_UNUSED)
2360 {
2361   struct mips_hi16 *n;
2362
2363   if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
2364     return bfd_reloc_outofrange;
2365
2366   n = bfd_malloc (sizeof *n);
2367   if (n == NULL)
2368     return bfd_reloc_outofrange;
2369
2370   n->next = mips_hi16_list;
2371   n->data = data;
2372   n->input_section = input_section;
2373   n->rel = *reloc_entry;
2374   mips_hi16_list = n;
2375
2376   if (output_bfd != NULL)
2377     reloc_entry->address += input_section->output_offset;
2378
2379   return bfd_reloc_ok;
2380 }
2381
2382 /* A howto special_function for REL R_MIPS*_GOT16 relocations.  This is just
2383    like any other 16-bit relocation when applied to global symbols, but is
2384    treated in the same as R_MIPS_HI16 when applied to local symbols.  */
2385
2386 bfd_reloc_status_type
2387 _bfd_mips_elf_got16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2388                            void *data, asection *input_section,
2389                            bfd *output_bfd, char **error_message)
2390 {
2391   if ((symbol->flags & (BSF_GLOBAL | BSF_WEAK)) != 0
2392       || bfd_is_und_section (bfd_get_section (symbol))
2393       || bfd_is_com_section (bfd_get_section (symbol)))
2394     /* The relocation is against a global symbol.  */
2395     return _bfd_mips_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2396                                         input_section, output_bfd,
2397                                         error_message);
2398
2399   return _bfd_mips_elf_hi16_reloc (abfd, reloc_entry, symbol, data,
2400                                    input_section, output_bfd, error_message);
2401 }
2402
2403 /* A howto special_function for REL *LO16 relocations.  The *LO16 itself
2404    is a straightforward 16 bit inplace relocation, but we must deal with
2405    any partnering high-part relocations as well.  */
2406
2407 bfd_reloc_status_type
2408 _bfd_mips_elf_lo16_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol,
2409                           void *data, asection *input_section,
2410                           bfd *output_bfd, char **error_message)
2411 {
2412   bfd_vma vallo;
2413   bfd_byte *location = (bfd_byte *) data + reloc_entry->address;
2414
2415   if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
2416     return bfd_reloc_outofrange;
2417
2418   _bfd_mips_elf_reloc_unshuffle (abfd, reloc_entry->howto->type, FALSE,
2419                                  location);
2420   vallo = bfd_get_32 (abfd, location);
2421   _bfd_mips_elf_reloc_shuffle (abfd, reloc_entry->howto->type, FALSE,
2422                                location);
2423
2424   while (mips_hi16_list != NULL)
2425     {
2426       bfd_reloc_status_type ret;
2427       struct mips_hi16 *hi;
2428
2429       hi = mips_hi16_list;
2430
2431       /* R_MIPS*_GOT16 relocations are something of a special case.  We
2432          want to install the addend in the same way as for a R_MIPS*_HI16
2433          relocation (with a rightshift of 16).  However, since GOT16
2434          relocations can also be used with global symbols, their howto
2435          has a rightshift of 0.  */
2436       if (hi->rel.howto->type == R_MIPS_GOT16)
2437         hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MIPS_HI16, FALSE);
2438       else if (hi->rel.howto->type == R_MIPS16_GOT16)
2439         hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MIPS16_HI16, FALSE);
2440       else if (hi->rel.howto->type == R_MICROMIPS_GOT16)
2441         hi->rel.howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, R_MICROMIPS_HI16, FALSE);
2442
2443       /* VALLO is a signed 16-bit number.  Bias it by 0x8000 so that any
2444          carry or borrow will induce a change of +1 or -1 in the high part.  */
2445       hi->rel.addend += (vallo + 0x8000) & 0xffff;
2446
2447       ret = _bfd_mips_elf_generic_reloc (abfd, &hi->rel, symbol, hi->data,
2448                                          hi->input_section, output_bfd,
2449                                          error_message);
2450       if (ret != bfd_reloc_ok)
2451         return ret;
2452
2453       mips_hi16_list = hi->next;
2454       free (hi);
2455     }
2456
2457   return _bfd_mips_elf_generic_reloc (abfd, reloc_entry, symbol, data,
2458                                       input_section, output_bfd,
2459                                       error_message);
2460 }
2461
2462 /* A generic howto special_function.  This calculates and installs the
2463    relocation itself, thus avoiding the oft-discussed problems in
2464    bfd_perform_relocation and bfd_install_relocation.  */
2465
2466 bfd_reloc_status_type
2467 _bfd_mips_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry,
2468                              asymbol *symbol, void *data ATTRIBUTE_UNUSED,
2469                              asection *input_section, bfd *output_bfd,
2470                              char **error_message ATTRIBUTE_UNUSED)
2471 {
2472   bfd_signed_vma val;
2473   bfd_reloc_status_type status;
2474   bfd_boolean relocatable;
2475
2476   relocatable = (output_bfd != NULL);
2477
2478   if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
2479     return bfd_reloc_outofrange;
2480
2481   /* Build up the field adjustment in VAL.  */
2482   val = 0;
2483   if (!relocatable || (symbol->flags & BSF_SECTION_SYM) != 0)
2484     {
2485       /* Either we're calculating the final field value or we have a
2486          relocation against a section symbol.  Add in the section's
2487          offset or address.  */
2488       val += symbol->section->output_section->vma;
2489       val += symbol->section->output_offset;
2490     }
2491
2492   if (!relocatable)
2493     {
2494       /* We're calculating the final field value.  Add in the symbol's value
2495          and, if pc-relative, subtract the address of the field itself.  */
2496       val += symbol->value;
2497       if (reloc_entry->howto->pc_relative)
2498         {
2499           val -= input_section->output_section->vma;
2500           val -= input_section->output_offset;
2501           val -= reloc_entry->address;
2502         }
2503     }
2504
2505   /* VAL is now the final adjustment.  If we're keeping this relocation
2506      in the output file, and if the relocation uses a separate addend,
2507      we just need to add VAL to that addend.  Otherwise we need to add
2508      VAL to the relocation field itself.  */
2509   if (relocatable && !reloc_entry->howto->partial_inplace)
2510     reloc_entry->addend += val;
2511   else
2512     {
2513       bfd_byte *location = (bfd_byte *) data + reloc_entry->address;
2514
2515       /* Add in the separate addend, if any.  */
2516       val += reloc_entry->addend;
2517
2518       /* Add VAL to the relocation field.  */
2519       _bfd_mips_elf_reloc_unshuffle (abfd, reloc_entry->howto->type, FALSE,
2520                                      location);
2521       status = _bfd_relocate_contents (reloc_entry->howto, abfd, val,
2522                                        location);
2523       _bfd_mips_elf_reloc_shuffle (abfd, reloc_entry->howto->type, FALSE,
2524                                    location);
2525
2526       if (status != bfd_reloc_ok)
2527         return status;
2528     }
2529
2530   if (relocatable)
2531     reloc_entry->address += input_section->output_offset;
2532
2533   return bfd_reloc_ok;
2534 }
2535 \f
2536 /* Swap an entry in a .gptab section.  Note that these routines rely
2537    on the equivalence of the two elements of the union.  */
2538
2539 static void
2540 bfd_mips_elf32_swap_gptab_in (bfd *abfd, const Elf32_External_gptab *ex,
2541                               Elf32_gptab *in)
2542 {
2543   in->gt_entry.gt_g_value = H_GET_32 (abfd, ex->gt_entry.gt_g_value);
2544   in->gt_entry.gt_bytes = H_GET_32 (abfd, ex->gt_entry.gt_bytes);
2545 }
2546
2547 static void
2548 bfd_mips_elf32_swap_gptab_out (bfd *abfd, const Elf32_gptab *in,
2549                                Elf32_External_gptab *ex)
2550 {
2551   H_PUT_32 (abfd, in->gt_entry.gt_g_value, ex->gt_entry.gt_g_value);
2552   H_PUT_32 (abfd, in->gt_entry.gt_bytes, ex->gt_entry.gt_bytes);
2553 }
2554
2555 static void
2556 bfd_elf32_swap_compact_rel_out (bfd *abfd, const Elf32_compact_rel *in,
2557                                 Elf32_External_compact_rel *ex)
2558 {
2559   H_PUT_32 (abfd, in->id1, ex->id1);
2560   H_PUT_32 (abfd, in->num, ex->num);
2561   H_PUT_32 (abfd, in->id2, ex->id2);
2562   H_PUT_32 (abfd, in->offset, ex->offset);
2563   H_PUT_32 (abfd, in->reserved0, ex->reserved0);
2564   H_PUT_32 (abfd, in->reserved1, ex->reserved1);
2565 }
2566
2567 static void
2568 bfd_elf32_swap_crinfo_out (bfd *abfd, const Elf32_crinfo *in,
2569                            Elf32_External_crinfo *ex)
2570 {
2571   unsigned long l;
2572
2573   l = (((in->ctype & CRINFO_CTYPE) << CRINFO_CTYPE_SH)
2574        | ((in->rtype & CRINFO_RTYPE) << CRINFO_RTYPE_SH)
2575        | ((in->dist2to & CRINFO_DIST2TO) << CRINFO_DIST2TO_SH)
2576        | ((in->relvaddr & CRINFO_RELVADDR) << CRINFO_RELVADDR_SH));
2577   H_PUT_32 (abfd, l, ex->info);
2578   H_PUT_32 (abfd, in->konst, ex->konst);
2579   H_PUT_32 (abfd, in->vaddr, ex->vaddr);
2580 }
2581 \f
2582 /* A .reginfo section holds a single Elf32_RegInfo structure.  These
2583    routines swap this structure in and out.  They are used outside of
2584    BFD, so they are globally visible.  */
2585
2586 void
2587 bfd_mips_elf32_swap_reginfo_in (bfd *abfd, const Elf32_External_RegInfo *ex,
2588                                 Elf32_RegInfo *in)
2589 {
2590   in->ri_gprmask = H_GET_32 (abfd, ex->ri_gprmask);
2591   in->ri_cprmask[0] = H_GET_32 (abfd, ex->ri_cprmask[0]);
2592   in->ri_cprmask[1] = H_GET_32 (abfd, ex->ri_cprmask[1]);
2593   in->ri_cprmask[2] = H_GET_32 (abfd, ex->ri_cprmask[2]);
2594   in->ri_cprmask[3] = H_GET_32 (abfd, ex->ri_cprmask[3]);
2595   in->ri_gp_value = H_GET_32 (abfd, ex->ri_gp_value);
2596 }
2597
2598 void
2599 bfd_mips_elf32_swap_reginfo_out (bfd *abfd, const Elf32_RegInfo *in,
2600                                  Elf32_External_RegInfo *ex)
2601 {
2602   H_PUT_32 (abfd, in->ri_gprmask, ex->ri_gprmask);
2603   H_PUT_32 (abfd, in->ri_cprmask[0], ex->ri_cprmask[0]);
2604   H_PUT_32 (abfd, in->ri_cprmask[1], ex->ri_cprmask[1]);
2605   H_PUT_32 (abfd, in->ri_cprmask[2], ex->ri_cprmask[2]);
2606   H_PUT_32 (abfd, in->ri_cprmask[3], ex->ri_cprmask[3]);
2607   H_PUT_32 (abfd, in->ri_gp_value, ex->ri_gp_value);
2608 }
2609
2610 /* In the 64 bit ABI, the .MIPS.options section holds register
2611    information in an Elf64_Reginfo structure.  These routines swap
2612    them in and out.  They are globally visible because they are used
2613    outside of BFD.  These routines are here so that gas can call them
2614    without worrying about whether the 64 bit ABI has been included.  */
2615
2616 void
2617 bfd_mips_elf64_swap_reginfo_in (bfd *abfd, const Elf64_External_RegInfo *ex,
2618                                 Elf64_Internal_RegInfo *in)
2619 {
2620   in->ri_gprmask = H_GET_32 (abfd, ex->ri_gprmask);
2621   in->ri_pad = H_GET_32 (abfd, ex->ri_pad);
2622   in->ri_cprmask[0] = H_GET_32 (abfd, ex->ri_cprmask[0]);
2623   in->ri_cprmask[1] = H_GET_32 (abfd, ex->ri_cprmask[1]);
2624   in->ri_cprmask[2] = H_GET_32 (abfd, ex->ri_cprmask[2]);
2625   in->ri_cprmask[3] = H_GET_32 (abfd, ex->ri_cprmask[3]);
2626   in->ri_gp_value = H_GET_64 (abfd, ex->ri_gp_value);
2627 }
2628
2629 void
2630 bfd_mips_elf64_swap_reginfo_out (bfd *abfd, const Elf64_Internal_RegInfo *in,
2631                                  Elf64_External_RegInfo *ex)
2632 {
2633   H_PUT_32 (abfd, in->ri_gprmask, ex->ri_gprmask);
2634   H_PUT_32 (abfd, in->ri_pad, ex->ri_pad);
2635   H_PUT_32 (abfd, in->ri_cprmask[0], ex->ri_cprmask[0]);
2636   H_PUT_32 (abfd, in->ri_cprmask[1], ex->ri_cprmask[1]);
2637   H_PUT_32 (abfd, in->ri_cprmask[2], ex->ri_cprmask[2]);
2638   H_PUT_32 (abfd, in->ri_cprmask[3], ex->ri_cprmask[3]);
2639   H_PUT_64 (abfd, in->ri_gp_value, ex->ri_gp_value);
2640 }
2641
2642 /* Swap in an options header.  */
2643
2644 void
2645 bfd_mips_elf_swap_options_in (bfd *abfd, const Elf_External_Options *ex,
2646                               Elf_Internal_Options *in)
2647 {
2648   in->kind = H_GET_8 (abfd, ex->kind);
2649   in->size = H_GET_8 (abfd, ex->size);
2650   in->section = H_GET_16 (abfd, ex->section);
2651   in->info = H_GET_32 (abfd, ex->info);
2652 }
2653
2654 /* Swap out an options header.  */
2655
2656 void
2657 bfd_mips_elf_swap_options_out (bfd *abfd, const Elf_Internal_Options *in,
2658                                Elf_External_Options *ex)
2659 {
2660   H_PUT_8 (abfd, in->kind, ex->kind);
2661   H_PUT_8 (abfd, in->size, ex->size);
2662   H_PUT_16 (abfd, in->section, ex->section);
2663   H_PUT_32 (abfd, in->info, ex->info);
2664 }
2665 \f
2666 /* This function is called via qsort() to sort the dynamic relocation
2667    entries by increasing r_symndx value.  */
2668
2669 static int
2670 sort_dynamic_relocs (const void *arg1, const void *arg2)
2671 {
2672   Elf_Internal_Rela int_reloc1;
2673   Elf_Internal_Rela int_reloc2;
2674   int diff;
2675
2676   bfd_elf32_swap_reloc_in (reldyn_sorting_bfd, arg1, &int_reloc1);
2677   bfd_elf32_swap_reloc_in (reldyn_sorting_bfd, arg2, &int_reloc2);
2678
2679   diff = ELF32_R_SYM (int_reloc1.r_info) - ELF32_R_SYM (int_reloc2.r_info);
2680   if (diff != 0)
2681     return diff;
2682
2683   if (int_reloc1.r_offset < int_reloc2.r_offset)
2684     return -1;
2685   if (int_reloc1.r_offset > int_reloc2.r_offset)
2686     return 1;
2687   return 0;
2688 }
2689
2690 /* Like sort_dynamic_relocs, but used for elf64 relocations.  */
2691
2692 static int
2693 sort_dynamic_relocs_64 (const void *arg1 ATTRIBUTE_UNUSED,
2694                         const void *arg2 ATTRIBUTE_UNUSED)
2695 {
2696 #ifdef BFD64
2697   Elf_Internal_Rela int_reloc1[3];
2698   Elf_Internal_Rela int_reloc2[3];
2699
2700   (*get_elf_backend_data (reldyn_sorting_bfd)->s->swap_reloc_in)
2701     (reldyn_sorting_bfd, arg1, int_reloc1);
2702   (*get_elf_backend_data (reldyn_sorting_bfd)->s->swap_reloc_in)
2703     (reldyn_sorting_bfd, arg2, int_reloc2);
2704
2705   if (ELF64_R_SYM (int_reloc1[0].r_info) < ELF64_R_SYM (int_reloc2[0].r_info))
2706     return -1;
2707   if (ELF64_R_SYM (int_reloc1[0].r_info) > ELF64_R_SYM (int_reloc2[0].r_info))
2708     return 1;
2709
2710   if (int_reloc1[0].r_offset < int_reloc2[0].r_offset)
2711     return -1;
2712   if (int_reloc1[0].r_offset > int_reloc2[0].r_offset)
2713     return 1;
2714   return 0;
2715 #else
2716   abort ();
2717 #endif
2718 }
2719
2720
2721 /* This routine is used to write out ECOFF debugging external symbol
2722    information.  It is called via mips_elf_link_hash_traverse.  The
2723    ECOFF external symbol information must match the ELF external
2724    symbol information.  Unfortunately, at this point we don't know
2725    whether a symbol is required by reloc information, so the two
2726    tables may wind up being different.  We must sort out the external
2727    symbol information before we can set the final size of the .mdebug
2728    section, and we must set the size of the .mdebug section before we
2729    can relocate any sections, and we can't know which symbols are
2730    required by relocation until we relocate the sections.
2731    Fortunately, it is relatively unlikely that any symbol will be
2732    stripped but required by a reloc.  In particular, it can not happen
2733    when generating a final executable.  */
2734
2735 static bfd_boolean
2736 mips_elf_output_extsym (struct mips_elf_link_hash_entry *h, void *data)
2737 {
2738   struct extsym_info *einfo = data;
2739   bfd_boolean strip;
2740   asection *sec, *output_section;
2741
2742   if (h->root.indx == -2)
2743     strip = FALSE;
2744   else if ((h->root.def_dynamic
2745             || h->root.ref_dynamic
2746             || h->root.type == bfd_link_hash_new)
2747            && !h->root.def_regular
2748            && !h->root.ref_regular)
2749     strip = TRUE;
2750   else if (einfo->info->strip == strip_all
2751            || (einfo->info->strip == strip_some
2752                && bfd_hash_lookup (einfo->info->keep_hash,
2753                                    h->root.root.root.string,
2754                                    FALSE, FALSE) == NULL))
2755     strip = TRUE;
2756   else
2757     strip = FALSE;
2758
2759   if (strip)
2760     return TRUE;
2761
2762   if (h->esym.ifd == -2)
2763     {
2764       h->esym.jmptbl = 0;
2765       h->esym.cobol_main = 0;
2766       h->esym.weakext = 0;
2767       h->esym.reserved = 0;
2768       h->esym.ifd = ifdNil;
2769       h->esym.asym.value = 0;
2770       h->esym.asym.st = stGlobal;
2771
2772       if (h->root.root.type == bfd_link_hash_undefined
2773           || h->root.root.type == bfd_link_hash_undefweak)
2774         {
2775           const char *name;
2776
2777           /* Use undefined class.  Also, set class and type for some
2778              special symbols.  */
2779           name = h->root.root.root.string;
2780           if (strcmp (name, mips_elf_dynsym_rtproc_names[0]) == 0
2781               || strcmp (name, mips_elf_dynsym_rtproc_names[1]) == 0)
2782             {
2783               h->esym.asym.sc = scData;
2784               h->esym.asym.st = stLabel;
2785               h->esym.asym.value = 0;
2786             }
2787           else if (strcmp (name, mips_elf_dynsym_rtproc_names[2]) == 0)
2788             {
2789               h->esym.asym.sc = scAbs;
2790               h->esym.asym.st = stLabel;
2791               h->esym.asym.value =
2792                 mips_elf_hash_table (einfo->info)->procedure_count;
2793             }
2794           else if (strcmp (name, "_gp_disp") == 0 && ! NEWABI_P (einfo->abfd))
2795             {
2796               h->esym.asym.sc = scAbs;
2797               h->esym.asym.st = stLabel;
2798               h->esym.asym.value = elf_gp (einfo->abfd);
2799             }
2800           else
2801             h->esym.asym.sc = scUndefined;
2802         }
2803       else if (h->root.root.type != bfd_link_hash_defined
2804           && h->root.root.type != bfd_link_hash_defweak)
2805         h->esym.asym.sc = scAbs;
2806       else
2807         {
2808           const char *name;
2809
2810           sec = h->root.root.u.def.section;
2811           output_section = sec->output_section;
2812
2813           /* When making a shared library and symbol h is the one from
2814              the another shared library, OUTPUT_SECTION may be null.  */
2815           if (output_section == NULL)
2816             h->esym.asym.sc = scUndefined;
2817           else
2818             {
2819               name = bfd_section_name (output_section->owner, output_section);
2820
2821               if (strcmp (name, ".text") == 0)
2822                 h->esym.asym.sc = scText;
2823               else if (strcmp (name, ".data") == 0)
2824                 h->esym.asym.sc = scData;
2825               else if (strcmp (name, ".sdata") == 0)
2826                 h->esym.asym.sc = scSData;
2827               else if (strcmp (name, ".rodata") == 0
2828                        || strcmp (name, ".rdata") == 0)
2829                 h->esym.asym.sc = scRData;
2830               else if (strcmp (name, ".bss") == 0)
2831                 h->esym.asym.sc = scBss;
2832               else if (strcmp (name, ".sbss") == 0)
2833                 h->esym.asym.sc = scSBss;
2834               else if (strcmp (name, ".init") == 0)
2835                 h->esym.asym.sc = scInit;
2836               else if (strcmp (name, ".fini") == 0)
2837                 h->esym.asym.sc = scFini;
2838               else
2839                 h->esym.asym.sc = scAbs;
2840             }
2841         }
2842
2843       h->esym.asym.reserved = 0;
2844       h->esym.asym.index = indexNil;
2845     }
2846
2847   if (h->root.root.type == bfd_link_hash_common)
2848     h->esym.asym.value = h->root.root.u.c.size;
2849   else if (h->root.root.type == bfd_link_hash_defined
2850            || h->root.root.type == bfd_link_hash_defweak)
2851     {
2852       if (h->esym.asym.sc == scCommon)
2853         h->esym.asym.sc = scBss;
2854       else if (h->esym.asym.sc == scSCommon)
2855         h->esym.asym.sc = scSBss;
2856
2857       sec = h->root.root.u.def.section;
2858       output_section = sec->output_section;
2859       if (output_section != NULL)
2860         h->esym.asym.value = (h->root.root.u.def.value
2861                               + sec->output_offset
2862                               + output_section->vma);
2863       else
2864         h->esym.asym.value = 0;
2865     }
2866   else
2867     {
2868       struct mips_elf_link_hash_entry *hd = h;
2869
2870       while (hd->root.root.type == bfd_link_hash_indirect)
2871         hd = (struct mips_elf_link_hash_entry *)h->root.root.u.i.link;
2872
2873       if (hd->needs_lazy_stub)
2874         {
2875           BFD_ASSERT (hd->root.plt.plist != NULL);
2876           BFD_ASSERT (hd->root.plt.plist->stub_offset != MINUS_ONE);
2877           /* Set type and value for a symbol with a function stub.  */
2878           h->esym.asym.st = stProc;
2879           sec = hd->root.root.u.def.section;
2880           if (sec == NULL)
2881             h->esym.asym.value = 0;
2882           else
2883             {
2884               output_section = sec->output_section;
2885               if (output_section != NULL)
2886                 h->esym.asym.value = (hd->root.plt.plist->stub_offset
2887                                       + sec->output_offset
2888                                       + output_section->vma);
2889               else
2890                 h->esym.asym.value = 0;
2891             }
2892         }
2893     }
2894
2895   if (! bfd_ecoff_debug_one_external (einfo->abfd, einfo->debug, einfo->swap,
2896                                       h->root.root.root.string,
2897                                       &h->esym))
2898     {
2899       einfo->failed = TRUE;
2900       return FALSE;
2901     }
2902
2903   return TRUE;
2904 }
2905
2906 /* A comparison routine used to sort .gptab entries.  */
2907
2908 static int
2909 gptab_compare (const void *p1, const void *p2)
2910 {
2911   const Elf32_gptab *a1 = p1;
2912   const Elf32_gptab *a2 = p2;
2913
2914   return a1->gt_entry.gt_g_value - a2->gt_entry.gt_g_value;
2915 }
2916 \f
2917 /* Functions to manage the got entry hash table.  */
2918
2919 /* Use all 64 bits of a bfd_vma for the computation of a 32-bit
2920    hash number.  */
2921
2922 static INLINE hashval_t
2923 mips_elf_hash_bfd_vma (bfd_vma addr)
2924 {
2925 #ifdef BFD64
2926   return addr + (addr >> 32);
2927 #else
2928   return addr;
2929 #endif
2930 }
2931
2932 static hashval_t
2933 mips_elf_got_entry_hash (const void *entry_)
2934 {
2935   const struct mips_got_entry *entry = (struct mips_got_entry *)entry_;
2936
2937   return (entry->symndx
2938           + ((entry->tls_type == GOT_TLS_LDM) << 18)
2939           + (entry->tls_type == GOT_TLS_LDM ? 0
2940              : !entry->abfd ? mips_elf_hash_bfd_vma (entry->d.address)
2941              : entry->symndx >= 0 ? (entry->abfd->id
2942                                      + mips_elf_hash_bfd_vma (entry->d.addend))
2943              : entry->d.h->root.root.root.hash));
2944 }
2945
2946 static int
2947 mips_elf_got_entry_eq (const void *entry1, const void *entry2)
2948 {
2949   const struct mips_got_entry *e1 = (struct mips_got_entry *)entry1;
2950   const struct mips_got_entry *e2 = (struct mips_got_entry *)entry2;
2951
2952   return (e1->symndx == e2->symndx
2953           && e1->tls_type == e2->tls_type
2954           && (e1->tls_type == GOT_TLS_LDM ? TRUE
2955               : !e1->abfd ? !e2->abfd && e1->d.address == e2->d.address
2956               : e1->symndx >= 0 ? (e1->abfd == e2->abfd
2957                                    && e1->d.addend == e2->d.addend)
2958               : e2->abfd && e1->d.h == e2->d.h));
2959 }
2960
2961 static hashval_t
2962 mips_got_page_ref_hash (const void *ref_)
2963 {
2964   const struct mips_got_page_ref *ref;
2965
2966   ref = (const struct mips_got_page_ref *) ref_;
2967   return ((ref->symndx >= 0
2968            ? (hashval_t) (ref->u.abfd->id + ref->symndx)
2969            : ref->u.h->root.root.root.hash)
2970           + mips_elf_hash_bfd_vma (ref->addend));
2971 }
2972
2973 static int
2974 mips_got_page_ref_eq (const void *ref1_, const void *ref2_)
2975 {
2976   const struct mips_got_page_ref *ref1, *ref2;
2977
2978   ref1 = (const struct mips_got_page_ref *) ref1_;
2979   ref2 = (const struct mips_got_page_ref *) ref2_;
2980   return (ref1->symndx == ref2->symndx
2981           && (ref1->symndx < 0
2982               ? ref1->u.h == ref2->u.h
2983               : ref1->u.abfd == ref2->u.abfd)
2984           && ref1->addend == ref2->addend);
2985 }
2986
2987 static hashval_t
2988 mips_got_page_entry_hash (const void *entry_)
2989 {
2990   const struct mips_got_page_entry *entry;
2991
2992   entry = (const struct mips_got_page_entry *) entry_;
2993   return entry->sec->id;
2994 }
2995
2996 static int
2997 mips_got_page_entry_eq (const void *entry1_, const void *entry2_)
2998 {
2999   const struct mips_got_page_entry *entry1, *entry2;
3000
3001   entry1 = (const struct mips_got_page_entry *) entry1_;
3002   entry2 = (const struct mips_got_page_entry *) entry2_;
3003   return entry1->sec == entry2->sec;
3004 }
3005 \f
3006 /* Create and return a new mips_got_info structure.  */
3007
3008 static struct mips_got_info *
3009 mips_elf_create_got_info (bfd *abfd)
3010 {
3011   struct mips_got_info *g;
3012
3013   g = bfd_zalloc (abfd, sizeof (struct mips_got_info));
3014   if (g == NULL)
3015     return NULL;
3016
3017   g->got_entries = htab_try_create (1, mips_elf_got_entry_hash,
3018                                     mips_elf_got_entry_eq, NULL);
3019   if (g->got_entries == NULL)
3020     return NULL;
3021
3022   g->got_page_refs = htab_try_create (1, mips_got_page_ref_hash,
3023                                       mips_got_page_ref_eq, NULL);
3024   if (g->got_page_refs == NULL)
3025     return NULL;
3026
3027   return g;
3028 }
3029
3030 /* Return the GOT info for input bfd ABFD, trying to create a new one if
3031    CREATE_P and if ABFD doesn't already have a GOT.  */
3032
3033 static struct mips_got_info *
3034 mips_elf_bfd_got (bfd *abfd, bfd_boolean create_p)
3035 {
3036   struct mips_elf_obj_tdata *tdata;
3037
3038   if (!is_mips_elf (abfd))
3039     return NULL;
3040
3041   tdata = mips_elf_tdata (abfd);
3042   if (!tdata->got && create_p)
3043     tdata->got = mips_elf_create_got_info (abfd);
3044   return tdata->got;
3045 }
3046
3047 /* Record that ABFD should use output GOT G.  */
3048
3049 static void
3050 mips_elf_replace_bfd_got (bfd *abfd, struct mips_got_info *g)
3051 {
3052   struct mips_elf_obj_tdata *tdata;
3053
3054   BFD_ASSERT (is_mips_elf (abfd));
3055   tdata = mips_elf_tdata (abfd);
3056   if (tdata->got)
3057     {
3058       /* The GOT structure itself and the hash table entries are
3059          allocated to a bfd, but the hash tables aren't.  */
3060       htab_delete (tdata->got->got_entries);
3061       htab_delete (tdata->got->got_page_refs);
3062       if (tdata->got->got_page_entries)
3063         htab_delete (tdata->got->got_page_entries);
3064     }
3065   tdata->got = g;
3066 }
3067
3068 /* Return the dynamic relocation section.  If it doesn't exist, try to
3069    create a new it if CREATE_P, otherwise return NULL.  Also return NULL
3070    if creation fails.  */
3071
3072 static asection *
3073 mips_elf_rel_dyn_section (struct bfd_link_info *info, bfd_boolean create_p)
3074 {
3075   const char *dname;
3076   asection *sreloc;
3077   bfd *dynobj;
3078
3079   dname = MIPS_ELF_REL_DYN_NAME (info);
3080   dynobj = elf_hash_table (info)->dynobj;
3081   sreloc = bfd_get_linker_section (dynobj, dname);
3082   if (sreloc == NULL && create_p)
3083     {
3084       sreloc = bfd_make_section_anyway_with_flags (dynobj, dname,
3085                                                    (SEC_ALLOC
3086                                                     | SEC_LOAD
3087                                                     | SEC_HAS_CONTENTS
3088                                                     | SEC_IN_MEMORY
3089                                                     | SEC_LINKER_CREATED
3090                                                     | SEC_READONLY));
3091       if (sreloc == NULL
3092           || ! bfd_set_section_alignment (dynobj, sreloc,
3093                                           MIPS_ELF_LOG_FILE_ALIGN (dynobj)))
3094         return NULL;
3095     }
3096   return sreloc;
3097 }
3098
3099 /* Return the GOT_TLS_* type required by relocation type R_TYPE.  */
3100
3101 static int
3102 mips_elf_reloc_tls_type (unsigned int r_type)
3103 {
3104   if (tls_gd_reloc_p (r_type))
3105     return GOT_TLS_GD;
3106
3107   if (tls_ldm_reloc_p (r_type))
3108     return GOT_TLS_LDM;
3109
3110   if (tls_gottprel_reloc_p (r_type))
3111     return GOT_TLS_IE;
3112
3113   return GOT_TLS_NONE;
3114 }
3115
3116 /* Return the number of GOT slots needed for GOT TLS type TYPE.  */
3117
3118 static int
3119 mips_tls_got_entries (unsigned int type)
3120 {
3121   switch (type)
3122     {
3123     case GOT_TLS_GD:
3124     case GOT_TLS_LDM:
3125       return 2;
3126
3127     case GOT_TLS_IE:
3128       return 1;
3129
3130     case GOT_TLS_NONE:
3131       return 0;
3132     }
3133   abort ();
3134 }
3135
3136 /* Count the number of relocations needed for a TLS GOT entry, with
3137    access types from TLS_TYPE, and symbol H (or a local symbol if H
3138    is NULL).  */
3139
3140 static int
3141 mips_tls_got_relocs (struct bfd_link_info *info, unsigned char tls_type,
3142                      struct elf_link_hash_entry *h)
3143 {
3144   int indx = 0;
3145   bfd_boolean need_relocs = FALSE;
3146   bfd_boolean dyn = elf_hash_table (info)->dynamic_sections_created;
3147
3148   if (h && WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h)
3149       && (!info->shared || !SYMBOL_REFERENCES_LOCAL (info, h)))
3150     indx = h->dynindx;
3151
3152   if ((info->shared || indx != 0)
3153       && (h == NULL
3154           || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
3155           || h->root.type != bfd_link_hash_undefweak))
3156     need_relocs = TRUE;
3157
3158   if (!need_relocs)
3159     return 0;
3160
3161   switch (tls_type)
3162     {
3163     case GOT_TLS_GD:
3164       return indx != 0 ? 2 : 1;
3165
3166     case GOT_TLS_IE:
3167       return 1;
3168
3169     case GOT_TLS_LDM:
3170       return info->shared ? 1 : 0;
3171
3172     default:
3173       return 0;
3174     }
3175 }
3176
3177 /* Add the number of GOT entries and TLS relocations required by ENTRY
3178    to G.  */
3179
3180 static void
3181 mips_elf_count_got_entry (struct bfd_link_info *info,
3182                           struct mips_got_info *g,
3183                           struct mips_got_entry *entry)
3184 {
3185   if (entry->tls_type)
3186     {
3187       g->tls_gotno += mips_tls_got_entries (entry->tls_type);
3188       g->relocs += mips_tls_got_relocs (info, entry->tls_type,
3189                                         entry->symndx < 0
3190                                         ? &entry->d.h->root : NULL);
3191     }
3192   else if (entry->symndx >= 0 || entry->d.h->global_got_area == GGA_NONE)
3193     g->local_gotno += 1;
3194   else
3195     g->global_gotno += 1;
3196 }
3197
3198 /* Output a simple dynamic relocation into SRELOC.  */
3199
3200 static void
3201 mips_elf_output_dynamic_relocation (bfd *output_bfd,
3202                                     asection *sreloc,
3203                                     unsigned long reloc_index,
3204                                     unsigned long indx,
3205                                     int r_type,
3206                                     bfd_vma offset)
3207 {
3208   Elf_Internal_Rela rel[3];
3209
3210   memset (rel, 0, sizeof (rel));
3211
3212   rel[0].r_info = ELF_R_INFO (output_bfd, indx, r_type);
3213   rel[0].r_offset = rel[1].r_offset = rel[2].r_offset = offset;
3214
3215   if (ABI_64_P (output_bfd))
3216     {
3217       (*get_elf_backend_data (output_bfd)->s->swap_reloc_out)
3218         (output_bfd, &rel[0],
3219          (sreloc->contents
3220           + reloc_index * sizeof (Elf64_Mips_External_Rel)));
3221     }
3222   else
3223     bfd_elf32_swap_reloc_out
3224       (output_bfd, &rel[0],
3225        (sreloc->contents
3226         + reloc_index * sizeof (Elf32_External_Rel)));
3227 }
3228
3229 /* Initialize a set of TLS GOT entries for one symbol.  */
3230
3231 static void
3232 mips_elf_initialize_tls_slots (bfd *abfd, struct bfd_link_info *info,
3233                                struct mips_got_entry *entry,
3234                                struct mips_elf_link_hash_entry *h,
3235                                bfd_vma value)
3236 {
3237   struct mips_elf_link_hash_table *htab;
3238   int indx;
3239   asection *sreloc, *sgot;
3240   bfd_vma got_offset, got_offset2;
3241   bfd_boolean need_relocs = FALSE;
3242
3243   htab = mips_elf_hash_table (info);
3244   if (htab == NULL)
3245     return;
3246
3247   sgot = htab->sgot;
3248
3249   indx = 0;
3250   if (h != NULL)
3251     {
3252       bfd_boolean dyn = elf_hash_table (info)->dynamic_sections_created;
3253
3254       if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, &h->root)
3255           && (!info->shared || !SYMBOL_REFERENCES_LOCAL (info, &h->root)))
3256         indx = h->root.dynindx;
3257     }
3258
3259   if (entry->tls_initialized)
3260     return;
3261
3262   if ((info->shared || indx != 0)
3263       && (h == NULL
3264           || ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT
3265           || h->root.type != bfd_link_hash_undefweak))
3266     need_relocs = TRUE;
3267
3268   /* MINUS_ONE means the symbol is not defined in this object.  It may not
3269      be defined at all; assume that the value doesn't matter in that
3270      case.  Otherwise complain if we would use the value.  */
3271   BFD_ASSERT (value != MINUS_ONE || (indx != 0 && need_relocs)
3272               || h->root.root.type == bfd_link_hash_undefweak);
3273
3274   /* Emit necessary relocations.  */
3275   sreloc = mips_elf_rel_dyn_section (info, FALSE);
3276   got_offset = entry->gotidx;
3277
3278   switch (entry->tls_type)
3279     {
3280     case GOT_TLS_GD:
3281       /* General Dynamic.  */
3282       got_offset2 = got_offset + MIPS_ELF_GOT_SIZE (abfd);
3283
3284       if (need_relocs)
3285         {
3286           mips_elf_output_dynamic_relocation
3287             (abfd, sreloc, sreloc->reloc_count++, indx,
3288              ABI_64_P (abfd) ? R_MIPS_TLS_DTPMOD64 : R_MIPS_TLS_DTPMOD32,
3289              sgot->output_offset + sgot->output_section->vma + got_offset);
3290
3291           if (indx)
3292             mips_elf_output_dynamic_relocation
3293               (abfd, sreloc, sreloc->reloc_count++, indx,
3294                ABI_64_P (abfd) ? R_MIPS_TLS_DTPREL64 : R_MIPS_TLS_DTPREL32,
3295                sgot->output_offset + sgot->output_section->vma + got_offset2);
3296           else
3297             MIPS_ELF_PUT_WORD (abfd, value - dtprel_base (info),
3298                                sgot->contents + got_offset2);
3299         }
3300       else
3301         {
3302           MIPS_ELF_PUT_WORD (abfd, 1,
3303                              sgot->contents + got_offset);
3304           MIPS_ELF_PUT_WORD (abfd, value - dtprel_base (info),
3305                              sgot->contents + got_offset2);
3306         }
3307       break;
3308
3309     case GOT_TLS_IE:
3310       /* Initial Exec model.  */
3311       if (need_relocs)
3312         {
3313           if (indx == 0)
3314             MIPS_ELF_PUT_WORD (abfd, value - elf_hash_table (info)->tls_sec->vma,
3315                                sgot->contents + got_offset);
3316           else
3317             MIPS_ELF_PUT_WORD (abfd, 0,
3318                                sgot->contents + got_offset);
3319
3320           mips_elf_output_dynamic_relocation
3321             (abfd, sreloc, sreloc->reloc_count++, indx,
3322              ABI_64_P (abfd) ? R_MIPS_TLS_TPREL64 : R_MIPS_TLS_TPREL32,
3323              sgot->output_offset + sgot->output_section->vma + got_offset);
3324         }
3325       else
3326         MIPS_ELF_PUT_WORD (abfd, value - tprel_base (info),
3327                            sgot->contents + got_offset);
3328       break;
3329
3330     case GOT_TLS_LDM:
3331       /* The initial offset is zero, and the LD offsets will include the
3332          bias by DTP_OFFSET.  */
3333       MIPS_ELF_PUT_WORD (abfd, 0,
3334                          sgot->contents + got_offset
3335                          + MIPS_ELF_GOT_SIZE (abfd));
3336
3337       if (!info->shared)
3338         MIPS_ELF_PUT_WORD (abfd, 1,
3339                            sgot->contents + got_offset);
3340       else
3341         mips_elf_output_dynamic_relocation
3342           (abfd, sreloc, sreloc->reloc_count++, indx,
3343            ABI_64_P (abfd) ? R_MIPS_TLS_DTPMOD64 : R_MIPS_TLS_DTPMOD32,
3344            sgot->output_offset + sgot->output_section->vma + got_offset);
3345       break;
3346
3347     default:
3348       abort ();
3349     }
3350
3351   entry->tls_initialized = TRUE;
3352 }
3353
3354 /* Return the offset from _GLOBAL_OFFSET_TABLE_ of the .got.plt entry
3355    for global symbol H.  .got.plt comes before the GOT, so the offset
3356    will be negative.  */
3357
3358 static bfd_vma
3359 mips_elf_gotplt_index (struct bfd_link_info *info,
3360                        struct elf_link_hash_entry *h)
3361 {
3362   bfd_vma got_address, got_value;
3363   struct mips_elf_link_hash_table *htab;
3364
3365   htab = mips_elf_hash_table (info);
3366   BFD_ASSERT (htab != NULL);
3367
3368   BFD_ASSERT (h->plt.plist != NULL);
3369   BFD_ASSERT (h->plt.plist->gotplt_index != MINUS_ONE);
3370
3371   /* Calculate the address of the associated .got.plt entry.  */
3372   got_address = (htab->sgotplt->output_section->vma
3373                  + htab->sgotplt->output_offset
3374                  + (h->plt.plist->gotplt_index
3375                     * MIPS_ELF_GOT_SIZE (info->output_bfd)));
3376
3377   /* Calculate the value of _GLOBAL_OFFSET_TABLE_.  */
3378   got_value = (htab->root.hgot->root.u.def.section->output_section->vma
3379                + htab->root.hgot->root.u.def.section->output_offset
3380                + htab->root.hgot->root.u.def.value);
3381
3382   return got_address - got_value;
3383 }
3384
3385 /* Return the GOT offset for address VALUE.   If there is not yet a GOT
3386    entry for this value, create one.  If R_SYMNDX refers to a TLS symbol,
3387    create a TLS GOT entry instead.  Return -1 if no satisfactory GOT
3388    offset can be found.  */
3389
3390 static bfd_vma
3391 mips_elf_local_got_index (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
3392                           bfd_vma value, unsigned long r_symndx,
3393                           struct mips_elf_link_hash_entry *h, int r_type)
3394 {
3395   struct mips_elf_link_hash_table *htab;
3396   struct mips_got_entry *entry;
3397
3398   htab = mips_elf_hash_table (info);
3399   BFD_ASSERT (htab != NULL);
3400
3401   entry = mips_elf_create_local_got_entry (abfd, info, ibfd, value,
3402                                            r_symndx, h, r_type);
3403   if (!entry)
3404     return MINUS_ONE;
3405
3406   if (entry->tls_type)
3407     mips_elf_initialize_tls_slots (abfd, info, entry, h, value);
3408   return entry->gotidx;
3409 }
3410
3411 /* Return the GOT index of global symbol H in the primary GOT.  */
3412
3413 static bfd_vma
3414 mips_elf_primary_global_got_index (bfd *obfd, struct bfd_link_info *info,
3415                                    struct elf_link_hash_entry *h)
3416 {
3417   struct mips_elf_link_hash_table *htab;
3418   long global_got_dynindx;
3419   struct mips_got_info *g;
3420   bfd_vma got_index;
3421
3422   htab = mips_elf_hash_table (info);
3423   BFD_ASSERT (htab != NULL);
3424
3425   global_got_dynindx = 0;
3426   if (htab->global_gotsym != NULL)
3427     global_got_dynindx = htab->global_gotsym->dynindx;
3428
3429   /* Once we determine the global GOT entry with the lowest dynamic
3430      symbol table index, we must put all dynamic symbols with greater
3431      indices into the primary GOT.  That makes it easy to calculate the
3432      GOT offset.  */
3433   BFD_ASSERT (h->dynindx >= global_got_dynindx);
3434   g = mips_elf_bfd_got (obfd, FALSE);
3435   got_index = ((h->dynindx - global_got_dynindx + g->local_gotno)
3436                * MIPS_ELF_GOT_SIZE (obfd));
3437   BFD_ASSERT (got_index < htab->sgot->size);
3438
3439   return got_index;
3440 }
3441
3442 /* Return the GOT index for the global symbol indicated by H, which is
3443    referenced by a relocation of type R_TYPE in IBFD.  */
3444
3445 static bfd_vma
3446 mips_elf_global_got_index (bfd *obfd, struct bfd_link_info *info, bfd *ibfd,
3447                            struct elf_link_hash_entry *h, int r_type)
3448 {
3449   struct mips_elf_link_hash_table *htab;
3450   struct mips_got_info *g;
3451   struct mips_got_entry lookup, *entry;
3452   bfd_vma gotidx;
3453
3454   htab = mips_elf_hash_table (info);
3455   BFD_ASSERT (htab != NULL);
3456
3457   g = mips_elf_bfd_got (ibfd, FALSE);
3458   BFD_ASSERT (g);
3459
3460   lookup.tls_type = mips_elf_reloc_tls_type (r_type);
3461   if (!lookup.tls_type && g == mips_elf_bfd_got (obfd, FALSE))
3462     return mips_elf_primary_global_got_index (obfd, info, h);
3463
3464   lookup.abfd = ibfd;
3465   lookup.symndx = -1;
3466   lookup.d.h = (struct mips_elf_link_hash_entry *) h;
3467   entry = htab_find (g->got_entries, &lookup);
3468   BFD_ASSERT (entry);
3469
3470   gotidx = entry->gotidx;
3471   BFD_ASSERT (gotidx > 0 && gotidx < htab->sgot->size);
3472
3473   if (lookup.tls_type)
3474     {
3475       bfd_vma value = MINUS_ONE;
3476
3477       if ((h->root.type == bfd_link_hash_defined
3478            || h->root.type == bfd_link_hash_defweak)
3479           && h->root.u.def.section->output_section)
3480         value = (h->root.u.def.value
3481                  + h->root.u.def.section->output_offset
3482                  + h->root.u.def.section->output_section->vma);
3483
3484       mips_elf_initialize_tls_slots (obfd, info, entry, lookup.d.h, value);
3485     }
3486   return gotidx;
3487 }
3488
3489 /* Find a GOT page entry that points to within 32KB of VALUE.  These
3490    entries are supposed to be placed at small offsets in the GOT, i.e.,
3491    within 32KB of GP.  Return the index of the GOT entry, or -1 if no
3492    entry could be created.  If OFFSETP is nonnull, use it to return the
3493    offset of the GOT entry from VALUE.  */
3494
3495 static bfd_vma
3496 mips_elf_got_page (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
3497                    bfd_vma value, bfd_vma *offsetp)
3498 {
3499   bfd_vma page, got_index;
3500   struct mips_got_entry *entry;
3501
3502   page = (value + 0x8000) & ~(bfd_vma) 0xffff;
3503   entry = mips_elf_create_local_got_entry (abfd, info, ibfd, page, 0,
3504                                            NULL, R_MIPS_GOT_PAGE);
3505
3506   if (!entry)
3507     return MINUS_ONE;
3508
3509   got_index = entry->gotidx;
3510
3511   if (offsetp)
3512     *offsetp = value - entry->d.address;
3513
3514   return got_index;
3515 }
3516
3517 /* Find a local GOT entry for an R_MIPS*_GOT16 relocation against VALUE.
3518    EXTERNAL is true if the relocation was originally against a global
3519    symbol that binds locally.  */
3520
3521 static bfd_vma
3522 mips_elf_got16_entry (bfd *abfd, bfd *ibfd, struct bfd_link_info *info,
3523                       bfd_vma value, bfd_boolean external)
3524 {
3525   struct mips_got_entry *entry;
3526
3527   /* GOT16 relocations against local symbols are followed by a LO16
3528      relocation; those against global symbols are not.  Thus if the
3529      symbol was originally local, the GOT16 relocation should load the
3530      equivalent of %hi(VALUE), otherwise it should load VALUE itself.  */
3531   if (! external)
3532     value = mips_elf_high (value) << 16;
3533
3534   /* It doesn't matter whether the original relocation was R_MIPS_GOT16,
3535      R_MIPS16_GOT16, R_MIPS_CALL16, etc.  The format of the entry is the
3536      same in all cases.  */
3537   entry = mips_elf_create_local_got_entry (abfd, info, ibfd, value, 0,
3538                                            NULL, R_MIPS_GOT16);
3539   if (entry)
3540     return entry->gotidx;
3541   else
3542     return MINUS_ONE;
3543 }
3544
3545 /* Returns the offset for the entry at the INDEXth position
3546    in the GOT.  */
3547
3548 static bfd_vma
3549 mips_elf_got_offset_from_index (struct bfd_link_info *info, bfd *output_bfd,
3550                                 bfd *input_bfd, bfd_vma got_index)
3551 {
3552   struct mips_elf_link_hash_table *htab;
3553   asection *sgot;
3554   bfd_vma gp;
3555
3556   htab = mips_elf_hash_table (info);
3557   BFD_ASSERT (htab != NULL);
3558
3559   sgot = htab->sgot;
3560   gp = _bfd_get_gp_value (output_bfd)
3561     + mips_elf_adjust_gp (output_bfd, htab->got_info, input_bfd);
3562
3563   return sgot->output_section->vma + sgot->output_offset + got_index - gp;
3564 }
3565
3566 /* Create and return a local GOT entry for VALUE, which was calculated
3567    from a symbol belonging to INPUT_SECTON.  Return NULL if it could not
3568    be created.  If R_SYMNDX refers to a TLS symbol, create a TLS entry
3569    instead.  */
3570
3571 static struct mips_got_entry *
3572 mips_elf_create_local_got_entry (bfd *abfd, struct bfd_link_info *info,
3573                                  bfd *ibfd, bfd_vma value,
3574                                  unsigned long r_symndx,
3575                                  struct mips_elf_link_hash_entry *h,
3576                                  int r_type)
3577 {
3578   struct mips_got_entry lookup, *entry;
3579   void **loc;
3580   struct mips_got_info *g;
3581   struct mips_elf_link_hash_table *htab;
3582   bfd_vma gotidx;
3583
3584   htab = mips_elf_hash_table (info);
3585   BFD_ASSERT (htab != NULL);
3586
3587   g = mips_elf_bfd_got (ibfd, FALSE);
3588   if (g == NULL)
3589     {
3590       g = mips_elf_bfd_got (abfd, FALSE);
3591       BFD_ASSERT (g != NULL);
3592     }
3593
3594   /* This function shouldn't be called for symbols that live in the global
3595      area of the GOT.  */
3596   BFD_ASSERT (h == NULL || h->global_got_area == GGA_NONE);
3597
3598   lookup.tls_type = mips_elf_reloc_tls_type (r_type);
3599   if (lookup.tls_type)
3600     {
3601       lookup.abfd = ibfd;
3602       if (tls_ldm_reloc_p (r_type))
3603         {
3604           lookup.symndx = 0;
3605           lookup.d.addend = 0;
3606         }
3607       else if (h == NULL)
3608         {
3609           lookup.symndx = r_symndx;
3610           lookup.d.addend = 0;
3611         }
3612       else
3613         {
3614           lookup.symndx = -1;
3615           lookup.d.h = h;
3616         }
3617
3618       entry = (struct mips_got_entry *) htab_find (g->got_entries, &lookup);
3619       BFD_ASSERT (entry);
3620
3621       gotidx = entry->gotidx;
3622       BFD_ASSERT (gotidx > 0 && gotidx < htab->sgot->size);
3623
3624       return entry;
3625     }
3626
3627   lookup.abfd = NULL;
3628   lookup.symndx = -1;
3629   lookup.d.address = value;
3630   loc = htab_find_slot (g->got_entries, &lookup, INSERT);
3631   if (!loc)
3632     return NULL;
3633
3634   entry = (struct mips_got_entry *) *loc;
3635   if (entry)
3636     return entry;
3637
3638   if (g->assigned_gotno >= g->local_gotno)
3639     {
3640       /* We didn't allocate enough space in the GOT.  */
3641       (*_bfd_error_handler)
3642         (_("not enough GOT space for local GOT entries"));
3643       bfd_set_error (bfd_error_bad_value);
3644       return NULL;
3645     }
3646
3647   entry = (struct mips_got_entry *) bfd_alloc (abfd, sizeof (*entry));
3648   if (!entry)
3649     return NULL;
3650
3651   lookup.gotidx = MIPS_ELF_GOT_SIZE (abfd) * g->assigned_gotno++;
3652   *entry = lookup;
3653   *loc = entry;
3654
3655   MIPS_ELF_PUT_WORD (abfd, value, htab->sgot->contents + entry->gotidx);
3656
3657   /* These GOT entries need a dynamic relocation on VxWorks.  */
3658   if (htab->is_vxworks)
3659     {
3660       Elf_Internal_Rela outrel;
3661       asection *s;
3662       bfd_byte *rloc;
3663       bfd_vma got_address;
3664
3665       s = mips_elf_rel_dyn_section (info, FALSE);
3666       got_address = (htab->sgot->output_section->vma
3667                      + htab->sgot->output_offset
3668                      + entry->gotidx);
3669
3670       rloc = s->contents + (s->reloc_count++ * sizeof (Elf32_External_Rela));
3671       outrel.r_offset = got_address;
3672       outrel.r_info = ELF32_R_INFO (STN_UNDEF, R_MIPS_32);
3673       outrel.r_addend = value;
3674       bfd_elf32_swap_reloca_out (abfd, &outrel, rloc);
3675     }
3676
3677   return entry;
3678 }
3679
3680 /* Return the number of dynamic section symbols required by OUTPUT_BFD.
3681    The number might be exact or a worst-case estimate, depending on how
3682    much information is available to elf_backend_omit_section_dynsym at
3683    the current linking stage.  */
3684
3685 static bfd_size_type
3686 count_section_dynsyms (bfd *output_bfd, struct bfd_link_info *info)
3687 {
3688   bfd_size_type count;
3689
3690   count = 0;
3691   if (info->shared || elf_hash_table (info)->is_relocatable_executable)
3692     {
3693       asection *p;
3694       const struct elf_backend_data *bed;
3695
3696       bed = get_elf_backend_data (output_bfd);
3697       for (p = output_bfd->sections; p ; p = p->next)
3698         if ((p->flags & SEC_EXCLUDE) == 0
3699             && (p->flags & SEC_ALLOC) != 0
3700             && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
3701           ++count;
3702     }
3703   return count;
3704 }
3705
3706 /* Sort the dynamic symbol table so that symbols that need GOT entries
3707    appear towards the end.  */
3708
3709 static bfd_boolean
3710 mips_elf_sort_hash_table (bfd *abfd, struct bfd_link_info *info)
3711 {
3712   struct mips_elf_link_hash_table *htab;
3713   struct mips_elf_hash_sort_data hsd;
3714   struct mips_got_info *g;
3715
3716   if (elf_hash_table (info)->dynsymcount == 0)
3717     return TRUE;
3718
3719   htab = mips_elf_hash_table (info);
3720   BFD_ASSERT (htab != NULL);
3721
3722   g = htab->got_info;
3723   if (g == NULL)
3724     return TRUE;
3725
3726   hsd.low = NULL;
3727   hsd.max_unref_got_dynindx
3728     = hsd.min_got_dynindx
3729     = (elf_hash_table (info)->dynsymcount - g->reloc_only_gotno);
3730   hsd.max_non_got_dynindx = count_section_dynsyms (abfd, info) + 1;
3731   mips_elf_link_hash_traverse (((struct mips_elf_link_hash_table *)
3732                                 elf_hash_table (info)),
3733                                mips_elf_sort_hash_table_f,
3734                                &hsd);
3735
3736   /* There should have been enough room in the symbol table to
3737      accommodate both the GOT and non-GOT symbols.  */
3738   BFD_ASSERT (hsd.max_non_got_dynindx <= hsd.min_got_dynindx);
3739   BFD_ASSERT ((unsigned long) hsd.max_unref_got_dynindx
3740               == elf_hash_table (info)->dynsymcount);
3741   BFD_ASSERT (elf_hash_table (info)->dynsymcount - hsd.min_got_dynindx
3742               == g->global_gotno);
3743
3744   /* Now we know which dynamic symbol has the lowest dynamic symbol
3745      table index in the GOT.  */
3746   htab->global_gotsym = hsd.low;
3747
3748   return TRUE;
3749 }
3750
3751 /* If H needs a GOT entry, assign it the highest available dynamic
3752    index.  Otherwise, assign it the lowest available dynamic
3753    index.  */
3754
3755 static bfd_boolean
3756 mips_elf_sort_hash_table_f (struct mips_elf_link_hash_entry *h, void *data)
3757 {
3758   struct mips_elf_hash_sort_data *hsd = data;
3759
3760   /* Symbols without dynamic symbol table entries aren't interesting
3761      at all.  */
3762   if (h->root.dynindx == -1)
3763     return TRUE;
3764
3765   switch (h->global_got_area)
3766     {
3767     case GGA_NONE:
3768       h->root.dynindx = hsd->max_non_got_dynindx++;
3769       break;
3770
3771     case GGA_NORMAL:
3772       h->root.dynindx = --hsd->min_got_dynindx;
3773       hsd->low = (struct elf_link_hash_entry *) h;
3774       break;
3775
3776     case GGA_RELOC_ONLY:
3777       if (hsd->max_unref_got_dynindx == hsd->min_got_dynindx)
3778         hsd->low = (struct elf_link_hash_entry *) h;
3779       h->root.dynindx = hsd->max_unref_got_dynindx++;
3780       break;
3781     }
3782
3783   return TRUE;
3784 }
3785
3786 /* Record that input bfd ABFD requires a GOT entry like *LOOKUP
3787    (which is owned by the caller and shouldn't be added to the
3788    hash table directly).  */
3789
3790 static bfd_boolean
3791 mips_elf_record_got_entry (struct bfd_link_info *info, bfd *abfd,
3792                            struct mips_got_entry *lookup)
3793 {
3794   struct mips_elf_link_hash_table *htab;
3795   struct mips_got_entry *entry;
3796   struct mips_got_info *g;
3797   void **loc, **bfd_loc;
3798
3799   /* Make sure there's a slot for this entry in the master GOT.  */
3800   htab = mips_elf_hash_table (info);
3801   g = htab->got_info;
3802   loc = htab_find_slot (g->got_entries, lookup, INSERT);
3803   if (!loc)
3804     return FALSE;
3805
3806   /* Populate the entry if it isn't already.  */
3807   entry = (struct mips_got_entry *) *loc;
3808   if (!entry)
3809     {
3810       entry = (struct mips_got_entry *) bfd_alloc (abfd, sizeof (*entry));
3811       if (!entry)
3812         return FALSE;
3813
3814       lookup->tls_initialized = FALSE;
3815       lookup->gotidx = -1;
3816       *entry = *lookup;
3817       *loc = entry;
3818     }
3819
3820   /* Reuse the same GOT entry for the BFD's GOT.  */
3821   g = mips_elf_bfd_got (abfd, TRUE);
3822   if (!g)
3823     return FALSE;
3824
3825   bfd_loc = htab_find_slot (g->got_entries, lookup, INSERT);
3826   if (!bfd_loc)
3827     return FALSE;
3828
3829   if (!*bfd_loc)
3830     *bfd_loc = entry;
3831   return TRUE;
3832 }
3833
3834 /* ABFD has a GOT relocation of type R_TYPE against H.  Reserve a GOT
3835    entry for it.  FOR_CALL is true if the caller is only interested in
3836    using the GOT entry for calls.  */
3837
3838 static bfd_boolean
3839 mips_elf_record_global_got_symbol (struct elf_link_hash_entry *h,
3840                                    bfd *abfd, struct bfd_link_info *info,
3841                                    bfd_boolean for_call, int r_type)
3842 {
3843   struct mips_elf_link_hash_table *htab;
3844   struct mips_elf_link_hash_entry *hmips;
3845   struct mips_got_entry entry;
3846   unsigned char tls_type;
3847
3848   htab = mips_elf_hash_table (info);
3849   BFD_ASSERT (htab != NULL);
3850
3851   hmips = (struct mips_elf_link_hash_entry *) h;
3852   if (!for_call)
3853     hmips->got_only_for_calls = FALSE;
3854
3855   /* A global symbol in the GOT must also be in the dynamic symbol
3856      table.  */
3857   if (h->dynindx == -1)
3858     {
3859       switch (ELF_ST_VISIBILITY (h->other))
3860         {
3861         case STV_INTERNAL:
3862         case STV_HIDDEN:
3863           _bfd_elf_link_hash_hide_symbol (info, h, TRUE);
3864           break;
3865         }
3866       if (!bfd_elf_link_record_dynamic_symbol (info, h))
3867         return FALSE;
3868     }
3869
3870   tls_type = mips_elf_reloc_tls_type (r_type);
3871   if (tls_type == GOT_TLS_NONE && hmips->global_got_area > GGA_NORMAL)
3872     hmips->global_got_area = GGA_NORMAL;
3873
3874   entry.abfd = abfd;
3875   entry.symndx = -1;
3876   entry.d.h = (struct mips_elf_link_hash_entry *) h;
3877   entry.tls_type = tls_type;
3878   return mips_elf_record_got_entry (info, abfd, &entry);
3879 }
3880
3881 /* ABFD has a GOT relocation of type R_TYPE against symbol SYMNDX + ADDEND,
3882    where SYMNDX is a local symbol.  Reserve a GOT entry for it.  */
3883
3884 static bfd_boolean
3885 mips_elf_record_local_got_symbol (bfd *abfd, long symndx, bfd_vma addend,
3886                                   struct bfd_link_info *info, int r_type)
3887 {
3888   struct mips_elf_link_hash_table *htab;
3889   struct mips_got_info *g;
3890   struct mips_got_entry entry;
3891
3892   htab = mips_elf_hash_table (info);
3893   BFD_ASSERT (htab != NULL);
3894
3895   g = htab->got_info;
3896   BFD_ASSERT (g != NULL);
3897
3898   entry.abfd = abfd;
3899   entry.symndx = symndx;
3900   entry.d.addend = addend;
3901   entry.tls_type = mips_elf_reloc_tls_type (r_type);
3902   return mips_elf_record_got_entry (info, abfd, &entry);
3903 }
3904
3905 /* Record that ABFD has a page relocation against SYMNDX + ADDEND.
3906    H is the symbol's hash table entry, or null if SYMNDX is local
3907    to ABFD.  */
3908
3909 static bfd_boolean
3910 mips_elf_record_got_page_ref (struct bfd_link_info *info, bfd *abfd,
3911                               long symndx, struct elf_link_hash_entry *h,
3912                               bfd_signed_vma addend)
3913 {
3914   struct mips_elf_link_hash_table *htab;
3915   struct mips_got_info *g1, *g2;
3916   struct mips_got_page_ref lookup, *entry;
3917   void **loc, **bfd_loc;
3918
3919   htab = mips_elf_hash_table (info);
3920   BFD_ASSERT (htab != NULL);
3921
3922   g1 = htab->got_info;
3923   BFD_ASSERT (g1 != NULL);
3924
3925   if (h)
3926     {
3927       lookup.symndx = -1;
3928       lookup.u.h = (struct mips_elf_link_hash_entry *) h;
3929     }
3930   else
3931     {
3932       lookup.symndx = symndx;
3933       lookup.u.abfd = abfd;
3934     }
3935   lookup.addend = addend;
3936   loc = htab_find_slot (g1->got_page_refs, &lookup, INSERT);
3937   if (loc == NULL)
3938     return FALSE;
3939
3940   entry = (struct mips_got_page_ref *) *loc;
3941   if (!entry)
3942     {
3943       entry = bfd_alloc (abfd, sizeof (*entry));
3944       if (!entry)
3945         return FALSE;
3946
3947       *entry = lookup;
3948       *loc = entry;
3949     }
3950
3951   /* Add the same entry to the BFD's GOT.  */
3952   g2 = mips_elf_bfd_got (abfd, TRUE);
3953   if (!g2)
3954     return FALSE;
3955
3956   bfd_loc = htab_find_slot (g2->got_page_refs, &lookup, INSERT);
3957   if (!bfd_loc)
3958     return FALSE;
3959
3960   if (!*bfd_loc)
3961     *bfd_loc = entry;
3962
3963   return TRUE;
3964 }
3965
3966 /* Add room for N relocations to the .rel(a).dyn section in ABFD.  */
3967
3968 static void
3969 mips_elf_allocate_dynamic_relocations (bfd *abfd, struct bfd_link_info *info,
3970                                        unsigned int n)
3971 {
3972   asection *s;
3973   struct mips_elf_link_hash_table *htab;
3974
3975   htab = mips_elf_hash_table (info);
3976   BFD_ASSERT (htab != NULL);
3977
3978   s = mips_elf_rel_dyn_section (info, FALSE);
3979   BFD_ASSERT (s != NULL);
3980
3981   if (htab->is_vxworks)
3982     s->size += n * MIPS_ELF_RELA_SIZE (abfd);
3983   else
3984     {
3985       if (s->size == 0)
3986         {
3987           /* Make room for a null element.  */
3988           s->size += MIPS_ELF_REL_SIZE (abfd);
3989           ++s->reloc_count;
3990         }
3991       s->size += n * MIPS_ELF_REL_SIZE (abfd);
3992     }
3993 }
3994 \f
3995 /* A htab_traverse callback for GOT entries, with DATA pointing to a
3996    mips_elf_traverse_got_arg structure.  Count the number of GOT
3997    entries and TLS relocs.  Set DATA->value to true if we need
3998    to resolve indirect or warning symbols and then recreate the GOT.  */
3999
4000 static int
4001 mips_elf_check_recreate_got (void **entryp, void *data)
4002 {
4003   struct mips_got_entry *entry;
4004   struct mips_elf_traverse_got_arg *arg;
4005
4006   entry = (struct mips_got_entry *) *entryp;
4007   arg = (struct mips_elf_traverse_got_arg *) data;
4008   if (entry->abfd != NULL && entry->symndx == -1)
4009     {
4010       struct mips_elf_link_hash_entry *h;
4011
4012       h = entry->d.h;
4013       if (h->root.root.type == bfd_link_hash_indirect
4014           || h->root.root.type == bfd_link_hash_warning)
4015         {
4016           arg->value = TRUE;
4017           return 0;
4018         }
4019     }
4020   mips_elf_count_got_entry (arg->info, arg->g, entry);
4021   return 1;
4022 }
4023
4024 /* A htab_traverse callback for GOT entries, with DATA pointing to a
4025    mips_elf_traverse_got_arg structure.  Add all entries to DATA->g,
4026    converting entries for indirect and warning symbols into entries
4027    for the target symbol.  Set DATA->g to null on error.  */
4028
4029 static int
4030 mips_elf_recreate_got (void **entryp, void *data)
4031 {
4032   struct mips_got_entry new_entry, *entry;
4033   struct mips_elf_traverse_got_arg *arg;
4034   void **slot;
4035
4036   entry = (struct mips_got_entry *) *entryp;
4037   arg = (struct mips_elf_traverse_got_arg *) data;
4038   if (entry->abfd != NULL
4039       && entry->symndx == -1
4040       && (entry->d.h->root.root.type == bfd_link_hash_indirect
4041           || entry->d.h->root.root.type == bfd_link_hash_warning))
4042     {
4043       struct mips_elf_link_hash_entry *h;
4044
4045       new_entry = *entry;
4046       entry = &new_entry;
4047       h = entry->d.h;
4048       do
4049         {
4050           BFD_ASSERT (h->global_got_area == GGA_NONE);
4051           h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
4052         }
4053       while (h->root.root.type == bfd_link_hash_indirect
4054              || h->root.root.type == bfd_link_hash_warning);
4055       entry->d.h = h;
4056     }
4057   slot = htab_find_slot (arg->g->got_entries, entry, INSERT);
4058   if (slot == NULL)
4059     {
4060       arg->g = NULL;
4061       return 0;
4062     }
4063   if (*slot == NULL)
4064     {
4065       if (entry == &new_entry)
4066         {
4067           entry = bfd_alloc (entry->abfd, sizeof (*entry));
4068           if (!entry)
4069             {
4070               arg->g = NULL;
4071               return 0;
4072             }
4073           *entry = new_entry;
4074         }
4075       *slot = entry;
4076       mips_elf_count_got_entry (arg->info, arg->g, entry);
4077     }
4078   return 1;
4079 }
4080
4081 /* Return the maximum number of GOT page entries required for RANGE.  */
4082
4083 static bfd_vma
4084 mips_elf_pages_for_range (const struct mips_got_page_range *range)
4085 {
4086   return (range->max_addend - range->min_addend + 0x1ffff) >> 16;
4087 }
4088
4089 /* Record that G requires a page entry that can reach SEC + ADDEND.  */
4090
4091 static bfd_boolean
4092 mips_elf_record_got_page_entry (struct mips_elf_traverse_got_arg *arg,
4093                                 asection *sec, bfd_signed_vma addend)
4094 {
4095   struct mips_got_info *g = arg->g;
4096   struct mips_got_page_entry lookup, *entry;
4097   struct mips_got_page_range **range_ptr, *range;
4098   bfd_vma old_pages, new_pages;
4099   void **loc;
4100
4101   /* Find the mips_got_page_entry hash table entry for this section.  */
4102   lookup.sec = sec;
4103   loc = htab_find_slot (g->got_page_entries, &lookup, INSERT);
4104   if (loc == NULL)
4105     return FALSE;
4106
4107   /* Create a mips_got_page_entry if this is the first time we've
4108      seen the section.  */
4109   entry = (struct mips_got_page_entry *) *loc;
4110   if (!entry)
4111     {
4112       entry = bfd_zalloc (arg->info->output_bfd, sizeof (*entry));
4113       if (!entry)
4114         return FALSE;
4115
4116       entry->sec = sec;
4117       *loc = entry;
4118     }
4119
4120   /* Skip over ranges whose maximum extent cannot share a page entry
4121      with ADDEND.  */
4122   range_ptr = &entry->ranges;
4123   while (*range_ptr && addend > (*range_ptr)->max_addend + 0xffff)
4124     range_ptr = &(*range_ptr)->next;
4125
4126   /* If we scanned to the end of the list, or found a range whose
4127      minimum extent cannot share a page entry with ADDEND, create
4128      a new singleton range.  */
4129   range = *range_ptr;
4130   if (!range || addend < range->min_addend - 0xffff)
4131     {
4132       range = bfd_zalloc (arg->info->output_bfd, sizeof (*range));
4133       if (!range)
4134         return FALSE;
4135
4136       range->next = *range_ptr;
4137       range->min_addend = addend;
4138       range->max_addend = addend;
4139
4140       *range_ptr = range;
4141       entry->num_pages++;
4142       g->page_gotno++;
4143       return TRUE;
4144     }
4145
4146   /* Remember how many pages the old range contributed.  */
4147   old_pages = mips_elf_pages_for_range (range);
4148
4149   /* Update the ranges.  */
4150   if (addend < range->min_addend)
4151     range->min_addend = addend;
4152   else if (addend > range->max_addend)
4153     {
4154       if (range->next && addend >= range->next->min_addend - 0xffff)
4155         {
4156           old_pages += mips_elf_pages_for_range (range->next);
4157           range->max_addend = range->next->max_addend;
4158           range->next = range->next->next;
4159         }
4160       else
4161         range->max_addend = addend;
4162     }
4163
4164   /* Record any change in the total estimate.  */
4165   new_pages = mips_elf_pages_for_range (range);
4166   if (old_pages != new_pages)
4167     {
4168       entry->num_pages += new_pages - old_pages;
4169       g->page_gotno += new_pages - old_pages;
4170     }
4171
4172   return TRUE;
4173 }
4174
4175 /* A htab_traverse callback for which *REFP points to a mips_got_page_ref
4176    and for which DATA points to a mips_elf_traverse_got_arg.  Work out
4177    whether the page reference described by *REFP needs a GOT page entry,
4178    and record that entry in DATA->g if so.  Set DATA->g to null on failure.  */
4179
4180 static bfd_boolean
4181 mips_elf_resolve_got_page_ref (void **refp, void *data)
4182 {
4183   struct mips_got_page_ref *ref;
4184   struct mips_elf_traverse_got_arg *arg;
4185   struct mips_elf_link_hash_table *htab;
4186   asection *sec;
4187   bfd_vma addend;
4188
4189   ref = (struct mips_got_page_ref *) *refp;
4190   arg = (struct mips_elf_traverse_got_arg *) data;
4191   htab = mips_elf_hash_table (arg->info);
4192
4193   if (ref->symndx < 0)
4194     {
4195       struct mips_elf_link_hash_entry *h;
4196
4197       /* Global GOT_PAGEs decay to GOT_DISP and so don't need page entries.  */
4198       h = ref->u.h;
4199       if (!SYMBOL_REFERENCES_LOCAL (arg->info, &h->root))
4200         return 1;
4201
4202       /* Ignore undefined symbols; we'll issue an error later if
4203          appropriate.  */
4204       if (!((h->root.root.type == bfd_link_hash_defined
4205              || h->root.root.type == bfd_link_hash_defweak)
4206             && h->root.root.u.def.section))
4207         return 1;
4208
4209       sec = h->root.root.u.def.section;
4210       addend = h->root.root.u.def.value + ref->addend;
4211     }
4212   else
4213     {
4214       Elf_Internal_Sym *isym;
4215
4216       /* Read in the symbol.  */
4217       isym = bfd_sym_from_r_symndx (&htab->sym_cache, ref->u.abfd,
4218                                     ref->symndx);
4219       if (isym == NULL)
4220         {
4221           arg->g = NULL;
4222           return 0;
4223         }
4224
4225       /* Get the associated input section.  */
4226       sec = bfd_section_from_elf_index (ref->u.abfd, isym->st_shndx);
4227       if (sec == NULL)
4228         {
4229           arg->g = NULL;
4230           return 0;
4231         }
4232
4233       /* If this is a mergable section, work out the section and offset
4234          of the merged data.  For section symbols, the addend specifies
4235          of the offset _of_ the first byte in the data, otherwise it
4236          specifies the offset _from_ the first byte.  */
4237       if (sec->flags & SEC_MERGE)
4238         {
4239           void *secinfo;
4240
4241           secinfo = elf_section_data (sec)->sec_info;
4242           if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
4243             addend = _bfd_merged_section_offset (ref->u.abfd, &sec, secinfo,
4244                                                  isym->st_value + ref->addend);
4245           else
4246             addend = _bfd_merged_section_offset (ref->u.abfd, &sec, secinfo,
4247                                                  isym->st_value) + ref->addend;
4248         }
4249       else
4250         addend = isym->st_value + ref->addend;
4251     }
4252   if (!mips_elf_record_got_page_entry (arg, sec, addend))
4253     {
4254       arg->g = NULL;
4255       return 0;
4256     }
4257   return 1;
4258 }
4259
4260 /* If any entries in G->got_entries are for indirect or warning symbols,
4261    replace them with entries for the target symbol.  Convert g->got_page_refs
4262    into got_page_entry structures and estimate the number of page entries
4263    that they require.  */
4264
4265 static bfd_boolean
4266 mips_elf_resolve_final_got_entries (struct bfd_link_info *info,
4267                                     struct mips_got_info *g)
4268 {
4269   struct mips_elf_traverse_got_arg tga;
4270   struct mips_got_info oldg;
4271
4272   oldg = *g;
4273
4274   tga.info = info;
4275   tga.g = g;
4276   tga.value = FALSE;
4277   htab_traverse (g->got_entries, mips_elf_check_recreate_got, &tga);
4278   if (tga.value)
4279     {
4280       *g = oldg;
4281       g->got_entries = htab_create (htab_size (oldg.got_entries),
4282                                     mips_elf_got_entry_hash,
4283                                     mips_elf_got_entry_eq, NULL);
4284       if (!g->got_entries)
4285         return FALSE;
4286
4287       htab_traverse (oldg.got_entries, mips_elf_recreate_got, &tga);
4288       if (!tga.g)
4289         return FALSE;
4290
4291       htab_delete (oldg.got_entries);
4292     }
4293
4294   g->got_page_entries = htab_try_create (1, mips_got_page_entry_hash,
4295                                          mips_got_page_entry_eq, NULL);
4296   if (g->got_page_entries == NULL)
4297     return FALSE;
4298
4299   tga.info = info;
4300   tga.g = g;
4301   htab_traverse (g->got_page_refs, mips_elf_resolve_got_page_ref, &tga);
4302
4303   return TRUE;
4304 }
4305
4306 /* Return true if a GOT entry for H should live in the local rather than
4307    global GOT area.  */
4308
4309 static bfd_boolean
4310 mips_use_local_got_p (struct bfd_link_info *info,
4311                       struct mips_elf_link_hash_entry *h)
4312 {
4313   /* Symbols that aren't in the dynamic symbol table must live in the
4314      local GOT.  This includes symbols that are completely undefined
4315      and which therefore don't bind locally.  We'll report undefined
4316      symbols later if appropriate.  */
4317   if (h->root.dynindx == -1)
4318     return TRUE;
4319
4320   /* Symbols that bind locally can (and in the case of forced-local
4321      symbols, must) live in the local GOT.  */
4322   if (h->got_only_for_calls
4323       ? SYMBOL_CALLS_LOCAL (info, &h->root)
4324       : SYMBOL_REFERENCES_LOCAL (info, &h->root))
4325     return TRUE;
4326
4327   /* If this is an executable that must provide a definition of the symbol,
4328      either though PLTs or copy relocations, then that address should go in
4329      the local rather than global GOT.  */
4330   if (info->executable && h->has_static_relocs)
4331     return TRUE;
4332
4333   return FALSE;
4334 }
4335
4336 /* A mips_elf_link_hash_traverse callback for which DATA points to the
4337    link_info structure.  Decide whether the hash entry needs an entry in
4338    the global part of the primary GOT, setting global_got_area accordingly.
4339    Count the number of global symbols that are in the primary GOT only
4340    because they have relocations against them (reloc_only_gotno).  */
4341
4342 static int
4343 mips_elf_count_got_symbols (struct mips_elf_link_hash_entry *h, void *data)
4344 {
4345   struct bfd_link_info *info;
4346   struct mips_elf_link_hash_table *htab;
4347   struct mips_got_info *g;
4348
4349   info = (struct bfd_link_info *) data;
4350   htab = mips_elf_hash_table (info);
4351   g = htab->got_info;
4352   if (h->global_got_area != GGA_NONE)
4353     {
4354       /* Make a final decision about whether the symbol belongs in the
4355          local or global GOT.  */
4356       if (mips_use_local_got_p (info, h))
4357         /* The symbol belongs in the local GOT.  We no longer need this
4358            entry if it was only used for relocations; those relocations
4359            will be against the null or section symbol instead of H.  */
4360         h->global_got_area = GGA_NONE;
4361       else if (htab->is_vxworks
4362                && h->got_only_for_calls
4363                && h->root.plt.plist->mips_offset != MINUS_ONE)
4364         /* On VxWorks, calls can refer directly to the .got.plt entry;
4365            they don't need entries in the regular GOT.  .got.plt entries
4366            will be allocated by _bfd_mips_elf_adjust_dynamic_symbol.  */
4367         h->global_got_area = GGA_NONE;
4368       else if (h->global_got_area == GGA_RELOC_ONLY)
4369         {
4370           g->reloc_only_gotno++;
4371           g->global_gotno++;
4372         }
4373     }
4374   return 1;
4375 }
4376 \f
4377 /* A htab_traverse callback for GOT entries.  Add each one to the GOT
4378    given in mips_elf_traverse_got_arg DATA.  Clear DATA->G on error.  */
4379
4380 static int
4381 mips_elf_add_got_entry (void **entryp, void *data)
4382 {
4383   struct mips_got_entry *entry;
4384   struct mips_elf_traverse_got_arg *arg;
4385   void **slot;
4386
4387   entry = (struct mips_got_entry *) *entryp;
4388   arg = (struct mips_elf_traverse_got_arg *) data;
4389   slot = htab_find_slot (arg->g->got_entries, entry, INSERT);
4390   if (!slot)
4391     {
4392       arg->g = NULL;
4393       return 0;
4394     }
4395   if (!*slot)
4396     {
4397       *slot = entry;
4398       mips_elf_count_got_entry (arg->info, arg->g, entry);
4399     }
4400   return 1;
4401 }
4402
4403 /* A htab_traverse callback for GOT page entries.  Add each one to the GOT
4404    given in mips_elf_traverse_got_arg DATA.  Clear DATA->G on error.  */
4405
4406 static int
4407 mips_elf_add_got_page_entry (void **entryp, void *data)
4408 {
4409   struct mips_got_page_entry *entry;
4410   struct mips_elf_traverse_got_arg *arg;
4411   void **slot;
4412
4413   entry = (struct mips_got_page_entry *) *entryp;
4414   arg = (struct mips_elf_traverse_got_arg *) data;
4415   slot = htab_find_slot (arg->g->got_page_entries, entry, INSERT);
4416   if (!slot)
4417     {
4418       arg->g = NULL;
4419       return 0;
4420     }
4421   if (!*slot)
4422     {
4423       *slot = entry;
4424       arg->g->page_gotno += entry->num_pages;
4425     }
4426   return 1;
4427 }
4428
4429 /* Consider merging FROM, which is ABFD's GOT, into TO.  Return -1 if
4430    this would lead to overflow, 1 if they were merged successfully,
4431    and 0 if a merge failed due to lack of memory.  (These values are chosen
4432    so that nonnegative return values can be returned by a htab_traverse
4433    callback.)  */
4434
4435 static int
4436 mips_elf_merge_got_with (bfd *abfd, struct mips_got_info *from,
4437                          struct mips_got_info *to,
4438                          struct mips_elf_got_per_bfd_arg *arg)
4439 {
4440   struct mips_elf_traverse_got_arg tga;
4441   unsigned int estimate;
4442
4443   /* Work out how many page entries we would need for the combined GOT.  */
4444   estimate = arg->max_pages;
4445   if (estimate >= from->page_gotno + to->page_gotno)
4446     estimate = from->page_gotno + to->page_gotno;
4447
4448   /* And conservatively estimate how many local and TLS entries
4449      would be needed.  */
4450   estimate += from->local_gotno + to->local_gotno;
4451   estimate += from->tls_gotno + to->tls_gotno;
4452
4453   /* If we're merging with the primary got, any TLS relocations will
4454      come after the full set of global entries.  Otherwise estimate those
4455      conservatively as well.  */
4456   if (to == arg->primary && from->tls_gotno + to->tls_gotno)
4457     estimate += arg->global_count;
4458   else
4459     estimate += from->global_gotno + to->global_gotno;
4460
4461   /* Bail out if the combined GOT might be too big.  */
4462   if (estimate > arg->max_count)
4463     return -1;
4464
4465   /* Transfer the bfd's got information from FROM to TO.  */
4466   tga.info = arg->info;
4467   tga.g = to;
4468   htab_traverse (from->got_entries, mips_elf_add_got_entry, &tga);
4469   if (!tga.g)
4470     return 0;
4471
4472   htab_traverse (from->got_page_entries, mips_elf_add_got_page_entry, &tga);
4473   if (!tga.g)
4474     return 0;
4475
4476   mips_elf_replace_bfd_got (abfd, to);
4477   return 1;
4478 }
4479
4480 /* Attempt to merge GOT G, which belongs to ABFD.  Try to use as much
4481    as possible of the primary got, since it doesn't require explicit
4482    dynamic relocations, but don't use bfds that would reference global
4483    symbols out of the addressable range.  Failing the primary got,
4484    attempt to merge with the current got, or finish the current got
4485    and then make make the new got current.  */
4486
4487 static bfd_boolean
4488 mips_elf_merge_got (bfd *abfd, struct mips_got_info *g,
4489                     struct mips_elf_got_per_bfd_arg *arg)
4490 {
4491   unsigned int estimate;
4492   int result;
4493
4494   if (!mips_elf_resolve_final_got_entries (arg->info, g))
4495     return FALSE;
4496
4497   /* Work out the number of page, local and TLS entries.  */
4498   estimate = arg->max_pages;
4499   if (estimate > g->page_gotno)
4500     estimate = g->page_gotno;
4501   estimate += g->local_gotno + g->tls_gotno;
4502
4503   /* We place TLS GOT entries after both locals and globals.  The globals
4504      for the primary GOT may overflow the normal GOT size limit, so be
4505      sure not to merge a GOT which requires TLS with the primary GOT in that
4506      case.  This doesn't affect non-primary GOTs.  */
4507   estimate += (g->tls_gotno > 0 ? arg->global_count : g->global_gotno);
4508
4509   if (estimate <= arg->max_count)
4510     {
4511       /* If we don't have a primary GOT, use it as
4512          a starting point for the primary GOT.  */
4513       if (!arg->primary)
4514         {
4515           arg->primary = g;
4516           return TRUE;
4517         }
4518
4519       /* Try merging with the primary GOT.  */
4520       result = mips_elf_merge_got_with (abfd, g, arg->primary, arg);
4521       if (result >= 0)
4522         return result;
4523     }
4524
4525   /* If we can merge with the last-created got, do it.  */
4526   if (arg->current)
4527     {
4528       result = mips_elf_merge_got_with (abfd, g, arg->current, arg);
4529       if (result >= 0)
4530         return result;
4531     }
4532
4533   /* Well, we couldn't merge, so create a new GOT.  Don't check if it
4534      fits; if it turns out that it doesn't, we'll get relocation
4535      overflows anyway.  */
4536   g->next = arg->current;
4537   arg->current = g;
4538
4539   return TRUE;
4540 }
4541
4542 /* ENTRYP is a hash table entry for a mips_got_entry.  Set its gotidx
4543    to GOTIDX, duplicating the entry if it has already been assigned
4544    an index in a different GOT.  */
4545
4546 static bfd_boolean
4547 mips_elf_set_gotidx (void **entryp, long gotidx)
4548 {
4549   struct mips_got_entry *entry;
4550
4551   entry = (struct mips_got_entry *) *entryp;
4552   if (entry->gotidx > 0)
4553     {
4554       struct mips_got_entry *new_entry;
4555
4556       new_entry = bfd_alloc (entry->abfd, sizeof (*entry));
4557       if (!new_entry)
4558         return FALSE;
4559
4560       *new_entry = *entry;
4561       *entryp = new_entry;
4562       entry = new_entry;
4563     }
4564   entry->gotidx = gotidx;
4565   return TRUE;
4566 }
4567
4568 /* Set the TLS GOT index for the GOT entry in ENTRYP.  DATA points to a
4569    mips_elf_traverse_got_arg in which DATA->value is the size of one
4570    GOT entry.  Set DATA->g to null on failure.  */
4571
4572 static int
4573 mips_elf_initialize_tls_index (void **entryp, void *data)
4574 {
4575   struct mips_got_entry *entry;
4576   struct mips_elf_traverse_got_arg *arg;
4577
4578   /* We're only interested in TLS symbols.  */
4579   entry = (struct mips_got_entry *) *entryp;
4580   if (entry->tls_type == GOT_TLS_NONE)
4581     return 1;
4582
4583   arg = (struct mips_elf_traverse_got_arg *) data;
4584   if (!mips_elf_set_gotidx (entryp, arg->value * arg->g->tls_assigned_gotno))
4585     {
4586       arg->g = NULL;
4587       return 0;
4588     }
4589
4590   /* Account for the entries we've just allocated.  */
4591   arg->g->tls_assigned_gotno += mips_tls_got_entries (entry->tls_type);
4592   return 1;
4593 }
4594
4595 /* A htab_traverse callback for GOT entries, where DATA points to a
4596    mips_elf_traverse_got_arg.  Set the global_got_area of each global
4597    symbol to DATA->value.  */
4598
4599 static int
4600 mips_elf_set_global_got_area (void **entryp, void *data)
4601 {
4602   struct mips_got_entry *entry;
4603   struct mips_elf_traverse_got_arg *arg;
4604
4605   entry = (struct mips_got_entry *) *entryp;
4606   arg = (struct mips_elf_traverse_got_arg *) data;
4607   if (entry->abfd != NULL
4608       && entry->symndx == -1
4609       && entry->d.h->global_got_area != GGA_NONE)
4610     entry->d.h->global_got_area = arg->value;
4611   return 1;
4612 }
4613
4614 /* A htab_traverse callback for secondary GOT entries, where DATA points
4615    to a mips_elf_traverse_got_arg.  Assign GOT indices to global entries
4616    and record the number of relocations they require.  DATA->value is
4617    the size of one GOT entry.  Set DATA->g to null on failure.  */
4618
4619 static int
4620 mips_elf_set_global_gotidx (void **entryp, void *data)
4621 {
4622   struct mips_got_entry *entry;
4623   struct mips_elf_traverse_got_arg *arg;
4624
4625   entry = (struct mips_got_entry *) *entryp;
4626   arg = (struct mips_elf_traverse_got_arg *) data;
4627   if (entry->abfd != NULL
4628       && entry->symndx == -1
4629       && entry->d.h->global_got_area != GGA_NONE)
4630     {
4631       if (!mips_elf_set_gotidx (entryp, arg->value * arg->g->assigned_gotno))
4632         {
4633           arg->g = NULL;
4634           return 0;
4635         }
4636       arg->g->assigned_gotno += 1;
4637
4638       if (arg->info->shared
4639           || (elf_hash_table (arg->info)->dynamic_sections_created
4640               && entry->d.h->root.def_dynamic
4641               && !entry->d.h->root.def_regular))
4642         arg->g->relocs += 1;
4643     }
4644
4645   return 1;
4646 }
4647
4648 /* A htab_traverse callback for GOT entries for which DATA is the
4649    bfd_link_info.  Forbid any global symbols from having traditional
4650    lazy-binding stubs.  */
4651
4652 static int
4653 mips_elf_forbid_lazy_stubs (void **entryp, void *data)
4654 {
4655   struct bfd_link_info *info;
4656   struct mips_elf_link_hash_table *htab;
4657   struct mips_got_entry *entry;
4658
4659   entry = (struct mips_got_entry *) *entryp;
4660   info = (struct bfd_link_info *) data;
4661   htab = mips_elf_hash_table (info);
4662   BFD_ASSERT (htab != NULL);
4663
4664   if (entry->abfd != NULL
4665       && entry->symndx == -1
4666       && entry->d.h->needs_lazy_stub)
4667     {
4668       entry->d.h->needs_lazy_stub = FALSE;
4669       htab->lazy_stub_count--;
4670     }
4671
4672   return 1;
4673 }
4674
4675 /* Return the offset of an input bfd IBFD's GOT from the beginning of
4676    the primary GOT.  */
4677 static bfd_vma
4678 mips_elf_adjust_gp (bfd *abfd, struct mips_got_info *g, bfd *ibfd)
4679 {
4680   if (!g->next)
4681     return 0;
4682
4683   g = mips_elf_bfd_got (ibfd, FALSE);
4684   if (! g)
4685     return 0;
4686
4687   BFD_ASSERT (g->next);
4688
4689   g = g->next;
4690
4691   return (g->local_gotno + g->global_gotno + g->tls_gotno)
4692     * MIPS_ELF_GOT_SIZE (abfd);
4693 }
4694
4695 /* Turn a single GOT that is too big for 16-bit addressing into
4696    a sequence of GOTs, each one 16-bit addressable.  */
4697
4698 static bfd_boolean
4699 mips_elf_multi_got (bfd *abfd, struct bfd_link_info *info,
4700                     asection *got, bfd_size_type pages)
4701 {
4702   struct mips_elf_link_hash_table *htab;
4703   struct mips_elf_got_per_bfd_arg got_per_bfd_arg;
4704   struct mips_elf_traverse_got_arg tga;
4705   struct mips_got_info *g, *gg;
4706   unsigned int assign, needed_relocs;
4707   bfd *dynobj, *ibfd;
4708
4709   dynobj = elf_hash_table (info)->dynobj;
4710   htab = mips_elf_hash_table (info);
4711   BFD_ASSERT (htab != NULL);
4712
4713   g = htab->got_info;
4714
4715   got_per_bfd_arg.obfd = abfd;
4716   got_per_bfd_arg.info = info;
4717   got_per_bfd_arg.current = NULL;
4718   got_per_bfd_arg.primary = NULL;
4719   got_per_bfd_arg.max_count = ((MIPS_ELF_GOT_MAX_SIZE (info)
4720                                 / MIPS_ELF_GOT_SIZE (abfd))
4721                                - htab->reserved_gotno);
4722   got_per_bfd_arg.max_pages = pages;
4723   /* The number of globals that will be included in the primary GOT.
4724      See the calls to mips_elf_set_global_got_area below for more
4725      information.  */
4726   got_per_bfd_arg.global_count = g->global_gotno;
4727
4728   /* Try to merge the GOTs of input bfds together, as long as they
4729      don't seem to exceed the maximum GOT size, choosing one of them
4730      to be the primary GOT.  */
4731   for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link_next)
4732     {
4733       gg = mips_elf_bfd_got (ibfd, FALSE);
4734       if (gg && !mips_elf_merge_got (ibfd, gg, &got_per_bfd_arg))
4735         return FALSE;
4736     }
4737
4738   /* If we do not find any suitable primary GOT, create an empty one.  */
4739   if (got_per_bfd_arg.primary == NULL)
4740     g->next = mips_elf_create_got_info (abfd);
4741   else
4742     g->next = got_per_bfd_arg.primary;
4743   g->next->next = got_per_bfd_arg.current;
4744
4745   /* GG is now the master GOT, and G is the primary GOT.  */
4746   gg = g;
4747   g = g->next;
4748
4749   /* Map the output bfd to the primary got.  That's what we're going
4750      to use for bfds that use GOT16 or GOT_PAGE relocations that we
4751      didn't mark in check_relocs, and we want a quick way to find it.
4752      We can't just use gg->next because we're going to reverse the
4753      list.  */
4754   mips_elf_replace_bfd_got (abfd, g);
4755
4756   /* Every symbol that is referenced in a dynamic relocation must be
4757      present in the primary GOT, so arrange for them to appear after
4758      those that are actually referenced.  */
4759   gg->reloc_only_gotno = gg->global_gotno - g->global_gotno;
4760   g->global_gotno = gg->global_gotno;
4761
4762   tga.info = info;
4763   tga.value = GGA_RELOC_ONLY;
4764   htab_traverse (gg->got_entries, mips_elf_set_global_got_area, &tga);
4765   tga.value = GGA_NORMAL;
4766   htab_traverse (g->got_entries, mips_elf_set_global_got_area, &tga);
4767
4768   /* Now go through the GOTs assigning them offset ranges.
4769      [assigned_gotno, local_gotno[ will be set to the range of local
4770      entries in each GOT.  We can then compute the end of a GOT by
4771      adding local_gotno to global_gotno.  We reverse the list and make
4772      it circular since then we'll be able to quickly compute the
4773      beginning of a GOT, by computing the end of its predecessor.  To
4774      avoid special cases for the primary GOT, while still preserving
4775      assertions that are valid for both single- and multi-got links,
4776      we arrange for the main got struct to have the right number of
4777      global entries, but set its local_gotno such that the initial
4778      offset of the primary GOT is zero.  Remember that the primary GOT
4779      will become the last item in the circular linked list, so it
4780      points back to the master GOT.  */
4781   gg->local_gotno = -g->global_gotno;
4782   gg->global_gotno = g->global_gotno;
4783   gg->tls_gotno = 0;
4784   assign = 0;
4785   gg->next = gg;
4786
4787   do
4788     {
4789       struct mips_got_info *gn;
4790
4791       assign += htab->reserved_gotno;
4792       g->assigned_gotno = assign;
4793       g->local_gotno += assign;
4794       g->local_gotno += (pages < g->page_gotno ? pages : g->page_gotno);
4795       assign = g->local_gotno + g->global_gotno + g->tls_gotno;
4796
4797       /* Take g out of the direct list, and push it onto the reversed
4798          list that gg points to.  g->next is guaranteed to be nonnull after
4799          this operation, as required by mips_elf_initialize_tls_index. */
4800       gn = g->next;
4801       g->next = gg->next;
4802       gg->next = g;
4803
4804       /* Set up any TLS entries.  We always place the TLS entries after
4805          all non-TLS entries.  */
4806       g->tls_assigned_gotno = g->local_gotno + g->global_gotno;
4807       tga.g = g;
4808       tga.value = MIPS_ELF_GOT_SIZE (abfd);
4809       htab_traverse (g->got_entries, mips_elf_initialize_tls_index, &tga);
4810       if (!tga.g)
4811         return FALSE;
4812       BFD_ASSERT (g->tls_assigned_gotno == assign);
4813
4814       /* Move onto the next GOT.  It will be a secondary GOT if nonull.  */
4815       g = gn;
4816
4817       /* Forbid global symbols in every non-primary GOT from having
4818          lazy-binding stubs.  */
4819       if (g)
4820         htab_traverse (g->got_entries, mips_elf_forbid_lazy_stubs, info);
4821     }
4822   while (g);
4823
4824   got->size = assign * MIPS_ELF_GOT_SIZE (abfd);
4825
4826   needed_relocs = 0;
4827   for (g = gg->next; g && g->next != gg; g = g->next)
4828     {
4829       unsigned int save_assign;
4830
4831       /* Assign offsets to global GOT entries and count how many
4832          relocations they need.  */
4833       save_assign = g->assigned_gotno;
4834       g->assigned_gotno = g->local_gotno;
4835       tga.info = info;
4836       tga.value = MIPS_ELF_GOT_SIZE (abfd);
4837       tga.g = g;
4838       htab_traverse (g->got_entries, mips_elf_set_global_gotidx, &tga);
4839       if (!tga.g)
4840         return FALSE;
4841       BFD_ASSERT (g->assigned_gotno == g->local_gotno + g->global_gotno);
4842       g->assigned_gotno = save_assign;
4843
4844       if (info->shared)
4845         {
4846           g->relocs += g->local_gotno - g->assigned_gotno;
4847           BFD_ASSERT (g->assigned_gotno == g->next->local_gotno
4848                       + g->next->global_gotno
4849                       + g->next->tls_gotno
4850                       + htab->reserved_gotno);
4851         }
4852       needed_relocs += g->relocs;
4853     }
4854   needed_relocs += g->relocs;
4855
4856   if (needed_relocs)
4857     mips_elf_allocate_dynamic_relocations (dynobj, info,
4858                                            needed_relocs);
4859
4860   return TRUE;
4861 }
4862
4863 \f
4864 /* Returns the first relocation of type r_type found, beginning with
4865    RELOCATION.  RELEND is one-past-the-end of the relocation table.  */
4866
4867 static const Elf_Internal_Rela *
4868 mips_elf_next_relocation (bfd *abfd ATTRIBUTE_UNUSED, unsigned int r_type,
4869                           const Elf_Internal_Rela *relocation,
4870                           const Elf_Internal_Rela *relend)
4871 {
4872   unsigned long r_symndx = ELF_R_SYM (abfd, relocation->r_info);
4873
4874   while (relocation < relend)
4875     {
4876       if (ELF_R_TYPE (abfd, relocation->r_info) == r_type
4877           && ELF_R_SYM (abfd, relocation->r_info) == r_symndx)
4878         return relocation;
4879
4880       ++relocation;
4881     }
4882
4883   /* We didn't find it.  */
4884   return NULL;
4885 }
4886
4887 /* Return whether an input relocation is against a local symbol.  */
4888
4889 static bfd_boolean
4890 mips_elf_local_relocation_p (bfd *input_bfd,
4891                              const Elf_Internal_Rela *relocation,
4892                              asection **local_sections)
4893 {
4894   unsigned long r_symndx;
4895   Elf_Internal_Shdr *symtab_hdr;
4896   size_t extsymoff;
4897
4898   r_symndx = ELF_R_SYM (input_bfd, relocation->r_info);
4899   symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
4900   extsymoff = (elf_bad_symtab (input_bfd)) ? 0 : symtab_hdr->sh_info;
4901
4902   if (r_symndx < extsymoff)
4903     return TRUE;
4904   if (elf_bad_symtab (input_bfd) && local_sections[r_symndx] != NULL)
4905     return TRUE;
4906
4907   return FALSE;
4908 }
4909 \f
4910 /* Sign-extend VALUE, which has the indicated number of BITS.  */
4911
4912 bfd_vma
4913 _bfd_mips_elf_sign_extend (bfd_vma value, int bits)
4914 {
4915   if (value & ((bfd_vma) 1 << (bits - 1)))
4916     /* VALUE is negative.  */
4917     value |= ((bfd_vma) - 1) << bits;
4918
4919   return value;
4920 }
4921
4922 /* Return non-zero if the indicated VALUE has overflowed the maximum
4923    range expressible by a signed number with the indicated number of
4924    BITS.  */
4925
4926 static bfd_boolean
4927 mips_elf_overflow_p (bfd_vma value, int bits)
4928 {
4929   bfd_signed_vma svalue = (bfd_signed_vma) value;
4930
4931   if (svalue > (1 << (bits - 1)) - 1)
4932     /* The value is too big.  */
4933     return TRUE;
4934   else if (svalue < -(1 << (bits - 1)))
4935     /* The value is too small.  */
4936     return TRUE;
4937
4938   /* All is well.  */
4939   return FALSE;
4940 }
4941
4942 /* Calculate the %high function.  */
4943
4944 static bfd_vma
4945 mips_elf_high (bfd_vma value)
4946 {
4947   return ((value + (bfd_vma) 0x8000) >> 16) & 0xffff;
4948 }
4949
4950 /* Calculate the %higher function.  */
4951
4952 static bfd_vma
4953 mips_elf_higher (bfd_vma value ATTRIBUTE_UNUSED)
4954 {
4955 #ifdef BFD64
4956   return ((value + (bfd_vma) 0x80008000) >> 32) & 0xffff;
4957 #else
4958   abort ();
4959   return MINUS_ONE;
4960 #endif
4961 }
4962
4963 /* Calculate the %highest function.  */
4964
4965 static bfd_vma
4966 mips_elf_highest (bfd_vma value ATTRIBUTE_UNUSED)
4967 {
4968 #ifdef BFD64
4969   return ((value + (((bfd_vma) 0x8000 << 32) | 0x80008000)) >> 48) & 0xffff;
4970 #else
4971   abort ();
4972   return MINUS_ONE;
4973 #endif
4974 }
4975 \f
4976 /* Create the .compact_rel section.  */
4977
4978 static bfd_boolean
4979 mips_elf_create_compact_rel_section
4980   (bfd *abfd, struct bfd_link_info *info ATTRIBUTE_UNUSED)
4981 {
4982   flagword flags;
4983   register asection *s;
4984
4985   if (bfd_get_linker_section (abfd, ".compact_rel") == NULL)
4986     {
4987       flags = (SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED
4988                | SEC_READONLY);
4989
4990       s = bfd_make_section_anyway_with_flags (abfd, ".compact_rel", flags);
4991       if (s == NULL
4992           || ! bfd_set_section_alignment (abfd, s,
4993                                           MIPS_ELF_LOG_FILE_ALIGN (abfd)))
4994         return FALSE;
4995
4996       s->size = sizeof (Elf32_External_compact_rel);
4997     }
4998
4999   return TRUE;
5000 }
5001
5002 /* Create the .got section to hold the global offset table.  */
5003
5004 static bfd_boolean
5005 mips_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
5006 {
5007   flagword flags;
5008   register asection *s;
5009   struct elf_link_hash_entry *h;
5010   struct bfd_link_hash_entry *bh;
5011   struct mips_elf_link_hash_table *htab;
5012
5013   htab = mips_elf_hash_table (info);
5014   BFD_ASSERT (htab != NULL);
5015
5016   /* This function may be called more than once.  */
5017   if (htab->sgot)
5018     return TRUE;
5019
5020   flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
5021            | SEC_LINKER_CREATED);
5022
5023   /* We have to use an alignment of 2**4 here because this is hardcoded
5024      in the function stub generation and in the linker script.  */
5025   s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
5026   if (s == NULL
5027       || ! bfd_set_section_alignment (abfd, s, 4))
5028     return FALSE;
5029   htab->sgot = s;
5030
5031   /* Define the symbol _GLOBAL_OFFSET_TABLE_.  We don't do this in the
5032      linker script because we don't want to define the symbol if we
5033      are not creating a global offset table.  */
5034   bh = NULL;
5035   if (! (_bfd_generic_link_add_one_symbol
5036          (info, abfd, "_GLOBAL_OFFSET_TABLE_", BSF_GLOBAL, s,
5037           0, NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
5038     return FALSE;
5039
5040   h = (struct elf_link_hash_entry *) bh;
5041   h->non_elf = 0;
5042   h->def_regular = 1;
5043   h->type = STT_OBJECT;
5044   h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
5045   elf_hash_table (info)->hgot = h;
5046
5047   if (info->shared
5048       && ! bfd_elf_link_record_dynamic_symbol (info, h))
5049     return FALSE;
5050
5051   htab->got_info = mips_elf_create_got_info (abfd);
5052   mips_elf_section_data (s)->elf.this_hdr.sh_flags
5053     |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL;
5054
5055   /* We also need a .got.plt section when generating PLTs.  */
5056   s = bfd_make_section_anyway_with_flags (abfd, ".got.plt",
5057                                           SEC_ALLOC | SEC_LOAD
5058                                           | SEC_HAS_CONTENTS
5059                                           | SEC_IN_MEMORY
5060                                           | SEC_LINKER_CREATED);
5061   if (s == NULL)
5062     return FALSE;
5063   htab->sgotplt = s;
5064
5065   return TRUE;
5066 }
5067 \f
5068 /* Return true if H refers to the special VxWorks __GOTT_BASE__ or
5069    __GOTT_INDEX__ symbols.  These symbols are only special for
5070    shared objects; they are not used in executables.  */
5071
5072 static bfd_boolean
5073 is_gott_symbol (struct bfd_link_info *info, struct elf_link_hash_entry *h)
5074 {
5075   return (mips_elf_hash_table (info)->is_vxworks
5076           && info->shared
5077           && (strcmp (h->root.root.string, "__GOTT_BASE__") == 0
5078               || strcmp (h->root.root.string, "__GOTT_INDEX__") == 0));
5079 }
5080
5081 /* Return TRUE if a relocation of type R_TYPE from INPUT_BFD might
5082    require an la25 stub.  See also mips_elf_local_pic_function_p,
5083    which determines whether the destination function ever requires a
5084    stub.  */
5085
5086 static bfd_boolean
5087 mips_elf_relocation_needs_la25_stub (bfd *input_bfd, int r_type,
5088                                      bfd_boolean target_is_16_bit_code_p)
5089 {
5090   /* We specifically ignore branches and jumps from EF_PIC objects,
5091      where the onus is on the compiler or programmer to perform any
5092      necessary initialization of $25.  Sometimes such initialization
5093      is unnecessary; for example, -mno-shared functions do not use
5094      the incoming value of $25, and may therefore be called directly.  */
5095   if (PIC_OBJECT_P (input_bfd))
5096     return FALSE;
5097
5098   switch (r_type)
5099     {
5100     case R_MIPS_26:
5101     case R_MIPS_PC16:
5102     case R_MICROMIPS_26_S1:
5103     case R_MICROMIPS_PC7_S1:
5104     case R_MICROMIPS_PC10_S1:
5105     case R_MICROMIPS_PC16_S1:
5106     case R_MICROMIPS_PC23_S2:
5107       return TRUE;
5108
5109     case R_MIPS16_26:
5110       return !target_is_16_bit_code_p;
5111
5112     default:
5113       return FALSE;
5114     }
5115 }
5116 \f
5117 /* Calculate the value produced by the RELOCATION (which comes from
5118    the INPUT_BFD).  The ADDEND is the addend to use for this
5119    RELOCATION; RELOCATION->R_ADDEND is ignored.
5120
5121    The result of the relocation calculation is stored in VALUEP.
5122    On exit, set *CROSS_MODE_JUMP_P to true if the relocation field
5123    is a MIPS16 or microMIPS jump to standard MIPS code, or vice versa.
5124
5125    This function returns bfd_reloc_continue if the caller need take no
5126    further action regarding this relocation, bfd_reloc_notsupported if
5127    something goes dramatically wrong, bfd_reloc_overflow if an
5128    overflow occurs, and bfd_reloc_ok to indicate success.  */
5129
5130 static bfd_reloc_status_type
5131 mips_elf_calculate_relocation (bfd *abfd, bfd *input_bfd,
5132                                asection *input_section,
5133                                struct bfd_link_info *info,
5134                                const Elf_Internal_Rela *relocation,
5135                                bfd_vma addend, reloc_howto_type *howto,
5136                                Elf_Internal_Sym *local_syms,
5137                                asection **local_sections, bfd_vma *valuep,
5138                                const char **namep,
5139                                bfd_boolean *cross_mode_jump_p,
5140                                bfd_boolean save_addend)
5141 {
5142   /* The eventual value we will return.  */
5143   bfd_vma value;
5144   /* The address of the symbol against which the relocation is
5145      occurring.  */
5146   bfd_vma symbol = 0;
5147   /* The final GP value to be used for the relocatable, executable, or
5148      shared object file being produced.  */
5149   bfd_vma gp;
5150   /* The place (section offset or address) of the storage unit being
5151      relocated.  */
5152   bfd_vma p;
5153   /* The value of GP used to create the relocatable object.  */
5154   bfd_vma gp0;
5155   /* The offset into the global offset table at which the address of
5156      the relocation entry symbol, adjusted by the addend, resides
5157      during execution.  */
5158   bfd_vma g = MINUS_ONE;
5159   /* The section in which the symbol referenced by the relocation is
5160      located.  */
5161   asection *sec = NULL;
5162   struct mips_elf_link_hash_entry *h = NULL;
5163   /* TRUE if the symbol referred to by this relocation is a local
5164      symbol.  */
5165   bfd_boolean local_p, was_local_p;
5166   /* TRUE if the symbol referred to by this relocation is "_gp_disp".  */
5167   bfd_boolean gp_disp_p = FALSE;
5168   /* TRUE if the symbol referred to by this relocation is
5169      "__gnu_local_gp".  */
5170   bfd_boolean gnu_local_gp_p = FALSE;
5171   Elf_Internal_Shdr *symtab_hdr;
5172   size_t extsymoff;
5173   unsigned long r_symndx;
5174   int r_type;
5175   /* TRUE if overflow occurred during the calculation of the
5176      relocation value.  */
5177   bfd_boolean overflowed_p;
5178   /* TRUE if this relocation refers to a MIPS16 function.  */
5179   bfd_boolean target_is_16_bit_code_p = FALSE;
5180   bfd_boolean target_is_micromips_code_p = FALSE;
5181   struct mips_elf_link_hash_table *htab;
5182   bfd *dynobj;
5183
5184   dynobj = elf_hash_table (info)->dynobj;
5185   htab = mips_elf_hash_table (info);
5186   BFD_ASSERT (htab != NULL);
5187
5188   /* Parse the relocation.  */
5189   r_symndx = ELF_R_SYM (input_bfd, relocation->r_info);
5190   r_type = ELF_R_TYPE (input_bfd, relocation->r_info);
5191   p = (input_section->output_section->vma
5192        + input_section->output_offset
5193        + relocation->r_offset);
5194
5195   /* Assume that there will be no overflow.  */
5196   overflowed_p = FALSE;
5197
5198   /* Figure out whether or not the symbol is local, and get the offset
5199      used in the array of hash table entries.  */
5200   symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
5201   local_p = mips_elf_local_relocation_p (input_bfd, relocation,
5202                                          local_sections);
5203   was_local_p = local_p;
5204   if (! elf_bad_symtab (input_bfd))
5205     extsymoff = symtab_hdr->sh_info;
5206   else
5207     {
5208       /* The symbol table does not follow the rule that local symbols
5209          must come before globals.  */
5210       extsymoff = 0;
5211     }
5212
5213   /* Figure out the value of the symbol.  */
5214   if (local_p)
5215     {
5216       Elf_Internal_Sym *sym;
5217
5218       sym = local_syms + r_symndx;
5219       sec = local_sections[r_symndx];
5220
5221       symbol = sec->output_section->vma + sec->output_offset;
5222       if (ELF_ST_TYPE (sym->st_info) != STT_SECTION
5223           || (sec->flags & SEC_MERGE))
5224         symbol += sym->st_value;
5225       if ((sec->flags & SEC_MERGE)
5226           && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
5227         {
5228           addend = _bfd_elf_rel_local_sym (abfd, sym, &sec, addend);
5229           addend -= symbol;
5230           addend += sec->output_section->vma + sec->output_offset;
5231         }
5232
5233       /* MIPS16/microMIPS text labels should be treated as odd.  */
5234       if (ELF_ST_IS_COMPRESSED (sym->st_other))
5235         ++symbol;
5236
5237       /* Record the name of this symbol, for our caller.  */
5238       *namep = bfd_elf_string_from_elf_section (input_bfd,
5239                                                 symtab_hdr->sh_link,
5240                                                 sym->st_name);
5241       if (*namep == '\0')
5242         *namep = bfd_section_name (input_bfd, sec);
5243
5244       target_is_16_bit_code_p = ELF_ST_IS_MIPS16 (sym->st_other);
5245       target_is_micromips_code_p = ELF_ST_IS_MICROMIPS (sym->st_other);
5246     }
5247   else
5248     {
5249       /* ??? Could we use RELOC_FOR_GLOBAL_SYMBOL here ?  */
5250
5251       /* For global symbols we look up the symbol in the hash-table.  */
5252       h = ((struct mips_elf_link_hash_entry *)
5253            elf_sym_hashes (input_bfd) [r_symndx - extsymoff]);
5254       /* Find the real hash-table entry for this symbol.  */
5255       while (h->root.root.type == bfd_link_hash_indirect
5256              || h->root.root.type == bfd_link_hash_warning)
5257         h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
5258
5259       /* Record the name of this symbol, for our caller.  */
5260       *namep = h->root.root.root.string;
5261
5262       /* See if this is the special _gp_disp symbol.  Note that such a
5263          symbol must always be a global symbol.  */
5264       if (strcmp (*namep, "_gp_disp") == 0
5265           && ! NEWABI_P (input_bfd))
5266         {
5267           /* Relocations against _gp_disp are permitted only with
5268              R_MIPS_HI16 and R_MIPS_LO16 relocations.  */
5269           if (!hi16_reloc_p (r_type) && !lo16_reloc_p (r_type))
5270             return bfd_reloc_notsupported;
5271
5272           gp_disp_p = TRUE;
5273         }
5274       /* See if this is the special _gp symbol.  Note that such a
5275          symbol must always be a global symbol.  */
5276       else if (strcmp (*namep, "__gnu_local_gp") == 0)
5277         gnu_local_gp_p = TRUE;
5278
5279
5280       /* If this symbol is defined, calculate its address.  Note that
5281          _gp_disp is a magic symbol, always implicitly defined by the
5282          linker, so it's inappropriate to check to see whether or not
5283          its defined.  */
5284       else if ((h->root.root.type == bfd_link_hash_defined
5285                 || h->root.root.type == bfd_link_hash_defweak)
5286                && h->root.root.u.def.section)
5287         {
5288           sec = h->root.root.u.def.section;
5289           if (sec->output_section)
5290             symbol = (h->root.root.u.def.value
5291                       + sec->output_section->vma
5292                       + sec->output_offset);
5293           else
5294             symbol = h->root.root.u.def.value;
5295         }
5296       else if (h->root.root.type == bfd_link_hash_undefweak)
5297         /* We allow relocations against undefined weak symbols, giving
5298            it the value zero, so that you can undefined weak functions
5299            and check to see if they exist by looking at their
5300            addresses.  */
5301         symbol = 0;
5302       else if (info->unresolved_syms_in_objects == RM_IGNORE
5303                && ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT)
5304         symbol = 0;
5305       else if (strcmp (*namep, SGI_COMPAT (input_bfd)
5306                        ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING") == 0)
5307         {
5308           /* If this is a dynamic link, we should have created a
5309              _DYNAMIC_LINK symbol or _DYNAMIC_LINKING(for normal mips) symbol
5310              in in _bfd_mips_elf_create_dynamic_sections.
5311              Otherwise, we should define the symbol with a value of 0.
5312              FIXME: It should probably get into the symbol table
5313              somehow as well.  */
5314           BFD_ASSERT (! info->shared);
5315           BFD_ASSERT (bfd_get_section_by_name (abfd, ".dynamic") == NULL);
5316           symbol = 0;
5317         }
5318       else if (ELF_MIPS_IS_OPTIONAL (h->root.other))
5319         {
5320           /* This is an optional symbol - an Irix specific extension to the
5321              ELF spec.  Ignore it for now.
5322              XXX - FIXME - there is more to the spec for OPTIONAL symbols
5323              than simply ignoring them, but we do not handle this for now.
5324              For information see the "64-bit ELF Object File Specification"
5325              which is available from here:
5326              http://techpubs.sgi.com/library/manuals/4000/007-4658-001/pdf/007-4658-001.pdf  */
5327           symbol = 0;
5328         }
5329       else if ((*info->callbacks->undefined_symbol)
5330                (info, h->root.root.root.string, input_bfd,
5331                 input_section, relocation->r_offset,
5332                 (info->unresolved_syms_in_objects == RM_GENERATE_ERROR)
5333                  || ELF_ST_VISIBILITY (h->root.other)))
5334         {
5335           return bfd_reloc_undefined;
5336         }
5337       else
5338         {
5339           return bfd_reloc_notsupported;
5340         }
5341
5342       target_is_16_bit_code_p = ELF_ST_IS_MIPS16 (h->root.other);
5343       target_is_micromips_code_p = ELF_ST_IS_MICROMIPS (h->root.other);
5344     }
5345
5346   /* If this is a reference to a 16-bit function with a stub, we need
5347      to redirect the relocation to the stub unless:
5348
5349      (a) the relocation is for a MIPS16 JAL;
5350
5351      (b) the relocation is for a MIPS16 PIC call, and there are no
5352          non-MIPS16 uses of the GOT slot; or
5353
5354      (c) the section allows direct references to MIPS16 functions.  */
5355   if (r_type != R_MIPS16_26
5356       && !info->relocatable
5357       && ((h != NULL
5358            && h->fn_stub != NULL
5359            && (r_type != R_MIPS16_CALL16 || h->need_fn_stub))
5360           || (local_p
5361               && mips_elf_tdata (input_bfd)->local_stubs != NULL
5362               && mips_elf_tdata (input_bfd)->local_stubs[r_symndx] != NULL))
5363       && !section_allows_mips16_refs_p (input_section))
5364     {
5365       /* This is a 32- or 64-bit call to a 16-bit function.  We should
5366          have already noticed that we were going to need the
5367          stub.  */
5368       if (local_p)
5369         {
5370           sec = mips_elf_tdata (input_bfd)->local_stubs[r_symndx];
5371           value = 0;
5372         }
5373       else
5374         {
5375           BFD_ASSERT (h->need_fn_stub);
5376           if (h->la25_stub)
5377             {
5378               /* If a LA25 header for the stub itself exists, point to the
5379                  prepended LUI/ADDIU sequence.  */
5380               sec = h->la25_stub->stub_section;
5381               value = h->la25_stub->offset;
5382             }
5383           else
5384             {
5385               sec = h->fn_stub;
5386               value = 0;
5387             }
5388         }
5389
5390       symbol = sec->output_section->vma + sec->output_offset + value;
5391       /* The target is 16-bit, but the stub isn't.  */
5392       target_is_16_bit_code_p = FALSE;
5393     }
5394   /* If this is a MIPS16 call with a stub, that is made through the PLT or
5395      to a standard MIPS function, we need to redirect the call to the stub.
5396      Note that we specifically exclude R_MIPS16_CALL16 from this behavior;
5397      indirect calls should use an indirect stub instead.  */
5398   else if (r_type == R_MIPS16_26 && !info->relocatable
5399            && ((h != NULL && (h->call_stub != NULL || h->call_fp_stub != NULL))
5400                || (local_p
5401                    && mips_elf_tdata (input_bfd)->local_call_stubs != NULL
5402                    && mips_elf_tdata (input_bfd)->local_call_stubs[r_symndx] != NULL))
5403            && ((h != NULL && h->use_plt_entry) || !target_is_16_bit_code_p))
5404     {
5405       if (local_p)
5406         sec = mips_elf_tdata (input_bfd)->local_call_stubs[r_symndx];
5407       else
5408         {
5409           /* If both call_stub and call_fp_stub are defined, we can figure
5410              out which one to use by checking which one appears in the input
5411              file.  */
5412           if (h->call_stub != NULL && h->call_fp_stub != NULL)
5413             {
5414               asection *o;
5415
5416               sec = NULL;
5417               for (o = input_bfd->sections; o != NULL; o = o->next)
5418                 {
5419                   if (CALL_FP_STUB_P (bfd_get_section_name (input_bfd, o)))
5420                     {
5421                       sec = h->call_fp_stub;
5422                       break;
5423                     }
5424                 }
5425               if (sec == NULL)
5426                 sec = h->call_stub;
5427             }
5428           else if (h->call_stub != NULL)
5429             sec = h->call_stub;
5430           else
5431             sec = h->call_fp_stub;
5432         }
5433
5434       BFD_ASSERT (sec->size > 0);
5435       symbol = sec->output_section->vma + sec->output_offset;
5436     }
5437   /* If this is a direct call to a PIC function, redirect to the
5438      non-PIC stub.  */
5439   else if (h != NULL && h->la25_stub
5440            && mips_elf_relocation_needs_la25_stub (input_bfd, r_type,
5441                                                    target_is_16_bit_code_p))
5442     symbol = (h->la25_stub->stub_section->output_section->vma
5443               + h->la25_stub->stub_section->output_offset
5444               + h->la25_stub->offset);
5445   /* For direct MIPS16 and microMIPS calls make sure the compressed PLT
5446      entry is used if a standard PLT entry has also been made.  In this
5447      case the symbol will have been set by mips_elf_set_plt_sym_value
5448      to point to the standard PLT entry, so redirect to the compressed
5449      one.  */
5450   else if ((r_type == R_MIPS16_26 || r_type == R_MICROMIPS_26_S1)
5451            && !info->relocatable
5452            && h != NULL
5453            && h->use_plt_entry
5454            && h->root.plt.plist->comp_offset != MINUS_ONE
5455            && h->root.plt.plist->mips_offset != MINUS_ONE)
5456     {
5457       bfd_boolean micromips_p = MICROMIPS_P (abfd);
5458
5459       sec = htab->splt;
5460       symbol = (sec->output_section->vma
5461                 + sec->output_offset
5462                 + htab->plt_header_size
5463                 + htab->plt_mips_offset
5464                 + h->root.plt.plist->comp_offset
5465                 + 1);
5466
5467       target_is_16_bit_code_p = !micromips_p;
5468       target_is_micromips_code_p = micromips_p;
5469     }
5470
5471   /* Make sure MIPS16 and microMIPS are not used together.  */
5472   if ((r_type == R_MIPS16_26 && target_is_micromips_code_p)
5473       || (micromips_branch_reloc_p (r_type) && target_is_16_bit_code_p))
5474    {
5475       (*_bfd_error_handler)
5476         (_("MIPS16 and microMIPS functions cannot call each other"));
5477       return bfd_reloc_notsupported;
5478    }
5479
5480   /* Calls from 16-bit code to 32-bit code and vice versa require the
5481      mode change.  However, we can ignore calls to undefined weak symbols,
5482      which should never be executed at runtime.  This exception is important
5483      because the assembly writer may have "known" that any definition of the
5484      symbol would be 16-bit code, and that direct jumps were therefore
5485      acceptable.  */
5486   *cross_mode_jump_p = (!info->relocatable
5487                         && !(h && h->root.root.type == bfd_link_hash_undefweak)
5488                         && ((r_type == R_MIPS16_26 && !target_is_16_bit_code_p)
5489                             || (r_type == R_MICROMIPS_26_S1
5490                                 && !target_is_micromips_code_p)
5491                             || ((r_type == R_MIPS_26 || r_type == R_MIPS_JALR)
5492                                 && (target_is_16_bit_code_p
5493                                     || target_is_micromips_code_p))));
5494
5495   local_p = (h == NULL || mips_use_local_got_p (info, h));
5496
5497   gp0 = _bfd_get_gp_value (input_bfd);
5498   gp = _bfd_get_gp_value (abfd);
5499   if (htab->got_info)
5500     gp += mips_elf_adjust_gp (abfd, htab->got_info, input_bfd);
5501
5502   if (gnu_local_gp_p)
5503     symbol = gp;
5504
5505   /* Global R_MIPS_GOT_PAGE/R_MICROMIPS_GOT_PAGE relocations are equivalent
5506      to R_MIPS_GOT_DISP/R_MICROMIPS_GOT_DISP.  The addend is applied by the
5507      corresponding R_MIPS_GOT_OFST/R_MICROMIPS_GOT_OFST.  */
5508   if (got_page_reloc_p (r_type) && !local_p)
5509     {
5510       r_type = (micromips_reloc_p (r_type)
5511                 ? R_MICROMIPS_GOT_DISP : R_MIPS_GOT_DISP);
5512       addend = 0;
5513     }
5514
5515   /* If we haven't already determined the GOT offset, and we're going
5516      to need it, get it now.  */
5517   switch (r_type)
5518     {
5519     case R_MIPS16_CALL16:
5520     case R_MIPS16_GOT16:
5521     case R_MIPS_CALL16:
5522     case R_MIPS_GOT16:
5523     case R_MIPS_GOT_DISP:
5524     case R_MIPS_GOT_HI16:
5525     case R_MIPS_CALL_HI16:
5526     case R_MIPS_GOT_LO16:
5527     case R_MIPS_CALL_LO16:
5528     case R_MICROMIPS_CALL16:
5529     case R_MICROMIPS_GOT16:
5530     case R_MICROMIPS_GOT_DISP:
5531     case R_MICROMIPS_GOT_HI16:
5532     case R_MICROMIPS_CALL_HI16:
5533     case R_MICROMIPS_GOT_LO16:
5534     case R_MICROMIPS_CALL_LO16:
5535     case R_MIPS_TLS_GD:
5536     case R_MIPS_TLS_GOTTPREL:
5537     case R_MIPS_TLS_LDM:
5538     case R_MIPS16_TLS_GD:
5539     case R_MIPS16_TLS_GOTTPREL:
5540     case R_MIPS16_TLS_LDM:
5541     case R_MICROMIPS_TLS_GD:
5542     case R_MICROMIPS_TLS_GOTTPREL:
5543     case R_MICROMIPS_TLS_LDM:
5544       /* Find the index into the GOT where this value is located.  */
5545       if (tls_ldm_reloc_p (r_type))
5546         {
5547           g = mips_elf_local_got_index (abfd, input_bfd, info,
5548                                         0, 0, NULL, r_type);
5549           if (g == MINUS_ONE)
5550             return bfd_reloc_outofrange;
5551         }
5552       else if (!local_p)
5553         {
5554           /* On VxWorks, CALL relocations should refer to the .got.plt
5555              entry, which is initialized to point at the PLT stub.  */
5556           if (htab->is_vxworks
5557               && (call_hi16_reloc_p (r_type)
5558                   || call_lo16_reloc_p (r_type)
5559                   || call16_reloc_p (r_type)))
5560             {
5561               BFD_ASSERT (addend == 0);
5562               BFD_ASSERT (h->root.needs_plt);
5563               g = mips_elf_gotplt_index (info, &h->root);
5564             }
5565           else
5566             {
5567               BFD_ASSERT (addend == 0);
5568               g = mips_elf_global_got_index (abfd, info, input_bfd,
5569                                              &h->root, r_type);
5570               if (!TLS_RELOC_P (r_type)
5571                   && !elf_hash_table (info)->dynamic_sections_created)
5572                 /* This is a static link.  We must initialize the GOT entry.  */
5573                 MIPS_ELF_PUT_WORD (dynobj, symbol, htab->sgot->contents + g);
5574             }
5575         }
5576       else if (!htab->is_vxworks
5577                && (call16_reloc_p (r_type) || got16_reloc_p (r_type)))
5578         /* The calculation below does not involve "g".  */
5579         break;
5580       else
5581         {
5582           g = mips_elf_local_got_index (abfd, input_bfd, info,
5583                                         symbol + addend, r_symndx, h, r_type);
5584           if (g == MINUS_ONE)
5585             return bfd_reloc_outofrange;
5586         }
5587
5588       /* Convert GOT indices to actual offsets.  */
5589       g = mips_elf_got_offset_from_index (info, abfd, input_bfd, g);
5590       break;
5591     }
5592
5593   /* Relocations against the VxWorks __GOTT_BASE__ and __GOTT_INDEX__
5594      symbols are resolved by the loader.  Add them to .rela.dyn.  */
5595   if (h != NULL && is_gott_symbol (info, &h->root))
5596     {
5597       Elf_Internal_Rela outrel;
5598       bfd_byte *loc;
5599       asection *s;
5600
5601       s = mips_elf_rel_dyn_section (info, FALSE);
5602       loc = s->contents + s->reloc_count++ * sizeof (Elf32_External_Rela);
5603
5604       outrel.r_offset = (input_section->output_section->vma
5605                          + input_section->output_offset
5606                          + relocation->r_offset);
5607       outrel.r_info = ELF32_R_INFO (h->root.dynindx, r_type);
5608       outrel.r_addend = addend;
5609       bfd_elf32_swap_reloca_out (abfd, &outrel, loc);
5610
5611       /* If we've written this relocation for a readonly section,
5612          we need to set DF_TEXTREL again, so that we do not delete the
5613          DT_TEXTREL tag.  */
5614       if (MIPS_ELF_READONLY_SECTION (input_section))
5615         info->flags |= DF_TEXTREL;
5616
5617       *valuep = 0;
5618       return bfd_reloc_ok;
5619     }
5620
5621   /* Figure out what kind of relocation is being performed.  */
5622   switch (r_type)
5623     {
5624     case R_MIPS_NONE:
5625       return bfd_reloc_continue;
5626
5627     case R_MIPS_16:
5628       value = symbol + _bfd_mips_elf_sign_extend (addend, 16);
5629       overflowed_p = mips_elf_overflow_p (value, 16);
5630       break;
5631
5632     case R_MIPS_32:
5633     case R_MIPS_REL32:
5634     case R_MIPS_64:
5635       if ((info->shared
5636            || (htab->root.dynamic_sections_created
5637                && h != NULL
5638                && h->root.def_dynamic
5639                && !h->root.def_regular
5640                && !h->has_static_relocs))
5641           && r_symndx != STN_UNDEF
5642           && (h == NULL
5643               || h->root.root.type != bfd_link_hash_undefweak
5644               || ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT)
5645           && (input_section->flags & SEC_ALLOC) != 0)
5646         {
5647           /* If we're creating a shared library, then we can't know
5648              where the symbol will end up.  So, we create a relocation
5649              record in the output, and leave the job up to the dynamic
5650              linker.  We must do the same for executable references to
5651              shared library symbols, unless we've decided to use copy
5652              relocs or PLTs instead.  */
5653           value = addend;
5654           if (!mips_elf_create_dynamic_relocation (abfd,
5655                                                    info,
5656                                                    relocation,
5657                                                    h,
5658                                                    sec,
5659                                                    symbol,
5660                                                    &value,
5661                                                    input_section))
5662             return bfd_reloc_undefined;
5663         }
5664       else
5665         {
5666           if (r_type != R_MIPS_REL32)
5667             value = symbol + addend;
5668           else
5669             value = addend;
5670         }
5671       value &= howto->dst_mask;
5672       break;
5673
5674     case R_MIPS_PC32:
5675       value = symbol + addend - p;
5676       value &= howto->dst_mask;
5677       break;
5678
5679     case R_MIPS16_26:
5680       /* The calculation for R_MIPS16_26 is just the same as for an
5681          R_MIPS_26.  It's only the storage of the relocated field into
5682          the output file that's different.  That's handled in
5683          mips_elf_perform_relocation.  So, we just fall through to the
5684          R_MIPS_26 case here.  */
5685     case R_MIPS_26:
5686     case R_MICROMIPS_26_S1:
5687       {
5688         unsigned int shift;
5689
5690         /* Make sure the target of JALX is word-aligned.  Bit 0 must be
5691            the correct ISA mode selector and bit 1 must be 0.  */
5692         if (*cross_mode_jump_p && (symbol & 3) != (r_type == R_MIPS_26))
5693           return bfd_reloc_outofrange;
5694
5695         /* Shift is 2, unusually, for microMIPS JALX.  */
5696         shift = (!*cross_mode_jump_p && r_type == R_MICROMIPS_26_S1) ? 1 : 2;
5697
5698         if (was_local_p)
5699           value = addend | ((p + 4) & (0xfc000000 << shift));
5700         else
5701           value = _bfd_mips_elf_sign_extend (addend, 26 + shift);
5702         value = (value + symbol) >> shift;
5703         if (!was_local_p && h->root.root.type != bfd_link_hash_undefweak)
5704           overflowed_p = (value >> 26) != ((p + 4) >> (26 + shift));
5705         value &= howto->dst_mask;
5706       }
5707       break;
5708
5709     case R_MIPS_TLS_DTPREL_HI16:
5710     case R_MIPS16_TLS_DTPREL_HI16:
5711     case R_MICROMIPS_TLS_DTPREL_HI16:
5712       value = (mips_elf_high (addend + symbol - dtprel_base (info))
5713                & howto->dst_mask);
5714       break;
5715
5716     case R_MIPS_TLS_DTPREL_LO16:
5717     case R_MIPS_TLS_DTPREL32:
5718     case R_MIPS_TLS_DTPREL64:
5719     case R_MIPS16_TLS_DTPREL_LO16:
5720     case R_MICROMIPS_TLS_DTPREL_LO16:
5721       value = (symbol + addend - dtprel_base (info)) & howto->dst_mask;
5722       break;
5723
5724     case R_MIPS_TLS_TPREL_HI16:
5725     case R_MIPS16_TLS_TPREL_HI16:
5726     case R_MICROMIPS_TLS_TPREL_HI16:
5727       value = (mips_elf_high (addend + symbol - tprel_base (info))
5728                & howto->dst_mask);
5729       break;
5730
5731     case R_MIPS_TLS_TPREL_LO16:
5732     case R_MIPS_TLS_TPREL32:
5733     case R_MIPS_TLS_TPREL64:
5734     case R_MIPS16_TLS_TPREL_LO16:
5735     case R_MICROMIPS_TLS_TPREL_LO16:
5736       value = (symbol + addend - tprel_base (info)) & howto->dst_mask;
5737       break;
5738
5739     case R_MIPS_HI16:
5740     case R_MIPS16_HI16:
5741     case R_MICROMIPS_HI16:
5742       if (!gp_disp_p)
5743         {
5744           value = mips_elf_high (addend + symbol);
5745           value &= howto->dst_mask;
5746         }
5747       else
5748         {
5749           /* For MIPS16 ABI code we generate this sequence
5750                 0: li      $v0,%hi(_gp_disp)
5751                 4: addiupc $v1,%lo(_gp_disp)
5752                 8: sll     $v0,16
5753                12: addu    $v0,$v1
5754                14: move    $gp,$v0
5755              So the offsets of hi and lo relocs are the same, but the
5756              base $pc is that used by the ADDIUPC instruction at $t9 + 4.
5757              ADDIUPC clears the low two bits of the instruction address,
5758              so the base is ($t9 + 4) & ~3.  */
5759           if (r_type == R_MIPS16_HI16)
5760             value = mips_elf_high (addend + gp - ((p + 4) & ~(bfd_vma) 0x3));
5761           /* The microMIPS .cpload sequence uses the same assembly
5762              instructions as the traditional psABI version, but the
5763              incoming $t9 has the low bit set.  */
5764           else if (r_type == R_MICROMIPS_HI16)
5765             value = mips_elf_high (addend + gp - p - 1);
5766           else
5767             value = mips_elf_high (addend + gp - p);
5768           overflowed_p = mips_elf_overflow_p (value, 16);
5769         }
5770       break;
5771
5772     case R_MIPS_LO16:
5773     case R_MIPS16_LO16:
5774     case R_MICROMIPS_LO16:
5775     case R_MICROMIPS_HI0_LO16:
5776       if (!gp_disp_p)
5777         value = (symbol + addend) & howto->dst_mask;
5778       else
5779         {
5780           /* See the comment for R_MIPS16_HI16 above for the reason
5781              for this conditional.  */
5782           if (r_type == R_MIPS16_LO16)
5783             value = addend + gp - (p & ~(bfd_vma) 0x3);
5784           else if (r_type == R_MICROMIPS_LO16
5785                    || r_type == R_MICROMIPS_HI0_LO16)
5786             value = addend + gp - p + 3;
5787           else
5788             value = addend + gp - p + 4;
5789           /* The MIPS ABI requires checking the R_MIPS_LO16 relocation
5790              for overflow.  But, on, say, IRIX5, relocations against
5791              _gp_disp are normally generated from the .cpload
5792              pseudo-op.  It generates code that normally looks like
5793              this:
5794
5795                lui    $gp,%hi(_gp_disp)
5796                addiu  $gp,$gp,%lo(_gp_disp)
5797                addu   $gp,$gp,$t9
5798
5799              Here $t9 holds the address of the function being called,
5800              as required by the MIPS ELF ABI.  The R_MIPS_LO16
5801              relocation can easily overflow in this situation, but the
5802              R_MIPS_HI16 relocation will handle the overflow.
5803              Therefore, we consider this a bug in the MIPS ABI, and do
5804              not check for overflow here.  */
5805         }
5806       break;
5807
5808     case R_MIPS_LITERAL:
5809     case R_MICROMIPS_LITERAL:
5810       /* Because we don't merge literal sections, we can handle this
5811          just like R_MIPS_GPREL16.  In the long run, we should merge
5812          shared literals, and then we will need to additional work
5813          here.  */
5814
5815       /* Fall through.  */
5816
5817     case R_MIPS16_GPREL:
5818       /* The R_MIPS16_GPREL performs the same calculation as
5819          R_MIPS_GPREL16, but stores the relocated bits in a different
5820          order.  We don't need to do anything special here; the
5821          differences are handled in mips_elf_perform_relocation.  */
5822     case R_MIPS_GPREL16:
5823     case R_MICROMIPS_GPREL7_S2:
5824     case R_MICROMIPS_GPREL16:
5825       /* Only sign-extend the addend if it was extracted from the
5826          instruction.  If the addend was separate, leave it alone,
5827          otherwise we may lose significant bits.  */
5828       if (howto->partial_inplace)
5829         addend = _bfd_mips_elf_sign_extend (addend, 16);
5830       value = symbol + addend - gp;
5831       /* If the symbol was local, any earlier relocatable links will
5832          have adjusted its addend with the gp offset, so compensate
5833          for that now.  Don't do it for symbols forced local in this
5834          link, though, since they won't have had the gp offset applied
5835          to them before.  */
5836       if (was_local_p)
5837         value += gp0;
5838       overflowed_p = mips_elf_overflow_p (value, 16);
5839       break;
5840
5841     case R_MIPS16_GOT16:
5842     case R_MIPS16_CALL16:
5843     case R_MIPS_GOT16:
5844     case R_MIPS_CALL16:
5845     case R_MICROMIPS_GOT16:
5846     case R_MICROMIPS_CALL16:
5847       /* VxWorks does not have separate local and global semantics for
5848          R_MIPS*_GOT16; every relocation evaluates to "G".  */
5849       if (!htab->is_vxworks && local_p)
5850         {
5851           value = mips_elf_got16_entry (abfd, input_bfd, info,
5852                                         symbol + addend, !was_local_p);
5853           if (value == MINUS_ONE)
5854             return bfd_reloc_outofrange;
5855           value
5856             = mips_elf_got_offset_from_index (info, abfd, input_bfd, value);
5857           overflowed_p = mips_elf_overflow_p (value, 16);
5858           break;
5859         }
5860
5861       /* Fall through.  */
5862
5863     case R_MIPS_TLS_GD:
5864     case R_MIPS_TLS_GOTTPREL:
5865     case R_MIPS_TLS_LDM:
5866     case R_MIPS_GOT_DISP:
5867     case R_MIPS16_TLS_GD:
5868     case R_MIPS16_TLS_GOTTPREL:
5869     case R_MIPS16_TLS_LDM:
5870     case R_MICROMIPS_TLS_GD:
5871     case R_MICROMIPS_TLS_GOTTPREL:
5872     case R_MICROMIPS_TLS_LDM:
5873     case R_MICROMIPS_GOT_DISP:
5874       value = g;
5875       overflowed_p = mips_elf_overflow_p (value, 16);
5876       break;
5877
5878     case R_MIPS_GPREL32:
5879       value = (addend + symbol + gp0 - gp);
5880       if (!save_addend)
5881         value &= howto->dst_mask;
5882       break;
5883
5884     case R_MIPS_PC16:
5885     case R_MIPS_GNU_REL16_S2:
5886       value = symbol + _bfd_mips_elf_sign_extend (addend, 18) - p;
5887       overflowed_p = mips_elf_overflow_p (value, 18);
5888       value >>= howto->rightshift;
5889       value &= howto->dst_mask;
5890       break;
5891
5892     case R_MICROMIPS_PC7_S1:
5893       value = symbol + _bfd_mips_elf_sign_extend (addend, 8) - p;
5894       overflowed_p = mips_elf_overflow_p (value, 8);
5895       value >>= howto->rightshift;
5896       value &= howto->dst_mask;
5897       break;
5898
5899     case R_MICROMIPS_PC10_S1:
5900       value = symbol + _bfd_mips_elf_sign_extend (addend, 11) - p;
5901       overflowed_p = mips_elf_overflow_p (value, 11);
5902       value >>= howto->rightshift;
5903       value &= howto->dst_mask;
5904       break;
5905
5906     case R_MICROMIPS_PC16_S1:
5907       value = symbol + _bfd_mips_elf_sign_extend (addend, 17) - p;
5908       overflowed_p = mips_elf_overflow_p (value, 17);
5909       value >>= howto->rightshift;
5910       value &= howto->dst_mask;
5911       break;
5912
5913     case R_MICROMIPS_PC23_S2:
5914       value = symbol + _bfd_mips_elf_sign_extend (addend, 25) - ((p | 3) ^ 3);
5915       overflowed_p = mips_elf_overflow_p (value, 25);
5916       value >>= howto->rightshift;
5917       value &= howto->dst_mask;
5918       break;
5919
5920     case R_MIPS_GOT_HI16:
5921     case R_MIPS_CALL_HI16:
5922     case R_MICROMIPS_GOT_HI16:
5923     case R_MICROMIPS_CALL_HI16:
5924       /* We're allowed to handle these two relocations identically.
5925          The dynamic linker is allowed to handle the CALL relocations
5926          differently by creating a lazy evaluation stub.  */
5927       value = g;
5928       value = mips_elf_high (value);
5929       value &= howto->dst_mask;
5930       break;
5931
5932     case R_MIPS_GOT_LO16:
5933     case R_MIPS_CALL_LO16:
5934     case R_MICROMIPS_GOT_LO16:
5935     case R_MICROMIPS_CALL_LO16:
5936       value = g & howto->dst_mask;
5937       break;
5938
5939     case R_MIPS_GOT_PAGE:
5940     case R_MICROMIPS_GOT_PAGE:
5941       value = mips_elf_got_page (abfd, input_bfd, info, symbol + addend, NULL);
5942       if (value == MINUS_ONE)
5943         return bfd_reloc_outofrange;
5944       value = mips_elf_got_offset_from_index (info, abfd, input_bfd, value);
5945       overflowed_p = mips_elf_overflow_p (value, 16);
5946       break;
5947
5948     case R_MIPS_GOT_OFST:
5949     case R_MICROMIPS_GOT_OFST:
5950       if (local_p)
5951         mips_elf_got_page (abfd, input_bfd, info, symbol + addend, &value);
5952       else
5953         value = addend;
5954       overflowed_p = mips_elf_overflow_p (value, 16);
5955       break;
5956
5957     case R_MIPS_SUB:
5958     case R_MICROMIPS_SUB:
5959       value = symbol - addend;
5960       value &= howto->dst_mask;
5961       break;
5962
5963     case R_MIPS_HIGHER:
5964     case R_MICROMIPS_HIGHER:
5965       value = mips_elf_higher (addend + symbol);
5966       value &= howto->dst_mask;
5967       break;
5968
5969     case R_MIPS_HIGHEST:
5970     case R_MICROMIPS_HIGHEST:
5971       value = mips_elf_highest (addend + symbol);
5972       value &= howto->dst_mask;
5973       break;
5974
5975     case R_MIPS_SCN_DISP:
5976     case R_MICROMIPS_SCN_DISP:
5977       value = symbol + addend - sec->output_offset;
5978       value &= howto->dst_mask;
5979       break;
5980
5981     case R_MIPS_JALR:
5982     case R_MICROMIPS_JALR:
5983       /* This relocation is only a hint.  In some cases, we optimize
5984          it into a bal instruction.  But we don't try to optimize
5985          when the symbol does not resolve locally.  */
5986       if (h != NULL && !SYMBOL_CALLS_LOCAL (info, &h->root))
5987         return bfd_reloc_continue;
5988       value = symbol + addend;
5989       break;
5990
5991     case R_MIPS_PJUMP:
5992     case R_MIPS_GNU_VTINHERIT:
5993     case R_MIPS_GNU_VTENTRY:
5994       /* We don't do anything with these at present.  */
5995       return bfd_reloc_continue;
5996
5997     default:
5998       /* An unrecognized relocation type.  */
5999       return bfd_reloc_notsupported;
6000     }
6001
6002   /* Store the VALUE for our caller.  */
6003   *valuep = value;
6004   return overflowed_p ? bfd_reloc_overflow : bfd_reloc_ok;
6005 }
6006
6007 /* Obtain the field relocated by RELOCATION.  */
6008
6009 static bfd_vma
6010 mips_elf_obtain_contents (reloc_howto_type *howto,
6011                           const Elf_Internal_Rela *relocation,
6012                           bfd *input_bfd, bfd_byte *contents)
6013 {
6014   bfd_vma x;
6015   bfd_byte *location = contents + relocation->r_offset;
6016
6017   /* Obtain the bytes.  */
6018   x = bfd_get ((8 * bfd_get_reloc_size (howto)), input_bfd, location);
6019
6020   return x;
6021 }
6022
6023 /* It has been determined that the result of the RELOCATION is the
6024    VALUE.  Use HOWTO to place VALUE into the output file at the
6025    appropriate position.  The SECTION is the section to which the
6026    relocation applies.
6027    CROSS_MODE_JUMP_P is true if the relocation field
6028    is a MIPS16 or microMIPS jump to standard MIPS code, or vice versa.
6029
6030    Returns FALSE if anything goes wrong.  */
6031
6032 static bfd_boolean
6033 mips_elf_perform_relocation (struct bfd_link_info *info,
6034                              reloc_howto_type *howto,
6035                              const Elf_Internal_Rela *relocation,
6036                              bfd_vma value, bfd *input_bfd,
6037                              asection *input_section, bfd_byte *contents,
6038                              bfd_boolean cross_mode_jump_p)
6039 {
6040   bfd_vma x;
6041   bfd_byte *location;
6042   int r_type = ELF_R_TYPE (input_bfd, relocation->r_info);
6043
6044   /* Figure out where the relocation is occurring.  */
6045   location = contents + relocation->r_offset;
6046
6047   _bfd_mips_elf_reloc_unshuffle (input_bfd, r_type, FALSE, location);
6048
6049   /* Obtain the current value.  */
6050   x = mips_elf_obtain_contents (howto, relocation, input_bfd, contents);
6051
6052   /* Clear the field we are setting.  */
6053   x &= ~howto->dst_mask;
6054
6055   /* Set the field.  */
6056   x |= (value & howto->dst_mask);
6057
6058   /* If required, turn JAL into JALX.  */
6059   if (cross_mode_jump_p && jal_reloc_p (r_type))
6060     {
6061       bfd_boolean ok;
6062       bfd_vma opcode = x >> 26;
6063       bfd_vma jalx_opcode;
6064
6065       /* Check to see if the opcode is already JAL or JALX.  */
6066       if (r_type == R_MIPS16_26)
6067         {
6068           ok = ((opcode == 0x6) || (opcode == 0x7));
6069           jalx_opcode = 0x7;
6070         }
6071       else if (r_type == R_MICROMIPS_26_S1)
6072         {
6073           ok = ((opcode == 0x3d) || (opcode == 0x3c));
6074           jalx_opcode = 0x3c;
6075         }
6076       else
6077         {
6078           ok = ((opcode == 0x3) || (opcode == 0x1d));
6079           jalx_opcode = 0x1d;
6080         }
6081
6082       /* If the opcode is not JAL or JALX, there's a problem.  We cannot
6083          convert J or JALS to JALX.  */
6084       if (!ok)
6085         {
6086           (*_bfd_error_handler)
6087             (_("%B: %A+0x%lx: Unsupported jump between ISA modes; consider recompiling with interlinking enabled."),
6088              input_bfd,
6089              input_section,
6090              (unsigned long) relocation->r_offset);
6091           bfd_set_error (bfd_error_bad_value);
6092           return FALSE;
6093         }
6094
6095       /* Make this the JALX opcode.  */
6096       x = (x & ~(0x3f << 26)) | (jalx_opcode << 26);
6097     }
6098
6099   /* Try converting JAL to BAL and J(AL)R to B(AL), if the target is in
6100      range.  */
6101   if (!info->relocatable
6102       && !cross_mode_jump_p
6103       && ((JAL_TO_BAL_P (input_bfd)
6104            && r_type == R_MIPS_26
6105            && (x >> 26) == 0x3)         /* jal addr */
6106           || (JALR_TO_BAL_P (input_bfd)
6107               && r_type == R_MIPS_JALR
6108               && x == 0x0320f809)       /* jalr t9 */
6109           || (JR_TO_B_P (input_bfd)
6110               && r_type == R_MIPS_JALR
6111               && x == 0x03200008)))     /* jr t9 */
6112     {
6113       bfd_vma addr;
6114       bfd_vma dest;
6115       bfd_signed_vma off;
6116
6117       addr = (input_section->output_section->vma
6118               + input_section->output_offset
6119               + relocation->r_offset
6120               + 4);
6121       if (r_type == R_MIPS_26)
6122         dest = (value << 2) | ((addr >> 28) << 28);
6123       else
6124         dest = value;
6125       off = dest - addr;
6126       if (off <= 0x1ffff && off >= -0x20000)
6127         {
6128           if (x == 0x03200008)  /* jr t9 */
6129             x = 0x10000000 | (((bfd_vma) off >> 2) & 0xffff);   /* b addr */
6130           else
6131             x = 0x04110000 | (((bfd_vma) off >> 2) & 0xffff);   /* bal addr */
6132         }
6133     }
6134
6135   /* Put the value into the output.  */
6136   bfd_put (8 * bfd_get_reloc_size (howto), input_bfd, x, location);
6137
6138   _bfd_mips_elf_reloc_shuffle (input_bfd, r_type, !info->relocatable,
6139                                location);
6140
6141   return TRUE;
6142 }
6143 \f
6144 /* Create a rel.dyn relocation for the dynamic linker to resolve.  REL
6145    is the original relocation, which is now being transformed into a
6146    dynamic relocation.  The ADDENDP is adjusted if necessary; the
6147    caller should store the result in place of the original addend.  */
6148
6149 static bfd_boolean
6150 mips_elf_create_dynamic_relocation (bfd *output_bfd,
6151                                     struct bfd_link_info *info,
6152                                     const Elf_Internal_Rela *rel,
6153                                     struct mips_elf_link_hash_entry *h,
6154                                     asection *sec, bfd_vma symbol,
6155                                     bfd_vma *addendp, asection *input_section)
6156 {
6157   Elf_Internal_Rela outrel[3];
6158   asection *sreloc;
6159   bfd *dynobj;
6160   int r_type;
6161   long indx;
6162   bfd_boolean defined_p;
6163   struct mips_elf_link_hash_table *htab;
6164
6165   htab = mips_elf_hash_table (info);
6166   BFD_ASSERT (htab != NULL);
6167
6168   r_type = ELF_R_TYPE (output_bfd, rel->r_info);
6169   dynobj = elf_hash_table (info)->dynobj;
6170   sreloc = mips_elf_rel_dyn_section (info, FALSE);
6171   BFD_ASSERT (sreloc != NULL);
6172   BFD_ASSERT (sreloc->contents != NULL);
6173   BFD_ASSERT (sreloc->reloc_count * MIPS_ELF_REL_SIZE (output_bfd)
6174               < sreloc->size);
6175
6176   outrel[0].r_offset =
6177     _bfd_elf_section_offset (output_bfd, info, input_section, rel[0].r_offset);
6178   if (ABI_64_P (output_bfd))
6179     {
6180       outrel[1].r_offset =
6181         _bfd_elf_section_offset (output_bfd, info, input_section, rel[1].r_offset);
6182       outrel[2].r_offset =
6183         _bfd_elf_section_offset (output_bfd, info, input_section, rel[2].r_offset);
6184     }
6185
6186   if (outrel[0].r_offset == MINUS_ONE)
6187     /* The relocation field has been deleted.  */
6188     return TRUE;
6189
6190   if (outrel[0].r_offset == MINUS_TWO)
6191     {
6192       /* The relocation field has been converted into a relative value of
6193          some sort.  Functions like _bfd_elf_write_section_eh_frame expect
6194          the field to be fully relocated, so add in the symbol's value.  */
6195       *addendp += symbol;
6196       return TRUE;
6197     }
6198
6199   /* We must now calculate the dynamic symbol table index to use
6200      in the relocation.  */
6201   if (h != NULL && ! SYMBOL_REFERENCES_LOCAL (info, &h->root))
6202     {
6203       BFD_ASSERT (htab->is_vxworks || h->global_got_area != GGA_NONE);
6204       indx = h->root.dynindx;
6205       if (SGI_COMPAT (output_bfd))
6206         defined_p = h->root.def_regular;
6207       else
6208         /* ??? glibc's ld.so just adds the final GOT entry to the
6209            relocation field.  It therefore treats relocs against
6210            defined symbols in the same way as relocs against
6211            undefined symbols.  */
6212         defined_p = FALSE;
6213     }
6214   else
6215     {
6216       if (sec != NULL && bfd_is_abs_section (sec))
6217         indx = 0;
6218       else if (sec == NULL || sec->owner == NULL)
6219         {
6220           bfd_set_error (bfd_error_bad_value);
6221           return FALSE;
6222         }
6223       else
6224         {
6225           indx = elf_section_data (sec->output_section)->dynindx;
6226           if (indx == 0)
6227             {
6228               asection *osec = htab->root.text_index_section;
6229               indx = elf_section_data (osec)->dynindx;
6230             }
6231           if (indx == 0)
6232             abort ();
6233         }
6234
6235       /* Instead of generating a relocation using the section
6236          symbol, we may as well make it a fully relative
6237          relocation.  We want to avoid generating relocations to
6238          local symbols because we used to generate them
6239          incorrectly, without adding the original symbol value,
6240          which is mandated by the ABI for section symbols.  In
6241          order to give dynamic loaders and applications time to
6242          phase out the incorrect use, we refrain from emitting
6243          section-relative relocations.  It's not like they're
6244          useful, after all.  This should be a bit more efficient
6245          as well.  */
6246       /* ??? Although this behavior is compatible with glibc's ld.so,
6247          the ABI says that relocations against STN_UNDEF should have
6248          a symbol value of 0.  Irix rld honors this, so relocations
6249          against STN_UNDEF have no effect.  */
6250       if (!SGI_COMPAT (output_bfd))
6251         indx = 0;
6252       defined_p = TRUE;
6253     }
6254
6255   /* If the relocation was previously an absolute relocation and
6256      this symbol will not be referred to by the relocation, we must
6257      adjust it by the value we give it in the dynamic symbol table.
6258      Otherwise leave the job up to the dynamic linker.  */
6259   if (defined_p && r_type != R_MIPS_REL32)
6260     *addendp += symbol;
6261
6262   if (htab->is_vxworks)
6263     /* VxWorks uses non-relative relocations for this.  */
6264     outrel[0].r_info = ELF32_R_INFO (indx, R_MIPS_32);
6265   else
6266     /* The relocation is always an REL32 relocation because we don't
6267        know where the shared library will wind up at load-time.  */
6268     outrel[0].r_info = ELF_R_INFO (output_bfd, (unsigned long) indx,
6269                                    R_MIPS_REL32);
6270
6271   /* For strict adherence to the ABI specification, we should
6272      generate a R_MIPS_64 relocation record by itself before the
6273      _REL32/_64 record as well, such that the addend is read in as
6274      a 64-bit value (REL32 is a 32-bit relocation, after all).
6275      However, since none of the existing ELF64 MIPS dynamic
6276      loaders seems to care, we don't waste space with these
6277      artificial relocations.  If this turns out to not be true,
6278      mips_elf_allocate_dynamic_relocation() should be tweaked so
6279      as to make room for a pair of dynamic relocations per
6280      invocation if ABI_64_P, and here we should generate an
6281      additional relocation record with R_MIPS_64 by itself for a
6282      NULL symbol before this relocation record.  */
6283   outrel[1].r_info = ELF_R_INFO (output_bfd, 0,
6284                                  ABI_64_P (output_bfd)
6285                                  ? R_MIPS_64
6286                                  : R_MIPS_NONE);
6287   outrel[2].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_NONE);
6288
6289   /* Adjust the output offset of the relocation to reference the
6290      correct location in the output file.  */
6291   outrel[0].r_offset += (input_section->output_section->vma
6292                          + input_section->output_offset);
6293   outrel[1].r_offset += (input_section->output_section->vma
6294                          + input_section->output_offset);
6295   outrel[2].r_offset += (input_section->output_section->vma
6296                          + input_section->output_offset);
6297
6298   /* Put the relocation back out.  We have to use the special
6299      relocation outputter in the 64-bit case since the 64-bit
6300      relocation format is non-standard.  */
6301   if (ABI_64_P (output_bfd))
6302     {
6303       (*get_elf_backend_data (output_bfd)->s->swap_reloc_out)
6304         (output_bfd, &outrel[0],
6305          (sreloc->contents
6306           + sreloc->reloc_count * sizeof (Elf64_Mips_External_Rel)));
6307     }
6308   else if (htab->is_vxworks)
6309     {
6310       /* VxWorks uses RELA rather than REL dynamic relocations.  */
6311       outrel[0].r_addend = *addendp;
6312       bfd_elf32_swap_reloca_out
6313         (output_bfd, &outrel[0],
6314          (sreloc->contents
6315           + sreloc->reloc_count * sizeof (Elf32_External_Rela)));
6316     }
6317   else
6318     bfd_elf32_swap_reloc_out
6319       (output_bfd, &outrel[0],
6320        (sreloc->contents + sreloc->reloc_count * sizeof (Elf32_External_Rel)));
6321
6322   /* We've now added another relocation.  */
6323   ++sreloc->reloc_count;
6324
6325   /* Make sure the output section is writable.  The dynamic linker
6326      will be writing to it.  */
6327   elf_section_data (input_section->output_section)->this_hdr.sh_flags
6328     |= SHF_WRITE;
6329
6330   /* On IRIX5, make an entry of compact relocation info.  */
6331   if (IRIX_COMPAT (output_bfd) == ict_irix5)
6332     {
6333       asection *scpt = bfd_get_linker_section (dynobj, ".compact_rel");
6334       bfd_byte *cr;
6335
6336       if (scpt)
6337         {
6338           Elf32_crinfo cptrel;
6339
6340           mips_elf_set_cr_format (cptrel, CRF_MIPS_LONG);
6341           cptrel.vaddr = (rel->r_offset
6342                           + input_section->output_section->vma
6343                           + input_section->output_offset);
6344           if (r_type == R_MIPS_REL32)
6345             mips_elf_set_cr_type (cptrel, CRT_MIPS_REL32);
6346           else
6347             mips_elf_set_cr_type (cptrel, CRT_MIPS_WORD);
6348           mips_elf_set_cr_dist2to (cptrel, 0);
6349           cptrel.konst = *addendp;
6350
6351           cr = (scpt->contents
6352                 + sizeof (Elf32_External_compact_rel));
6353           mips_elf_set_cr_relvaddr (cptrel, 0);
6354           bfd_elf32_swap_crinfo_out (output_bfd, &cptrel,
6355                                      ((Elf32_External_crinfo *) cr
6356                                       + scpt->reloc_count));
6357           ++scpt->reloc_count;
6358         }
6359     }
6360
6361   /* If we've written this relocation for a readonly section,
6362      we need to set DF_TEXTREL again, so that we do not delete the
6363      DT_TEXTREL tag.  */
6364   if (MIPS_ELF_READONLY_SECTION (input_section))
6365     info->flags |= DF_TEXTREL;
6366
6367   return TRUE;
6368 }
6369 \f
6370 /* Return the MACH for a MIPS e_flags value.  */
6371
6372 unsigned long
6373 _bfd_elf_mips_mach (flagword flags)
6374 {
6375   switch (flags & EF_MIPS_MACH)
6376     {
6377     case E_MIPS_MACH_3900:
6378       return bfd_mach_mips3900;
6379
6380     case E_MIPS_MACH_4010:
6381       return bfd_mach_mips4010;
6382
6383     case E_MIPS_MACH_4100:
6384       return bfd_mach_mips4100;
6385
6386     case E_MIPS_MACH_4111:
6387       return bfd_mach_mips4111;
6388
6389     case E_MIPS_MACH_4120:
6390       return bfd_mach_mips4120;
6391
6392     case E_MIPS_MACH_4650:
6393       return bfd_mach_mips4650;
6394
6395     case E_MIPS_MACH_5400:
6396       return bfd_mach_mips5400;
6397
6398     case E_MIPS_MACH_5500:
6399       return bfd_mach_mips5500;
6400
6401     case E_MIPS_MACH_5900:
6402       return bfd_mach_mips5900;
6403
6404     case E_MIPS_MACH_9000:
6405       return bfd_mach_mips9000;
6406
6407     case E_MIPS_MACH_SB1:
6408       return bfd_mach_mips_sb1;
6409
6410     case E_MIPS_MACH_LS2E:
6411       return bfd_mach_mips_loongson_2e;
6412
6413     case E_MIPS_MACH_LS2F:
6414       return bfd_mach_mips_loongson_2f;
6415
6416     case E_MIPS_MACH_LS3A:
6417       return bfd_mach_mips_loongson_3a;
6418
6419     case E_MIPS_MACH_OCTEON2:
6420       return bfd_mach_mips_octeon2;
6421
6422     case E_MIPS_MACH_OCTEON:
6423       return bfd_mach_mips_octeon;
6424
6425     case E_MIPS_MACH_XLR:
6426       return bfd_mach_mips_xlr;
6427
6428     default:
6429       switch (flags & EF_MIPS_ARCH)
6430         {
6431         default:
6432         case E_MIPS_ARCH_1:
6433           return bfd_mach_mips3000;
6434
6435         case E_MIPS_ARCH_2:
6436           return bfd_mach_mips6000;
6437
6438         case E_MIPS_ARCH_3:
6439           return bfd_mach_mips4000;
6440
6441         case E_MIPS_ARCH_4:
6442           return bfd_mach_mips8000;
6443
6444         case E_MIPS_ARCH_5:
6445           return bfd_mach_mips5;
6446
6447         case E_MIPS_ARCH_32:
6448           return bfd_mach_mipsisa32;
6449
6450         case E_MIPS_ARCH_64:
6451           return bfd_mach_mipsisa64;
6452
6453         case E_MIPS_ARCH_32R2:
6454           return bfd_mach_mipsisa32r2;
6455
6456         case E_MIPS_ARCH_64R2:
6457           return bfd_mach_mipsisa64r2;
6458         }
6459     }
6460
6461   return 0;
6462 }
6463
6464 /* Return printable name for ABI.  */
6465
6466 static INLINE char *
6467 elf_mips_abi_name (bfd *abfd)
6468 {
6469   flagword flags;
6470
6471   flags = elf_elfheader (abfd)->e_flags;
6472   switch (flags & EF_MIPS_ABI)
6473     {
6474     case 0:
6475       if (ABI_N32_P (abfd))
6476         return "N32";
6477       else if (ABI_64_P (abfd))
6478         return "64";
6479       else
6480         return "none";
6481     case E_MIPS_ABI_O32:
6482       return "O32";
6483     case E_MIPS_ABI_O64:
6484       return "O64";
6485     case E_MIPS_ABI_EABI32:
6486       return "EABI32";
6487     case E_MIPS_ABI_EABI64:
6488       return "EABI64";
6489     default:
6490       return "unknown abi";
6491     }
6492 }
6493 \f
6494 /* MIPS ELF uses two common sections.  One is the usual one, and the
6495    other is for small objects.  All the small objects are kept
6496    together, and then referenced via the gp pointer, which yields
6497    faster assembler code.  This is what we use for the small common
6498    section.  This approach is copied from ecoff.c.  */
6499 static asection mips_elf_scom_section;
6500 static asymbol mips_elf_scom_symbol;
6501 static asymbol *mips_elf_scom_symbol_ptr;
6502
6503 /* MIPS ELF also uses an acommon section, which represents an
6504    allocated common symbol which may be overridden by a
6505    definition in a shared library.  */
6506 static asection mips_elf_acom_section;
6507 static asymbol mips_elf_acom_symbol;
6508 static asymbol *mips_elf_acom_symbol_ptr;
6509
6510 /* This is used for both the 32-bit and the 64-bit ABI.  */
6511
6512 void
6513 _bfd_mips_elf_symbol_processing (bfd *abfd, asymbol *asym)
6514 {
6515   elf_symbol_type *elfsym;
6516
6517   /* Handle the special MIPS section numbers that a symbol may use.  */
6518   elfsym = (elf_symbol_type *) asym;
6519   switch (elfsym->internal_elf_sym.st_shndx)
6520     {
6521     case SHN_MIPS_ACOMMON:
6522       /* This section is used in a dynamically linked executable file.
6523          It is an allocated common section.  The dynamic linker can
6524          either resolve these symbols to something in a shared
6525          library, or it can just leave them here.  For our purposes,
6526          we can consider these symbols to be in a new section.  */
6527       if (mips_elf_acom_section.name == NULL)
6528         {
6529           /* Initialize the acommon section.  */
6530           mips_elf_acom_section.name = ".acommon";
6531           mips_elf_acom_section.flags = SEC_ALLOC;
6532           mips_elf_acom_section.output_section = &mips_elf_acom_section;
6533           mips_elf_acom_section.symbol = &mips_elf_acom_symbol;
6534           mips_elf_acom_section.symbol_ptr_ptr = &mips_elf_acom_symbol_ptr;
6535           mips_elf_acom_symbol.name = ".acommon";
6536           mips_elf_acom_symbol.flags = BSF_SECTION_SYM;
6537           mips_elf_acom_symbol.section = &mips_elf_acom_section;
6538           mips_elf_acom_symbol_ptr = &mips_elf_acom_symbol;
6539         }
6540       asym->section = &mips_elf_acom_section;
6541       break;
6542
6543     case SHN_COMMON:
6544       /* Common symbols less than the GP size are automatically
6545          treated as SHN_MIPS_SCOMMON symbols on IRIX5.  */
6546       if (asym->value > elf_gp_size (abfd)
6547           || ELF_ST_TYPE (elfsym->internal_elf_sym.st_info) == STT_TLS
6548           || IRIX_COMPAT (abfd) == ict_irix6)
6549         break;
6550       /* Fall through.  */
6551     case SHN_MIPS_SCOMMON:
6552       if (mips_elf_scom_section.name == NULL)
6553         {
6554           /* Initialize the small common section.  */
6555           mips_elf_scom_section.name = ".scommon";
6556           mips_elf_scom_section.flags = SEC_IS_COMMON;
6557           mips_elf_scom_section.output_section = &mips_elf_scom_section;
6558           mips_elf_scom_section.symbol = &mips_elf_scom_symbol;
6559           mips_elf_scom_section.symbol_ptr_ptr = &mips_elf_scom_symbol_ptr;
6560           mips_elf_scom_symbol.name = ".scommon";
6561           mips_elf_scom_symbol.flags = BSF_SECTION_SYM;
6562           mips_elf_scom_symbol.section = &mips_elf_scom_section;
6563           mips_elf_scom_symbol_ptr = &mips_elf_scom_symbol;
6564         }
6565       asym->section = &mips_elf_scom_section;
6566       asym->value = elfsym->internal_elf_sym.st_size;
6567       break;
6568
6569     case SHN_MIPS_SUNDEFINED:
6570       asym->section = bfd_und_section_ptr;
6571       break;
6572
6573     case SHN_MIPS_TEXT:
6574       {
6575         asection *section = bfd_get_section_by_name (abfd, ".text");
6576
6577         if (section != NULL)
6578           {
6579             asym->section = section;
6580             /* MIPS_TEXT is a bit special, the address is not an offset
6581                to the base of the .text section.  So substract the section
6582                base address to make it an offset.  */
6583             asym->value -= section->vma;
6584           }
6585       }
6586       break;
6587
6588     case SHN_MIPS_DATA:
6589       {
6590         asection *section = bfd_get_section_by_name (abfd, ".data");
6591
6592         if (section != NULL)
6593           {
6594             asym->section = section;
6595             /* MIPS_DATA is a bit special, the address is not an offset
6596                to the base of the .data section.  So substract the section
6597                base address to make it an offset.  */
6598             asym->value -= section->vma;
6599           }
6600       }
6601       break;
6602     }
6603
6604   /* If this is an odd-valued function symbol, assume it's a MIPS16
6605      or microMIPS one.  */
6606   if (ELF_ST_TYPE (elfsym->internal_elf_sym.st_info) == STT_FUNC
6607       && (asym->value & 1) != 0)
6608     {
6609       asym->value--;
6610       if (MICROMIPS_P (abfd))
6611         elfsym->internal_elf_sym.st_other
6612           = ELF_ST_SET_MICROMIPS (elfsym->internal_elf_sym.st_other);
6613       else
6614         elfsym->internal_elf_sym.st_other
6615           = ELF_ST_SET_MIPS16 (elfsym->internal_elf_sym.st_other);
6616     }
6617 }
6618 \f
6619 /* Implement elf_backend_eh_frame_address_size.  This differs from
6620    the default in the way it handles EABI64.
6621
6622    EABI64 was originally specified as an LP64 ABI, and that is what
6623    -mabi=eabi normally gives on a 64-bit target.  However, gcc has
6624    historically accepted the combination of -mabi=eabi and -mlong32,
6625    and this ILP32 variation has become semi-official over time.
6626    Both forms use elf32 and have pointer-sized FDE addresses.
6627
6628    If an EABI object was generated by GCC 4.0 or above, it will have
6629    an empty .gcc_compiled_longXX section, where XX is the size of longs
6630    in bits.  Unfortunately, ILP32 objects generated by earlier compilers
6631    have no special marking to distinguish them from LP64 objects.
6632
6633    We don't want users of the official LP64 ABI to be punished for the
6634    existence of the ILP32 variant, but at the same time, we don't want
6635    to mistakenly interpret pre-4.0 ILP32 objects as being LP64 objects.
6636    We therefore take the following approach:
6637
6638       - If ABFD contains a .gcc_compiled_longXX section, use it to
6639         determine the pointer size.
6640
6641       - Otherwise check the type of the first relocation.  Assume that
6642         the LP64 ABI is being used if the relocation is of type R_MIPS_64.
6643
6644       - Otherwise punt.
6645
6646    The second check is enough to detect LP64 objects generated by pre-4.0
6647    compilers because, in the kind of output generated by those compilers,
6648    the first relocation will be associated with either a CIE personality
6649    routine or an FDE start address.  Furthermore, the compilers never
6650    used a special (non-pointer) encoding for this ABI.
6651
6652    Checking the relocation type should also be safe because there is no
6653    reason to use R_MIPS_64 in an ILP32 object.  Pre-4.0 compilers never
6654    did so.  */
6655
6656 unsigned int
6657 _bfd_mips_elf_eh_frame_address_size (bfd *abfd, asection *sec)
6658 {
6659   if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
6660     return 8;
6661   if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64)
6662     {
6663       bfd_boolean long32_p, long64_p;
6664
6665       long32_p = bfd_get_section_by_name (abfd, ".gcc_compiled_long32") != 0;
6666       long64_p = bfd_get_section_by_name (abfd, ".gcc_compiled_long64") != 0;
6667       if (long32_p && long64_p)
6668         return 0;
6669       if (long32_p)
6670         return 4;
6671       if (long64_p)
6672         return 8;
6673
6674       if (sec->reloc_count > 0
6675           && elf_section_data (sec)->relocs != NULL
6676           && (ELF32_R_TYPE (elf_section_data (sec)->relocs[0].r_info)
6677               == R_MIPS_64))
6678         return 8;
6679
6680       return 0;
6681     }
6682   return 4;
6683 }
6684 \f
6685 /* There appears to be a bug in the MIPSpro linker that causes GOT_DISP
6686    relocations against two unnamed section symbols to resolve to the
6687    same address.  For example, if we have code like:
6688
6689         lw      $4,%got_disp(.data)($gp)
6690         lw      $25,%got_disp(.text)($gp)
6691         jalr    $25
6692
6693    then the linker will resolve both relocations to .data and the program
6694    will jump there rather than to .text.
6695
6696    We can work around this problem by giving names to local section symbols.
6697    This is also what the MIPSpro tools do.  */
6698
6699 bfd_boolean
6700 _bfd_mips_elf_name_local_section_symbols (bfd *abfd)
6701 {
6702   return SGI_COMPAT (abfd);
6703 }
6704 \f
6705 /* Work over a section just before writing it out.  This routine is
6706    used by both the 32-bit and the 64-bit ABI.  FIXME: We recognize
6707    sections that need the SHF_MIPS_GPREL flag by name; there has to be
6708    a better way.  */
6709
6710 bfd_boolean
6711 _bfd_mips_elf_section_processing (bfd *abfd, Elf_Internal_Shdr *hdr)
6712 {
6713   if (hdr->sh_type == SHT_MIPS_REGINFO
6714       && hdr->sh_size > 0)
6715     {
6716       bfd_byte buf[4];
6717
6718       BFD_ASSERT (hdr->sh_size == sizeof (Elf32_External_RegInfo));
6719       BFD_ASSERT (hdr->contents == NULL);
6720
6721       if (bfd_seek (abfd,
6722                     hdr->sh_offset + sizeof (Elf32_External_RegInfo) - 4,
6723                     SEEK_SET) != 0)
6724         return FALSE;
6725       H_PUT_32 (abfd, elf_gp (abfd), buf);
6726       if (bfd_bwrite (buf, 4, abfd) != 4)
6727         return FALSE;
6728     }
6729
6730   if (hdr->sh_type == SHT_MIPS_OPTIONS
6731       && hdr->bfd_section != NULL
6732       && mips_elf_section_data (hdr->bfd_section) != NULL
6733       && mips_elf_section_data (hdr->bfd_section)->u.tdata != NULL)
6734     {
6735       bfd_byte *contents, *l, *lend;
6736
6737       /* We stored the section contents in the tdata field in the
6738          set_section_contents routine.  We save the section contents
6739          so that we don't have to read them again.
6740          At this point we know that elf_gp is set, so we can look
6741          through the section contents to see if there is an
6742          ODK_REGINFO structure.  */
6743
6744       contents = mips_elf_section_data (hdr->bfd_section)->u.tdata;
6745       l = contents;
6746       lend = contents + hdr->sh_size;
6747       while (l + sizeof (Elf_External_Options) <= lend)
6748         {
6749           Elf_Internal_Options intopt;
6750
6751           bfd_mips_elf_swap_options_in (abfd, (Elf_External_Options *) l,
6752                                         &intopt);
6753           if (intopt.size < sizeof (Elf_External_Options))
6754             {
6755               (*_bfd_error_handler)
6756                 (_("%B: Warning: bad `%s' option size %u smaller than its header"),
6757                 abfd, MIPS_ELF_OPTIONS_SECTION_NAME (abfd), intopt.size);
6758               break;
6759             }
6760           if (ABI_64_P (abfd) && intopt.kind == ODK_REGINFO)
6761             {
6762               bfd_byte buf[8];
6763
6764               if (bfd_seek (abfd,
6765                             (hdr->sh_offset
6766                              + (l - contents)
6767                              + sizeof (Elf_External_Options)
6768                              + (sizeof (Elf64_External_RegInfo) - 8)),
6769                              SEEK_SET) != 0)
6770                 return FALSE;
6771               H_PUT_64 (abfd, elf_gp (abfd), buf);
6772               if (bfd_bwrite (buf, 8, abfd) != 8)
6773                 return FALSE;
6774             }
6775           else if (intopt.kind == ODK_REGINFO)
6776             {
6777               bfd_byte buf[4];
6778
6779               if (bfd_seek (abfd,
6780                             (hdr->sh_offset
6781                              + (l - contents)
6782                              + sizeof (Elf_External_Options)
6783                              + (sizeof (Elf32_External_RegInfo) - 4)),
6784                             SEEK_SET) != 0)
6785                 return FALSE;
6786               H_PUT_32 (abfd, elf_gp (abfd), buf);
6787               if (bfd_bwrite (buf, 4, abfd) != 4)
6788                 return FALSE;
6789             }
6790           l += intopt.size;
6791         }
6792     }
6793
6794   if (hdr->bfd_section != NULL)
6795     {
6796       const char *name = bfd_get_section_name (abfd, hdr->bfd_section);
6797
6798       /* .sbss is not handled specially here because the GNU/Linux
6799          prelinker can convert .sbss from NOBITS to PROGBITS and
6800          changing it back to NOBITS breaks the binary.  The entry in
6801          _bfd_mips_elf_special_sections will ensure the correct flags
6802          are set on .sbss if BFD creates it without reading it from an
6803          input file, and without special handling here the flags set
6804          on it in an input file will be followed.  */
6805       if (strcmp (name, ".sdata") == 0
6806           || strcmp (name, ".lit8") == 0
6807           || strcmp (name, ".lit4") == 0)
6808         {
6809           hdr->sh_flags |= SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL;
6810           hdr->sh_type = SHT_PROGBITS;
6811         }
6812       else if (strcmp (name, ".srdata") == 0)
6813         {
6814           hdr->sh_flags |= SHF_ALLOC | SHF_MIPS_GPREL;
6815           hdr->sh_type = SHT_PROGBITS;
6816         }
6817       else if (strcmp (name, ".compact_rel") == 0)
6818         {
6819           hdr->sh_flags = 0;
6820           hdr->sh_type = SHT_PROGBITS;
6821         }
6822       else if (strcmp (name, ".rtproc") == 0)
6823         {
6824           if (hdr->sh_addralign != 0 && hdr->sh_entsize == 0)
6825             {
6826               unsigned int adjust;
6827
6828               adjust = hdr->sh_size % hdr->sh_addralign;
6829               if (adjust != 0)
6830                 hdr->sh_size += hdr->sh_addralign - adjust;
6831             }
6832         }
6833     }
6834
6835   return TRUE;
6836 }
6837
6838 /* Handle a MIPS specific section when reading an object file.  This
6839    is called when elfcode.h finds a section with an unknown type.
6840    This routine supports both the 32-bit and 64-bit ELF ABI.
6841
6842    FIXME: We need to handle the SHF_MIPS_GPREL flag, but I'm not sure
6843    how to.  */
6844
6845 bfd_boolean
6846 _bfd_mips_elf_section_from_shdr (bfd *abfd,
6847                                  Elf_Internal_Shdr *hdr,
6848                                  const char *name,
6849                                  int shindex)
6850 {
6851   flagword flags = 0;
6852
6853   /* There ought to be a place to keep ELF backend specific flags, but
6854      at the moment there isn't one.  We just keep track of the
6855      sections by their name, instead.  Fortunately, the ABI gives
6856      suggested names for all the MIPS specific sections, so we will
6857      probably get away with this.  */
6858   switch (hdr->sh_type)
6859     {
6860     case SHT_MIPS_LIBLIST:
6861       if (strcmp (name, ".liblist") != 0)
6862         return FALSE;
6863       break;
6864     case SHT_MIPS_MSYM:
6865       if (strcmp (name, ".msym") != 0)
6866         return FALSE;
6867       break;
6868     case SHT_MIPS_CONFLICT:
6869       if (strcmp (name, ".conflict") != 0)
6870         return FALSE;
6871       break;
6872     case SHT_MIPS_GPTAB:
6873       if (! CONST_STRNEQ (name, ".gptab."))
6874         return FALSE;
6875       break;
6876     case SHT_MIPS_UCODE:
6877       if (strcmp (name, ".ucode") != 0)
6878         return FALSE;
6879       break;
6880     case SHT_MIPS_DEBUG:
6881       if (strcmp (name, ".mdebug") != 0)
6882         return FALSE;
6883       flags = SEC_DEBUGGING;
6884       break;
6885     case SHT_MIPS_REGINFO:
6886       if (strcmp (name, ".reginfo") != 0
6887           || hdr->sh_size != sizeof (Elf32_External_RegInfo))
6888         return FALSE;
6889       flags = (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_SAME_SIZE);
6890       break;
6891     case SHT_MIPS_IFACE:
6892       if (strcmp (name, ".MIPS.interfaces") != 0)
6893         return FALSE;
6894       break;
6895     case SHT_MIPS_CONTENT:
6896       if (! CONST_STRNEQ (name, ".MIPS.content"))
6897         return FALSE;
6898       break;
6899     case SHT_MIPS_OPTIONS:
6900       if (!MIPS_ELF_OPTIONS_SECTION_NAME_P (name))
6901         return FALSE;
6902       break;
6903     case SHT_MIPS_DWARF:
6904       if (! CONST_STRNEQ (name, ".debug_")
6905           && ! CONST_STRNEQ (name, ".zdebug_"))
6906         return FALSE;
6907       break;
6908     case SHT_MIPS_SYMBOL_LIB:
6909       if (strcmp (name, ".MIPS.symlib") != 0)
6910         return FALSE;
6911       break;
6912     case SHT_MIPS_EVENTS:
6913       if (! CONST_STRNEQ (name, ".MIPS.events")
6914           && ! CONST_STRNEQ (name, ".MIPS.post_rel"))
6915         return FALSE;
6916       break;
6917     default:
6918       break;
6919     }
6920
6921   if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
6922     return FALSE;
6923
6924   if (flags)
6925     {
6926       if (! bfd_set_section_flags (abfd, hdr->bfd_section,
6927                                    (bfd_get_section_flags (abfd,
6928                                                            hdr->bfd_section)
6929                                     | flags)))
6930         return FALSE;
6931     }
6932
6933   /* FIXME: We should record sh_info for a .gptab section.  */
6934
6935   /* For a .reginfo section, set the gp value in the tdata information
6936      from the contents of this section.  We need the gp value while
6937      processing relocs, so we just get it now.  The .reginfo section
6938      is not used in the 64-bit MIPS ELF ABI.  */
6939   if (hdr->sh_type == SHT_MIPS_REGINFO)
6940     {
6941       Elf32_External_RegInfo ext;
6942       Elf32_RegInfo s;
6943
6944       if (! bfd_get_section_contents (abfd, hdr->bfd_section,
6945                                       &ext, 0, sizeof ext))
6946         return FALSE;
6947       bfd_mips_elf32_swap_reginfo_in (abfd, &ext, &s);
6948       elf_gp (abfd) = s.ri_gp_value;
6949     }
6950
6951   /* For a SHT_MIPS_OPTIONS section, look for a ODK_REGINFO entry, and
6952      set the gp value based on what we find.  We may see both
6953      SHT_MIPS_REGINFO and SHT_MIPS_OPTIONS/ODK_REGINFO; in that case,
6954      they should agree.  */
6955   if (hdr->sh_type == SHT_MIPS_OPTIONS)
6956     {
6957       bfd_byte *contents, *l, *lend;
6958
6959       contents = bfd_malloc (hdr->sh_size);
6960       if (contents == NULL)
6961         return FALSE;
6962       if (! bfd_get_section_contents (abfd, hdr->bfd_section, contents,
6963                                       0, hdr->sh_size))
6964         {
6965           free (contents);
6966           return FALSE;
6967         }
6968       l = contents;
6969       lend = contents + hdr->sh_size;
6970       while (l + sizeof (Elf_External_Options) <= lend)
6971         {
6972           Elf_Internal_Options intopt;
6973
6974           bfd_mips_elf_swap_options_in (abfd, (Elf_External_Options *) l,
6975                                         &intopt);
6976           if (intopt.size < sizeof (Elf_External_Options))
6977             {
6978               (*_bfd_error_handler)
6979                 (_("%B: Warning: bad `%s' option size %u smaller than its header"),
6980                 abfd, MIPS_ELF_OPTIONS_SECTION_NAME (abfd), intopt.size);
6981               break;
6982             }
6983           if (ABI_64_P (abfd) && intopt.kind == ODK_REGINFO)
6984             {
6985               Elf64_Internal_RegInfo intreg;
6986
6987               bfd_mips_elf64_swap_reginfo_in
6988                 (abfd,
6989                  ((Elf64_External_RegInfo *)
6990                   (l + sizeof (Elf_External_Options))),
6991                  &intreg);
6992               elf_gp (abfd) = intreg.ri_gp_value;
6993             }
6994           else if (intopt.kind == ODK_REGINFO)
6995             {
6996               Elf32_RegInfo intreg;
6997
6998               bfd_mips_elf32_swap_reginfo_in
6999                 (abfd,
7000                  ((Elf32_External_RegInfo *)
7001                   (l + sizeof (Elf_External_Options))),
7002                  &intreg);
7003               elf_gp (abfd) = intreg.ri_gp_value;
7004             }
7005           l += intopt.size;
7006         }
7007       free (contents);
7008     }
7009
7010   return TRUE;
7011 }
7012
7013 /* Set the correct type for a MIPS ELF section.  We do this by the
7014    section name, which is a hack, but ought to work.  This routine is
7015    used by both the 32-bit and the 64-bit ABI.  */
7016
7017 bfd_boolean
7018 _bfd_mips_elf_fake_sections (bfd *abfd, Elf_Internal_Shdr *hdr, asection *sec)
7019 {
7020   const char *name = bfd_get_section_name (abfd, sec);
7021
7022   if (strcmp (name, ".liblist") == 0)
7023     {
7024       hdr->sh_type = SHT_MIPS_LIBLIST;
7025       hdr->sh_info = sec->size / sizeof (Elf32_Lib);
7026       /* The sh_link field is set in final_write_processing.  */
7027     }
7028   else if (strcmp (name, ".conflict") == 0)
7029     hdr->sh_type = SHT_MIPS_CONFLICT;
7030   else if (CONST_STRNEQ (name, ".gptab."))
7031     {
7032       hdr->sh_type = SHT_MIPS_GPTAB;
7033       hdr->sh_entsize = sizeof (Elf32_External_gptab);
7034       /* The sh_info field is set in final_write_processing.  */
7035     }
7036   else if (strcmp (name, ".ucode") == 0)
7037     hdr->sh_type = SHT_MIPS_UCODE;
7038   else if (strcmp (name, ".mdebug") == 0)
7039     {
7040       hdr->sh_type = SHT_MIPS_DEBUG;
7041       /* In a shared object on IRIX 5.3, the .mdebug section has an
7042          entsize of 0.  FIXME: Does this matter?  */
7043       if (SGI_COMPAT (abfd) && (abfd->flags & DYNAMIC) != 0)
7044         hdr->sh_entsize = 0;
7045       else
7046         hdr->sh_entsize = 1;
7047     }
7048   else if (strcmp (name, ".reginfo") == 0)
7049     {
7050       hdr->sh_type = SHT_MIPS_REGINFO;
7051       /* In a shared object on IRIX 5.3, the .reginfo section has an
7052          entsize of 0x18.  FIXME: Does this matter?  */
7053       if (SGI_COMPAT (abfd))
7054         {
7055           if ((abfd->flags & DYNAMIC) != 0)
7056             hdr->sh_entsize = sizeof (Elf32_External_RegInfo);
7057           else
7058             hdr->sh_entsize = 1;
7059         }
7060       else
7061         hdr->sh_entsize = sizeof (Elf32_External_RegInfo);
7062     }
7063   else if (SGI_COMPAT (abfd)
7064            && (strcmp (name, ".hash") == 0
7065                || strcmp (name, ".dynamic") == 0
7066                || strcmp (name, ".dynstr") == 0))
7067     {
7068       if (SGI_COMPAT (abfd))
7069         hdr->sh_entsize = 0;
7070 #if 0
7071       /* This isn't how the IRIX6 linker behaves.  */
7072       hdr->sh_info = SIZEOF_MIPS_DYNSYM_SECNAMES;
7073 #endif
7074     }
7075   else if (strcmp (name, ".got") == 0
7076            || strcmp (name, ".srdata") == 0
7077            || strcmp (name, ".sdata") == 0
7078            || strcmp (name, ".sbss") == 0
7079            || strcmp (name, ".lit4") == 0
7080            || strcmp (name, ".lit8") == 0)
7081     hdr->sh_flags |= SHF_MIPS_GPREL;
7082   else if (strcmp (name, ".MIPS.interfaces") == 0)
7083     {
7084       hdr->sh_type = SHT_MIPS_IFACE;
7085       hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7086     }
7087   else if (CONST_STRNEQ (name, ".MIPS.content"))
7088     {
7089       hdr->sh_type = SHT_MIPS_CONTENT;
7090       hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7091       /* The sh_info field is set in final_write_processing.  */
7092     }
7093   else if (MIPS_ELF_OPTIONS_SECTION_NAME_P (name))
7094     {
7095       hdr->sh_type = SHT_MIPS_OPTIONS;
7096       hdr->sh_entsize = 1;
7097       hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7098     }
7099   else if (CONST_STRNEQ (name, ".debug_")
7100            || CONST_STRNEQ (name, ".zdebug_"))
7101     {
7102       hdr->sh_type = SHT_MIPS_DWARF;
7103
7104       /* Irix facilities such as libexc expect a single .debug_frame
7105          per executable, the system ones have NOSTRIP set and the linker
7106          doesn't merge sections with different flags so ...  */
7107       if (SGI_COMPAT (abfd) && CONST_STRNEQ (name, ".debug_frame"))
7108         hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7109     }
7110   else if (strcmp (name, ".MIPS.symlib") == 0)
7111     {
7112       hdr->sh_type = SHT_MIPS_SYMBOL_LIB;
7113       /* The sh_link and sh_info fields are set in
7114          final_write_processing.  */
7115     }
7116   else if (CONST_STRNEQ (name, ".MIPS.events")
7117            || CONST_STRNEQ (name, ".MIPS.post_rel"))
7118     {
7119       hdr->sh_type = SHT_MIPS_EVENTS;
7120       hdr->sh_flags |= SHF_MIPS_NOSTRIP;
7121       /* The sh_link field is set in final_write_processing.  */
7122     }
7123   else if (strcmp (name, ".msym") == 0)
7124     {
7125       hdr->sh_type = SHT_MIPS_MSYM;
7126       hdr->sh_flags |= SHF_ALLOC;
7127       hdr->sh_entsize = 8;
7128     }
7129
7130   /* The generic elf_fake_sections will set up REL_HDR using the default
7131    kind of relocations.  We used to set up a second header for the
7132    non-default kind of relocations here, but only NewABI would use
7133    these, and the IRIX ld doesn't like resulting empty RELA sections.
7134    Thus we create those header only on demand now.  */
7135
7136   return TRUE;
7137 }
7138
7139 /* Given a BFD section, try to locate the corresponding ELF section
7140    index.  This is used by both the 32-bit and the 64-bit ABI.
7141    Actually, it's not clear to me that the 64-bit ABI supports these,
7142    but for non-PIC objects we will certainly want support for at least
7143    the .scommon section.  */
7144
7145 bfd_boolean
7146 _bfd_mips_elf_section_from_bfd_section (bfd *abfd ATTRIBUTE_UNUSED,
7147                                         asection *sec, int *retval)
7148 {
7149   if (strcmp (bfd_get_section_name (abfd, sec), ".scommon") == 0)
7150     {
7151       *retval = SHN_MIPS_SCOMMON;
7152       return TRUE;
7153     }
7154   if (strcmp (bfd_get_section_name (abfd, sec), ".acommon") == 0)
7155     {
7156       *retval = SHN_MIPS_ACOMMON;
7157       return TRUE;
7158     }
7159   return FALSE;
7160 }
7161 \f
7162 /* Hook called by the linker routine which adds symbols from an object
7163    file.  We must handle the special MIPS section numbers here.  */
7164
7165 bfd_boolean
7166 _bfd_mips_elf_add_symbol_hook (bfd *abfd, struct bfd_link_info *info,
7167                                Elf_Internal_Sym *sym, const char **namep,
7168                                flagword *flagsp ATTRIBUTE_UNUSED,
7169                                asection **secp, bfd_vma *valp)
7170 {
7171   if (SGI_COMPAT (abfd)
7172       && (abfd->flags & DYNAMIC) != 0
7173       && strcmp (*namep, "_rld_new_interface") == 0)
7174     {
7175       /* Skip IRIX5 rld entry name.  */
7176       *namep = NULL;
7177       return TRUE;
7178     }
7179
7180   /* Shared objects may have a dynamic symbol '_gp_disp' defined as
7181      a SECTION *ABS*.  This causes ld to think it can resolve _gp_disp
7182      by setting a DT_NEEDED for the shared object.  Since _gp_disp is
7183      a magic symbol resolved by the linker, we ignore this bogus definition
7184      of _gp_disp.  New ABI objects do not suffer from this problem so this
7185      is not done for them. */
7186   if (!NEWABI_P(abfd)
7187       && (sym->st_shndx == SHN_ABS)
7188       && (strcmp (*namep, "_gp_disp") == 0))
7189     {
7190       *namep = NULL;
7191       return TRUE;
7192     }
7193
7194   switch (sym->st_shndx)
7195     {
7196     case SHN_COMMON:
7197       /* Common symbols less than the GP size are automatically
7198          treated as SHN_MIPS_SCOMMON symbols.  */
7199       if (sym->st_size > elf_gp_size (abfd)
7200           || ELF_ST_TYPE (sym->st_info) == STT_TLS
7201           || IRIX_COMPAT (abfd) == ict_irix6)
7202         break;
7203       /* Fall through.  */
7204     case SHN_MIPS_SCOMMON:
7205       *secp = bfd_make_section_old_way (abfd, ".scommon");
7206       (*secp)->flags |= SEC_IS_COMMON;
7207       *valp = sym->st_size;
7208       break;
7209
7210     case SHN_MIPS_TEXT:
7211       /* This section is used in a shared object.  */
7212       if (mips_elf_tdata (abfd)->elf_text_section == NULL)
7213         {
7214           asymbol *elf_text_symbol;
7215           asection *elf_text_section;
7216           bfd_size_type amt = sizeof (asection);
7217
7218           elf_text_section = bfd_zalloc (abfd, amt);
7219           if (elf_text_section == NULL)
7220             return FALSE;
7221
7222           amt = sizeof (asymbol);
7223           elf_text_symbol = bfd_zalloc (abfd, amt);
7224           if (elf_text_symbol == NULL)
7225             return FALSE;
7226
7227           /* Initialize the section.  */
7228
7229           mips_elf_tdata (abfd)->elf_text_section = elf_text_section;
7230           mips_elf_tdata (abfd)->elf_text_symbol = elf_text_symbol;
7231
7232           elf_text_section->symbol = elf_text_symbol;
7233           elf_text_section->symbol_ptr_ptr = &mips_elf_tdata (abfd)->elf_text_symbol;
7234
7235           elf_text_section->name = ".text";
7236           elf_text_section->flags = SEC_NO_FLAGS;
7237           elf_text_section->output_section = NULL;
7238           elf_text_section->owner = abfd;
7239           elf_text_symbol->name = ".text";
7240           elf_text_symbol->flags = BSF_SECTION_SYM | BSF_DYNAMIC;
7241           elf_text_symbol->section = elf_text_section;
7242         }
7243       /* This code used to do *secp = bfd_und_section_ptr if
7244          info->shared.  I don't know why, and that doesn't make sense,
7245          so I took it out.  */
7246       *secp = mips_elf_tdata (abfd)->elf_text_section;
7247       break;
7248
7249     case SHN_MIPS_ACOMMON:
7250       /* Fall through. XXX Can we treat this as allocated data?  */
7251     case SHN_MIPS_DATA:
7252       /* This section is used in a shared object.  */
7253       if (mips_elf_tdata (abfd)->elf_data_section == NULL)
7254         {
7255           asymbol *elf_data_symbol;
7256           asection *elf_data_section;
7257           bfd_size_type amt = sizeof (asection);
7258
7259           elf_data_section = bfd_zalloc (abfd, amt);
7260           if (elf_data_section == NULL)
7261             return FALSE;
7262
7263           amt = sizeof (asymbol);
7264           elf_data_symbol = bfd_zalloc (abfd, amt);
7265           if (elf_data_symbol == NULL)
7266             return FALSE;
7267
7268           /* Initialize the section.  */
7269
7270           mips_elf_tdata (abfd)->elf_data_section = elf_data_section;
7271           mips_elf_tdata (abfd)->elf_data_symbol = elf_data_symbol;
7272
7273           elf_data_section->symbol = elf_data_symbol;
7274           elf_data_section->symbol_ptr_ptr = &mips_elf_tdata (abfd)->elf_data_symbol;
7275
7276           elf_data_section->name = ".data";
7277           elf_data_section->flags = SEC_NO_FLAGS;
7278           elf_data_section->output_section = NULL;
7279           elf_data_section->owner = abfd;
7280           elf_data_symbol->name = ".data";
7281           elf_data_symbol->flags = BSF_SECTION_SYM | BSF_DYNAMIC;
7282           elf_data_symbol->section = elf_data_section;
7283         }
7284       /* This code used to do *secp = bfd_und_section_ptr if
7285          info->shared.  I don't know why, and that doesn't make sense,
7286          so I took it out.  */
7287       *secp = mips_elf_tdata (abfd)->elf_data_section;
7288       break;
7289
7290     case SHN_MIPS_SUNDEFINED:
7291       *secp = bfd_und_section_ptr;
7292       break;
7293     }
7294
7295   if (SGI_COMPAT (abfd)
7296       && ! info->shared
7297       && info->output_bfd->xvec == abfd->xvec
7298       && strcmp (*namep, "__rld_obj_head") == 0)
7299     {
7300       struct elf_link_hash_entry *h;
7301       struct bfd_link_hash_entry *bh;
7302
7303       /* Mark __rld_obj_head as dynamic.  */
7304       bh = NULL;
7305       if (! (_bfd_generic_link_add_one_symbol
7306              (info, abfd, *namep, BSF_GLOBAL, *secp, *valp, NULL, FALSE,
7307               get_elf_backend_data (abfd)->collect, &bh)))
7308         return FALSE;
7309
7310       h = (struct elf_link_hash_entry *) bh;
7311       h->non_elf = 0;
7312       h->def_regular = 1;
7313       h->type = STT_OBJECT;
7314
7315       if (! bfd_elf_link_record_dynamic_symbol (info, h))
7316         return FALSE;
7317
7318       mips_elf_hash_table (info)->use_rld_obj_head = TRUE;
7319       mips_elf_hash_table (info)->rld_symbol = h;
7320     }
7321
7322   /* If this is a mips16 text symbol, add 1 to the value to make it
7323      odd.  This will cause something like .word SYM to come up with
7324      the right value when it is loaded into the PC.  */
7325   if (ELF_ST_IS_COMPRESSED (sym->st_other))
7326     ++*valp;
7327
7328   return TRUE;
7329 }
7330
7331 /* This hook function is called before the linker writes out a global
7332    symbol.  We mark symbols as small common if appropriate.  This is
7333    also where we undo the increment of the value for a mips16 symbol.  */
7334
7335 int
7336 _bfd_mips_elf_link_output_symbol_hook
7337   (struct bfd_link_info *info ATTRIBUTE_UNUSED,
7338    const char *name ATTRIBUTE_UNUSED, Elf_Internal_Sym *sym,
7339    asection *input_sec, struct elf_link_hash_entry *h ATTRIBUTE_UNUSED)
7340 {
7341   /* If we see a common symbol, which implies a relocatable link, then
7342      if a symbol was small common in an input file, mark it as small
7343      common in the output file.  */
7344   if (sym->st_shndx == SHN_COMMON
7345       && strcmp (input_sec->name, ".scommon") == 0)
7346     sym->st_shndx = SHN_MIPS_SCOMMON;
7347
7348   if (ELF_ST_IS_COMPRESSED (sym->st_other))
7349     sym->st_value &= ~1;
7350
7351   return 1;
7352 }
7353 \f
7354 /* Functions for the dynamic linker.  */
7355
7356 /* Create dynamic sections when linking against a dynamic object.  */
7357
7358 bfd_boolean
7359 _bfd_mips_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
7360 {
7361   struct elf_link_hash_entry *h;
7362   struct bfd_link_hash_entry *bh;
7363   flagword flags;
7364   register asection *s;
7365   const char * const *namep;
7366   struct mips_elf_link_hash_table *htab;
7367
7368   htab = mips_elf_hash_table (info);
7369   BFD_ASSERT (htab != NULL);
7370
7371   flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
7372            | SEC_LINKER_CREATED | SEC_READONLY);
7373
7374   /* The psABI requires a read-only .dynamic section, but the VxWorks
7375      EABI doesn't.  */
7376   if (!htab->is_vxworks)
7377     {
7378       s = bfd_get_linker_section (abfd, ".dynamic");
7379       if (s != NULL)
7380         {
7381           if (! bfd_set_section_flags (abfd, s, flags))
7382             return FALSE;
7383         }
7384     }
7385
7386   /* We need to create .got section.  */
7387   if (!mips_elf_create_got_section (abfd, info))
7388     return FALSE;
7389
7390   if (! mips_elf_rel_dyn_section (info, TRUE))
7391     return FALSE;
7392
7393   /* Create .stub section.  */
7394   s = bfd_make_section_anyway_with_flags (abfd,
7395                                           MIPS_ELF_STUB_SECTION_NAME (abfd),
7396                                           flags | SEC_CODE);
7397   if (s == NULL
7398       || ! bfd_set_section_alignment (abfd, s,
7399                                       MIPS_ELF_LOG_FILE_ALIGN (abfd)))
7400     return FALSE;
7401   htab->sstubs = s;
7402
7403   if (!mips_elf_hash_table (info)->use_rld_obj_head
7404       && !info->shared
7405       && bfd_get_linker_section (abfd, ".rld_map") == NULL)
7406     {
7407       s = bfd_make_section_anyway_with_flags (abfd, ".rld_map",
7408                                               flags &~ (flagword) SEC_READONLY);
7409       if (s == NULL
7410           || ! bfd_set_section_alignment (abfd, s,
7411                                           MIPS_ELF_LOG_FILE_ALIGN (abfd)))
7412         return FALSE;
7413     }
7414
7415   /* On IRIX5, we adjust add some additional symbols and change the
7416      alignments of several sections.  There is no ABI documentation
7417      indicating that this is necessary on IRIX6, nor any evidence that
7418      the linker takes such action.  */
7419   if (IRIX_COMPAT (abfd) == ict_irix5)
7420     {
7421       for (namep = mips_elf_dynsym_rtproc_names; *namep != NULL; namep++)
7422         {
7423           bh = NULL;
7424           if (! (_bfd_generic_link_add_one_symbol
7425                  (info, abfd, *namep, BSF_GLOBAL, bfd_und_section_ptr, 0,
7426                   NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
7427             return FALSE;
7428
7429           h = (struct elf_link_hash_entry *) bh;
7430           h->non_elf = 0;
7431           h->def_regular = 1;
7432           h->type = STT_SECTION;
7433
7434           if (! bfd_elf_link_record_dynamic_symbol (info, h))
7435             return FALSE;
7436         }
7437
7438       /* We need to create a .compact_rel section.  */
7439       if (SGI_COMPAT (abfd))
7440         {
7441           if (!mips_elf_create_compact_rel_section (abfd, info))
7442             return FALSE;
7443         }
7444
7445       /* Change alignments of some sections.  */
7446       s = bfd_get_linker_section (abfd, ".hash");
7447       if (s != NULL)
7448         (void) bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
7449
7450       s = bfd_get_linker_section (abfd, ".dynsym");
7451       if (s != NULL)
7452         (void) bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
7453
7454       s = bfd_get_linker_section (abfd, ".dynstr");
7455       if (s != NULL)
7456         (void) bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
7457
7458       /* ??? */
7459       s = bfd_get_section_by_name (abfd, ".reginfo");
7460       if (s != NULL)
7461         (void) bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
7462
7463       s = bfd_get_linker_section (abfd, ".dynamic");
7464       if (s != NULL)
7465         (void) bfd_set_section_alignment (abfd, s, MIPS_ELF_LOG_FILE_ALIGN (abfd));
7466     }
7467
7468   if (!info->shared)
7469     {
7470       const char *name;
7471
7472       name = SGI_COMPAT (abfd) ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING";
7473       bh = NULL;
7474       if (!(_bfd_generic_link_add_one_symbol
7475             (info, abfd, name, BSF_GLOBAL, bfd_abs_section_ptr, 0,
7476              NULL, FALSE, get_elf_backend_data (abfd)->collect, &bh)))
7477         return FALSE;
7478
7479       h = (struct elf_link_hash_entry *) bh;
7480       h->non_elf = 0;
7481       h->def_regular = 1;
7482       h->type = STT_SECTION;
7483
7484       if (! bfd_elf_link_record_dynamic_symbol (info, h))
7485         return FALSE;
7486
7487       if (! mips_elf_hash_table (info)->use_rld_obj_head)
7488         {
7489           /* __rld_map is a four byte word located in the .data section
7490              and is filled in by the rtld to contain a pointer to
7491              the _r_debug structure. Its symbol value will be set in
7492              _bfd_mips_elf_finish_dynamic_symbol.  */
7493           s = bfd_get_linker_section (abfd, ".rld_map");
7494           BFD_ASSERT (s != NULL);
7495
7496           name = SGI_COMPAT (abfd) ? "__rld_map" : "__RLD_MAP";
7497           bh = NULL;
7498           if (!(_bfd_generic_link_add_one_symbol
7499                 (info, abfd, name, BSF_GLOBAL, s, 0, NULL, FALSE,
7500                  get_elf_backend_data (abfd)->collect, &bh)))
7501             return FALSE;
7502
7503           h = (struct elf_link_hash_entry *) bh;
7504           h->non_elf = 0;
7505           h->def_regular = 1;
7506           h->type = STT_OBJECT;
7507
7508           if (! bfd_elf_link_record_dynamic_symbol (info, h))
7509             return FALSE;
7510           mips_elf_hash_table (info)->rld_symbol = h;
7511         }
7512     }
7513
7514   /* Create the .plt, .rel(a).plt, .dynbss and .rel(a).bss sections.
7515      Also, on VxWorks, create the _PROCEDURE_LINKAGE_TABLE_ symbol.  */
7516   if (!_bfd_elf_create_dynamic_sections (abfd, info))
7517     return FALSE;
7518
7519   /* Cache the sections created above.  */
7520   htab->splt = bfd_get_linker_section (abfd, ".plt");
7521   htab->sdynbss = bfd_get_linker_section (abfd, ".dynbss");
7522   if (htab->is_vxworks)
7523     {
7524       htab->srelbss = bfd_get_linker_section (abfd, ".rela.bss");
7525       htab->srelplt = bfd_get_linker_section (abfd, ".rela.plt");
7526     }
7527   else
7528     htab->srelplt = bfd_get_linker_section (abfd, ".rel.plt");
7529   if (!htab->sdynbss
7530       || (htab->is_vxworks && !htab->srelbss && !info->shared)
7531       || !htab->srelplt
7532       || !htab->splt)
7533     abort ();
7534
7535   /* Do the usual VxWorks handling.  */
7536   if (htab->is_vxworks
7537       && !elf_vxworks_create_dynamic_sections (abfd, info, &htab->srelplt2))
7538     return FALSE;
7539
7540   return TRUE;
7541 }
7542 \f
7543 /* Return true if relocation REL against section SEC is a REL rather than
7544    RELA relocation.  RELOCS is the first relocation in the section and
7545    ABFD is the bfd that contains SEC.  */
7546
7547 static bfd_boolean
7548 mips_elf_rel_relocation_p (bfd *abfd, asection *sec,
7549                            const Elf_Internal_Rela *relocs,
7550                            const Elf_Internal_Rela *rel)
7551 {
7552   Elf_Internal_Shdr *rel_hdr;
7553   const struct elf_backend_data *bed;
7554
7555   /* To determine which flavor of relocation this is, we depend on the
7556      fact that the INPUT_SECTION's REL_HDR is read before RELA_HDR.  */
7557   rel_hdr = elf_section_data (sec)->rel.hdr;
7558   if (rel_hdr == NULL)
7559     return FALSE;
7560   bed = get_elf_backend_data (abfd);
7561   return ((size_t) (rel - relocs)
7562           < NUM_SHDR_ENTRIES (rel_hdr) * bed->s->int_rels_per_ext_rel);
7563 }
7564
7565 /* Read the addend for REL relocation REL, which belongs to bfd ABFD.
7566    HOWTO is the relocation's howto and CONTENTS points to the contents
7567    of the section that REL is against.  */
7568
7569 static bfd_vma
7570 mips_elf_read_rel_addend (bfd *abfd, const Elf_Internal_Rela *rel,
7571                           reloc_howto_type *howto, bfd_byte *contents)
7572 {
7573   bfd_byte *location;
7574   unsigned int r_type;
7575   bfd_vma addend;
7576
7577   r_type = ELF_R_TYPE (abfd, rel->r_info);
7578   location = contents + rel->r_offset;
7579
7580   /* Get the addend, which is stored in the input file.  */
7581   _bfd_mips_elf_reloc_unshuffle (abfd, r_type, FALSE, location);
7582   addend = mips_elf_obtain_contents (howto, rel, abfd, contents);
7583   _bfd_mips_elf_reloc_shuffle (abfd, r_type, FALSE, location);
7584
7585   return addend & howto->src_mask;
7586 }
7587
7588 /* REL is a relocation in ABFD that needs a partnering LO16 relocation
7589    and *ADDEND is the addend for REL itself.  Look for the LO16 relocation
7590    and update *ADDEND with the final addend.  Return true on success
7591    or false if the LO16 could not be found.  RELEND is the exclusive
7592    upper bound on the relocations for REL's section.  */
7593
7594 static bfd_boolean
7595 mips_elf_add_lo16_rel_addend (bfd *abfd,
7596                               const Elf_Internal_Rela *rel,
7597                               const Elf_Internal_Rela *relend,
7598                               bfd_byte *contents, bfd_vma *addend)
7599 {
7600   unsigned int r_type, lo16_type;
7601   const Elf_Internal_Rela *lo16_relocation;
7602   reloc_howto_type *lo16_howto;
7603   bfd_vma l;
7604
7605   r_type = ELF_R_TYPE (abfd, rel->r_info);
7606   if (mips16_reloc_p (r_type))
7607     lo16_type = R_MIPS16_LO16;
7608   else if (micromips_reloc_p (r_type))
7609     lo16_type = R_MICROMIPS_LO16;
7610   else
7611     lo16_type = R_MIPS_LO16;
7612
7613   /* The combined value is the sum of the HI16 addend, left-shifted by
7614      sixteen bits, and the LO16 addend, sign extended.  (Usually, the
7615      code does a `lui' of the HI16 value, and then an `addiu' of the
7616      LO16 value.)
7617
7618      Scan ahead to find a matching LO16 relocation.
7619
7620      According to the MIPS ELF ABI, the R_MIPS_LO16 relocation must
7621      be immediately following.  However, for the IRIX6 ABI, the next
7622      relocation may be a composed relocation consisting of several
7623      relocations for the same address.  In that case, the R_MIPS_LO16
7624      relocation may occur as one of these.  We permit a similar
7625      extension in general, as that is useful for GCC.
7626
7627      In some cases GCC dead code elimination removes the LO16 but keeps
7628      the corresponding HI16.  This is strictly speaking a violation of
7629      the ABI but not immediately harmful.  */
7630   lo16_relocation = mips_elf_next_relocation (abfd, lo16_type, rel, relend);
7631   if (lo16_relocation == NULL)
7632     return FALSE;
7633
7634   /* Obtain the addend kept there.  */
7635   lo16_howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, lo16_type, FALSE);
7636   l = mips_elf_read_rel_addend (abfd, lo16_relocation, lo16_howto, contents);
7637
7638   l <<= lo16_howto->rightshift;
7639   l = _bfd_mips_elf_sign_extend (l, 16);
7640
7641   *addend <<= 16;
7642   *addend += l;
7643   return TRUE;
7644 }
7645
7646 /* Try to read the contents of section SEC in bfd ABFD.  Return true and
7647    store the contents in *CONTENTS on success.  Assume that *CONTENTS
7648    already holds the contents if it is nonull on entry.  */
7649
7650 static bfd_boolean
7651 mips_elf_get_section_contents (bfd *abfd, asection *sec, bfd_byte **contents)
7652 {
7653   if (*contents)
7654     return TRUE;
7655
7656   /* Get cached copy if it exists.  */
7657   if (elf_section_data (sec)->this_hdr.contents != NULL)
7658     {
7659       *contents = elf_section_data (sec)->this_hdr.contents;
7660       return TRUE;
7661     }
7662
7663   return bfd_malloc_and_get_section (abfd, sec, contents);
7664 }
7665
7666 /* Make a new PLT record to keep internal data.  */
7667
7668 static struct plt_entry *
7669 mips_elf_make_plt_record (bfd *abfd)
7670 {
7671   struct plt_entry *entry;
7672
7673   entry = bfd_zalloc (abfd, sizeof (*entry));
7674   if (entry == NULL)
7675     return NULL;
7676
7677   entry->stub_offset = MINUS_ONE;
7678   entry->mips_offset = MINUS_ONE;
7679   entry->comp_offset = MINUS_ONE;
7680   entry->gotplt_index = MINUS_ONE;
7681   return entry;
7682 }
7683
7684 /* Look through the relocs for a section during the first phase, and
7685    allocate space in the global offset table and record the need for
7686    standard MIPS and compressed procedure linkage table entries.  */
7687
7688 bfd_boolean
7689 _bfd_mips_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
7690                             asection *sec, const Elf_Internal_Rela *relocs)
7691 {
7692   const char *name;
7693   bfd *dynobj;
7694   Elf_Internal_Shdr *symtab_hdr;
7695   struct elf_link_hash_entry **sym_hashes;
7696   size_t extsymoff;
7697   const Elf_Internal_Rela *rel;
7698   const Elf_Internal_Rela *rel_end;
7699   asection *sreloc;
7700   const struct elf_backend_data *bed;
7701   struct mips_elf_link_hash_table *htab;
7702   bfd_byte *contents;
7703   bfd_vma addend;
7704   reloc_howto_type *howto;
7705
7706   if (info->relocatable)
7707     return TRUE;
7708
7709   htab = mips_elf_hash_table (info);
7710   BFD_ASSERT (htab != NULL);
7711
7712   dynobj = elf_hash_table (info)->dynobj;
7713   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
7714   sym_hashes = elf_sym_hashes (abfd);
7715   extsymoff = (elf_bad_symtab (abfd)) ? 0 : symtab_hdr->sh_info;
7716
7717   bed = get_elf_backend_data (abfd);
7718   rel_end = relocs + sec->reloc_count * bed->s->int_rels_per_ext_rel;
7719
7720   /* Check for the mips16 stub sections.  */
7721
7722   name = bfd_get_section_name (abfd, sec);
7723   if (FN_STUB_P (name))
7724     {
7725       unsigned long r_symndx;
7726
7727       /* Look at the relocation information to figure out which symbol
7728          this is for.  */
7729
7730       r_symndx = mips16_stub_symndx (bed, sec, relocs, rel_end);
7731       if (r_symndx == 0)
7732         {
7733           (*_bfd_error_handler)
7734             (_("%B: Warning: cannot determine the target function for"
7735                " stub section `%s'"),
7736              abfd, name);
7737           bfd_set_error (bfd_error_bad_value);
7738           return FALSE;
7739         }
7740
7741       if (r_symndx < extsymoff
7742           || sym_hashes[r_symndx - extsymoff] == NULL)
7743         {
7744           asection *o;
7745
7746           /* This stub is for a local symbol.  This stub will only be
7747              needed if there is some relocation in this BFD, other
7748              than a 16 bit function call, which refers to this symbol.  */
7749           for (o = abfd->sections; o != NULL; o = o->next)
7750             {
7751               Elf_Internal_Rela *sec_relocs;
7752               const Elf_Internal_Rela *r, *rend;
7753
7754               /* We can ignore stub sections when looking for relocs.  */
7755               if ((o->flags & SEC_RELOC) == 0
7756                   || o->reloc_count == 0
7757                   || section_allows_mips16_refs_p (o))
7758                 continue;
7759
7760               sec_relocs
7761                 = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
7762                                              info->keep_memory);
7763               if (sec_relocs == NULL)
7764                 return FALSE;
7765
7766               rend = sec_relocs + o->reloc_count;
7767               for (r = sec_relocs; r < rend; r++)
7768                 if (ELF_R_SYM (abfd, r->r_info) == r_symndx
7769                     && !mips16_call_reloc_p (ELF_R_TYPE (abfd, r->r_info)))
7770                   break;
7771
7772               if (elf_section_data (o)->relocs != sec_relocs)
7773                 free (sec_relocs);
7774
7775               if (r < rend)
7776                 break;
7777             }
7778
7779           if (o == NULL)
7780             {
7781               /* There is no non-call reloc for this stub, so we do
7782                  not need it.  Since this function is called before
7783                  the linker maps input sections to output sections, we
7784                  can easily discard it by setting the SEC_EXCLUDE
7785                  flag.  */
7786               sec->flags |= SEC_EXCLUDE;
7787               return TRUE;
7788             }
7789
7790           /* Record this stub in an array of local symbol stubs for
7791              this BFD.  */
7792           if (mips_elf_tdata (abfd)->local_stubs == NULL)
7793             {
7794               unsigned long symcount;
7795               asection **n;
7796               bfd_size_type amt;
7797
7798               if (elf_bad_symtab (abfd))
7799                 symcount = NUM_SHDR_ENTRIES (symtab_hdr);
7800               else
7801                 symcount = symtab_hdr->sh_info;
7802               amt = symcount * sizeof (asection *);
7803               n = bfd_zalloc (abfd, amt);
7804               if (n == NULL)
7805                 return FALSE;
7806               mips_elf_tdata (abfd)->local_stubs = n;
7807             }
7808
7809           sec->flags |= SEC_KEEP;
7810           mips_elf_tdata (abfd)->local_stubs[r_symndx] = sec;
7811
7812           /* We don't need to set mips16_stubs_seen in this case.
7813              That flag is used to see whether we need to look through
7814              the global symbol table for stubs.  We don't need to set
7815              it here, because we just have a local stub.  */
7816         }
7817       else
7818         {
7819           struct mips_elf_link_hash_entry *h;
7820
7821           h = ((struct mips_elf_link_hash_entry *)
7822                sym_hashes[r_symndx - extsymoff]);
7823
7824           while (h->root.root.type == bfd_link_hash_indirect
7825                  || h->root.root.type == bfd_link_hash_warning)
7826             h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
7827
7828           /* H is the symbol this stub is for.  */
7829
7830           /* If we already have an appropriate stub for this function, we
7831              don't need another one, so we can discard this one.  Since
7832              this function is called before the linker maps input sections
7833              to output sections, we can easily discard it by setting the
7834              SEC_EXCLUDE flag.  */
7835           if (h->fn_stub != NULL)
7836             {
7837               sec->flags |= SEC_EXCLUDE;
7838               return TRUE;
7839             }
7840
7841           sec->flags |= SEC_KEEP;
7842           h->fn_stub = sec;
7843           mips_elf_hash_table (info)->mips16_stubs_seen = TRUE;
7844         }
7845     }
7846   else if (CALL_STUB_P (name) || CALL_FP_STUB_P (name))
7847     {
7848       unsigned long r_symndx;
7849       struct mips_elf_link_hash_entry *h;
7850       asection **loc;
7851
7852       /* Look at the relocation information to figure out which symbol
7853          this is for.  */
7854
7855       r_symndx = mips16_stub_symndx (bed, sec, relocs, rel_end);
7856       if (r_symndx == 0)
7857         {
7858           (*_bfd_error_handler)
7859             (_("%B: Warning: cannot determine the target function for"
7860                " stub section `%s'"),
7861              abfd, name);
7862           bfd_set_error (bfd_error_bad_value);
7863           return FALSE;
7864         }
7865
7866       if (r_symndx < extsymoff
7867           || sym_hashes[r_symndx - extsymoff] == NULL)
7868         {
7869           asection *o;
7870
7871           /* This stub is for a local symbol.  This stub will only be
7872              needed if there is some relocation (R_MIPS16_26) in this BFD
7873              that refers to this symbol.  */
7874           for (o = abfd->sections; o != NULL; o = o->next)
7875             {
7876               Elf_Internal_Rela *sec_relocs;
7877               const Elf_Internal_Rela *r, *rend;
7878
7879               /* We can ignore stub sections when looking for relocs.  */
7880               if ((o->flags & SEC_RELOC) == 0
7881                   || o->reloc_count == 0
7882                   || section_allows_mips16_refs_p (o))
7883                 continue;
7884
7885               sec_relocs
7886                 = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
7887                                              info->keep_memory);
7888               if (sec_relocs == NULL)
7889                 return FALSE;
7890
7891               rend = sec_relocs + o->reloc_count;
7892               for (r = sec_relocs; r < rend; r++)
7893                 if (ELF_R_SYM (abfd, r->r_info) == r_symndx
7894                     && ELF_R_TYPE (abfd, r->r_info) == R_MIPS16_26)
7895                     break;
7896
7897               if (elf_section_data (o)->relocs != sec_relocs)
7898                 free (sec_relocs);
7899
7900               if (r < rend)
7901                 break;
7902             }
7903
7904           if (o == NULL)
7905             {
7906               /* There is no non-call reloc for this stub, so we do
7907                  not need it.  Since this function is called before
7908                  the linker maps input sections to output sections, we
7909                  can easily discard it by setting the SEC_EXCLUDE
7910                  flag.  */
7911               sec->flags |= SEC_EXCLUDE;
7912               return TRUE;
7913             }
7914
7915           /* Record this stub in an array of local symbol call_stubs for
7916              this BFD.  */
7917           if (mips_elf_tdata (abfd)->local_call_stubs == NULL)
7918             {
7919               unsigned long symcount;
7920               asection **n;
7921               bfd_size_type amt;
7922
7923               if (elf_bad_symtab (abfd))
7924                 symcount = NUM_SHDR_ENTRIES (symtab_hdr);
7925               else
7926                 symcount = symtab_hdr->sh_info;
7927               amt = symcount * sizeof (asection *);
7928               n = bfd_zalloc (abfd, amt);
7929               if (n == NULL)
7930                 return FALSE;
7931               mips_elf_tdata (abfd)->local_call_stubs = n;
7932             }
7933
7934           sec->flags |= SEC_KEEP;
7935           mips_elf_tdata (abfd)->local_call_stubs[r_symndx] = sec;
7936
7937           /* We don't need to set mips16_stubs_seen in this case.
7938              That flag is used to see whether we need to look through
7939              the global symbol table for stubs.  We don't need to set
7940              it here, because we just have a local stub.  */
7941         }
7942       else
7943         {
7944           h = ((struct mips_elf_link_hash_entry *)
7945                sym_hashes[r_symndx - extsymoff]);
7946
7947           /* H is the symbol this stub is for.  */
7948
7949           if (CALL_FP_STUB_P (name))
7950             loc = &h->call_fp_stub;
7951           else
7952             loc = &h->call_stub;
7953
7954           /* If we already have an appropriate stub for this function, we
7955              don't need another one, so we can discard this one.  Since
7956              this function is called before the linker maps input sections
7957              to output sections, we can easily discard it by setting the
7958              SEC_EXCLUDE flag.  */
7959           if (*loc != NULL)
7960             {
7961               sec->flags |= SEC_EXCLUDE;
7962               return TRUE;
7963             }
7964
7965           sec->flags |= SEC_KEEP;
7966           *loc = sec;
7967           mips_elf_hash_table (info)->mips16_stubs_seen = TRUE;
7968         }
7969     }
7970
7971   sreloc = NULL;
7972   contents = NULL;
7973   for (rel = relocs; rel < rel_end; ++rel)
7974     {
7975       unsigned long r_symndx;
7976       unsigned int r_type;
7977       struct elf_link_hash_entry *h;
7978       bfd_boolean can_make_dynamic_p;
7979       bfd_boolean call_reloc_p;
7980       bfd_boolean constrain_symbol_p;
7981
7982       r_symndx = ELF_R_SYM (abfd, rel->r_info);
7983       r_type = ELF_R_TYPE (abfd, rel->r_info);
7984
7985       if (r_symndx < extsymoff)
7986         h = NULL;
7987       else if (r_symndx >= extsymoff + NUM_SHDR_ENTRIES (symtab_hdr))
7988         {
7989           (*_bfd_error_handler)
7990             (_("%B: Malformed reloc detected for section %s"),
7991              abfd, name);
7992           bfd_set_error (bfd_error_bad_value);
7993           return FALSE;
7994         }
7995       else
7996         {
7997           h = sym_hashes[r_symndx - extsymoff];
7998           if (h != NULL)
7999             {
8000               while (h->root.type == bfd_link_hash_indirect
8001                      || h->root.type == bfd_link_hash_warning)
8002                 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8003
8004               /* PR15323, ref flags aren't set for references in the
8005                  same object.  */
8006               h->root.non_ir_ref = 1;
8007             }
8008         }
8009
8010       /* Set CAN_MAKE_DYNAMIC_P to true if we can convert this
8011          relocation into a dynamic one.  */
8012       can_make_dynamic_p = FALSE;
8013
8014       /* Set CALL_RELOC_P to true if the relocation is for a call,
8015          and if pointer equality therefore doesn't matter.  */
8016       call_reloc_p = FALSE;
8017
8018       /* Set CONSTRAIN_SYMBOL_P if we need to take the relocation
8019          into account when deciding how to define the symbol.
8020          Relocations in nonallocatable sections such as .pdr and
8021          .debug* should have no effect.  */
8022       constrain_symbol_p = ((sec->flags & SEC_ALLOC) != 0);
8023
8024       switch (r_type)
8025         {
8026         case R_MIPS_CALL16:
8027         case R_MIPS_CALL_HI16:
8028         case R_MIPS_CALL_LO16:
8029         case R_MIPS16_CALL16:
8030         case R_MICROMIPS_CALL16:
8031         case R_MICROMIPS_CALL_HI16:
8032         case R_MICROMIPS_CALL_LO16:
8033           call_reloc_p = TRUE;
8034           /* Fall through.  */
8035
8036         case R_MIPS_GOT16:
8037         case R_MIPS_GOT_HI16:
8038         case R_MIPS_GOT_LO16:
8039         case R_MIPS_GOT_PAGE:
8040         case R_MIPS_GOT_OFST:
8041         case R_MIPS_GOT_DISP:
8042         case R_MIPS_TLS_GOTTPREL:
8043         case R_MIPS_TLS_GD:
8044         case R_MIPS_TLS_LDM:
8045         case R_MIPS16_GOT16:
8046         case R_MIPS16_TLS_GOTTPREL:
8047         case R_MIPS16_TLS_GD:
8048         case R_MIPS16_TLS_LDM:
8049         case R_MICROMIPS_GOT16:
8050         case R_MICROMIPS_GOT_HI16:
8051         case R_MICROMIPS_GOT_LO16:
8052         case R_MICROMIPS_GOT_PAGE:
8053         case R_MICROMIPS_GOT_OFST:
8054         case R_MICROMIPS_GOT_DISP:
8055         case R_MICROMIPS_TLS_GOTTPREL:
8056         case R_MICROMIPS_TLS_GD:
8057         case R_MICROMIPS_TLS_LDM:
8058           if (dynobj == NULL)
8059             elf_hash_table (info)->dynobj = dynobj = abfd;
8060           if (!mips_elf_create_got_section (dynobj, info))
8061             return FALSE;
8062           if (htab->is_vxworks && !info->shared)
8063             {
8064               (*_bfd_error_handler)
8065                 (_("%B: GOT reloc at 0x%lx not expected in executables"),
8066                  abfd, (unsigned long) rel->r_offset);
8067               bfd_set_error (bfd_error_bad_value);
8068               return FALSE;
8069             }
8070           can_make_dynamic_p = TRUE;
8071           break;
8072
8073         case R_MIPS_NONE:
8074         case R_MIPS_JALR:
8075         case R_MICROMIPS_JALR:
8076           /* These relocations have empty fields and are purely there to
8077              provide link information.  The symbol value doesn't matter.  */
8078           constrain_symbol_p = FALSE;
8079           break;
8080
8081         case R_MIPS_GPREL16:
8082         case R_MIPS_GPREL32:
8083         case R_MIPS16_GPREL:
8084         case R_MICROMIPS_GPREL16:
8085           /* GP-relative relocations always resolve to a definition in a
8086              regular input file, ignoring the one-definition rule.  This is
8087              important for the GP setup sequence in NewABI code, which
8088              always resolves to a local function even if other relocations
8089              against the symbol wouldn't.  */
8090           constrain_symbol_p = FALSE;
8091           break;
8092
8093         case R_MIPS_32:
8094         case R_MIPS_REL32:
8095         case R_MIPS_64:
8096           /* In VxWorks executables, references to external symbols
8097              must be handled using copy relocs or PLT entries; it is not
8098              possible to convert this relocation into a dynamic one.
8099
8100              For executables that use PLTs and copy-relocs, we have a
8101              choice between converting the relocation into a dynamic
8102              one or using copy relocations or PLT entries.  It is
8103              usually better to do the former, unless the relocation is
8104              against a read-only section.  */
8105           if ((info->shared
8106                || (h != NULL
8107                    && !htab->is_vxworks
8108                    && strcmp (h->root.root.string, "__gnu_local_gp") != 0
8109                    && !(!info->nocopyreloc
8110                         && !PIC_OBJECT_P (abfd)
8111                         && MIPS_ELF_READONLY_SECTION (sec))))
8112               && (sec->flags & SEC_ALLOC) != 0)
8113             {
8114               can_make_dynamic_p = TRUE;
8115               if (dynobj == NULL)
8116                 elf_hash_table (info)->dynobj = dynobj = abfd;
8117             }
8118           break;
8119
8120         case R_MIPS_26:
8121         case R_MIPS_PC16:
8122         case R_MIPS16_26:
8123         case R_MICROMIPS_26_S1:
8124         case R_MICROMIPS_PC7_S1:
8125         case R_MICROMIPS_PC10_S1:
8126         case R_MICROMIPS_PC16_S1:
8127         case R_MICROMIPS_PC23_S2:
8128           call_reloc_p = TRUE;
8129           break;
8130         }
8131
8132       if (h)
8133         {
8134           if (constrain_symbol_p)
8135             {
8136               if (!can_make_dynamic_p)
8137                 ((struct mips_elf_link_hash_entry *) h)->has_static_relocs = 1;
8138
8139               if (!call_reloc_p)
8140                 h->pointer_equality_needed = 1;
8141
8142               /* We must not create a stub for a symbol that has
8143                  relocations related to taking the function's address.
8144                  This doesn't apply to VxWorks, where CALL relocs refer
8145                  to a .got.plt entry instead of a normal .got entry.  */
8146               if (!htab->is_vxworks && (!can_make_dynamic_p || !call_reloc_p))
8147                 ((struct mips_elf_link_hash_entry *) h)->no_fn_stub = TRUE;
8148             }
8149
8150           /* Relocations against the special VxWorks __GOTT_BASE__ and
8151              __GOTT_INDEX__ symbols must be left to the loader.  Allocate
8152              room for them in .rela.dyn.  */
8153           if (is_gott_symbol (info, h))
8154             {
8155               if (sreloc == NULL)
8156                 {
8157                   sreloc = mips_elf_rel_dyn_section (info, TRUE);
8158                   if (sreloc == NULL)
8159                     return FALSE;
8160                 }
8161               mips_elf_allocate_dynamic_relocations (dynobj, info, 1);
8162               if (MIPS_ELF_READONLY_SECTION (sec))
8163                 /* We tell the dynamic linker that there are
8164                    relocations against the text segment.  */
8165                 info->flags |= DF_TEXTREL;
8166             }
8167         }
8168       else if (call_lo16_reloc_p (r_type)
8169                || got_lo16_reloc_p (r_type)
8170                || got_disp_reloc_p (r_type)
8171                || (got16_reloc_p (r_type) && htab->is_vxworks))
8172         {
8173           /* We may need a local GOT entry for this relocation.  We
8174              don't count R_MIPS_GOT_PAGE because we can estimate the
8175              maximum number of pages needed by looking at the size of
8176              the segment.  Similar comments apply to R_MIPS*_GOT16 and
8177              R_MIPS*_CALL16, except on VxWorks, where GOT relocations
8178              always evaluate to "G".  We don't count R_MIPS_GOT_HI16, or
8179              R_MIPS_CALL_HI16 because these are always followed by an
8180              R_MIPS_GOT_LO16 or R_MIPS_CALL_LO16.  */
8181           if (!mips_elf_record_local_got_symbol (abfd, r_symndx,
8182                                                  rel->r_addend, info, r_type))
8183             return FALSE;
8184         }
8185
8186       if (h != NULL
8187           && mips_elf_relocation_needs_la25_stub (abfd, r_type,
8188                                                   ELF_ST_IS_MIPS16 (h->other)))
8189         ((struct mips_elf_link_hash_entry *) h)->has_nonpic_branches = TRUE;
8190
8191       switch (r_type)
8192         {
8193         case R_MIPS_CALL16:
8194         case R_MIPS16_CALL16:
8195         case R_MICROMIPS_CALL16:
8196           if (h == NULL)
8197             {
8198               (*_bfd_error_handler)
8199                 (_("%B: CALL16 reloc at 0x%lx not against global symbol"),
8200                  abfd, (unsigned long) rel->r_offset);
8201               bfd_set_error (bfd_error_bad_value);
8202               return FALSE;
8203             }
8204           /* Fall through.  */
8205
8206         case R_MIPS_CALL_HI16:
8207         case R_MIPS_CALL_LO16:
8208         case R_MICROMIPS_CALL_HI16:
8209         case R_MICROMIPS_CALL_LO16:
8210           if (h != NULL)
8211             {
8212               /* Make sure there is room in the regular GOT to hold the
8213                  function's address.  We may eliminate it in favour of
8214                  a .got.plt entry later; see mips_elf_count_got_symbols.  */
8215               if (!mips_elf_record_global_got_symbol (h, abfd, info, TRUE,
8216                                                       r_type))
8217                 return FALSE;
8218
8219               /* We need a stub, not a plt entry for the undefined
8220                  function.  But we record it as if it needs plt.  See
8221                  _bfd_elf_adjust_dynamic_symbol.  */
8222               h->needs_plt = 1;
8223               h->type = STT_FUNC;
8224             }
8225           break;
8226
8227         case R_MIPS_GOT_PAGE:
8228         case R_MICROMIPS_GOT_PAGE:
8229         case R_MIPS16_GOT16:
8230         case R_MIPS_GOT16:
8231         case R_MIPS_GOT_HI16:
8232         case R_MIPS_GOT_LO16:
8233         case R_MICROMIPS_GOT16:
8234         case R_MICROMIPS_GOT_HI16:
8235         case R_MICROMIPS_GOT_LO16:
8236           if (!h || got_page_reloc_p (r_type))
8237             {
8238               /* This relocation needs (or may need, if h != NULL) a
8239                  page entry in the GOT.  For R_MIPS_GOT_PAGE we do not
8240                  know for sure until we know whether the symbol is
8241                  preemptible.  */
8242               if (mips_elf_rel_relocation_p (abfd, sec, relocs, rel))
8243                 {
8244                   if (!mips_elf_get_section_contents (abfd, sec, &contents))
8245                     return FALSE;
8246                   howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, r_type, FALSE);
8247                   addend = mips_elf_read_rel_addend (abfd, rel,
8248                                                      howto, contents);
8249                   if (got16_reloc_p (r_type))
8250                     mips_elf_add_lo16_rel_addend (abfd, rel, rel_end,
8251                                                   contents, &addend);
8252                   else
8253                     addend <<= howto->rightshift;
8254                 }
8255               else
8256                 addend = rel->r_addend;
8257               if (!mips_elf_record_got_page_ref (info, abfd, r_symndx,
8258                                                  h, addend))
8259                 return FALSE;
8260
8261               if (h)
8262                 {
8263                   struct mips_elf_link_hash_entry *hmips =
8264                     (struct mips_elf_link_hash_entry *) h;
8265
8266                   /* This symbol is definitely not overridable.  */
8267                   if (hmips->root.def_regular
8268                       && ! (info->shared && ! info->symbolic
8269                             && ! hmips->root.forced_local))
8270                     h = NULL;
8271                 }
8272             }
8273           /* If this is a global, overridable symbol, GOT_PAGE will
8274              decay to GOT_DISP, so we'll need a GOT entry for it.  */
8275           /* Fall through.  */
8276
8277         case R_MIPS_GOT_DISP:
8278         case R_MICROMIPS_GOT_DISP:
8279           if (h && !mips_elf_record_global_got_symbol (h, abfd, info,
8280                                                        FALSE, r_type))
8281             return FALSE;
8282           break;
8283
8284         case R_MIPS_TLS_GOTTPREL:
8285         case R_MIPS16_TLS_GOTTPREL:
8286         case R_MICROMIPS_TLS_GOTTPREL:
8287           if (info->shared)
8288             info->flags |= DF_STATIC_TLS;
8289           /* Fall through */
8290
8291         case R_MIPS_TLS_LDM:
8292         case R_MIPS16_TLS_LDM:
8293         case R_MICROMIPS_TLS_LDM:
8294           if (tls_ldm_reloc_p (r_type))
8295             {
8296               r_symndx = STN_UNDEF;
8297               h = NULL;
8298             }
8299           /* Fall through */
8300
8301         case R_MIPS_TLS_GD:
8302         case R_MIPS16_TLS_GD:
8303         case R_MICROMIPS_TLS_GD:
8304           /* This symbol requires a global offset table entry, or two
8305              for TLS GD relocations.  */
8306           if (h != NULL)
8307             {
8308               if (!mips_elf_record_global_got_symbol (h, abfd, info,
8309                                                       FALSE, r_type))
8310                 return FALSE;
8311             }
8312           else
8313             {
8314               if (!mips_elf_record_local_got_symbol (abfd, r_symndx,
8315                                                      rel->r_addend,
8316                                                      info, r_type))
8317                 return FALSE;
8318             }
8319           break;
8320
8321         case R_MIPS_32:
8322         case R_MIPS_REL32:
8323         case R_MIPS_64:
8324           /* In VxWorks executables, references to external symbols
8325              are handled using copy relocs or PLT stubs, so there's
8326              no need to add a .rela.dyn entry for this relocation.  */
8327           if (can_make_dynamic_p)
8328             {
8329               if (sreloc == NULL)
8330                 {
8331                   sreloc = mips_elf_rel_dyn_section (info, TRUE);
8332                   if (sreloc == NULL)
8333                     return FALSE;
8334                 }
8335               if (info->shared && h == NULL)
8336                 {
8337                   /* When creating a shared object, we must copy these
8338                      reloc types into the output file as R_MIPS_REL32
8339                      relocs.  Make room for this reloc in .rel(a).dyn.  */
8340                   mips_elf_allocate_dynamic_relocations (dynobj, info, 1);
8341                   if (MIPS_ELF_READONLY_SECTION (sec))
8342                     /* We tell the dynamic linker that there are
8343                        relocations against the text segment.  */
8344                     info->flags |= DF_TEXTREL;
8345                 }
8346               else
8347                 {
8348                   struct mips_elf_link_hash_entry *hmips;
8349
8350                   /* For a shared object, we must copy this relocation
8351                      unless the symbol turns out to be undefined and
8352                      weak with non-default visibility, in which case
8353                      it will be left as zero.
8354
8355                      We could elide R_MIPS_REL32 for locally binding symbols
8356                      in shared libraries, but do not yet do so.
8357
8358                      For an executable, we only need to copy this
8359                      reloc if the symbol is defined in a dynamic
8360                      object.  */
8361                   hmips = (struct mips_elf_link_hash_entry *) h;
8362                   ++hmips->possibly_dynamic_relocs;
8363                   if (MIPS_ELF_READONLY_SECTION (sec))
8364                     /* We need it to tell the dynamic linker if there
8365                        are relocations against the text segment.  */
8366                     hmips->readonly_reloc = TRUE;
8367                 }
8368             }
8369
8370           if (SGI_COMPAT (abfd))
8371             mips_elf_hash_table (info)->compact_rel_size +=
8372               sizeof (Elf32_External_crinfo);
8373           break;
8374
8375         case R_MIPS_26:
8376         case R_MIPS_GPREL16:
8377         case R_MIPS_LITERAL:
8378         case R_MIPS_GPREL32:
8379         case R_MICROMIPS_26_S1:
8380         case R_MICROMIPS_GPREL16:
8381         case R_MICROMIPS_LITERAL:
8382         case R_MICROMIPS_GPREL7_S2:
8383           if (SGI_COMPAT (abfd))
8384             mips_elf_hash_table (info)->compact_rel_size +=
8385               sizeof (Elf32_External_crinfo);
8386           break;
8387
8388           /* This relocation describes the C++ object vtable hierarchy.
8389              Reconstruct it for later use during GC.  */
8390         case R_MIPS_GNU_VTINHERIT:
8391           if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
8392             return FALSE;
8393           break;
8394
8395           /* This relocation describes which C++ vtable entries are actually
8396              used.  Record for later use during GC.  */
8397         case R_MIPS_GNU_VTENTRY:
8398           BFD_ASSERT (h != NULL);
8399           if (h != NULL
8400               && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset))
8401             return FALSE;
8402           break;
8403
8404         default:
8405           break;
8406         }
8407
8408       /* Record the need for a PLT entry.  At this point we don't know
8409          yet if we are going to create a PLT in the first place, but
8410          we only record whether the relocation requires a standard MIPS
8411          or a compressed code entry anyway.  If we don't make a PLT after
8412          all, then we'll just ignore these arrangements.  Likewise if
8413          a PLT entry is not created because the symbol is satisfied
8414          locally.  */
8415       if (h != NULL
8416           && jal_reloc_p (r_type)
8417           && !SYMBOL_CALLS_LOCAL (info, h))
8418         {
8419           if (h->plt.plist == NULL)
8420             h->plt.plist = mips_elf_make_plt_record (abfd);
8421           if (h->plt.plist == NULL)
8422             return FALSE;
8423
8424           if (r_type == R_MIPS_26)
8425             h->plt.plist->need_mips = TRUE;
8426           else
8427             h->plt.plist->need_comp = TRUE;
8428         }
8429
8430       /* See if this reloc would need to refer to a MIPS16 hard-float stub,
8431          if there is one.  We only need to handle global symbols here;
8432          we decide whether to keep or delete stubs for local symbols
8433          when processing the stub's relocations.  */
8434       if (h != NULL
8435           && !mips16_call_reloc_p (r_type)
8436           && !section_allows_mips16_refs_p (sec))
8437         {
8438           struct mips_elf_link_hash_entry *mh;
8439
8440           mh = (struct mips_elf_link_hash_entry *) h;
8441           mh->need_fn_stub = TRUE;
8442         }
8443
8444       /* Refuse some position-dependent relocations when creating a
8445          shared library.  Do not refuse R_MIPS_32 / R_MIPS_64; they're
8446          not PIC, but we can create dynamic relocations and the result
8447          will be fine.  Also do not refuse R_MIPS_LO16, which can be
8448          combined with R_MIPS_GOT16.  */
8449       if (info->shared)
8450         {
8451           switch (r_type)
8452             {
8453             case R_MIPS16_HI16:
8454             case R_MIPS_HI16:
8455             case R_MIPS_HIGHER:
8456             case R_MIPS_HIGHEST:
8457             case R_MICROMIPS_HI16:
8458             case R_MICROMIPS_HIGHER:
8459             case R_MICROMIPS_HIGHEST:
8460               /* Don't refuse a high part relocation if it's against
8461                  no symbol (e.g. part of a compound relocation).  */
8462               if (r_symndx == STN_UNDEF)
8463                 break;
8464
8465               /* R_MIPS_HI16 against _gp_disp is used for $gp setup,
8466                  and has a special meaning.  */
8467               if (!NEWABI_P (abfd) && h != NULL
8468                   && strcmp (h->root.root.string, "_gp_disp") == 0)
8469                 break;
8470
8471               /* Likewise __GOTT_BASE__ and __GOTT_INDEX__ on VxWorks.  */
8472               if (is_gott_symbol (info, h))
8473                 break;
8474
8475               /* FALLTHROUGH */
8476
8477             case R_MIPS16_26:
8478             case R_MIPS_26:
8479             case R_MICROMIPS_26_S1:
8480               howto = MIPS_ELF_RTYPE_TO_HOWTO (abfd, r_type, FALSE);
8481               (*_bfd_error_handler)
8482                 (_("%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
8483                  abfd, howto->name,
8484                  (h) ? h->root.root.string : "a local symbol");
8485               bfd_set_error (bfd_error_bad_value);
8486               return FALSE;
8487             default:
8488               break;
8489             }
8490         }
8491     }
8492
8493   return TRUE;
8494 }
8495 \f
8496 bfd_boolean
8497 _bfd_mips_relax_section (bfd *abfd, asection *sec,
8498                          struct bfd_link_info *link_info,
8499                          bfd_boolean *again)
8500 {
8501   Elf_Internal_Rela *internal_relocs;
8502   Elf_Internal_Rela *irel, *irelend;
8503   Elf_Internal_Shdr *symtab_hdr;
8504   bfd_byte *contents = NULL;
8505   size_t extsymoff;
8506   bfd_boolean changed_contents = FALSE;
8507   bfd_vma sec_start = sec->output_section->vma + sec->output_offset;
8508   Elf_Internal_Sym *isymbuf = NULL;
8509
8510   /* We are not currently changing any sizes, so only one pass.  */
8511   *again = FALSE;
8512
8513   if (link_info->relocatable)
8514     return TRUE;
8515
8516   internal_relocs = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
8517                                                link_info->keep_memory);
8518   if (internal_relocs == NULL)
8519     return TRUE;
8520
8521   irelend = internal_relocs + sec->reloc_count
8522     * get_elf_backend_data (abfd)->s->int_rels_per_ext_rel;
8523   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
8524   extsymoff = (elf_bad_symtab (abfd)) ? 0 : symtab_hdr->sh_info;
8525
8526   for (irel = internal_relocs; irel < irelend; irel++)
8527     {
8528       bfd_vma symval;
8529       bfd_signed_vma sym_offset;
8530       unsigned int r_type;
8531       unsigned long r_symndx;
8532       asection *sym_sec;
8533       unsigned long instruction;
8534
8535       /* Turn jalr into bgezal, and jr into beq, if they're marked
8536          with a JALR relocation, that indicate where they jump to.
8537          This saves some pipeline bubbles.  */
8538       r_type = ELF_R_TYPE (abfd, irel->r_info);
8539       if (r_type != R_MIPS_JALR)
8540         continue;
8541
8542       r_symndx = ELF_R_SYM (abfd, irel->r_info);
8543       /* Compute the address of the jump target.  */
8544       if (r_symndx >= extsymoff)
8545         {
8546           struct mips_elf_link_hash_entry *h
8547             = ((struct mips_elf_link_hash_entry *)
8548                elf_sym_hashes (abfd) [r_symndx - extsymoff]);
8549
8550           while (h->root.root.type == bfd_link_hash_indirect
8551                  || h->root.root.type == bfd_link_hash_warning)
8552             h = (struct mips_elf_link_hash_entry *) h->root.root.u.i.link;
8553
8554           /* If a symbol is undefined, or if it may be overridden,
8555              skip it.  */
8556           if (! ((h->root.root.type == bfd_link_hash_defined
8557                   || h->root.root.type == bfd_link_hash_defweak)
8558                  && h->root.root.u.def.section)
8559               || (link_info->shared && ! link_info->symbolic
8560                   && !h->root.forced_local))
8561             continue;
8562
8563           sym_sec = h->root.root.u.def.section;
8564           if (sym_sec->output_section)
8565             symval = (h->root.root.u.def.value
8566                       + sym_sec->output_section->vma
8567                       + sym_sec->output_offset);
8568           else
8569             symval = h->root.root.u.def.value;
8570         }
8571       else
8572         {
8573           Elf_Internal_Sym *isym;
8574
8575           /* Read this BFD's symbols if we haven't done so already.  */
8576           if (isymbuf == NULL && symtab_hdr->sh_info != 0)
8577             {
8578               isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
8579               if (isymbuf == NULL)
8580                 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
8581                                                 symtab_hdr->sh_info, 0,
8582                                                 NULL, NULL, NULL);
8583               if (isymbuf == NULL)
8584                 goto relax_return;
8585             }
8586
8587           isym = isymbuf + r_symndx;
8588           if (isym->st_shndx == SHN_UNDEF)
8589             continue;
8590           else if (isym->st_shndx == SHN_ABS)
8591             sym_sec = bfd_abs_section_ptr;
8592           else if (isym->st_shndx == SHN_COMMON)
8593             sym_sec = bfd_com_section_ptr;
8594           else
8595             sym_sec
8596               = bfd_section_from_elf_index (abfd, isym->st_shndx);
8597           symval = isym->st_value
8598             + sym_sec->output_section->vma
8599             + sym_sec->output_offset;
8600         }
8601
8602       /* Compute branch offset, from delay slot of the jump to the
8603          branch target.  */
8604       sym_offset = (symval + irel->r_addend)
8605         - (sec_start + irel->r_offset + 4);
8606
8607       /* Branch offset must be properly aligned.  */
8608       if ((sym_offset & 3) != 0)
8609         continue;
8610
8611       sym_offset >>= 2;
8612
8613       /* Check that it's in range.  */
8614       if (sym_offset < -0x8000 || sym_offset >= 0x8000)
8615         continue;
8616
8617       /* Get the section contents if we haven't done so already.  */
8618       if (!mips_elf_get_section_contents (abfd, sec, &contents))
8619         goto relax_return;
8620
8621       instruction = bfd_get_32 (abfd, contents + irel->r_offset);
8622
8623       /* If it was jalr <reg>, turn it into bgezal $zero, <target>.  */
8624       if ((instruction & 0xfc1fffff) == 0x0000f809)
8625         instruction = 0x04110000;
8626       /* If it was jr <reg>, turn it into b <target>.  */
8627       else if ((instruction & 0xfc1fffff) == 0x00000008)
8628         instruction = 0x10000000;
8629       else
8630         continue;
8631
8632       instruction |= (sym_offset & 0xffff);
8633       bfd_put_32 (abfd, instruction, contents + irel->r_offset);
8634       changed_contents = TRUE;
8635     }
8636
8637   if (contents != NULL
8638       && elf_section_data (sec)->this_hdr.contents != contents)
8639     {
8640       if (!changed_contents && !link_info->keep_memory)
8641         free (contents);
8642       else
8643         {
8644           /* Cache the section contents for elf_link_input_bfd.  */
8645           elf_section_data (sec)->this_hdr.contents = contents;
8646         }
8647     }
8648   return TRUE;
8649
8650  relax_return:
8651   if (contents != NULL
8652       && elf_section_data (sec)->this_hdr.contents != contents)
8653     free (contents);
8654   return FALSE;
8655 }
8656 \f
8657 /* Allocate space for global sym dynamic relocs.  */
8658
8659 static bfd_boolean
8660 allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
8661 {
8662   struct bfd_link_info *info = inf;
8663   bfd *dynobj;
8664   struct mips_elf_link_hash_entry *hmips;
8665   struct mips_elf_link_hash_table *htab;
8666
8667   htab = mips_elf_hash_table (info);
8668   BFD_ASSERT (htab != NULL);
8669
8670   dynobj = elf_hash_table (info)->dynobj;
8671   hmips = (struct mips_elf_link_hash_entry *) h;
8672
8673   /* VxWorks executables are handled elsewhere; we only need to
8674      allocate relocations in shared objects.  */
8675   if (htab->is_vxworks && !info->shared)
8676     return TRUE;
8677
8678   /* Ignore indirect symbols.  All relocations against such symbols
8679      will be redirected to the target symbol.  */
8680   if (h->root.type == bfd_link_hash_indirect)
8681     return TRUE;
8682
8683   /* If this symbol is defined in a dynamic object, or we are creating
8684      a shared library, we will need to copy any R_MIPS_32 or
8685      R_MIPS_REL32 relocs against it into the output file.  */
8686   if (! info->relocatable
8687       && hmips->possibly_dynamic_relocs != 0
8688       && (h->root.type == bfd_link_hash_defweak
8689           || (!h->def_regular && !ELF_COMMON_DEF_P (h))
8690           || info->shared))
8691     {
8692       bfd_boolean do_copy = TRUE;
8693
8694       if (h->root.type == bfd_link_hash_undefweak)
8695         {
8696           /* Do not copy relocations for undefined weak symbols with
8697              non-default visibility.  */
8698           if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
8699             do_copy = FALSE;
8700
8701           /* Make sure undefined weak symbols are output as a dynamic
8702              symbol in PIEs.  */
8703           else if (h->dynindx == -1 && !h->forced_local)
8704             {
8705               if (! bfd_elf_link_record_dynamic_symbol (info, h))
8706                 return FALSE;
8707             }
8708         }
8709
8710       if (do_copy)
8711         {
8712           /* Even though we don't directly need a GOT entry for this symbol,
8713              the SVR4 psABI requires it to have a dynamic symbol table
8714              index greater that DT_MIPS_GOTSYM if there are dynamic
8715              relocations against it.
8716
8717              VxWorks does not enforce the same mapping between the GOT
8718              and the symbol table, so the same requirement does not
8719              apply there.  */
8720           if (!htab->is_vxworks)
8721             {
8722               if (hmips->global_got_area > GGA_RELOC_ONLY)
8723                 hmips->global_got_area = GGA_RELOC_ONLY;
8724               hmips->got_only_for_calls = FALSE;
8725             }
8726
8727           mips_elf_allocate_dynamic_relocations
8728             (dynobj, info, hmips->possibly_dynamic_relocs);
8729           if (hmips->readonly_reloc)
8730             /* We tell the dynamic linker that there are relocations
8731                against the text segment.  */
8732             info->flags |= DF_TEXTREL;
8733         }
8734     }
8735
8736   return TRUE;
8737 }
8738
8739 /* Adjust a symbol defined by a dynamic object and referenced by a
8740    regular object.  The current definition is in some section of the
8741    dynamic object, but we're not including those sections.  We have to
8742    change the definition to something the rest of the link can
8743    understand.  */
8744
8745 bfd_boolean
8746 _bfd_mips_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
8747                                      struct elf_link_hash_entry *h)
8748 {
8749   bfd *dynobj;
8750   struct mips_elf_link_hash_entry *hmips;
8751   struct mips_elf_link_hash_table *htab;
8752
8753   htab = mips_elf_hash_table (info);
8754   BFD_ASSERT (htab != NULL);
8755
8756   dynobj = elf_hash_table (info)->dynobj;
8757   hmips = (struct mips_elf_link_hash_entry *) h;
8758
8759   /* Make sure we know what is going on here.  */
8760   BFD_ASSERT (dynobj != NULL
8761               && (h->needs_plt
8762                   || h->u.weakdef != NULL
8763                   || (h->def_dynamic
8764                       && h->ref_regular
8765                       && !h->def_regular)));
8766
8767   hmips = (struct mips_elf_link_hash_entry *) h;
8768
8769   /* If there are call relocations against an externally-defined symbol,
8770      see whether we can create a MIPS lazy-binding stub for it.  We can
8771      only do this if all references to the function are through call
8772      relocations, and in that case, the traditional lazy-binding stubs
8773      are much more efficient than PLT entries.
8774
8775      Traditional stubs are only available on SVR4 psABI-based systems;
8776      VxWorks always uses PLTs instead.  */
8777   if (!htab->is_vxworks && h->needs_plt && !hmips->no_fn_stub)
8778     {
8779       if (! elf_hash_table (info)->dynamic_sections_created)
8780         return TRUE;
8781
8782       /* If this symbol is not defined in a regular file, then set
8783          the symbol to the stub location.  This is required to make
8784          function pointers compare as equal between the normal
8785          executable and the shared library.  */
8786       if (!h->def_regular)
8787         {
8788           hmips->needs_lazy_stub = TRUE;
8789           htab->lazy_stub_count++;
8790           return TRUE;
8791         }
8792     }
8793   /* As above, VxWorks requires PLT entries for externally-defined
8794      functions that are only accessed through call relocations.
8795
8796      Both VxWorks and non-VxWorks targets also need PLT entries if there
8797      are static-only relocations against an externally-defined function.
8798      This can technically occur for shared libraries if there are
8799      branches to the symbol, although it is unlikely that this will be
8800      used in practice due to the short ranges involved.  It can occur
8801      for any relative or absolute relocation in executables; in that
8802      case, the PLT entry becomes the function's canonical address.  */
8803   else if (((h->needs_plt && !hmips->no_fn_stub)
8804             || (h->type == STT_FUNC && hmips->has_static_relocs))
8805            && htab->use_plts_and_copy_relocs
8806            && !SYMBOL_CALLS_LOCAL (info, h)
8807            && !(ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
8808                 && h->root.type == bfd_link_hash_undefweak))
8809     {
8810       bfd_boolean micromips_p = MICROMIPS_P (info->output_bfd);
8811       bfd_boolean newabi_p = NEWABI_P (info->output_bfd);
8812
8813       /* If this is the first symbol to need a PLT entry, then make some
8814          basic setup.  Also work out PLT entry sizes.  We'll need them
8815          for PLT offset calculations.  */
8816       if (htab->plt_mips_offset + htab->plt_comp_offset == 0)
8817         {
8818           BFD_ASSERT (htab->sgotplt->size == 0);
8819           BFD_ASSERT (htab->plt_got_index == 0);
8820
8821           /* If we're using the PLT additions to the psABI, each PLT
8822              entry is 16 bytes and the PLT0 entry is 32 bytes.
8823              Encourage better cache usage by aligning.  We do this
8824              lazily to avoid pessimizing traditional objects.  */
8825           if (!htab->is_vxworks
8826               && !bfd_set_section_alignment (dynobj, htab->splt, 5))
8827             return FALSE;
8828
8829           /* Make sure that .got.plt is word-aligned.  We do this lazily
8830              for the same reason as above.  */
8831           if (!bfd_set_section_alignment (dynobj, htab->sgotplt,
8832                                           MIPS_ELF_LOG_FILE_ALIGN (dynobj)))
8833             return FALSE;
8834
8835           /* On non-VxWorks targets, the first two entries in .got.plt
8836              are reserved.  */
8837           if (!htab->is_vxworks)
8838             htab->plt_got_index
8839               += (get_elf_backend_data (dynobj)->got_header_size
8840                   / MIPS_ELF_GOT_SIZE (dynobj));
8841
8842           /* On VxWorks, also allocate room for the header's
8843              .rela.plt.unloaded entries.  */
8844           if (htab->is_vxworks && !info->shared)
8845             htab->srelplt2->size += 2 * sizeof (Elf32_External_Rela);
8846
8847           /* Now work out the sizes of individual PLT entries.  */
8848           if (htab->is_vxworks && info->shared)
8849             htab->plt_mips_entry_size
8850               = 4 * ARRAY_SIZE (mips_vxworks_shared_plt_entry);
8851           else if (htab->is_vxworks)
8852             htab->plt_mips_entry_size
8853               = 4 * ARRAY_SIZE (mips_vxworks_exec_plt_entry);
8854           else if (newabi_p)
8855             htab->plt_mips_entry_size
8856               = 4 * ARRAY_SIZE (mips_exec_plt_entry);
8857           else if (!micromips_p)
8858             {
8859               htab->plt_mips_entry_size
8860                 = 4 * ARRAY_SIZE (mips_exec_plt_entry);
8861               htab->plt_comp_entry_size
8862                 = 2 * ARRAY_SIZE (mips16_o32_exec_plt_entry);
8863             }
8864           else if (htab->insn32)
8865             {
8866               htab->plt_mips_entry_size
8867                 = 4 * ARRAY_SIZE (mips_exec_plt_entry);
8868               htab->plt_comp_entry_size
8869                 = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt_entry);
8870             }
8871           else
8872             {
8873               htab->plt_mips_entry_size
8874                 = 4 * ARRAY_SIZE (mips_exec_plt_entry);
8875               htab->plt_comp_entry_size
8876                 = 2 * ARRAY_SIZE (micromips_o32_exec_plt_entry);
8877             }
8878         }
8879
8880       if (h->plt.plist == NULL)
8881         h->plt.plist = mips_elf_make_plt_record (dynobj);
8882       if (h->plt.plist == NULL)
8883         return FALSE;
8884
8885       /* There are no defined MIPS16 or microMIPS PLT entries for VxWorks,
8886          n32 or n64, so always use a standard entry there.
8887
8888          If the symbol has a MIPS16 call stub and gets a PLT entry, then
8889          all MIPS16 calls will go via that stub, and there is no benefit
8890          to having a MIPS16 entry.  And in the case of call_stub a
8891          standard entry actually has to be used as the stub ends with a J
8892          instruction.  */
8893       if (newabi_p
8894           || htab->is_vxworks
8895           || hmips->call_stub
8896           || hmips->call_fp_stub)
8897         {
8898           h->plt.plist->need_mips = TRUE;
8899           h->plt.plist->need_comp = FALSE;
8900         }
8901
8902       /* Otherwise, if there are no direct calls to the function, we
8903          have a free choice of whether to use standard or compressed
8904          entries.  Prefer microMIPS entries if the object is known to
8905          contain microMIPS code, so that it becomes possible to create
8906          pure microMIPS binaries.  Prefer standard entries otherwise,
8907          because MIPS16 ones are no smaller and are usually slower.  */
8908       if (!h->plt.plist->need_mips && !h->plt.plist->need_comp)
8909         {
8910           if (micromips_p)
8911             h->plt.plist->need_comp = TRUE;
8912           else
8913             h->plt.plist->need_mips = TRUE;
8914         }
8915
8916       if (h->plt.plist->need_mips)
8917         {
8918           h->plt.plist->mips_offset = htab->plt_mips_offset;
8919           htab->plt_mips_offset += htab->plt_mips_entry_size;
8920         }
8921       if (h->plt.plist->need_comp)
8922         {
8923           h->plt.plist->comp_offset = htab->plt_comp_offset;
8924           htab->plt_comp_offset += htab->plt_comp_entry_size;
8925         }
8926
8927       /* Reserve the corresponding .got.plt entry now too.  */
8928       h->plt.plist->gotplt_index = htab->plt_got_index++;
8929
8930       /* If the output file has no definition of the symbol, set the
8931          symbol's value to the address of the stub.  */
8932       if (!info->shared && !h->def_regular)
8933         hmips->use_plt_entry = TRUE;
8934
8935       /* Make room for the R_MIPS_JUMP_SLOT relocation.  */
8936       htab->srelplt->size += (htab->is_vxworks
8937                               ? MIPS_ELF_RELA_SIZE (dynobj)
8938                               : MIPS_ELF_REL_SIZE (dynobj));
8939
8940       /* Make room for the .rela.plt.unloaded relocations.  */
8941       if (htab->is_vxworks && !info->shared)
8942         htab->srelplt2->size += 3 * sizeof (Elf32_External_Rela);
8943
8944       /* All relocations against this symbol that could have been made
8945          dynamic will now refer to the PLT entry instead.  */
8946       hmips->possibly_dynamic_relocs = 0;
8947
8948       return TRUE;
8949     }
8950
8951   /* If this is a weak symbol, and there is a real definition, the
8952      processor independent code will have arranged for us to see the
8953      real definition first, and we can just use the same value.  */
8954   if (h->u.weakdef != NULL)
8955     {
8956       BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
8957                   || h->u.weakdef->root.type == bfd_link_hash_defweak);
8958       h->root.u.def.section = h->u.weakdef->root.u.def.section;
8959       h->root.u.def.value = h->u.weakdef->root.u.def.value;
8960       return TRUE;
8961     }
8962
8963   /* Otherwise, there is nothing further to do for symbols defined
8964      in regular objects.  */
8965   if (h->def_regular)
8966     return TRUE;
8967
8968   /* There's also nothing more to do if we'll convert all relocations
8969      against this symbol into dynamic relocations.  */
8970   if (!hmips->has_static_relocs)
8971     return TRUE;
8972
8973   /* We're now relying on copy relocations.  Complain if we have
8974      some that we can't convert.  */
8975   if (!htab->use_plts_and_copy_relocs || info->shared)
8976     {
8977       (*_bfd_error_handler) (_("non-dynamic relocations refer to "
8978                                "dynamic symbol %s"),
8979                              h->root.root.string);
8980       bfd_set_error (bfd_error_bad_value);
8981       return FALSE;
8982     }
8983
8984   /* We must allocate the symbol in our .dynbss section, which will
8985      become part of the .bss section of the executable.  There will be
8986      an entry for this symbol in the .dynsym section.  The dynamic
8987      object will contain position independent code, so all references
8988      from the dynamic object to this symbol will go through the global
8989      offset table.  The dynamic linker will use the .dynsym entry to
8990      determine the address it must put in the global offset table, so
8991      both the dynamic object and the regular object will refer to the
8992      same memory location for the variable.  */
8993
8994   if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
8995     {
8996       if (htab->is_vxworks)
8997         htab->srelbss->size += sizeof (Elf32_External_Rela);
8998       else
8999         mips_elf_allocate_dynamic_relocations (dynobj, info, 1);
9000       h->needs_copy = 1;
9001     }
9002
9003   /* All relocations against this symbol that could have been made
9004      dynamic will now refer to the local copy instead.  */
9005   hmips->possibly_dynamic_relocs = 0;
9006
9007   return _bfd_elf_adjust_dynamic_copy (h, htab->sdynbss);
9008 }
9009 \f
9010 /* This function is called after all the input files have been read,
9011    and the input sections have been assigned to output sections.  We
9012    check for any mips16 stub sections that we can discard.  */
9013
9014 bfd_boolean
9015 _bfd_mips_elf_always_size_sections (bfd *output_bfd,
9016                                     struct bfd_link_info *info)
9017 {
9018   asection *ri;
9019   struct mips_elf_link_hash_table *htab;
9020   struct mips_htab_traverse_info hti;
9021
9022   htab = mips_elf_hash_table (info);
9023   BFD_ASSERT (htab != NULL);
9024
9025   /* The .reginfo section has a fixed size.  */
9026   ri = bfd_get_section_by_name (output_bfd, ".reginfo");
9027   if (ri != NULL)
9028     bfd_set_section_size (output_bfd, ri, sizeof (Elf32_External_RegInfo));
9029
9030   hti.info = info;
9031   hti.output_bfd = output_bfd;
9032   hti.error = FALSE;
9033   mips_elf_link_hash_traverse (mips_elf_hash_table (info),
9034                                mips_elf_check_symbols, &hti);
9035   if (hti.error)
9036     return FALSE;
9037
9038   return TRUE;
9039 }
9040
9041 /* If the link uses a GOT, lay it out and work out its size.  */
9042
9043 static bfd_boolean
9044 mips_elf_lay_out_got (bfd *output_bfd, struct bfd_link_info *info)
9045 {
9046   bfd *dynobj;
9047   asection *s;
9048   struct mips_got_info *g;
9049   bfd_size_type loadable_size = 0;
9050   bfd_size_type page_gotno;
9051   bfd *ibfd;
9052   struct mips_elf_traverse_got_arg tga;
9053   struct mips_elf_link_hash_table *htab;
9054
9055   htab = mips_elf_hash_table (info);
9056   BFD_ASSERT (htab != NULL);
9057
9058   s = htab->sgot;
9059   if (s == NULL)
9060     return TRUE;
9061
9062   dynobj = elf_hash_table (info)->dynobj;
9063   g = htab->got_info;
9064
9065   /* Allocate room for the reserved entries.  VxWorks always reserves
9066      3 entries; other objects only reserve 2 entries.  */
9067   BFD_ASSERT (g->assigned_gotno == 0);
9068   if (htab->is_vxworks)
9069     htab->reserved_gotno = 3;
9070   else
9071     htab->reserved_gotno = 2;
9072   g->local_gotno += htab->reserved_gotno;
9073   g->assigned_gotno = htab->reserved_gotno;
9074
9075   /* Decide which symbols need to go in the global part of the GOT and
9076      count the number of reloc-only GOT symbols.  */
9077   mips_elf_link_hash_traverse (htab, mips_elf_count_got_symbols, info);
9078
9079   if (!mips_elf_resolve_final_got_entries (info, g))
9080     return FALSE;
9081
9082   /* Calculate the total loadable size of the output.  That
9083      will give us the maximum number of GOT_PAGE entries
9084      required.  */
9085   for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link_next)
9086     {
9087       asection *subsection;
9088
9089       for (subsection = ibfd->sections;
9090            subsection;
9091            subsection = subsection->next)
9092         {
9093           if ((subsection->flags & SEC_ALLOC) == 0)
9094             continue;
9095           loadable_size += ((subsection->size + 0xf)
9096                             &~ (bfd_size_type) 0xf);
9097         }
9098     }
9099
9100   if (htab->is_vxworks)
9101     /* There's no need to allocate page entries for VxWorks; R_MIPS*_GOT16
9102        relocations against local symbols evaluate to "G", and the EABI does
9103        not include R_MIPS_GOT_PAGE.  */
9104     page_gotno = 0;
9105   else
9106     /* Assume there are two loadable segments consisting of contiguous
9107        sections.  Is 5 enough?  */
9108     page_gotno = (loadable_size >> 16) + 5;
9109
9110   /* Choose the smaller of the two page estimates; both are intended to be
9111      conservative.  */
9112   if (page_gotno > g->page_gotno)
9113     page_gotno = g->page_gotno;
9114
9115   g->local_gotno += page_gotno;
9116
9117   s->size += g->local_gotno * MIPS_ELF_GOT_SIZE (output_bfd);
9118   s->size += g->global_gotno * MIPS_ELF_GOT_SIZE (output_bfd);
9119   s->size += g->tls_gotno * MIPS_ELF_GOT_SIZE (output_bfd);
9120
9121   /* VxWorks does not support multiple GOTs.  It initializes $gp to
9122      __GOTT_BASE__[__GOTT_INDEX__], the value of which is set by the
9123      dynamic loader.  */
9124   if (!htab->is_vxworks && s->size > MIPS_ELF_GOT_MAX_SIZE (info))
9125     {
9126       if (!mips_elf_multi_got (output_bfd, info, s, page_gotno))
9127         return FALSE;
9128     }
9129   else
9130     {
9131       /* Record that all bfds use G.  This also has the effect of freeing
9132          the per-bfd GOTs, which we no longer need.  */
9133       for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link_next)
9134         if (mips_elf_bfd_got (ibfd, FALSE))
9135           mips_elf_replace_bfd_got (ibfd, g);
9136       mips_elf_replace_bfd_got (output_bfd, g);
9137
9138       /* Set up TLS entries.  */
9139       g->tls_assigned_gotno = g->global_gotno + g->local_gotno;
9140       tga.info = info;
9141       tga.g = g;
9142       tga.value = MIPS_ELF_GOT_SIZE (output_bfd);
9143       htab_traverse (g->got_entries, mips_elf_initialize_tls_index, &tga);
9144       if (!tga.g)
9145         return FALSE;
9146       BFD_ASSERT (g->tls_assigned_gotno
9147                   == g->global_gotno + g->local_gotno + g->tls_gotno);
9148
9149       /* Each VxWorks GOT entry needs an explicit relocation.  */
9150       if (htab->is_vxworks && info->shared)
9151         g->relocs += g->global_gotno + g->local_gotno - htab->reserved_gotno;
9152
9153       /* Allocate room for the TLS relocations.  */
9154       if (g->relocs)
9155         mips_elf_allocate_dynamic_relocations (dynobj, info, g->relocs);
9156     }
9157
9158   return TRUE;
9159 }
9160
9161 /* Estimate the size of the .MIPS.stubs section.  */
9162
9163 static void
9164 mips_elf_estimate_stub_size (bfd *output_bfd, struct bfd_link_info *info)
9165 {
9166   struct mips_elf_link_hash_table *htab;
9167   bfd_size_type dynsymcount;
9168
9169   htab = mips_elf_hash_table (info);
9170   BFD_ASSERT (htab != NULL);
9171
9172   if (htab->lazy_stub_count == 0)
9173     return;
9174
9175   /* IRIX rld assumes that a function stub isn't at the end of the .text
9176      section, so add a dummy entry to the end.  */
9177   htab->lazy_stub_count++;
9178
9179   /* Get a worst-case estimate of the number of dynamic symbols needed.
9180      At this point, dynsymcount does not account for section symbols
9181      and count_section_dynsyms may overestimate the number that will
9182      be needed.  */
9183   dynsymcount = (elf_hash_table (info)->dynsymcount
9184                  + count_section_dynsyms (output_bfd, info));
9185
9186   /* Determine the size of one stub entry.  There's no disadvantage
9187      from using microMIPS code here, so for the sake of pure-microMIPS
9188      binaries we prefer it whenever there's any microMIPS code in
9189      output produced at all.  This has a benefit of stubs being
9190      shorter by 4 bytes each too, unless in the insn32 mode.  */
9191   if (!MICROMIPS_P (output_bfd))
9192     htab->function_stub_size = (dynsymcount > 0x10000
9193                                 ? MIPS_FUNCTION_STUB_BIG_SIZE
9194                                 : MIPS_FUNCTION_STUB_NORMAL_SIZE);
9195   else if (htab->insn32)
9196     htab->function_stub_size = (dynsymcount > 0x10000
9197                                 ? MICROMIPS_INSN32_FUNCTION_STUB_BIG_SIZE
9198                                 : MICROMIPS_INSN32_FUNCTION_STUB_NORMAL_SIZE);
9199   else
9200     htab->function_stub_size = (dynsymcount > 0x10000
9201                                 ? MICROMIPS_FUNCTION_STUB_BIG_SIZE
9202                                 : MICROMIPS_FUNCTION_STUB_NORMAL_SIZE);
9203
9204   htab->sstubs->size = htab->lazy_stub_count * htab->function_stub_size;
9205 }
9206
9207 /* A mips_elf_link_hash_traverse callback for which DATA points to a
9208    mips_htab_traverse_info.  If H needs a traditional MIPS lazy-binding
9209    stub, allocate an entry in the stubs section.  */
9210
9211 static bfd_boolean
9212 mips_elf_allocate_lazy_stub (struct mips_elf_link_hash_entry *h, void *data)
9213 {
9214   struct mips_htab_traverse_info *hti = data;
9215   struct mips_elf_link_hash_table *htab;
9216   struct bfd_link_info *info;
9217   bfd *output_bfd;
9218
9219   info = hti->info;
9220   output_bfd = hti->output_bfd;
9221   htab = mips_elf_hash_table (info);
9222   BFD_ASSERT (htab != NULL);
9223
9224   if (h->needs_lazy_stub)
9225     {
9226       bfd_boolean micromips_p = MICROMIPS_P (output_bfd);
9227       unsigned int other = micromips_p ? STO_MICROMIPS : 0;
9228       bfd_vma isa_bit = micromips_p;
9229
9230       BFD_ASSERT (htab->root.dynobj != NULL);
9231       if (h->root.plt.plist == NULL)
9232         h->root.plt.plist = mips_elf_make_plt_record (htab->sstubs->owner);
9233       if (h->root.plt.plist == NULL)
9234         {
9235           hti->error = TRUE;
9236           return FALSE;
9237         }
9238       h->root.root.u.def.section = htab->sstubs;
9239       h->root.root.u.def.value = htab->sstubs->size + isa_bit;
9240       h->root.plt.plist->stub_offset = htab->sstubs->size;
9241       h->root.other = other;
9242       htab->sstubs->size += htab->function_stub_size;
9243     }
9244   return TRUE;
9245 }
9246
9247 /* Allocate offsets in the stubs section to each symbol that needs one.
9248    Set the final size of the .MIPS.stub section.  */
9249
9250 static bfd_boolean
9251 mips_elf_lay_out_lazy_stubs (struct bfd_link_info *info)
9252 {
9253   bfd *output_bfd = info->output_bfd;
9254   bfd_boolean micromips_p = MICROMIPS_P (output_bfd);
9255   unsigned int other = micromips_p ? STO_MICROMIPS : 0;
9256   bfd_vma isa_bit = micromips_p;
9257   struct mips_elf_link_hash_table *htab;
9258   struct mips_htab_traverse_info hti;
9259   struct elf_link_hash_entry *h;
9260   bfd *dynobj;
9261
9262   htab = mips_elf_hash_table (info);
9263   BFD_ASSERT (htab != NULL);
9264
9265   if (htab->lazy_stub_count == 0)
9266     return TRUE;
9267
9268   htab->sstubs->size = 0;
9269   hti.info = info;
9270   hti.output_bfd = output_bfd;
9271   hti.error = FALSE;
9272   mips_elf_link_hash_traverse (htab, mips_elf_allocate_lazy_stub, &hti);
9273   if (hti.error)
9274     return FALSE;
9275   htab->sstubs->size += htab->function_stub_size;
9276   BFD_ASSERT (htab->sstubs->size
9277               == htab->lazy_stub_count * htab->function_stub_size);
9278
9279   dynobj = elf_hash_table (info)->dynobj;
9280   BFD_ASSERT (dynobj != NULL);
9281   h = _bfd_elf_define_linkage_sym (dynobj, info, htab->sstubs, "_MIPS_STUBS_");
9282   if (h == NULL)
9283     return FALSE;
9284   h->root.u.def.value = isa_bit;
9285   h->other = other;
9286   h->type = STT_FUNC;
9287
9288   return TRUE;
9289 }
9290
9291 /* A mips_elf_link_hash_traverse callback for which DATA points to a
9292    bfd_link_info.  If H uses the address of a PLT entry as the value
9293    of the symbol, then set the entry in the symbol table now.  Prefer
9294    a standard MIPS PLT entry.  */
9295
9296 static bfd_boolean
9297 mips_elf_set_plt_sym_value (struct mips_elf_link_hash_entry *h, void *data)
9298 {
9299   struct bfd_link_info *info = data;
9300   bfd_boolean micromips_p = MICROMIPS_P (info->output_bfd);
9301   struct mips_elf_link_hash_table *htab;
9302   unsigned int other;
9303   bfd_vma isa_bit;
9304   bfd_vma val;
9305
9306   htab = mips_elf_hash_table (info);
9307   BFD_ASSERT (htab != NULL);
9308
9309   if (h->use_plt_entry)
9310     {
9311       BFD_ASSERT (h->root.plt.plist != NULL);
9312       BFD_ASSERT (h->root.plt.plist->mips_offset != MINUS_ONE
9313                   || h->root.plt.plist->comp_offset != MINUS_ONE);
9314
9315       val = htab->plt_header_size;
9316       if (h->root.plt.plist->mips_offset != MINUS_ONE)
9317         {
9318           isa_bit = 0;
9319           val += h->root.plt.plist->mips_offset;
9320           other = 0;
9321         }
9322       else
9323         {
9324           isa_bit = 1;
9325           val += htab->plt_mips_offset + h->root.plt.plist->comp_offset;
9326           other = micromips_p ? STO_MICROMIPS : STO_MIPS16;
9327         }
9328       val += isa_bit;
9329       /* For VxWorks, point at the PLT load stub rather than the lazy
9330          resolution stub; this stub will become the canonical function
9331          address.  */
9332       if (htab->is_vxworks)
9333         val += 8;
9334
9335       h->root.root.u.def.section = htab->splt;
9336       h->root.root.u.def.value = val;
9337       h->root.other = other;
9338     }
9339
9340   return TRUE;
9341 }
9342
9343 /* Set the sizes of the dynamic sections.  */
9344
9345 bfd_boolean
9346 _bfd_mips_elf_size_dynamic_sections (bfd *output_bfd,
9347                                      struct bfd_link_info *info)
9348 {
9349   bfd *dynobj;
9350   asection *s, *sreldyn;
9351   bfd_boolean reltext;
9352   struct mips_elf_link_hash_table *htab;
9353
9354   htab = mips_elf_hash_table (info);
9355   BFD_ASSERT (htab != NULL);
9356   dynobj = elf_hash_table (info)->dynobj;
9357   BFD_ASSERT (dynobj != NULL);
9358
9359   if (elf_hash_table (info)->dynamic_sections_created)
9360     {
9361       /* Set the contents of the .interp section to the interpreter.  */
9362       if (info->executable)
9363         {
9364           s = bfd_get_linker_section (dynobj, ".interp");
9365           BFD_ASSERT (s != NULL);
9366           s->size
9367             = strlen (ELF_DYNAMIC_INTERPRETER (output_bfd)) + 1;
9368           s->contents
9369             = (bfd_byte *) ELF_DYNAMIC_INTERPRETER (output_bfd);
9370         }
9371
9372       /* Figure out the size of the PLT header if we know that we
9373          are using it.  For the sake of cache alignment always use
9374          a standard header whenever any standard entries are present
9375          even if microMIPS entries are present as well.  This also
9376          lets the microMIPS header rely on the value of $v0 only set
9377          by microMIPS entries, for a small size reduction.
9378
9379          Set symbol table entry values for symbols that use the
9380          address of their PLT entry now that we can calculate it.
9381
9382          Also create the _PROCEDURE_LINKAGE_TABLE_ symbol if we
9383          haven't already in _bfd_elf_create_dynamic_sections.  */
9384       if (htab->splt && htab->plt_mips_offset + htab->plt_comp_offset != 0)
9385         {
9386           bfd_boolean micromips_p = (MICROMIPS_P (output_bfd)
9387                                      && !htab->plt_mips_offset);
9388           unsigned int other = micromips_p ? STO_MICROMIPS : 0;
9389           bfd_vma isa_bit = micromips_p;
9390           struct elf_link_hash_entry *h;
9391           bfd_vma size;
9392
9393           BFD_ASSERT (htab->use_plts_and_copy_relocs);
9394           BFD_ASSERT (htab->sgotplt->size == 0);
9395           BFD_ASSERT (htab->splt->size == 0);
9396
9397           if (htab->is_vxworks && info->shared)
9398             size = 4 * ARRAY_SIZE (mips_vxworks_shared_plt0_entry);
9399           else if (htab->is_vxworks)
9400             size = 4 * ARRAY_SIZE (mips_vxworks_exec_plt0_entry);
9401           else if (ABI_64_P (output_bfd))
9402             size = 4 * ARRAY_SIZE (mips_n64_exec_plt0_entry);
9403           else if (ABI_N32_P (output_bfd))
9404             size = 4 * ARRAY_SIZE (mips_n32_exec_plt0_entry);
9405           else if (!micromips_p)
9406             size = 4 * ARRAY_SIZE (mips_o32_exec_plt0_entry);
9407           else if (htab->insn32)
9408             size = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt0_entry);
9409           else
9410             size = 2 * ARRAY_SIZE (micromips_o32_exec_plt0_entry);
9411
9412           htab->plt_header_is_comp = micromips_p;
9413           htab->plt_header_size = size;
9414           htab->splt->size = (size
9415                               + htab->plt_mips_offset
9416                               + htab->plt_comp_offset);
9417           htab->sgotplt->size = (htab->plt_got_index
9418                                  * MIPS_ELF_GOT_SIZE (dynobj));
9419
9420           mips_elf_link_hash_traverse (htab, mips_elf_set_plt_sym_value, info);
9421
9422           if (htab->root.hplt == NULL)
9423             {
9424               h = _bfd_elf_define_linkage_sym (dynobj, info, htab->splt,
9425                                                "_PROCEDURE_LINKAGE_TABLE_");
9426               htab->root.hplt = h;
9427               if (h == NULL)
9428                 return FALSE;
9429             }
9430
9431           h = htab->root.hplt;
9432           h->root.u.def.value = isa_bit;
9433           h->other = other;
9434           h->type = STT_FUNC;
9435         }
9436     }
9437
9438   /* Allocate space for global sym dynamic relocs.  */
9439   elf_link_hash_traverse (&htab->root, allocate_dynrelocs, info);
9440
9441   mips_elf_estimate_stub_size (output_bfd, info);
9442
9443   if (!mips_elf_lay_out_got (output_bfd, info))
9444     return FALSE;
9445
9446   mips_elf_lay_out_lazy_stubs (info);
9447
9448   /* The check_relocs and adjust_dynamic_symbol entry points have
9449      determined the sizes of the various dynamic sections.  Allocate
9450      memory for them.  */
9451   reltext = FALSE;
9452   for (s = dynobj->sections; s != NULL; s = s->next)
9453     {
9454       const char *name;
9455
9456       /* It's OK to base decisions on the section name, because none
9457          of the dynobj section names depend upon the input files.  */
9458       name = bfd_get_section_name (dynobj, s);
9459
9460       if ((s->flags & SEC_LINKER_CREATED) == 0)
9461         continue;
9462
9463       if (CONST_STRNEQ (name, ".rel"))
9464         {
9465           if (s->size != 0)
9466             {
9467               const char *outname;
9468               asection *target;
9469
9470               /* If this relocation section applies to a read only
9471                  section, then we probably need a DT_TEXTREL entry.
9472                  If the relocation section is .rel(a).dyn, we always
9473                  assert a DT_TEXTREL entry rather than testing whether
9474                  there exists a relocation to a read only section or
9475                  not.  */
9476               outname = bfd_get_section_name (output_bfd,
9477                                               s->output_section);
9478               target = bfd_get_section_by_name (output_bfd, outname + 4);
9479               if ((target != NULL
9480                    && (target->flags & SEC_READONLY) != 0
9481                    && (target->flags & SEC_ALLOC) != 0)
9482                   || strcmp (outname, MIPS_ELF_REL_DYN_NAME (info)) == 0)
9483                 reltext = TRUE;
9484
9485               /* We use the reloc_count field as a counter if we need
9486                  to copy relocs into the output file.  */
9487               if (strcmp (name, MIPS_ELF_REL_DYN_NAME (info)) != 0)
9488                 s->reloc_count = 0;
9489
9490               /* If combreloc is enabled, elf_link_sort_relocs() will
9491                  sort relocations, but in a different way than we do,
9492                  and before we're done creating relocations.  Also, it
9493                  will move them around between input sections'
9494                  relocation's contents, so our sorting would be
9495                  broken, so don't let it run.  */
9496               info->combreloc = 0;
9497             }
9498         }
9499       else if (! info->shared
9500                && ! mips_elf_hash_table (info)->use_rld_obj_head
9501                && CONST_STRNEQ (name, ".rld_map"))
9502         {
9503           /* We add a room for __rld_map.  It will be filled in by the
9504              rtld to contain a pointer to the _r_debug structure.  */
9505           s->size += MIPS_ELF_RLD_MAP_SIZE (output_bfd);
9506         }
9507       else if (SGI_COMPAT (output_bfd)
9508                && CONST_STRNEQ (name, ".compact_rel"))
9509         s->size += mips_elf_hash_table (info)->compact_rel_size;
9510       else if (s == htab->splt)
9511         {
9512           /* If the last PLT entry has a branch delay slot, allocate
9513              room for an extra nop to fill the delay slot.  This is
9514              for CPUs without load interlocking.  */
9515           if (! LOAD_INTERLOCKS_P (output_bfd)
9516               && ! htab->is_vxworks && s->size > 0)
9517             s->size += 4;
9518         }
9519       else if (! CONST_STRNEQ (name, ".init")
9520                && s != htab->sgot
9521                && s != htab->sgotplt
9522                && s != htab->sstubs
9523                && s != htab->sdynbss)
9524         {
9525           /* It's not one of our sections, so don't allocate space.  */
9526           continue;
9527         }
9528
9529       if (s->size == 0)
9530         {
9531           s->flags |= SEC_EXCLUDE;
9532           continue;
9533         }
9534
9535       if ((s->flags & SEC_HAS_CONTENTS) == 0)
9536         continue;
9537
9538       /* Allocate memory for the section contents.  */
9539       s->contents = bfd_zalloc (dynobj, s->size);
9540       if (s->contents == NULL)
9541         {
9542           bfd_set_error (bfd_error_no_memory);
9543           return FALSE;
9544         }
9545     }
9546
9547   if (elf_hash_table (info)->dynamic_sections_created)
9548     {
9549       /* Add some entries to the .dynamic section.  We fill in the
9550          values later, in _bfd_mips_elf_finish_dynamic_sections, but we
9551          must add the entries now so that we get the correct size for
9552          the .dynamic section.  */
9553
9554       /* SGI object has the equivalence of DT_DEBUG in the
9555          DT_MIPS_RLD_MAP entry.  This must come first because glibc
9556          only fills in DT_MIPS_RLD_MAP (not DT_DEBUG) and some tools
9557          may only look at the first one they see.  */
9558       if (!info->shared
9559           && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_RLD_MAP, 0))
9560         return FALSE;
9561
9562       /* The DT_DEBUG entry may be filled in by the dynamic linker and
9563          used by the debugger.  */
9564       if (info->executable
9565           && !SGI_COMPAT (output_bfd)
9566           && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_DEBUG, 0))
9567         return FALSE;
9568
9569       if (reltext && (SGI_COMPAT (output_bfd) || htab->is_vxworks))
9570         info->flags |= DF_TEXTREL;
9571
9572       if ((info->flags & DF_TEXTREL) != 0)
9573         {
9574           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_TEXTREL, 0))
9575             return FALSE;
9576
9577           /* Clear the DF_TEXTREL flag.  It will be set again if we
9578              write out an actual text relocation; we may not, because
9579              at this point we do not know whether e.g. any .eh_frame
9580              absolute relocations have been converted to PC-relative.  */
9581           info->flags &= ~DF_TEXTREL;
9582         }
9583
9584       if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTGOT, 0))
9585         return FALSE;
9586
9587       sreldyn = mips_elf_rel_dyn_section (info, FALSE);
9588       if (htab->is_vxworks)
9589         {
9590           /* VxWorks uses .rela.dyn instead of .rel.dyn.  It does not
9591              use any of the DT_MIPS_* tags.  */
9592           if (sreldyn && sreldyn->size > 0)
9593             {
9594               if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELA, 0))
9595                 return FALSE;
9596
9597               if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELASZ, 0))
9598                 return FALSE;
9599
9600               if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELAENT, 0))
9601                 return FALSE;
9602             }
9603         }
9604       else
9605         {
9606           if (sreldyn && sreldyn->size > 0)
9607             {
9608               if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_REL, 0))
9609                 return FALSE;
9610
9611               if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELSZ, 0))
9612                 return FALSE;
9613
9614               if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_RELENT, 0))
9615                 return FALSE;
9616             }
9617
9618           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_RLD_VERSION, 0))
9619             return FALSE;
9620
9621           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_FLAGS, 0))
9622             return FALSE;
9623
9624           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_BASE_ADDRESS, 0))
9625             return FALSE;
9626
9627           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_LOCAL_GOTNO, 0))
9628             return FALSE;
9629
9630           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_SYMTABNO, 0))
9631             return FALSE;
9632
9633           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_UNREFEXTNO, 0))
9634             return FALSE;
9635
9636           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_GOTSYM, 0))
9637             return FALSE;
9638
9639           if (IRIX_COMPAT (dynobj) == ict_irix5
9640               && ! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_HIPAGENO, 0))
9641             return FALSE;
9642
9643           if (IRIX_COMPAT (dynobj) == ict_irix6
9644               && (bfd_get_section_by_name
9645                   (output_bfd, MIPS_ELF_OPTIONS_SECTION_NAME (dynobj)))
9646               && !MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_OPTIONS, 0))
9647             return FALSE;
9648         }
9649       if (htab->splt->size > 0)
9650         {
9651           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTREL, 0))
9652             return FALSE;
9653
9654           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_JMPREL, 0))
9655             return FALSE;
9656
9657           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_PLTRELSZ, 0))
9658             return FALSE;
9659
9660           if (! MIPS_ELF_ADD_DYNAMIC_ENTRY (info, DT_MIPS_PLTGOT, 0))
9661             return FALSE;
9662         }
9663       if (htab->is_vxworks
9664           && !elf_vxworks_add_dynamic_entries (output_bfd, info))
9665         return FALSE;
9666     }
9667
9668   return TRUE;
9669 }
9670 \f
9671 /* REL is a relocation in INPUT_BFD that is being copied to OUTPUT_BFD.
9672    Adjust its R_ADDEND field so that it is correct for the output file.
9673    LOCAL_SYMS and LOCAL_SECTIONS are arrays of INPUT_BFD's local symbols
9674    and sections respectively; both use symbol indexes.  */
9675
9676 static void
9677 mips_elf_adjust_addend (bfd *output_bfd, struct bfd_link_info *info,
9678                         bfd *input_bfd, Elf_Internal_Sym *local_syms,
9679                         asection **local_sections, Elf_Internal_Rela *rel)
9680 {
9681   unsigned int r_type, r_symndx;
9682   Elf_Internal_Sym *sym;
9683   asection *sec;
9684
9685   if (mips_elf_local_relocation_p (input_bfd, rel, local_sections))
9686     {
9687       r_type = ELF_R_TYPE (output_bfd, rel->r_info);
9688       if (gprel16_reloc_p (r_type)
9689           || r_type == R_MIPS_GPREL32
9690           || literal_reloc_p (r_type))
9691         {
9692           rel->r_addend += _bfd_get_gp_value (input_bfd);
9693           rel->r_addend -= _bfd_get_gp_value (output_bfd);
9694         }
9695
9696       r_symndx = ELF_R_SYM (output_bfd, rel->r_info);
9697       sym = local_syms + r_symndx;
9698
9699       /* Adjust REL's addend to account for section merging.  */
9700       if (!info->relocatable)
9701         {
9702           sec = local_sections[r_symndx];
9703           _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
9704         }
9705
9706       /* This would normally be done by the rela_normal code in elflink.c.  */
9707       if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
9708         rel->r_addend += local_sections[r_symndx]->output_offset;
9709     }
9710 }
9711
9712 /* Handle relocations against symbols from removed linkonce sections,
9713    or sections discarded by a linker script.  We use this wrapper around
9714    RELOC_AGAINST_DISCARDED_SECTION to handle triplets of compound relocs
9715    on 64-bit ELF targets.  In this case for any relocation handled, which
9716    always be the first in a triplet, the remaining two have to be processed
9717    together with the first, even if they are R_MIPS_NONE.  It is the symbol
9718    index referred by the first reloc that applies to all the three and the
9719    remaining two never refer to an object symbol.  And it is the final
9720    relocation (the last non-null one) that determines the output field of
9721    the whole relocation so retrieve the corresponding howto structure for
9722    the relocatable field to be cleared by RELOC_AGAINST_DISCARDED_SECTION.
9723
9724    Note that RELOC_AGAINST_DISCARDED_SECTION is a macro that uses "continue"
9725    and therefore requires to be pasted in a loop.  It also defines a block
9726    and does not protect any of its arguments, hence the extra brackets.  */
9727
9728 static void
9729 mips_reloc_against_discarded_section (bfd *output_bfd,
9730                                       struct bfd_link_info *info,
9731                                       bfd *input_bfd, asection *input_section,
9732                                       Elf_Internal_Rela **rel,
9733                                       const Elf_Internal_Rela **relend,
9734                                       bfd_boolean rel_reloc,
9735                                       reloc_howto_type *howto,
9736                                       bfd_byte *contents)
9737 {
9738   const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
9739   int count = bed->s->int_rels_per_ext_rel;
9740   unsigned int r_type;
9741   int i;
9742
9743   for (i = count - 1; i > 0; i--)
9744     {
9745       r_type = ELF_R_TYPE (output_bfd, (*rel)[i].r_info);
9746       if (r_type != R_MIPS_NONE)
9747         {
9748           howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, r_type, !rel_reloc);
9749           break;
9750         }
9751     }
9752   do
9753     {
9754        RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
9755                                         (*rel), count, (*relend),
9756                                         howto, i, contents);
9757     }
9758   while (0);
9759 }
9760
9761 /* Relocate a MIPS ELF section.  */
9762
9763 bfd_boolean
9764 _bfd_mips_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
9765                                 bfd *input_bfd, asection *input_section,
9766                                 bfd_byte *contents, Elf_Internal_Rela *relocs,
9767                                 Elf_Internal_Sym *local_syms,
9768                                 asection **local_sections)
9769 {
9770   Elf_Internal_Rela *rel;
9771   const Elf_Internal_Rela *relend;
9772   bfd_vma addend = 0;
9773   bfd_boolean use_saved_addend_p = FALSE;
9774   const struct elf_backend_data *bed;
9775
9776   bed = get_elf_backend_data (output_bfd);
9777   relend = relocs + input_section->reloc_count * bed->s->int_rels_per_ext_rel;
9778   for (rel = relocs; rel < relend; ++rel)
9779     {
9780       const char *name;
9781       bfd_vma value = 0;
9782       reloc_howto_type *howto;
9783       bfd_boolean cross_mode_jump_p = FALSE;
9784       /* TRUE if the relocation is a RELA relocation, rather than a
9785          REL relocation.  */
9786       bfd_boolean rela_relocation_p = TRUE;
9787       unsigned int r_type = ELF_R_TYPE (output_bfd, rel->r_info);
9788       const char *msg;
9789       unsigned long r_symndx;
9790       asection *sec;
9791       Elf_Internal_Shdr *symtab_hdr;
9792       struct elf_link_hash_entry *h;
9793       bfd_boolean rel_reloc;
9794
9795       rel_reloc = (NEWABI_P (input_bfd)
9796                    && mips_elf_rel_relocation_p (input_bfd, input_section,
9797                                                  relocs, rel));
9798       /* Find the relocation howto for this relocation.  */
9799       howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, r_type, !rel_reloc);
9800
9801       r_symndx = ELF_R_SYM (input_bfd, rel->r_info);
9802       symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
9803       if (mips_elf_local_relocation_p (input_bfd, rel, local_sections))
9804         {
9805           sec = local_sections[r_symndx];
9806           h = NULL;
9807         }
9808       else
9809         {
9810           unsigned long extsymoff;
9811
9812           extsymoff = 0;
9813           if (!elf_bad_symtab (input_bfd))
9814             extsymoff = symtab_hdr->sh_info;
9815           h = elf_sym_hashes (input_bfd) [r_symndx - extsymoff];
9816           while (h->root.type == bfd_link_hash_indirect
9817                  || h->root.type == bfd_link_hash_warning)
9818             h = (struct elf_link_hash_entry *) h->root.u.i.link;
9819
9820           sec = NULL;
9821           if (h->root.type == bfd_link_hash_defined
9822               || h->root.type == bfd_link_hash_defweak)
9823             sec = h->root.u.def.section;
9824         }
9825
9826       if (sec != NULL && discarded_section (sec))
9827         {
9828           mips_reloc_against_discarded_section (output_bfd, info, input_bfd,
9829                                                 input_section, &rel, &relend,
9830                                                 rel_reloc, howto, contents);
9831           continue;
9832         }
9833
9834       if (r_type == R_MIPS_64 && ! NEWABI_P (input_bfd))
9835         {
9836           /* Some 32-bit code uses R_MIPS_64.  In particular, people use
9837              64-bit code, but make sure all their addresses are in the
9838              lowermost or uppermost 32-bit section of the 64-bit address
9839              space.  Thus, when they use an R_MIPS_64 they mean what is
9840              usually meant by R_MIPS_32, with the exception that the
9841              stored value is sign-extended to 64 bits.  */
9842           howto = MIPS_ELF_RTYPE_TO_HOWTO (input_bfd, R_MIPS_32, FALSE);
9843
9844           /* On big-endian systems, we need to lie about the position
9845              of the reloc.  */
9846           if (bfd_big_endian (input_bfd))
9847             rel->r_offset += 4;
9848         }
9849
9850       if (!use_saved_addend_p)
9851         {
9852           /* If these relocations were originally of the REL variety,
9853              we must pull the addend out of the field that will be
9854              relocated.  Otherwise, we simply use the contents of the
9855              RELA relocation.  */
9856           if (mips_elf_rel_relocation_p (input_bfd, input_section,
9857                                          relocs, rel))
9858             {
9859               rela_relocation_p = FALSE;
9860               addend = mips_elf_read_rel_addend (input_bfd, rel,
9861                                                  howto, contents);
9862               if (hi16_reloc_p (r_type)
9863                   || (got16_reloc_p (r_type)
9864                       && mips_elf_local_relocation_p (input_bfd, rel,
9865                                                       local_sections)))
9866                 {
9867                   if (!mips_elf_add_lo16_rel_addend (input_bfd, rel, relend,
9868                                                      contents, &addend))
9869                     {
9870                       if (h)
9871                         name = h->root.root.string;
9872                       else
9873                         name = bfd_elf_sym_name (input_bfd, symtab_hdr,
9874                                                  local_syms + r_symndx,
9875                                                  sec);
9876                       (*_bfd_error_handler)
9877                         (_("%B: Can't find matching LO16 reloc against `%s' for %s at 0x%lx in section `%A'"),
9878                          input_bfd, input_section, name, howto->name,
9879                          rel->r_offset);
9880                     }
9881                 }
9882               else
9883                 addend <<= howto->rightshift;
9884             }
9885           else
9886             addend = rel->r_addend;
9887           mips_elf_adjust_addend (output_bfd, info, input_bfd,
9888                                   local_syms, local_sections, rel);
9889         }
9890
9891       if (info->relocatable)
9892         {
9893           if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd)
9894               && bfd_big_endian (input_bfd))
9895             rel->r_offset -= 4;
9896
9897           if (!rela_relocation_p && rel->r_addend)
9898             {
9899               addend += rel->r_addend;
9900               if (hi16_reloc_p (r_type) || got16_reloc_p (r_type))
9901                 addend = mips_elf_high (addend);
9902               else if (r_type == R_MIPS_HIGHER)
9903                 addend = mips_elf_higher (addend);
9904               else if (r_type == R_MIPS_HIGHEST)
9905                 addend = mips_elf_highest (addend);
9906               else
9907                 addend >>= howto->rightshift;
9908
9909               /* We use the source mask, rather than the destination
9910                  mask because the place to which we are writing will be
9911                  source of the addend in the final link.  */
9912               addend &= howto->src_mask;
9913
9914               if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd))
9915                 /* See the comment above about using R_MIPS_64 in the 32-bit
9916                    ABI.  Here, we need to update the addend.  It would be
9917                    possible to get away with just using the R_MIPS_32 reloc
9918                    but for endianness.  */
9919                 {
9920                   bfd_vma sign_bits;
9921                   bfd_vma low_bits;
9922                   bfd_vma high_bits;
9923
9924                   if (addend & ((bfd_vma) 1 << 31))
9925 #ifdef BFD64
9926                     sign_bits = ((bfd_vma) 1 << 32) - 1;
9927 #else
9928                     sign_bits = -1;
9929 #endif
9930                   else
9931                     sign_bits = 0;
9932
9933                   /* If we don't know that we have a 64-bit type,
9934                      do two separate stores.  */
9935                   if (bfd_big_endian (input_bfd))
9936                     {
9937                       /* Store the sign-bits (which are most significant)
9938                          first.  */
9939                       low_bits = sign_bits;
9940                       high_bits = addend;
9941                     }
9942                   else
9943                     {
9944                       low_bits = addend;
9945                       high_bits = sign_bits;
9946                     }
9947                   bfd_put_32 (input_bfd, low_bits,
9948                               contents + rel->r_offset);
9949                   bfd_put_32 (input_bfd, high_bits,
9950                               contents + rel->r_offset + 4);
9951                   continue;
9952                 }
9953
9954               if (! mips_elf_perform_relocation (info, howto, rel, addend,
9955                                                  input_bfd, input_section,
9956                                                  contents, FALSE))
9957                 return FALSE;
9958             }
9959
9960           /* Go on to the next relocation.  */
9961           continue;
9962         }
9963
9964       /* In the N32 and 64-bit ABIs there may be multiple consecutive
9965          relocations for the same offset.  In that case we are
9966          supposed to treat the output of each relocation as the addend
9967          for the next.  */
9968       if (rel + 1 < relend
9969           && rel->r_offset == rel[1].r_offset
9970           && ELF_R_TYPE (input_bfd, rel[1].r_info) != R_MIPS_NONE)
9971         use_saved_addend_p = TRUE;
9972       else
9973         use_saved_addend_p = FALSE;
9974
9975       /* Figure out what value we are supposed to relocate.  */
9976       switch (mips_elf_calculate_relocation (output_bfd, input_bfd,
9977                                              input_section, info, rel,
9978                                              addend, howto, local_syms,
9979                                              local_sections, &value,
9980                                              &name, &cross_mode_jump_p,
9981                                              use_saved_addend_p))
9982         {
9983         case bfd_reloc_continue:
9984           /* There's nothing to do.  */
9985           continue;
9986
9987         case bfd_reloc_undefined:
9988           /* mips_elf_calculate_relocation already called the
9989              undefined_symbol callback.  There's no real point in
9990              trying to perform the relocation at this point, so we
9991              just skip ahead to the next relocation.  */
9992           continue;
9993
9994         case bfd_reloc_notsupported:
9995           msg = _("internal error: unsupported relocation error");
9996           info->callbacks->warning
9997             (info, msg, name, input_bfd, input_section, rel->r_offset);
9998           return FALSE;
9999
10000         case bfd_reloc_overflow:
10001           if (use_saved_addend_p)
10002             /* Ignore overflow until we reach the last relocation for
10003                a given location.  */
10004             ;
10005           else
10006             {
10007               struct mips_elf_link_hash_table *htab;
10008
10009               htab = mips_elf_hash_table (info);
10010               BFD_ASSERT (htab != NULL);
10011               BFD_ASSERT (name != NULL);
10012               if (!htab->small_data_overflow_reported
10013                   && (gprel16_reloc_p (howto->type)
10014                       || literal_reloc_p (howto->type)))
10015                 {
10016                   msg = _("small-data section exceeds 64KB;"
10017                           " lower small-data size limit (see option -G)");
10018
10019                   htab->small_data_overflow_reported = TRUE;
10020                   (*info->callbacks->einfo) ("%P: %s\n", msg);
10021                 }
10022               if (! ((*info->callbacks->reloc_overflow)
10023                      (info, NULL, name, howto->name, (bfd_vma) 0,
10024                       input_bfd, input_section, rel->r_offset)))
10025                 return FALSE;
10026             }
10027           break;
10028
10029         case bfd_reloc_ok:
10030           break;
10031
10032         case bfd_reloc_outofrange:
10033           if (jal_reloc_p (howto->type))
10034             {
10035               msg = _("JALX to a non-word-aligned address");
10036               info->callbacks->warning
10037                 (info, msg, name, input_bfd, input_section, rel->r_offset);
10038               return FALSE;
10039             }
10040           /* Fall through.  */
10041
10042         default:
10043           abort ();
10044           break;
10045         }
10046
10047       /* If we've got another relocation for the address, keep going
10048          until we reach the last one.  */
10049       if (use_saved_addend_p)
10050         {
10051           addend = value;
10052           continue;
10053         }
10054
10055       if (r_type == R_MIPS_64 && ! NEWABI_P (output_bfd))
10056         /* See the comment above about using R_MIPS_64 in the 32-bit
10057            ABI.  Until now, we've been using the HOWTO for R_MIPS_32;
10058            that calculated the right value.  Now, however, we
10059            sign-extend the 32-bit result to 64-bits, and store it as a
10060            64-bit value.  We are especially generous here in that we
10061            go to extreme lengths to support this usage on systems with
10062            only a 32-bit VMA.  */
10063         {
10064           bfd_vma sign_bits;
10065           bfd_vma low_bits;
10066           bfd_vma high_bits;
10067
10068           if (value & ((bfd_vma) 1 << 31))
10069 #ifdef BFD64
10070             sign_bits = ((bfd_vma) 1 << 32) - 1;
10071 #else
10072             sign_bits = -1;
10073 #endif
10074           else
10075             sign_bits = 0;
10076
10077           /* If we don't know that we have a 64-bit type,
10078              do two separate stores.  */
10079           if (bfd_big_endian (input_bfd))
10080             {
10081               /* Undo what we did above.  */
10082               rel->r_offset -= 4;
10083               /* Store the sign-bits (which are most significant)
10084                  first.  */
10085               low_bits = sign_bits;
10086               high_bits = value;
10087             }
10088           else
10089             {
10090               low_bits = value;
10091               high_bits = sign_bits;
10092             }
10093           bfd_put_32 (input_bfd, low_bits,
10094                       contents + rel->r_offset);
10095           bfd_put_32 (input_bfd, high_bits,
10096                       contents + rel->r_offset + 4);
10097           continue;
10098         }
10099
10100       /* Actually perform the relocation.  */
10101       if (! mips_elf_perform_relocation (info, howto, rel, value,
10102                                          input_bfd, input_section,
10103                                          contents, cross_mode_jump_p))
10104         return FALSE;
10105     }
10106
10107   return TRUE;
10108 }
10109 \f
10110 /* A function that iterates over each entry in la25_stubs and fills
10111    in the code for each one.  DATA points to a mips_htab_traverse_info.  */
10112
10113 static int
10114 mips_elf_create_la25_stub (void **slot, void *data)
10115 {
10116   struct mips_htab_traverse_info *hti;
10117   struct mips_elf_link_hash_table *htab;
10118   struct mips_elf_la25_stub *stub;
10119   asection *s;
10120   bfd_byte *loc;
10121   bfd_vma offset, target, target_high, target_low;
10122
10123   stub = (struct mips_elf_la25_stub *) *slot;
10124   hti = (struct mips_htab_traverse_info *) data;
10125   htab = mips_elf_hash_table (hti->info);
10126   BFD_ASSERT (htab != NULL);
10127
10128   /* Create the section contents, if we haven't already.  */
10129   s = stub->stub_section;
10130   loc = s->contents;
10131   if (loc == NULL)
10132     {
10133       loc = bfd_malloc (s->size);
10134       if (loc == NULL)
10135         {
10136           hti->error = TRUE;
10137           return FALSE;
10138         }
10139       s->contents = loc;
10140     }
10141
10142   /* Work out where in the section this stub should go.  */
10143   offset = stub->offset;
10144
10145   /* Work out the target address.  */
10146   target = mips_elf_get_la25_target (stub, &s);
10147   target += s->output_section->vma + s->output_offset;
10148
10149   target_high = ((target + 0x8000) >> 16) & 0xffff;
10150   target_low = (target & 0xffff);
10151
10152   if (stub->stub_section != htab->strampoline)
10153     {
10154       /* This is a simple LUI/ADDIU stub.  Zero out the beginning
10155          of the section and write the two instructions at the end.  */
10156       memset (loc, 0, offset);
10157       loc += offset;
10158       if (ELF_ST_IS_MICROMIPS (stub->h->root.other))
10159         {
10160           bfd_put_micromips_32 (hti->output_bfd,
10161                                 LA25_LUI_MICROMIPS (target_high),
10162                                 loc);
10163           bfd_put_micromips_32 (hti->output_bfd,
10164                                 LA25_ADDIU_MICROMIPS (target_low),
10165                                 loc + 4);
10166         }
10167       else
10168         {
10169           bfd_put_32 (hti->output_bfd, LA25_LUI (target_high), loc);
10170           bfd_put_32 (hti->output_bfd, LA25_ADDIU (target_low), loc + 4);
10171         }
10172     }
10173   else
10174     {
10175       /* This is trampoline.  */
10176       loc += offset;
10177       if (ELF_ST_IS_MICROMIPS (stub->h->root.other))
10178         {
10179           bfd_put_micromips_32 (hti->output_bfd,
10180                                 LA25_LUI_MICROMIPS (target_high), loc);
10181           bfd_put_micromips_32 (hti->output_bfd,
10182                                 LA25_J_MICROMIPS (target), loc + 4);
10183           bfd_put_micromips_32 (hti->output_bfd,
10184                                 LA25_ADDIU_MICROMIPS (target_low), loc + 8);
10185           bfd_put_32 (hti->output_bfd, 0, loc + 12);
10186         }
10187       else
10188         {
10189           bfd_put_32 (hti->output_bfd, LA25_LUI (target_high), loc);
10190           bfd_put_32 (hti->output_bfd, LA25_J (target), loc + 4);
10191           bfd_put_32 (hti->output_bfd, LA25_ADDIU (target_low), loc + 8);
10192           bfd_put_32 (hti->output_bfd, 0, loc + 12);
10193         }
10194     }
10195   return TRUE;
10196 }
10197
10198 /* If NAME is one of the special IRIX6 symbols defined by the linker,
10199    adjust it appropriately now.  */
10200
10201 static void
10202 mips_elf_irix6_finish_dynamic_symbol (bfd *abfd ATTRIBUTE_UNUSED,
10203                                       const char *name, Elf_Internal_Sym *sym)
10204 {
10205   /* The linker script takes care of providing names and values for
10206      these, but we must place them into the right sections.  */
10207   static const char* const text_section_symbols[] = {
10208     "_ftext",
10209     "_etext",
10210     "__dso_displacement",
10211     "__elf_header",
10212     "__program_header_table",
10213     NULL
10214   };
10215
10216   static const char* const data_section_symbols[] = {
10217     "_fdata",
10218     "_edata",
10219     "_end",
10220     "_fbss",
10221     NULL
10222   };
10223
10224   const char* const *p;
10225   int i;
10226
10227   for (i = 0; i < 2; ++i)
10228     for (p = (i == 0) ? text_section_symbols : data_section_symbols;
10229          *p;
10230          ++p)
10231       if (strcmp (*p, name) == 0)
10232         {
10233           /* All of these symbols are given type STT_SECTION by the
10234              IRIX6 linker.  */
10235           sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
10236           sym->st_other = STO_PROTECTED;
10237
10238           /* The IRIX linker puts these symbols in special sections.  */
10239           if (i == 0)
10240             sym->st_shndx = SHN_MIPS_TEXT;
10241           else
10242             sym->st_shndx = SHN_MIPS_DATA;
10243
10244           break;
10245         }
10246 }
10247
10248 /* Finish up dynamic symbol handling.  We set the contents of various
10249    dynamic sections here.  */
10250
10251 bfd_boolean
10252 _bfd_mips_elf_finish_dynamic_symbol (bfd *output_bfd,
10253                                      struct bfd_link_info *info,
10254                                      struct elf_link_hash_entry *h,
10255                                      Elf_Internal_Sym *sym)
10256 {
10257   bfd *dynobj;
10258   asection *sgot;
10259   struct mips_got_info *g, *gg;
10260   const char *name;
10261   int idx;
10262   struct mips_elf_link_hash_table *htab;
10263   struct mips_elf_link_hash_entry *hmips;
10264
10265   htab = mips_elf_hash_table (info);
10266   BFD_ASSERT (htab != NULL);
10267   dynobj = elf_hash_table (info)->dynobj;
10268   hmips = (struct mips_elf_link_hash_entry *) h;
10269
10270   BFD_ASSERT (!htab->is_vxworks);
10271
10272   if (h->plt.plist != NULL
10273       && (h->plt.plist->mips_offset != MINUS_ONE
10274           || h->plt.plist->comp_offset != MINUS_ONE))
10275     {
10276       /* We've decided to create a PLT entry for this symbol.  */
10277       bfd_byte *loc;
10278       bfd_vma header_address, got_address;
10279       bfd_vma got_address_high, got_address_low, load;
10280       bfd_vma got_index;
10281       bfd_vma isa_bit;
10282
10283       got_index = h->plt.plist->gotplt_index;
10284
10285       BFD_ASSERT (htab->use_plts_and_copy_relocs);
10286       BFD_ASSERT (h->dynindx != -1);
10287       BFD_ASSERT (htab->splt != NULL);
10288       BFD_ASSERT (got_index != MINUS_ONE);
10289       BFD_ASSERT (!h->def_regular);
10290
10291       /* Calculate the address of the PLT header.  */
10292       isa_bit = htab->plt_header_is_comp;
10293       header_address = (htab->splt->output_section->vma
10294                         + htab->splt->output_offset + isa_bit);
10295
10296       /* Calculate the address of the .got.plt entry.  */
10297       got_address = (htab->sgotplt->output_section->vma
10298                      + htab->sgotplt->output_offset
10299                      + got_index * MIPS_ELF_GOT_SIZE (dynobj));
10300
10301       got_address_high = ((got_address + 0x8000) >> 16) & 0xffff;
10302       got_address_low = got_address & 0xffff;
10303
10304       /* Initially point the .got.plt entry at the PLT header.  */
10305       loc = (htab->sgotplt->contents + got_index * MIPS_ELF_GOT_SIZE (dynobj));
10306       if (ABI_64_P (output_bfd))
10307         bfd_put_64 (output_bfd, header_address, loc);
10308       else
10309         bfd_put_32 (output_bfd, header_address, loc);
10310
10311       /* Now handle the PLT itself.  First the standard entry (the order
10312          does not matter, we just have to pick one).  */
10313       if (h->plt.plist->mips_offset != MINUS_ONE)
10314         {
10315           const bfd_vma *plt_entry;
10316           bfd_vma plt_offset;
10317
10318           plt_offset = htab->plt_header_size + h->plt.plist->mips_offset;
10319
10320           BFD_ASSERT (plt_offset <= htab->splt->size);
10321
10322           /* Find out where the .plt entry should go.  */
10323           loc = htab->splt->contents + plt_offset;
10324
10325           /* Pick the load opcode.  */
10326           load = MIPS_ELF_LOAD_WORD (output_bfd);
10327
10328           /* Fill in the PLT entry itself.  */
10329           plt_entry = mips_exec_plt_entry;
10330           bfd_put_32 (output_bfd, plt_entry[0] | got_address_high, loc);
10331           bfd_put_32 (output_bfd, plt_entry[1] | got_address_low | load,
10332                       loc + 4);
10333
10334           if (! LOAD_INTERLOCKS_P (output_bfd))
10335             {
10336               bfd_put_32 (output_bfd, plt_entry[2] | got_address_low, loc + 8);
10337               bfd_put_32 (output_bfd, plt_entry[3], loc + 12);
10338             }
10339           else
10340             {
10341               bfd_put_32 (output_bfd, plt_entry[3], loc + 8);
10342               bfd_put_32 (output_bfd, plt_entry[2] | got_address_low,
10343                           loc + 12);
10344             }
10345         }
10346
10347       /* Now the compressed entry.  They come after any standard ones.  */
10348       if (h->plt.plist->comp_offset != MINUS_ONE)
10349         {
10350           bfd_vma plt_offset;
10351
10352           plt_offset = (htab->plt_header_size + htab->plt_mips_offset
10353                         + h->plt.plist->comp_offset);
10354
10355           BFD_ASSERT (plt_offset <= htab->splt->size);
10356
10357           /* Find out where the .plt entry should go.  */
10358           loc = htab->splt->contents + plt_offset;
10359
10360           /* Fill in the PLT entry itself.  */
10361           if (!MICROMIPS_P (output_bfd))
10362             {
10363               const bfd_vma *plt_entry = mips16_o32_exec_plt_entry;
10364
10365               bfd_put_16 (output_bfd, plt_entry[0], loc);
10366               bfd_put_16 (output_bfd, plt_entry[1], loc + 2);
10367               bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
10368               bfd_put_16 (output_bfd, plt_entry[3], loc + 6);
10369               bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
10370               bfd_put_16 (output_bfd, plt_entry[5], loc + 10);
10371               bfd_put_32 (output_bfd, got_address, loc + 12);
10372             }
10373           else if (htab->insn32)
10374             {
10375               const bfd_vma *plt_entry = micromips_insn32_o32_exec_plt_entry;
10376
10377               bfd_put_16 (output_bfd, plt_entry[0], loc);
10378               bfd_put_16 (output_bfd, got_address_high, loc + 2);
10379               bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
10380               bfd_put_16 (output_bfd, got_address_low, loc + 6);
10381               bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
10382               bfd_put_16 (output_bfd, plt_entry[5], loc + 10);
10383               bfd_put_16 (output_bfd, plt_entry[6], loc + 12);
10384               bfd_put_16 (output_bfd, got_address_low, loc + 14);
10385             }
10386           else
10387             {
10388               const bfd_vma *plt_entry = micromips_o32_exec_plt_entry;
10389               bfd_signed_vma gotpc_offset;
10390               bfd_vma loc_address;
10391
10392               BFD_ASSERT (got_address % 4 == 0);
10393
10394               loc_address = (htab->splt->output_section->vma
10395                              + htab->splt->output_offset + plt_offset);
10396               gotpc_offset = got_address - ((loc_address | 3) ^ 3);
10397
10398               /* ADDIUPC has a span of +/-16MB, check we're in range.  */
10399               if (gotpc_offset + 0x1000000 >= 0x2000000)
10400                 {
10401                   (*_bfd_error_handler)
10402                     (_("%B: `%A' offset of %ld from `%A' "
10403                        "beyond the range of ADDIUPC"),
10404                      output_bfd,
10405                      htab->sgotplt->output_section,
10406                      htab->splt->output_section,
10407                      (long) gotpc_offset);
10408                   bfd_set_error (bfd_error_no_error);
10409                   return FALSE;
10410                 }
10411               bfd_put_16 (output_bfd,
10412                           plt_entry[0] | ((gotpc_offset >> 18) & 0x7f), loc);
10413               bfd_put_16 (output_bfd, (gotpc_offset >> 2) & 0xffff, loc + 2);
10414               bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
10415               bfd_put_16 (output_bfd, plt_entry[3], loc + 6);
10416               bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
10417               bfd_put_16 (output_bfd, plt_entry[5], loc + 10);
10418             }
10419         }
10420
10421       /* Emit an R_MIPS_JUMP_SLOT relocation against the .got.plt entry.  */
10422       mips_elf_output_dynamic_relocation (output_bfd, htab->srelplt,
10423                                           got_index - 2, h->dynindx,
10424                                           R_MIPS_JUMP_SLOT, got_address);
10425
10426       /* We distinguish between PLT entries and lazy-binding stubs by
10427          giving the former an st_other value of STO_MIPS_PLT.  Set the
10428          flag and leave the value if there are any relocations in the
10429          binary where pointer equality matters.  */
10430       sym->st_shndx = SHN_UNDEF;
10431       if (h->pointer_equality_needed)
10432         sym->st_other = ELF_ST_SET_MIPS_PLT (sym->st_other);
10433       else
10434         {
10435           sym->st_value = 0;
10436           sym->st_other = 0;
10437         }
10438     }
10439
10440   if (h->plt.plist != NULL && h->plt.plist->stub_offset != MINUS_ONE)
10441     {
10442       /* We've decided to create a lazy-binding stub.  */
10443       bfd_boolean micromips_p = MICROMIPS_P (output_bfd);
10444       unsigned int other = micromips_p ? STO_MICROMIPS : 0;
10445       bfd_vma stub_size = htab->function_stub_size;
10446       bfd_byte stub[MIPS_FUNCTION_STUB_BIG_SIZE];
10447       bfd_vma isa_bit = micromips_p;
10448       bfd_vma stub_big_size;
10449
10450       if (!micromips_p)
10451         stub_big_size = MIPS_FUNCTION_STUB_BIG_SIZE;
10452       else if (htab->insn32)
10453         stub_big_size = MICROMIPS_INSN32_FUNCTION_STUB_BIG_SIZE;
10454       else
10455         stub_big_size = MICROMIPS_FUNCTION_STUB_BIG_SIZE;
10456
10457       /* This symbol has a stub.  Set it up.  */
10458
10459       BFD_ASSERT (h->dynindx != -1);
10460
10461       BFD_ASSERT (stub_size == stub_big_size || h->dynindx <= 0xffff);
10462
10463       /* Values up to 2^31 - 1 are allowed.  Larger values would cause
10464          sign extension at runtime in the stub, resulting in a negative
10465          index value.  */
10466       if (h->dynindx & ~0x7fffffff)
10467         return FALSE;
10468
10469       /* Fill the stub.  */
10470       if (micromips_p)
10471         {
10472           idx = 0;
10473           bfd_put_micromips_32 (output_bfd, STUB_LW_MICROMIPS (output_bfd),
10474                                 stub + idx);
10475           idx += 4;
10476           if (htab->insn32)
10477             {
10478               bfd_put_micromips_32 (output_bfd,
10479                                     STUB_MOVE32_MICROMIPS (output_bfd),
10480                                     stub + idx);
10481               idx += 4;
10482             }
10483           else
10484             {
10485               bfd_put_16 (output_bfd, STUB_MOVE_MICROMIPS, stub + idx);
10486               idx += 2;
10487             }
10488           if (stub_size == stub_big_size)
10489             {
10490               long dynindx_hi = (h->dynindx >> 16) & 0x7fff;
10491
10492               bfd_put_micromips_32 (output_bfd,
10493                                     STUB_LUI_MICROMIPS (dynindx_hi),
10494                                     stub + idx);
10495               idx += 4;
10496             }
10497           if (htab->insn32)
10498             {
10499               bfd_put_micromips_32 (output_bfd, STUB_JALR32_MICROMIPS,
10500                                     stub + idx);
10501               idx += 4;
10502             }
10503           else
10504             {
10505               bfd_put_16 (output_bfd, STUB_JALR_MICROMIPS, stub + idx);
10506               idx += 2;
10507             }
10508
10509           /* If a large stub is not required and sign extension is not a
10510              problem, then use legacy code in the stub.  */
10511           if (stub_size == stub_big_size)
10512             bfd_put_micromips_32 (output_bfd,
10513                                   STUB_ORI_MICROMIPS (h->dynindx & 0xffff),
10514                                   stub + idx);
10515           else if (h->dynindx & ~0x7fff)
10516             bfd_put_micromips_32 (output_bfd,
10517                                   STUB_LI16U_MICROMIPS (h->dynindx & 0xffff),
10518                                   stub + idx);
10519           else
10520             bfd_put_micromips_32 (output_bfd,
10521                                   STUB_LI16S_MICROMIPS (output_bfd,
10522                                                         h->dynindx),
10523                                   stub + idx);
10524         }
10525       else
10526         {
10527           idx = 0;
10528           bfd_put_32 (output_bfd, STUB_LW (output_bfd), stub + idx);
10529           idx += 4;
10530           bfd_put_32 (output_bfd, STUB_MOVE (output_bfd), stub + idx);
10531           idx += 4;
10532           if (stub_size == stub_big_size)
10533             {
10534               bfd_put_32 (output_bfd, STUB_LUI ((h->dynindx >> 16) & 0x7fff),
10535                           stub + idx);
10536               idx += 4;
10537             }
10538           bfd_put_32 (output_bfd, STUB_JALR, stub + idx);
10539           idx += 4;
10540
10541           /* If a large stub is not required and sign extension is not a
10542              problem, then use legacy code in the stub.  */
10543           if (stub_size == stub_big_size)
10544             bfd_put_32 (output_bfd, STUB_ORI (h->dynindx & 0xffff),
10545                         stub + idx);
10546           else if (h->dynindx & ~0x7fff)
10547             bfd_put_32 (output_bfd, STUB_LI16U (h->dynindx & 0xffff),
10548                         stub + idx);
10549           else
10550             bfd_put_32 (output_bfd, STUB_LI16S (output_bfd, h->dynindx),
10551                         stub + idx);
10552         }
10553
10554       BFD_ASSERT (h->plt.plist->stub_offset <= htab->sstubs->size);
10555       memcpy (htab->sstubs->contents + h->plt.plist->stub_offset,
10556               stub, stub_size);
10557
10558       /* Mark the symbol as undefined.  stub_offset != -1 occurs
10559          only for the referenced symbol.  */
10560       sym->st_shndx = SHN_UNDEF;
10561
10562       /* The run-time linker uses the st_value field of the symbol
10563          to reset the global offset table entry for this external
10564          to its stub address when unlinking a shared object.  */
10565       sym->st_value = (htab->sstubs->output_section->vma
10566                        + htab->sstubs->output_offset
10567                        + h->plt.plist->stub_offset
10568                        + isa_bit);
10569       sym->st_other = other;
10570     }
10571
10572   /* If we have a MIPS16 function with a stub, the dynamic symbol must
10573      refer to the stub, since only the stub uses the standard calling
10574      conventions.  */
10575   if (h->dynindx != -1 && hmips->fn_stub != NULL)
10576     {
10577       BFD_ASSERT (hmips->need_fn_stub);
10578       sym->st_value = (hmips->fn_stub->output_section->vma
10579                        + hmips->fn_stub->output_offset);
10580       sym->st_size = hmips->fn_stub->size;
10581       sym->st_other = ELF_ST_VISIBILITY (sym->st_other);
10582     }
10583
10584   BFD_ASSERT (h->dynindx != -1
10585               || h->forced_local);
10586
10587   sgot = htab->sgot;
10588   g = htab->got_info;
10589   BFD_ASSERT (g != NULL);
10590
10591   /* Run through the global symbol table, creating GOT entries for all
10592      the symbols that need them.  */
10593   if (hmips->global_got_area != GGA_NONE)
10594     {
10595       bfd_vma offset;
10596       bfd_vma value;
10597
10598       value = sym->st_value;
10599       offset = mips_elf_primary_global_got_index (output_bfd, info, h);
10600       MIPS_ELF_PUT_WORD (output_bfd, value, sgot->contents + offset);
10601     }
10602
10603   if (hmips->global_got_area != GGA_NONE && g->next)
10604     {
10605       struct mips_got_entry e, *p;
10606       bfd_vma entry;
10607       bfd_vma offset;
10608
10609       gg = g;
10610
10611       e.abfd = output_bfd;
10612       e.symndx = -1;
10613       e.d.h = hmips;
10614       e.tls_type = GOT_TLS_NONE;
10615
10616       for (g = g->next; g->next != gg; g = g->next)
10617         {
10618           if (g->got_entries
10619               && (p = (struct mips_got_entry *) htab_find (g->got_entries,
10620                                                            &e)))
10621             {
10622               offset = p->gotidx;
10623               BFD_ASSERT (offset > 0 && offset < htab->sgot->size);
10624               if (info->shared
10625                   || (elf_hash_table (info)->dynamic_sections_created
10626                       && p->d.h != NULL
10627                       && p->d.h->root.def_dynamic
10628                       && !p->d.h->root.def_regular))
10629                 {
10630                   /* Create an R_MIPS_REL32 relocation for this entry.  Due to
10631                      the various compatibility problems, it's easier to mock
10632                      up an R_MIPS_32 or R_MIPS_64 relocation and leave
10633                      mips_elf_create_dynamic_relocation to calculate the
10634                      appropriate addend.  */
10635                   Elf_Internal_Rela rel[3];
10636
10637                   memset (rel, 0, sizeof (rel));
10638                   if (ABI_64_P (output_bfd))
10639                     rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_64);
10640                   else
10641                     rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_32);
10642                   rel[0].r_offset = rel[1].r_offset = rel[2].r_offset = offset;
10643
10644                   entry = 0;
10645                   if (! (mips_elf_create_dynamic_relocation
10646                          (output_bfd, info, rel,
10647                           e.d.h, NULL, sym->st_value, &entry, sgot)))
10648                     return FALSE;
10649                 }
10650               else
10651                 entry = sym->st_value;
10652               MIPS_ELF_PUT_WORD (output_bfd, entry, sgot->contents + offset);
10653             }
10654         }
10655     }
10656
10657   /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute.  */
10658   name = h->root.root.string;
10659   if (h == elf_hash_table (info)->hdynamic
10660       || h == elf_hash_table (info)->hgot)
10661     sym->st_shndx = SHN_ABS;
10662   else if (strcmp (name, "_DYNAMIC_LINK") == 0
10663            || strcmp (name, "_DYNAMIC_LINKING") == 0)
10664     {
10665       sym->st_shndx = SHN_ABS;
10666       sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
10667       sym->st_value = 1;
10668     }
10669   else if (strcmp (name, "_gp_disp") == 0 && ! NEWABI_P (output_bfd))
10670     {
10671       sym->st_shndx = SHN_ABS;
10672       sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
10673       sym->st_value = elf_gp (output_bfd);
10674     }
10675   else if (SGI_COMPAT (output_bfd))
10676     {
10677       if (strcmp (name, mips_elf_dynsym_rtproc_names[0]) == 0
10678           || strcmp (name, mips_elf_dynsym_rtproc_names[1]) == 0)
10679         {
10680           sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
10681           sym->st_other = STO_PROTECTED;
10682           sym->st_value = 0;
10683           sym->st_shndx = SHN_MIPS_DATA;
10684         }
10685       else if (strcmp (name, mips_elf_dynsym_rtproc_names[2]) == 0)
10686         {
10687           sym->st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
10688           sym->st_other = STO_PROTECTED;
10689           sym->st_value = mips_elf_hash_table (info)->procedure_count;
10690           sym->st_shndx = SHN_ABS;
10691         }
10692       else if (sym->st_shndx != SHN_UNDEF && sym->st_shndx != SHN_ABS)
10693         {
10694           if (h->type == STT_FUNC)
10695             sym->st_shndx = SHN_MIPS_TEXT;
10696           else if (h->type == STT_OBJECT)
10697             sym->st_shndx = SHN_MIPS_DATA;
10698         }
10699     }
10700
10701   /* Emit a copy reloc, if needed.  */
10702   if (h->needs_copy)
10703     {
10704       asection *s;
10705       bfd_vma symval;
10706
10707       BFD_ASSERT (h->dynindx != -1);
10708       BFD_ASSERT (htab->use_plts_and_copy_relocs);
10709
10710       s = mips_elf_rel_dyn_section (info, FALSE);
10711       symval = (h->root.u.def.section->output_section->vma
10712                 + h->root.u.def.section->output_offset
10713                 + h->root.u.def.value);
10714       mips_elf_output_dynamic_relocation (output_bfd, s, s->reloc_count++,
10715                                           h->dynindx, R_MIPS_COPY, symval);
10716     }
10717
10718   /* Handle the IRIX6-specific symbols.  */
10719   if (IRIX_COMPAT (output_bfd) == ict_irix6)
10720     mips_elf_irix6_finish_dynamic_symbol (output_bfd, name, sym);
10721
10722   /* Keep dynamic compressed symbols odd.  This allows the dynamic linker
10723      to treat compressed symbols like any other.  */
10724   if (ELF_ST_IS_MIPS16 (sym->st_other))
10725     {
10726       BFD_ASSERT (sym->st_value & 1);
10727       sym->st_other -= STO_MIPS16;
10728     }
10729   else if (ELF_ST_IS_MICROMIPS (sym->st_other))
10730     {
10731       BFD_ASSERT (sym->st_value & 1);
10732       sym->st_other -= STO_MICROMIPS;
10733     }
10734
10735   return TRUE;
10736 }
10737
10738 /* Likewise, for VxWorks.  */
10739
10740 bfd_boolean
10741 _bfd_mips_vxworks_finish_dynamic_symbol (bfd *output_bfd,
10742                                          struct bfd_link_info *info,
10743                                          struct elf_link_hash_entry *h,
10744                                          Elf_Internal_Sym *sym)
10745 {
10746   bfd *dynobj;
10747   asection *sgot;
10748   struct mips_got_info *g;
10749   struct mips_elf_link_hash_table *htab;
10750   struct mips_elf_link_hash_entry *hmips;
10751
10752   htab = mips_elf_hash_table (info);
10753   BFD_ASSERT (htab != NULL);
10754   dynobj = elf_hash_table (info)->dynobj;
10755   hmips = (struct mips_elf_link_hash_entry *) h;
10756
10757   if (h->plt.plist != NULL && h->plt.plist->mips_offset != MINUS_ONE)
10758     {
10759       bfd_byte *loc;
10760       bfd_vma plt_address, got_address, got_offset, branch_offset;
10761       Elf_Internal_Rela rel;
10762       static const bfd_vma *plt_entry;
10763       bfd_vma gotplt_index;
10764       bfd_vma plt_offset;
10765
10766       plt_offset = htab->plt_header_size + h->plt.plist->mips_offset;
10767       gotplt_index = h->plt.plist->gotplt_index;
10768
10769       BFD_ASSERT (h->dynindx != -1);
10770       BFD_ASSERT (htab->splt != NULL);
10771       BFD_ASSERT (gotplt_index != MINUS_ONE);
10772       BFD_ASSERT (plt_offset <= htab->splt->size);
10773
10774       /* Calculate the address of the .plt entry.  */
10775       plt_address = (htab->splt->output_section->vma
10776                      + htab->splt->output_offset
10777                      + plt_offset);
10778
10779       /* Calculate the address of the .got.plt entry.  */
10780       got_address = (htab->sgotplt->output_section->vma
10781                      + htab->sgotplt->output_offset
10782                      + gotplt_index * MIPS_ELF_GOT_SIZE (output_bfd));
10783
10784       /* Calculate the offset of the .got.plt entry from
10785          _GLOBAL_OFFSET_TABLE_.  */
10786       got_offset = mips_elf_gotplt_index (info, h);
10787
10788       /* Calculate the offset for the branch at the start of the PLT
10789          entry.  The branch jumps to the beginning of .plt.  */
10790       branch_offset = -(plt_offset / 4 + 1) & 0xffff;
10791
10792       /* Fill in the initial value of the .got.plt entry.  */
10793       bfd_put_32 (output_bfd, plt_address,
10794                   (htab->sgotplt->contents
10795                    + gotplt_index * MIPS_ELF_GOT_SIZE (output_bfd)));
10796
10797       /* Find out where the .plt entry should go.  */
10798       loc = htab->splt->contents + plt_offset;
10799
10800       if (info->shared)
10801         {
10802           plt_entry = mips_vxworks_shared_plt_entry;
10803           bfd_put_32 (output_bfd, plt_entry[0] | branch_offset, loc);
10804           bfd_put_32 (output_bfd, plt_entry[1] | gotplt_index, loc + 4);
10805         }
10806       else
10807         {
10808           bfd_vma got_address_high, got_address_low;
10809
10810           plt_entry = mips_vxworks_exec_plt_entry;
10811           got_address_high = ((got_address + 0x8000) >> 16) & 0xffff;
10812           got_address_low = got_address & 0xffff;
10813
10814           bfd_put_32 (output_bfd, plt_entry[0] | branch_offset, loc);
10815           bfd_put_32 (output_bfd, plt_entry[1] | gotplt_index, loc + 4);
10816           bfd_put_32 (output_bfd, plt_entry[2] | got_address_high, loc + 8);
10817           bfd_put_32 (output_bfd, plt_entry[3] | got_address_low, loc + 12);
10818           bfd_put_32 (output_bfd, plt_entry[4], loc + 16);
10819           bfd_put_32 (output_bfd, plt_entry[5], loc + 20);
10820           bfd_put_32 (output_bfd, plt_entry[6], loc + 24);
10821           bfd_put_32 (output_bfd, plt_entry[7], loc + 28);
10822
10823           loc = (htab->srelplt2->contents
10824                  + (gotplt_index * 3 + 2) * sizeof (Elf32_External_Rela));
10825
10826           /* Emit a relocation for the .got.plt entry.  */
10827           rel.r_offset = got_address;
10828           rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_MIPS_32);
10829           rel.r_addend = plt_offset;
10830           bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
10831
10832           /* Emit a relocation for the lui of %hi(<.got.plt slot>).  */
10833           loc += sizeof (Elf32_External_Rela);
10834           rel.r_offset = plt_address + 8;
10835           rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
10836           rel.r_addend = got_offset;
10837           bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
10838
10839           /* Emit a relocation for the addiu of %lo(<.got.plt slot>).  */
10840           loc += sizeof (Elf32_External_Rela);
10841           rel.r_offset += 4;
10842           rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
10843           bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
10844         }
10845
10846       /* Emit an R_MIPS_JUMP_SLOT relocation against the .got.plt entry.  */
10847       loc = (htab->srelplt->contents
10848              + gotplt_index * sizeof (Elf32_External_Rela));
10849       rel.r_offset = got_address;
10850       rel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_JUMP_SLOT);
10851       rel.r_addend = 0;
10852       bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
10853
10854       if (!h->def_regular)
10855         sym->st_shndx = SHN_UNDEF;
10856     }
10857
10858   BFD_ASSERT (h->dynindx != -1 || h->forced_local);
10859
10860   sgot = htab->sgot;
10861   g = htab->got_info;
10862   BFD_ASSERT (g != NULL);
10863
10864   /* See if this symbol has an entry in the GOT.  */
10865   if (hmips->global_got_area != GGA_NONE)
10866     {
10867       bfd_vma offset;
10868       Elf_Internal_Rela outrel;
10869       bfd_byte *loc;
10870       asection *s;
10871
10872       /* Install the symbol value in the GOT.   */
10873       offset = mips_elf_primary_global_got_index (output_bfd, info, h);
10874       MIPS_ELF_PUT_WORD (output_bfd, sym->st_value, sgot->contents + offset);
10875
10876       /* Add a dynamic relocation for it.  */
10877       s = mips_elf_rel_dyn_section (info, FALSE);
10878       loc = s->contents + (s->reloc_count++ * sizeof (Elf32_External_Rela));
10879       outrel.r_offset = (sgot->output_section->vma
10880                          + sgot->output_offset
10881                          + offset);
10882       outrel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_32);
10883       outrel.r_addend = 0;
10884       bfd_elf32_swap_reloca_out (dynobj, &outrel, loc);
10885     }
10886
10887   /* Emit a copy reloc, if needed.  */
10888   if (h->needs_copy)
10889     {
10890       Elf_Internal_Rela rel;
10891
10892       BFD_ASSERT (h->dynindx != -1);
10893
10894       rel.r_offset = (h->root.u.def.section->output_section->vma
10895                       + h->root.u.def.section->output_offset
10896                       + h->root.u.def.value);
10897       rel.r_info = ELF32_R_INFO (h->dynindx, R_MIPS_COPY);
10898       rel.r_addend = 0;
10899       bfd_elf32_swap_reloca_out (output_bfd, &rel,
10900                                  htab->srelbss->contents
10901                                  + (htab->srelbss->reloc_count
10902                                     * sizeof (Elf32_External_Rela)));
10903       ++htab->srelbss->reloc_count;
10904     }
10905
10906   /* If this is a mips16/microMIPS symbol, force the value to be even.  */
10907   if (ELF_ST_IS_COMPRESSED (sym->st_other))
10908     sym->st_value &= ~1;
10909
10910   return TRUE;
10911 }
10912
10913 /* Write out a plt0 entry to the beginning of .plt.  */
10914
10915 static bfd_boolean
10916 mips_finish_exec_plt (bfd *output_bfd, struct bfd_link_info *info)
10917 {
10918   bfd_byte *loc;
10919   bfd_vma gotplt_value, gotplt_value_high, gotplt_value_low;
10920   static const bfd_vma *plt_entry;
10921   struct mips_elf_link_hash_table *htab;
10922
10923   htab = mips_elf_hash_table (info);
10924   BFD_ASSERT (htab != NULL);
10925
10926   if (ABI_64_P (output_bfd))
10927     plt_entry = mips_n64_exec_plt0_entry;
10928   else if (ABI_N32_P (output_bfd))
10929     plt_entry = mips_n32_exec_plt0_entry;
10930   else if (!htab->plt_header_is_comp)
10931     plt_entry = mips_o32_exec_plt0_entry;
10932   else if (htab->insn32)
10933     plt_entry = micromips_insn32_o32_exec_plt0_entry;
10934   else
10935     plt_entry = micromips_o32_exec_plt0_entry;
10936
10937   /* Calculate the value of .got.plt.  */
10938   gotplt_value = (htab->sgotplt->output_section->vma
10939                   + htab->sgotplt->output_offset);
10940   gotplt_value_high = ((gotplt_value + 0x8000) >> 16) & 0xffff;
10941   gotplt_value_low = gotplt_value & 0xffff;
10942
10943   /* The PLT sequence is not safe for N64 if .got.plt's address can
10944      not be loaded in two instructions.  */
10945   BFD_ASSERT ((gotplt_value & ~(bfd_vma) 0x7fffffff) == 0
10946               || ~(gotplt_value | 0x7fffffff) == 0);
10947
10948   /* Install the PLT header.  */
10949   loc = htab->splt->contents;
10950   if (plt_entry == micromips_o32_exec_plt0_entry)
10951     {
10952       bfd_vma gotpc_offset;
10953       bfd_vma loc_address;
10954       size_t i;
10955
10956       BFD_ASSERT (gotplt_value % 4 == 0);
10957
10958       loc_address = (htab->splt->output_section->vma
10959                      + htab->splt->output_offset);
10960       gotpc_offset = gotplt_value - ((loc_address | 3) ^ 3);
10961
10962       /* ADDIUPC has a span of +/-16MB, check we're in range.  */
10963       if (gotpc_offset + 0x1000000 >= 0x2000000)
10964         {
10965           (*_bfd_error_handler)
10966             (_("%B: `%A' offset of %ld from `%A' beyond the range of ADDIUPC"),
10967              output_bfd,
10968              htab->sgotplt->output_section,
10969              htab->splt->output_section,
10970              (long) gotpc_offset);
10971           bfd_set_error (bfd_error_no_error);
10972           return FALSE;
10973         }
10974       bfd_put_16 (output_bfd,
10975                   plt_entry[0] | ((gotpc_offset >> 18) & 0x7f), loc);
10976       bfd_put_16 (output_bfd, (gotpc_offset >> 2) & 0xffff, loc + 2);
10977       for (i = 2; i < ARRAY_SIZE (micromips_o32_exec_plt0_entry); i++)
10978         bfd_put_16 (output_bfd, plt_entry[i], loc + (i * 2));
10979     }
10980   else if (plt_entry == micromips_insn32_o32_exec_plt0_entry)
10981     {
10982       size_t i;
10983
10984       bfd_put_16 (output_bfd, plt_entry[0], loc);
10985       bfd_put_16 (output_bfd, gotplt_value_high, loc + 2);
10986       bfd_put_16 (output_bfd, plt_entry[2], loc + 4);
10987       bfd_put_16 (output_bfd, gotplt_value_low, loc + 6);
10988       bfd_put_16 (output_bfd, plt_entry[4], loc + 8);
10989       bfd_put_16 (output_bfd, gotplt_value_low, loc + 10);
10990       for (i = 6; i < ARRAY_SIZE (micromips_insn32_o32_exec_plt0_entry); i++)
10991         bfd_put_16 (output_bfd, plt_entry[i], loc + (i * 2));
10992     }
10993   else
10994     {
10995       bfd_put_32 (output_bfd, plt_entry[0] | gotplt_value_high, loc);
10996       bfd_put_32 (output_bfd, plt_entry[1] | gotplt_value_low, loc + 4);
10997       bfd_put_32 (output_bfd, plt_entry[2] | gotplt_value_low, loc + 8);
10998       bfd_put_32 (output_bfd, plt_entry[3], loc + 12);
10999       bfd_put_32 (output_bfd, plt_entry[4], loc + 16);
11000       bfd_put_32 (output_bfd, plt_entry[5], loc + 20);
11001       bfd_put_32 (output_bfd, plt_entry[6], loc + 24);
11002       bfd_put_32 (output_bfd, plt_entry[7], loc + 28);
11003     }
11004
11005   return TRUE;
11006 }
11007
11008 /* Install the PLT header for a VxWorks executable and finalize the
11009    contents of .rela.plt.unloaded.  */
11010
11011 static void
11012 mips_vxworks_finish_exec_plt (bfd *output_bfd, struct bfd_link_info *info)
11013 {
11014   Elf_Internal_Rela rela;
11015   bfd_byte *loc;
11016   bfd_vma got_value, got_value_high, got_value_low, plt_address;
11017   static const bfd_vma *plt_entry;
11018   struct mips_elf_link_hash_table *htab;
11019
11020   htab = mips_elf_hash_table (info);
11021   BFD_ASSERT (htab != NULL);
11022
11023   plt_entry = mips_vxworks_exec_plt0_entry;
11024
11025   /* Calculate the value of _GLOBAL_OFFSET_TABLE_.  */
11026   got_value = (htab->root.hgot->root.u.def.section->output_section->vma
11027                + htab->root.hgot->root.u.def.section->output_offset
11028                + htab->root.hgot->root.u.def.value);
11029
11030   got_value_high = ((got_value + 0x8000) >> 16) & 0xffff;
11031   got_value_low = got_value & 0xffff;
11032
11033   /* Calculate the address of the PLT header.  */
11034   plt_address = htab->splt->output_section->vma + htab->splt->output_offset;
11035
11036   /* Install the PLT header.  */
11037   loc = htab->splt->contents;
11038   bfd_put_32 (output_bfd, plt_entry[0] | got_value_high, loc);
11039   bfd_put_32 (output_bfd, plt_entry[1] | got_value_low, loc + 4);
11040   bfd_put_32 (output_bfd, plt_entry[2], loc + 8);
11041   bfd_put_32 (output_bfd, plt_entry[3], loc + 12);
11042   bfd_put_32 (output_bfd, plt_entry[4], loc + 16);
11043   bfd_put_32 (output_bfd, plt_entry[5], loc + 20);
11044
11045   /* Output the relocation for the lui of %hi(_GLOBAL_OFFSET_TABLE_).  */
11046   loc = htab->srelplt2->contents;
11047   rela.r_offset = plt_address;
11048   rela.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
11049   rela.r_addend = 0;
11050   bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
11051   loc += sizeof (Elf32_External_Rela);
11052
11053   /* Output the relocation for the following addiu of
11054      %lo(_GLOBAL_OFFSET_TABLE_).  */
11055   rela.r_offset += 4;
11056   rela.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
11057   bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
11058   loc += sizeof (Elf32_External_Rela);
11059
11060   /* Fix up the remaining relocations.  They may have the wrong
11061      symbol index for _G_O_T_ or _P_L_T_ depending on the order
11062      in which symbols were output.  */
11063   while (loc < htab->srelplt2->contents + htab->srelplt2->size)
11064     {
11065       Elf_Internal_Rela rel;
11066
11067       bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
11068       rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_MIPS_32);
11069       bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11070       loc += sizeof (Elf32_External_Rela);
11071
11072       bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
11073       rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_HI16);
11074       bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11075       loc += sizeof (Elf32_External_Rela);
11076
11077       bfd_elf32_swap_reloca_in (output_bfd, loc, &rel);
11078       rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_MIPS_LO16);
11079       bfd_elf32_swap_reloca_out (output_bfd, &rel, loc);
11080       loc += sizeof (Elf32_External_Rela);
11081     }
11082 }
11083
11084 /* Install the PLT header for a VxWorks shared library.  */
11085
11086 static void
11087 mips_vxworks_finish_shared_plt (bfd *output_bfd, struct bfd_link_info *info)
11088 {
11089   unsigned int i;
11090   struct mips_elf_link_hash_table *htab;
11091
11092   htab = mips_elf_hash_table (info);
11093   BFD_ASSERT (htab != NULL);
11094
11095   /* We just need to copy the entry byte-by-byte.  */
11096   for (i = 0; i < ARRAY_SIZE (mips_vxworks_shared_plt0_entry); i++)
11097     bfd_put_32 (output_bfd, mips_vxworks_shared_plt0_entry[i],
11098                 htab->splt->contents + i * 4);
11099 }
11100
11101 /* Finish up the dynamic sections.  */
11102
11103 bfd_boolean
11104 _bfd_mips_elf_finish_dynamic_sections (bfd *output_bfd,
11105                                        struct bfd_link_info *info)
11106 {
11107   bfd *dynobj;
11108   asection *sdyn;
11109   asection *sgot;
11110   struct mips_got_info *gg, *g;
11111   struct mips_elf_link_hash_table *htab;
11112
11113   htab = mips_elf_hash_table (info);
11114   BFD_ASSERT (htab != NULL);
11115
11116   dynobj = elf_hash_table (info)->dynobj;
11117
11118   sdyn = bfd_get_linker_section (dynobj, ".dynamic");
11119
11120   sgot = htab->sgot;
11121   gg = htab->got_info;
11122
11123   if (elf_hash_table (info)->dynamic_sections_created)
11124     {
11125       bfd_byte *b;
11126       int dyn_to_skip = 0, dyn_skipped = 0;
11127
11128       BFD_ASSERT (sdyn != NULL);
11129       BFD_ASSERT (gg != NULL);
11130
11131       g = mips_elf_bfd_got (output_bfd, FALSE);
11132       BFD_ASSERT (g != NULL);
11133
11134       for (b = sdyn->contents;
11135            b < sdyn->contents + sdyn->size;
11136            b += MIPS_ELF_DYN_SIZE (dynobj))
11137         {
11138           Elf_Internal_Dyn dyn;
11139           const char *name;
11140           size_t elemsize;
11141           asection *s;
11142           bfd_boolean swap_out_p;
11143
11144           /* Read in the current dynamic entry.  */
11145           (*get_elf_backend_data (dynobj)->s->swap_dyn_in) (dynobj, b, &dyn);
11146
11147           /* Assume that we're going to modify it and write it out.  */
11148           swap_out_p = TRUE;
11149
11150           switch (dyn.d_tag)
11151             {
11152             case DT_RELENT:
11153               dyn.d_un.d_val = MIPS_ELF_REL_SIZE (dynobj);
11154               break;
11155
11156             case DT_RELAENT:
11157               BFD_ASSERT (htab->is_vxworks);
11158               dyn.d_un.d_val = MIPS_ELF_RELA_SIZE (dynobj);
11159               break;
11160
11161             case DT_STRSZ:
11162               /* Rewrite DT_STRSZ.  */
11163               dyn.d_un.d_val =
11164                 _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
11165               break;
11166
11167             case DT_PLTGOT:
11168               s = htab->sgot;
11169               dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
11170               break;
11171
11172             case DT_MIPS_PLTGOT:
11173               s = htab->sgotplt;
11174               dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
11175               break;
11176
11177             case DT_MIPS_RLD_VERSION:
11178               dyn.d_un.d_val = 1; /* XXX */
11179               break;
11180
11181             case DT_MIPS_FLAGS:
11182               dyn.d_un.d_val = RHF_NOTPOT; /* XXX */
11183               break;
11184
11185             case DT_MIPS_TIME_STAMP:
11186               {
11187                 time_t t;
11188                 time (&t);
11189                 dyn.d_un.d_val = t;
11190               }
11191               break;
11192
11193             case DT_MIPS_ICHECKSUM:
11194               /* XXX FIXME: */
11195               swap_out_p = FALSE;
11196               break;
11197
11198             case DT_MIPS_IVERSION:
11199               /* XXX FIXME: */
11200               swap_out_p = FALSE;
11201               break;
11202
11203             case DT_MIPS_BASE_ADDRESS:
11204               s = output_bfd->sections;
11205               BFD_ASSERT (s != NULL);
11206               dyn.d_un.d_ptr = s->vma & ~(bfd_vma) 0xffff;
11207               break;
11208
11209             case DT_MIPS_LOCAL_GOTNO:
11210               dyn.d_un.d_val = g->local_gotno;
11211               break;
11212
11213             case DT_MIPS_UNREFEXTNO:
11214               /* The index into the dynamic symbol table which is the
11215                  entry of the first external symbol that is not
11216                  referenced within the same object.  */
11217               dyn.d_un.d_val = bfd_count_sections (output_bfd) + 1;
11218               break;
11219
11220             case DT_MIPS_GOTSYM:
11221               if (htab->global_gotsym)
11222                 {
11223                   dyn.d_un.d_val = htab->global_gotsym->dynindx;
11224                   break;
11225                 }
11226               /* In case if we don't have global got symbols we default
11227                  to setting DT_MIPS_GOTSYM to the same value as
11228                  DT_MIPS_SYMTABNO, so we just fall through.  */
11229
11230             case DT_MIPS_SYMTABNO:
11231               name = ".dynsym";
11232               elemsize = MIPS_ELF_SYM_SIZE (output_bfd);
11233               s = bfd_get_section_by_name (output_bfd, name);
11234               BFD_ASSERT (s != NULL);
11235
11236               dyn.d_un.d_val = s->size / elemsize;
11237               break;
11238
11239             case DT_MIPS_HIPAGENO:
11240               dyn.d_un.d_val = g->local_gotno - htab->reserved_gotno;
11241               break;
11242
11243             case DT_MIPS_RLD_MAP:
11244               {
11245                 struct elf_link_hash_entry *h;
11246                 h = mips_elf_hash_table (info)->rld_symbol;
11247                 if (!h)
11248                   {
11249                     dyn_to_skip = MIPS_ELF_DYN_SIZE (dynobj);
11250                     swap_out_p = FALSE;
11251                     break;
11252                   }
11253                 s = h->root.u.def.section;
11254                 dyn.d_un.d_ptr = (s->output_section->vma + s->output_offset
11255                                   + h->root.u.def.value);
11256               }
11257               break;
11258
11259             case DT_MIPS_OPTIONS:
11260               s = (bfd_get_section_by_name
11261                    (output_bfd, MIPS_ELF_OPTIONS_SECTION_NAME (output_bfd)));
11262               dyn.d_un.d_ptr = s->vma;
11263               break;
11264
11265             case DT_RELASZ:
11266               BFD_ASSERT (htab->is_vxworks);
11267               /* The count does not include the JUMP_SLOT relocations.  */
11268               if (htab->srelplt)
11269                 dyn.d_un.d_val -= htab->srelplt->size;
11270               break;
11271
11272             case DT_PLTREL:
11273               BFD_ASSERT (htab->use_plts_and_copy_relocs);
11274               if (htab->is_vxworks)
11275                 dyn.d_un.d_val = DT_RELA;
11276               else
11277                 dyn.d_un.d_val = DT_REL;
11278               break;
11279
11280             case DT_PLTRELSZ:
11281               BFD_ASSERT (htab->use_plts_and_copy_relocs);
11282               dyn.d_un.d_val = htab->srelplt->size;
11283               break;
11284
11285             case DT_JMPREL:
11286               BFD_ASSERT (htab->use_plts_and_copy_relocs);
11287               dyn.d_un.d_ptr = (htab->srelplt->output_section->vma
11288                                 + htab->srelplt->output_offset);
11289               break;
11290
11291             case DT_TEXTREL:
11292               /* If we didn't need any text relocations after all, delete
11293                  the dynamic tag.  */
11294               if (!(info->flags & DF_TEXTREL))
11295                 {
11296                   dyn_to_skip = MIPS_ELF_DYN_SIZE (dynobj);
11297                   swap_out_p = FALSE;
11298                 }
11299               break;
11300
11301             case DT_FLAGS:
11302               /* If we didn't need any text relocations after all, clear
11303                  DF_TEXTREL from DT_FLAGS.  */
11304               if (!(info->flags & DF_TEXTREL))
11305                 dyn.d_un.d_val &= ~DF_TEXTREL;
11306               else
11307                 swap_out_p = FALSE;
11308               break;
11309
11310             default:
11311               swap_out_p = FALSE;
11312               if (htab->is_vxworks
11313                   && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
11314                 swap_out_p = TRUE;
11315               break;
11316             }
11317
11318           if (swap_out_p || dyn_skipped)
11319             (*get_elf_backend_data (dynobj)->s->swap_dyn_out)
11320               (dynobj, &dyn, b - dyn_skipped);
11321
11322           if (dyn_to_skip)
11323             {
11324               dyn_skipped += dyn_to_skip;
11325               dyn_to_skip = 0;
11326             }
11327         }
11328
11329       /* Wipe out any trailing entries if we shifted down a dynamic tag.  */
11330       if (dyn_skipped > 0)
11331         memset (b - dyn_skipped, 0, dyn_skipped);
11332     }
11333
11334   if (sgot != NULL && sgot->size > 0
11335       && !bfd_is_abs_section (sgot->output_section))
11336     {
11337       if (htab->is_vxworks)
11338         {
11339           /* The first entry of the global offset table points to the
11340              ".dynamic" section.  The second is initialized by the
11341              loader and contains the shared library identifier.
11342              The third is also initialized by the loader and points
11343              to the lazy resolution stub.  */
11344           MIPS_ELF_PUT_WORD (output_bfd,
11345                              sdyn->output_offset + sdyn->output_section->vma,
11346                              sgot->contents);
11347           MIPS_ELF_PUT_WORD (output_bfd, 0,
11348                              sgot->contents + MIPS_ELF_GOT_SIZE (output_bfd));
11349           MIPS_ELF_PUT_WORD (output_bfd, 0,
11350                              sgot->contents
11351                              + 2 * MIPS_ELF_GOT_SIZE (output_bfd));
11352         }
11353       else
11354         {
11355           /* The first entry of the global offset table will be filled at
11356              runtime. The second entry will be used by some runtime loaders.
11357              This isn't the case of IRIX rld.  */
11358           MIPS_ELF_PUT_WORD (output_bfd, (bfd_vma) 0, sgot->contents);
11359           MIPS_ELF_PUT_WORD (output_bfd, MIPS_ELF_GNU_GOT1_MASK (output_bfd),
11360                              sgot->contents + MIPS_ELF_GOT_SIZE (output_bfd));
11361         }
11362
11363       elf_section_data (sgot->output_section)->this_hdr.sh_entsize
11364          = MIPS_ELF_GOT_SIZE (output_bfd);
11365     }
11366
11367   /* Generate dynamic relocations for the non-primary gots.  */
11368   if (gg != NULL && gg->next)
11369     {
11370       Elf_Internal_Rela rel[3];
11371       bfd_vma addend = 0;
11372
11373       memset (rel, 0, sizeof (rel));
11374       rel[0].r_info = ELF_R_INFO (output_bfd, 0, R_MIPS_REL32);
11375
11376       for (g = gg->next; g->next != gg; g = g->next)
11377         {
11378           bfd_vma got_index = g->next->local_gotno + g->next->global_gotno
11379             + g->next->tls_gotno;
11380
11381           MIPS_ELF_PUT_WORD (output_bfd, 0, sgot->contents
11382                              + got_index++ * MIPS_ELF_GOT_SIZE (output_bfd));
11383           MIPS_ELF_PUT_WORD (output_bfd, MIPS_ELF_GNU_GOT1_MASK (output_bfd),
11384                              sgot->contents
11385                              + got_index++ * MIPS_ELF_GOT_SIZE (output_bfd));
11386
11387           if (! info->shared)
11388             continue;
11389
11390           while (got_index < g->assigned_gotno)
11391             {
11392               rel[0].r_offset = rel[1].r_offset = rel[2].r_offset
11393                 = got_index++ * MIPS_ELF_GOT_SIZE (output_bfd);
11394               if (!(mips_elf_create_dynamic_relocation
11395                     (output_bfd, info, rel, NULL,
11396                      bfd_abs_section_ptr,
11397                      0, &addend, sgot)))
11398                 return FALSE;
11399               BFD_ASSERT (addend == 0);
11400             }
11401         }
11402     }
11403
11404   /* The generation of dynamic relocations for the non-primary gots
11405      adds more dynamic relocations.  We cannot count them until
11406      here.  */
11407
11408   if (elf_hash_table (info)->dynamic_sections_created)
11409     {
11410       bfd_byte *b;
11411       bfd_boolean swap_out_p;
11412
11413       BFD_ASSERT (sdyn != NULL);
11414
11415       for (b = sdyn->contents;
11416            b < sdyn->contents + sdyn->size;
11417            b += MIPS_ELF_DYN_SIZE (dynobj))
11418         {
11419           Elf_Internal_Dyn dyn;
11420           asection *s;
11421
11422           /* Read in the current dynamic entry.  */
11423           (*get_elf_backend_data (dynobj)->s->swap_dyn_in) (dynobj, b, &dyn);
11424
11425           /* Assume that we're going to modify it and write it out.  */
11426           swap_out_p = TRUE;
11427
11428           switch (dyn.d_tag)
11429             {
11430             case DT_RELSZ:
11431               /* Reduce DT_RELSZ to account for any relocations we
11432                  decided not to make.  This is for the n64 irix rld,
11433                  which doesn't seem to apply any relocations if there
11434                  are trailing null entries.  */
11435               s = mips_elf_rel_dyn_section (info, FALSE);
11436               dyn.d_un.d_val = (s->reloc_count
11437                                 * (ABI_64_P (output_bfd)
11438                                    ? sizeof (Elf64_Mips_External_Rel)
11439                                    : sizeof (Elf32_External_Rel)));
11440               /* Adjust the section size too.  Tools like the prelinker
11441                  can reasonably expect the values to the same.  */
11442               elf_section_data (s->output_section)->this_hdr.sh_size
11443                 = dyn.d_un.d_val;
11444               break;
11445
11446             default:
11447               swap_out_p = FALSE;
11448               break;
11449             }
11450
11451           if (swap_out_p)
11452             (*get_elf_backend_data (dynobj)->s->swap_dyn_out)
11453               (dynobj, &dyn, b);
11454         }
11455     }
11456
11457   {
11458     asection *s;
11459     Elf32_compact_rel cpt;
11460
11461     if (SGI_COMPAT (output_bfd))
11462       {
11463         /* Write .compact_rel section out.  */
11464         s = bfd_get_linker_section (dynobj, ".compact_rel");
11465         if (s != NULL)
11466           {
11467             cpt.id1 = 1;
11468             cpt.num = s->reloc_count;
11469             cpt.id2 = 2;
11470             cpt.offset = (s->output_section->filepos
11471                           + sizeof (Elf32_External_compact_rel));
11472             cpt.reserved0 = 0;
11473             cpt.reserved1 = 0;
11474             bfd_elf32_swap_compact_rel_out (output_bfd, &cpt,
11475                                             ((Elf32_External_compact_rel *)
11476                                              s->contents));
11477
11478             /* Clean up a dummy stub function entry in .text.  */
11479             if (htab->sstubs != NULL)
11480               {
11481                 file_ptr dummy_offset;
11482
11483                 BFD_ASSERT (htab->sstubs->size >= htab->function_stub_size);
11484                 dummy_offset = htab->sstubs->size - htab->function_stub_size;
11485                 memset (htab->sstubs->contents + dummy_offset, 0,
11486                         htab->function_stub_size);
11487               }
11488           }
11489       }
11490
11491     /* The psABI says that the dynamic relocations must be sorted in
11492        increasing order of r_symndx.  The VxWorks EABI doesn't require
11493        this, and because the code below handles REL rather than RELA
11494        relocations, using it for VxWorks would be outright harmful.  */
11495     if (!htab->is_vxworks)
11496       {
11497         s = mips_elf_rel_dyn_section (info, FALSE);
11498         if (s != NULL
11499             && s->size > (bfd_vma)2 * MIPS_ELF_REL_SIZE (output_bfd))
11500           {
11501             reldyn_sorting_bfd = output_bfd;
11502
11503             if (ABI_64_P (output_bfd))
11504               qsort ((Elf64_External_Rel *) s->contents + 1,
11505                      s->reloc_count - 1, sizeof (Elf64_Mips_External_Rel),
11506                      sort_dynamic_relocs_64);
11507             else
11508               qsort ((Elf32_External_Rel *) s->contents + 1,
11509                      s->reloc_count - 1, sizeof (Elf32_External_Rel),
11510                      sort_dynamic_relocs);
11511           }
11512       }
11513   }
11514
11515   if (htab->splt && htab->splt->size > 0)
11516     {
11517       if (htab->is_vxworks)
11518         {
11519           if (info->shared)
11520             mips_vxworks_finish_shared_plt (output_bfd, info);
11521           else
11522             mips_vxworks_finish_exec_plt (output_bfd, info);
11523         }
11524       else
11525         {
11526           BFD_ASSERT (!info->shared);
11527           if (!mips_finish_exec_plt (output_bfd, info))
11528             return FALSE;
11529         }
11530     }
11531   return TRUE;
11532 }
11533
11534
11535 /* Set ABFD's EF_MIPS_ARCH and EF_MIPS_MACH flags.  */
11536
11537 static void
11538 mips_set_isa_flags (bfd *abfd)
11539 {
11540   flagword val;
11541
11542   switch (bfd_get_mach (abfd))
11543     {
11544     default:
11545     case bfd_mach_mips3000:
11546       val = E_MIPS_ARCH_1;
11547       break;
11548
11549     case bfd_mach_mips3900:
11550       val = E_MIPS_ARCH_1 | E_MIPS_MACH_3900;
11551       break;
11552
11553     case bfd_mach_mips6000:
11554       val = E_MIPS_ARCH_2;
11555       break;
11556
11557     case bfd_mach_mips4000:
11558     case bfd_mach_mips4300:
11559     case bfd_mach_mips4400:
11560     case bfd_mach_mips4600:
11561       val = E_MIPS_ARCH_3;
11562       break;
11563
11564     case bfd_mach_mips4010:
11565       val = E_MIPS_ARCH_3 | E_MIPS_MACH_4010;
11566       break;
11567
11568     case bfd_mach_mips4100:
11569       val = E_MIPS_ARCH_3 | E_MIPS_MACH_4100;
11570       break;
11571
11572     case bfd_mach_mips4111:
11573       val = E_MIPS_ARCH_3 | E_MIPS_MACH_4111;
11574       break;
11575
11576     case bfd_mach_mips4120:
11577       val = E_MIPS_ARCH_3 | E_MIPS_MACH_4120;
11578       break;
11579
11580     case bfd_mach_mips4650:
11581       val = E_MIPS_ARCH_3 | E_MIPS_MACH_4650;
11582       break;
11583
11584     case bfd_mach_mips5400:
11585       val = E_MIPS_ARCH_4 | E_MIPS_MACH_5400;
11586       break;
11587
11588     case bfd_mach_mips5500:
11589       val = E_MIPS_ARCH_4 | E_MIPS_MACH_5500;
11590       break;
11591
11592     case bfd_mach_mips5900:
11593       val = E_MIPS_ARCH_3 | E_MIPS_MACH_5900;
11594       break;
11595
11596     case bfd_mach_mips9000:
11597       val = E_MIPS_ARCH_4 | E_MIPS_MACH_9000;
11598       break;
11599
11600     case bfd_mach_mips5000:
11601     case bfd_mach_mips7000:
11602     case bfd_mach_mips8000:
11603     case bfd_mach_mips10000:
11604     case bfd_mach_mips12000:
11605     case bfd_mach_mips14000:
11606     case bfd_mach_mips16000:
11607       val = E_MIPS_ARCH_4;
11608       break;
11609
11610     case bfd_mach_mips5:
11611       val = E_MIPS_ARCH_5;
11612       break;
11613
11614     case bfd_mach_mips_loongson_2e:
11615       val = E_MIPS_ARCH_3 | E_MIPS_MACH_LS2E;
11616       break;
11617
11618     case bfd_mach_mips_loongson_2f:
11619       val = E_MIPS_ARCH_3 | E_MIPS_MACH_LS2F;
11620       break;
11621
11622     case bfd_mach_mips_sb1:
11623       val = E_MIPS_ARCH_64 | E_MIPS_MACH_SB1;
11624       break;
11625
11626     case bfd_mach_mips_loongson_3a:
11627       val = E_MIPS_ARCH_64 | E_MIPS_MACH_LS3A;
11628       break;
11629
11630     case bfd_mach_mips_octeon:
11631     case bfd_mach_mips_octeonp:
11632       val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_OCTEON;
11633       break;
11634
11635     case bfd_mach_mips_xlr:
11636       val = E_MIPS_ARCH_64 | E_MIPS_MACH_XLR;
11637       break;
11638
11639     case bfd_mach_mips_octeon2:
11640       val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_OCTEON2;
11641       break;
11642
11643     case bfd_mach_mipsisa32:
11644       val = E_MIPS_ARCH_32;
11645       break;
11646
11647     case bfd_mach_mipsisa64:
11648       val = E_MIPS_ARCH_64;
11649       break;
11650
11651     case bfd_mach_mipsisa32r2:
11652       val = E_MIPS_ARCH_32R2;
11653       break;
11654
11655     case bfd_mach_mipsisa64r2:
11656       val = E_MIPS_ARCH_64R2;
11657       break;
11658     }
11659   elf_elfheader (abfd)->e_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH);
11660   elf_elfheader (abfd)->e_flags |= val;
11661
11662 }
11663
11664
11665 /* The final processing done just before writing out a MIPS ELF object
11666    file.  This gets the MIPS architecture right based on the machine
11667    number.  This is used by both the 32-bit and the 64-bit ABI.  */
11668
11669 void
11670 _bfd_mips_elf_final_write_processing (bfd *abfd,
11671                                       bfd_boolean linker ATTRIBUTE_UNUSED)
11672 {
11673   unsigned int i;
11674   Elf_Internal_Shdr **hdrpp;
11675   const char *name;
11676   asection *sec;
11677
11678   /* Keep the existing EF_MIPS_MACH and EF_MIPS_ARCH flags if the former
11679      is nonzero.  This is for compatibility with old objects, which used
11680      a combination of a 32-bit EF_MIPS_ARCH and a 64-bit EF_MIPS_MACH.  */
11681   if ((elf_elfheader (abfd)->e_flags & EF_MIPS_MACH) == 0)
11682     mips_set_isa_flags (abfd);
11683
11684   /* Set the sh_info field for .gptab sections and other appropriate
11685      info for each special section.  */
11686   for (i = 1, hdrpp = elf_elfsections (abfd) + 1;
11687        i < elf_numsections (abfd);
11688        i++, hdrpp++)
11689     {
11690       switch ((*hdrpp)->sh_type)
11691         {
11692         case SHT_MIPS_MSYM:
11693         case SHT_MIPS_LIBLIST:
11694           sec = bfd_get_section_by_name (abfd, ".dynstr");
11695           if (sec != NULL)
11696             (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
11697           break;
11698
11699         case SHT_MIPS_GPTAB:
11700           BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
11701           name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section);
11702           BFD_ASSERT (name != NULL
11703                       && CONST_STRNEQ (name, ".gptab."));
11704           sec = bfd_get_section_by_name (abfd, name + sizeof ".gptab" - 1);
11705           BFD_ASSERT (sec != NULL);
11706           (*hdrpp)->sh_info = elf_section_data (sec)->this_idx;
11707           break;
11708
11709         case SHT_MIPS_CONTENT:
11710           BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
11711           name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section);
11712           BFD_ASSERT (name != NULL
11713                       && CONST_STRNEQ (name, ".MIPS.content"));
11714           sec = bfd_get_section_by_name (abfd,
11715                                          name + sizeof ".MIPS.content" - 1);
11716           BFD_ASSERT (sec != NULL);
11717           (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
11718           break;
11719
11720         case SHT_MIPS_SYMBOL_LIB:
11721           sec = bfd_get_section_by_name (abfd, ".dynsym");
11722           if (sec != NULL)
11723             (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
11724           sec = bfd_get_section_by_name (abfd, ".liblist");
11725           if (sec != NULL)
11726             (*hdrpp)->sh_info = elf_section_data (sec)->this_idx;
11727           break;
11728
11729         case SHT_MIPS_EVENTS:
11730           BFD_ASSERT ((*hdrpp)->bfd_section != NULL);
11731           name = bfd_get_section_name (abfd, (*hdrpp)->bfd_section);
11732           BFD_ASSERT (name != NULL);
11733           if (CONST_STRNEQ (name, ".MIPS.events"))
11734             sec = bfd_get_section_by_name (abfd,
11735                                            name + sizeof ".MIPS.events" - 1);
11736           else
11737             {
11738               BFD_ASSERT (CONST_STRNEQ (name, ".MIPS.post_rel"));
11739               sec = bfd_get_section_by_name (abfd,
11740                                              (name
11741                                               + sizeof ".MIPS.post_rel" - 1));
11742             }
11743           BFD_ASSERT (sec != NULL);
11744           (*hdrpp)->sh_link = elf_section_data (sec)->this_idx;
11745           break;
11746
11747         }
11748     }
11749 }
11750 \f
11751 /* When creating an IRIX5 executable, we need REGINFO and RTPROC
11752    segments.  */
11753
11754 int
11755 _bfd_mips_elf_additional_program_headers (bfd *abfd,
11756                                           struct bfd_link_info *info ATTRIBUTE_UNUSED)
11757 {
11758   asection *s;
11759   int ret = 0;
11760
11761   /* See if we need a PT_MIPS_REGINFO segment.  */
11762   s = bfd_get_section_by_name (abfd, ".reginfo");
11763   if (s && (s->flags & SEC_LOAD))
11764     ++ret;
11765
11766   /* See if we need a PT_MIPS_OPTIONS segment.  */
11767   if (IRIX_COMPAT (abfd) == ict_irix6
11768       && bfd_get_section_by_name (abfd,
11769                                   MIPS_ELF_OPTIONS_SECTION_NAME (abfd)))
11770     ++ret;
11771
11772   /* See if we need a PT_MIPS_RTPROC segment.  */
11773   if (IRIX_COMPAT (abfd) == ict_irix5
11774       && bfd_get_section_by_name (abfd, ".dynamic")
11775       && bfd_get_section_by_name (abfd, ".mdebug"))
11776     ++ret;
11777
11778   /* Allocate a PT_NULL header in dynamic objects.  See
11779      _bfd_mips_elf_modify_segment_map for details.  */
11780   if (!SGI_COMPAT (abfd)
11781       && bfd_get_section_by_name (abfd, ".dynamic"))
11782     ++ret;
11783
11784   return ret;
11785 }
11786
11787 /* Modify the segment map for an IRIX5 executable.  */
11788
11789 bfd_boolean
11790 _bfd_mips_elf_modify_segment_map (bfd *abfd,
11791                                   struct bfd_link_info *info)
11792 {
11793   asection *s;
11794   struct elf_segment_map *m, **pm;
11795   bfd_size_type amt;
11796
11797   /* If there is a .reginfo section, we need a PT_MIPS_REGINFO
11798      segment.  */
11799   s = bfd_get_section_by_name (abfd, ".reginfo");
11800   if (s != NULL && (s->flags & SEC_LOAD) != 0)
11801     {
11802       for (m = elf_seg_map (abfd); m != NULL; m = m->next)
11803         if (m->p_type == PT_MIPS_REGINFO)
11804           break;
11805       if (m == NULL)
11806         {
11807           amt = sizeof *m;
11808           m = bfd_zalloc (abfd, amt);
11809           if (m == NULL)
11810             return FALSE;
11811
11812           m->p_type = PT_MIPS_REGINFO;
11813           m->count = 1;
11814           m->sections[0] = s;
11815
11816           /* We want to put it after the PHDR and INTERP segments.  */
11817           pm = &elf_seg_map (abfd);
11818           while (*pm != NULL
11819                  && ((*pm)->p_type == PT_PHDR
11820                      || (*pm)->p_type == PT_INTERP))
11821             pm = &(*pm)->next;
11822
11823           m->next = *pm;
11824           *pm = m;
11825         }
11826     }
11827
11828   /* For IRIX 6, we don't have .mdebug sections, nor does anything but
11829      .dynamic end up in PT_DYNAMIC.  However, we do have to insert a
11830      PT_MIPS_OPTIONS segment immediately following the program header
11831      table.  */
11832   if (NEWABI_P (abfd)
11833       /* On non-IRIX6 new abi, we'll have already created a segment
11834          for this section, so don't create another.  I'm not sure this
11835          is not also the case for IRIX 6, but I can't test it right
11836          now.  */
11837       && IRIX_COMPAT (abfd) == ict_irix6)
11838     {
11839       for (s = abfd->sections; s; s = s->next)
11840         if (elf_section_data (s)->this_hdr.sh_type == SHT_MIPS_OPTIONS)
11841           break;
11842
11843       if (s)
11844         {
11845           struct elf_segment_map *options_segment;
11846
11847           pm = &elf_seg_map (abfd);
11848           while (*pm != NULL
11849                  && ((*pm)->p_type == PT_PHDR
11850                      || (*pm)->p_type == PT_INTERP))
11851             pm = &(*pm)->next;
11852
11853           if (*pm == NULL || (*pm)->p_type != PT_MIPS_OPTIONS)
11854             {
11855               amt = sizeof (struct elf_segment_map);
11856               options_segment = bfd_zalloc (abfd, amt);
11857               options_segment->next = *pm;
11858               options_segment->p_type = PT_MIPS_OPTIONS;
11859               options_segment->p_flags = PF_R;
11860               options_segment->p_flags_valid = TRUE;
11861               options_segment->count = 1;
11862               options_segment->sections[0] = s;
11863               *pm = options_segment;
11864             }
11865         }
11866     }
11867   else
11868     {
11869       if (IRIX_COMPAT (abfd) == ict_irix5)
11870         {
11871           /* If there are .dynamic and .mdebug sections, we make a room
11872              for the RTPROC header.  FIXME: Rewrite without section names.  */
11873           if (bfd_get_section_by_name (abfd, ".interp") == NULL
11874               && bfd_get_section_by_name (abfd, ".dynamic") != NULL
11875               && bfd_get_section_by_name (abfd, ".mdebug") != NULL)
11876             {
11877               for (m = elf_seg_map (abfd); m != NULL; m = m->next)
11878                 if (m->p_type == PT_MIPS_RTPROC)
11879                   break;
11880               if (m == NULL)
11881                 {
11882                   amt = sizeof *m;
11883                   m = bfd_zalloc (abfd, amt);
11884                   if (m == NULL)
11885                     return FALSE;
11886
11887                   m->p_type = PT_MIPS_RTPROC;
11888
11889                   s = bfd_get_section_by_name (abfd, ".rtproc");
11890                   if (s == NULL)
11891                     {
11892                       m->count = 0;
11893                       m->p_flags = 0;
11894                       m->p_flags_valid = 1;
11895                     }
11896                   else
11897                     {
11898                       m->count = 1;
11899                       m->sections[0] = s;
11900                     }
11901
11902                   /* We want to put it after the DYNAMIC segment.  */
11903                   pm = &elf_seg_map (abfd);
11904                   while (*pm != NULL && (*pm)->p_type != PT_DYNAMIC)
11905                     pm = &(*pm)->next;
11906                   if (*pm != NULL)
11907                     pm = &(*pm)->next;
11908
11909                   m->next = *pm;
11910                   *pm = m;
11911                 }
11912             }
11913         }
11914       /* On IRIX5, the PT_DYNAMIC segment includes the .dynamic,
11915          .dynstr, .dynsym, and .hash sections, and everything in
11916          between.  */
11917       for (pm = &elf_seg_map (abfd); *pm != NULL;
11918            pm = &(*pm)->next)
11919         if ((*pm)->p_type == PT_DYNAMIC)
11920           break;
11921       m = *pm;
11922       if (m != NULL && IRIX_COMPAT (abfd) == ict_none)
11923         {
11924           /* For a normal mips executable the permissions for the PT_DYNAMIC
11925              segment are read, write and execute. We do that here since
11926              the code in elf.c sets only the read permission. This matters
11927              sometimes for the dynamic linker.  */
11928           if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
11929             {
11930               m->p_flags = PF_R | PF_W | PF_X;
11931               m->p_flags_valid = 1;
11932             }
11933         }
11934       /* GNU/Linux binaries do not need the extended PT_DYNAMIC section.
11935          glibc's dynamic linker has traditionally derived the number of
11936          tags from the p_filesz field, and sometimes allocates stack
11937          arrays of that size.  An overly-big PT_DYNAMIC segment can
11938          be actively harmful in such cases.  Making PT_DYNAMIC contain
11939          other sections can also make life hard for the prelinker,
11940          which might move one of the other sections to a different
11941          PT_LOAD segment.  */
11942       if (SGI_COMPAT (abfd)
11943           && m != NULL
11944           && m->count == 1
11945           && strcmp (m->sections[0]->name, ".dynamic") == 0)
11946         {
11947           static const char *sec_names[] =
11948           {
11949             ".dynamic", ".dynstr", ".dynsym", ".hash"
11950           };
11951           bfd_vma low, high;
11952           unsigned int i, c;
11953           struct elf_segment_map *n;
11954
11955           low = ~(bfd_vma) 0;
11956           high = 0;
11957           for (i = 0; i < sizeof sec_names / sizeof sec_names[0]; i++)
11958             {
11959               s = bfd_get_section_by_name (abfd, sec_names[i]);
11960               if (s != NULL && (s->flags & SEC_LOAD) != 0)
11961                 {
11962                   bfd_size_type sz;
11963
11964                   if (low > s->vma)
11965                     low = s->vma;
11966                   sz = s->size;
11967                   if (high < s->vma + sz)
11968                     high = s->vma + sz;
11969                 }
11970             }
11971
11972           c = 0;
11973           for (s = abfd->sections; s != NULL; s = s->next)
11974             if ((s->flags & SEC_LOAD) != 0
11975                 && s->vma >= low
11976                 && s->vma + s->size <= high)
11977               ++c;
11978
11979           amt = sizeof *n + (bfd_size_type) (c - 1) * sizeof (asection *);
11980           n = bfd_zalloc (abfd, amt);
11981           if (n == NULL)
11982             return FALSE;
11983           *n = *m;
11984           n->count = c;
11985
11986           i = 0;
11987           for (s = abfd->sections; s != NULL; s = s->next)
11988             {
11989               if ((s->flags & SEC_LOAD) != 0
11990                   && s->vma >= low
11991                   && s->vma + s->size <= high)
11992                 {
11993                   n->sections[i] = s;
11994                   ++i;
11995                 }
11996             }
11997
11998           *pm = n;
11999         }
12000     }
12001
12002   /* Allocate a spare program header in dynamic objects so that tools
12003      like the prelinker can add an extra PT_LOAD entry.
12004
12005      If the prelinker needs to make room for a new PT_LOAD entry, its
12006      standard procedure is to move the first (read-only) sections into
12007      the new (writable) segment.  However, the MIPS ABI requires
12008      .dynamic to be in a read-only segment, and the section will often
12009      start within sizeof (ElfNN_Phdr) bytes of the last program header.
12010
12011      Although the prelinker could in principle move .dynamic to a
12012      writable segment, it seems better to allocate a spare program
12013      header instead, and avoid the need to move any sections.
12014      There is a long tradition of allocating spare dynamic tags,
12015      so allocating a spare program header seems like a natural
12016      extension.
12017
12018      If INFO is NULL, we may be copying an already prelinked binary
12019      with objcopy or strip, so do not add this header.  */
12020   if (info != NULL
12021       && !SGI_COMPAT (abfd)
12022       && bfd_get_section_by_name (abfd, ".dynamic"))
12023     {
12024       for (pm = &elf_seg_map (abfd); *pm != NULL; pm = &(*pm)->next)
12025         if ((*pm)->p_type == PT_NULL)
12026           break;
12027       if (*pm == NULL)
12028         {
12029           m = bfd_zalloc (abfd, sizeof (*m));
12030           if (m == NULL)
12031             return FALSE;
12032
12033           m->p_type = PT_NULL;
12034           *pm = m;
12035         }
12036     }
12037
12038   return TRUE;
12039 }
12040 \f
12041 /* Return the section that should be marked against GC for a given
12042    relocation.  */
12043
12044 asection *
12045 _bfd_mips_elf_gc_mark_hook (asection *sec,
12046                             struct bfd_link_info *info,
12047                             Elf_Internal_Rela *rel,
12048                             struct elf_link_hash_entry *h,
12049                             Elf_Internal_Sym *sym)
12050 {
12051   /* ??? Do mips16 stub sections need to be handled special?  */
12052
12053   if (h != NULL)
12054     switch (ELF_R_TYPE (sec->owner, rel->r_info))
12055       {
12056       case R_MIPS_GNU_VTINHERIT:
12057       case R_MIPS_GNU_VTENTRY:
12058         return NULL;
12059       }
12060
12061   return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
12062 }
12063
12064 /* Update the got entry reference counts for the section being removed.  */
12065
12066 bfd_boolean
12067 _bfd_mips_elf_gc_sweep_hook (bfd *abfd ATTRIBUTE_UNUSED,
12068                              struct bfd_link_info *info ATTRIBUTE_UNUSED,
12069                              asection *sec ATTRIBUTE_UNUSED,
12070                              const Elf_Internal_Rela *relocs ATTRIBUTE_UNUSED)
12071 {
12072 #if 0
12073   Elf_Internal_Shdr *symtab_hdr;
12074   struct elf_link_hash_entry **sym_hashes;
12075   bfd_signed_vma *local_got_refcounts;
12076   const Elf_Internal_Rela *rel, *relend;
12077   unsigned long r_symndx;
12078   struct elf_link_hash_entry *h;
12079
12080   if (info->relocatable)
12081     return TRUE;
12082
12083   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12084   sym_hashes = elf_sym_hashes (abfd);
12085   local_got_refcounts = elf_local_got_refcounts (abfd);
12086
12087   relend = relocs + sec->reloc_count;
12088   for (rel = relocs; rel < relend; rel++)
12089     switch (ELF_R_TYPE (abfd, rel->r_info))
12090       {
12091       case R_MIPS16_GOT16:
12092       case R_MIPS16_CALL16:
12093       case R_MIPS_GOT16:
12094       case R_MIPS_CALL16:
12095       case R_MIPS_CALL_HI16:
12096       case R_MIPS_CALL_LO16:
12097       case R_MIPS_GOT_HI16:
12098       case R_MIPS_GOT_LO16:
12099       case R_MIPS_GOT_DISP:
12100       case R_MIPS_GOT_PAGE:
12101       case R_MIPS_GOT_OFST:
12102       case R_MICROMIPS_GOT16:
12103       case R_MICROMIPS_CALL16:
12104       case R_MICROMIPS_CALL_HI16:
12105       case R_MICROMIPS_CALL_LO16:
12106       case R_MICROMIPS_GOT_HI16:
12107       case R_MICROMIPS_GOT_LO16:
12108       case R_MICROMIPS_GOT_DISP:
12109       case R_MICROMIPS_GOT_PAGE:
12110       case R_MICROMIPS_GOT_OFST:
12111         /* ??? It would seem that the existing MIPS code does no sort
12112            of reference counting or whatnot on its GOT and PLT entries,
12113            so it is not possible to garbage collect them at this time.  */
12114         break;
12115
12116       default:
12117         break;
12118       }
12119 #endif
12120
12121   return TRUE;
12122 }
12123 \f
12124 /* Copy data from a MIPS ELF indirect symbol to its direct symbol,
12125    hiding the old indirect symbol.  Process additional relocation
12126    information.  Also called for weakdefs, in which case we just let
12127    _bfd_elf_link_hash_copy_indirect copy the flags for us.  */
12128
12129 void
12130 _bfd_mips_elf_copy_indirect_symbol (struct bfd_link_info *info,
12131                                     struct elf_link_hash_entry *dir,
12132                                     struct elf_link_hash_entry *ind)
12133 {
12134   struct mips_elf_link_hash_entry *dirmips, *indmips;
12135
12136   _bfd_elf_link_hash_copy_indirect (info, dir, ind);
12137
12138   dirmips = (struct mips_elf_link_hash_entry *) dir;
12139   indmips = (struct mips_elf_link_hash_entry *) ind;
12140   /* Any absolute non-dynamic relocations against an indirect or weak
12141      definition will be against the target symbol.  */
12142   if (indmips->has_static_relocs)
12143     dirmips->has_static_relocs = TRUE;
12144
12145   if (ind->root.type != bfd_link_hash_indirect)
12146     return;
12147
12148   dirmips->possibly_dynamic_relocs += indmips->possibly_dynamic_relocs;
12149   if (indmips->readonly_reloc)
12150     dirmips->readonly_reloc = TRUE;
12151   if (indmips->no_fn_stub)
12152     dirmips->no_fn_stub = TRUE;
12153   if (indmips->fn_stub)
12154     {
12155       dirmips->fn_stub = indmips->fn_stub;
12156       indmips->fn_stub = NULL;
12157     }
12158   if (indmips->need_fn_stub)
12159     {
12160       dirmips->need_fn_stub = TRUE;
12161       indmips->need_fn_stub = FALSE;
12162     }
12163   if (indmips->call_stub)
12164     {
12165       dirmips->call_stub = indmips->call_stub;
12166       indmips->call_stub = NULL;
12167     }
12168   if (indmips->call_fp_stub)
12169     {
12170       dirmips->call_fp_stub = indmips->call_fp_stub;
12171       indmips->call_fp_stub = NULL;
12172     }
12173   if (indmips->global_got_area < dirmips->global_got_area)
12174     dirmips->global_got_area = indmips->global_got_area;
12175   if (indmips->global_got_area < GGA_NONE)
12176     indmips->global_got_area = GGA_NONE;
12177   if (indmips->has_nonpic_branches)
12178     dirmips->has_nonpic_branches = TRUE;
12179 }
12180 \f
12181 #define PDR_SIZE 32
12182
12183 bfd_boolean
12184 _bfd_mips_elf_discard_info (bfd *abfd, struct elf_reloc_cookie *cookie,
12185                             struct bfd_link_info *info)
12186 {
12187   asection *o;
12188   bfd_boolean ret = FALSE;
12189   unsigned char *tdata;
12190   size_t i, skip;
12191
12192   o = bfd_get_section_by_name (abfd, ".pdr");
12193   if (! o)
12194     return FALSE;
12195   if (o->size == 0)
12196     return FALSE;
12197   if (o->size % PDR_SIZE != 0)
12198     return FALSE;
12199   if (o->output_section != NULL
12200       && bfd_is_abs_section (o->output_section))
12201     return FALSE;
12202
12203   tdata = bfd_zmalloc (o->size / PDR_SIZE);
12204   if (! tdata)
12205     return FALSE;
12206
12207   cookie->rels = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
12208                                             info->keep_memory);
12209   if (!cookie->rels)
12210     {
12211       free (tdata);
12212       return FALSE;
12213     }
12214
12215   cookie->rel = cookie->rels;
12216   cookie->relend = cookie->rels + o->reloc_count;
12217
12218   for (i = 0, skip = 0; i < o->size / PDR_SIZE; i ++)
12219     {
12220       if (bfd_elf_reloc_symbol_deleted_p (i * PDR_SIZE, cookie))
12221         {
12222           tdata[i] = 1;
12223           skip ++;
12224         }
12225     }
12226
12227   if (skip != 0)
12228     {
12229       mips_elf_section_data (o)->u.tdata = tdata;
12230       o->size -= skip * PDR_SIZE;
12231       ret = TRUE;
12232     }
12233   else
12234     free (tdata);
12235
12236   if (! info->keep_memory)
12237     free (cookie->rels);
12238
12239   return ret;
12240 }
12241
12242 bfd_boolean
12243 _bfd_mips_elf_ignore_discarded_relocs (asection *sec)
12244 {
12245   if (strcmp (sec->name, ".pdr") == 0)
12246     return TRUE;
12247   return FALSE;
12248 }
12249
12250 bfd_boolean
12251 _bfd_mips_elf_write_section (bfd *output_bfd,
12252                              struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
12253                              asection *sec, bfd_byte *contents)
12254 {
12255   bfd_byte *to, *from, *end;
12256   int i;
12257
12258   if (strcmp (sec->name, ".pdr") != 0)
12259     return FALSE;
12260
12261   if (mips_elf_section_data (sec)->u.tdata == NULL)
12262     return FALSE;
12263
12264   to = contents;
12265   end = contents + sec->size;
12266   for (from = contents, i = 0;
12267        from < end;
12268        from += PDR_SIZE, i++)
12269     {
12270       if ((mips_elf_section_data (sec)->u.tdata)[i] == 1)
12271         continue;
12272       if (to != from)
12273         memcpy (to, from, PDR_SIZE);
12274       to += PDR_SIZE;
12275     }
12276   bfd_set_section_contents (output_bfd, sec->output_section, contents,
12277                             sec->output_offset, sec->size);
12278   return TRUE;
12279 }
12280 \f
12281 /* microMIPS code retains local labels for linker relaxation.  Omit them
12282    from output by default for clarity.  */
12283
12284 bfd_boolean
12285 _bfd_mips_elf_is_target_special_symbol (bfd *abfd, asymbol *sym)
12286 {
12287   return _bfd_elf_is_local_label_name (abfd, sym->name);
12288 }
12289
12290 /* MIPS ELF uses a special find_nearest_line routine in order the
12291    handle the ECOFF debugging information.  */
12292
12293 struct mips_elf_find_line
12294 {
12295   struct ecoff_debug_info d;
12296   struct ecoff_find_line i;
12297 };
12298
12299 bfd_boolean
12300 _bfd_mips_elf_find_nearest_line (bfd *abfd, asection *section,
12301                                  asymbol **symbols, bfd_vma offset,
12302                                  const char **filename_ptr,
12303                                  const char **functionname_ptr,
12304                                  unsigned int *line_ptr)
12305 {
12306   asection *msec;
12307
12308   if (_bfd_dwarf1_find_nearest_line (abfd, section, symbols, offset,
12309                                      filename_ptr, functionname_ptr,
12310                                      line_ptr))
12311     return TRUE;
12312
12313   if (_bfd_dwarf2_find_nearest_line (abfd, dwarf_debug_sections,
12314                                      section, symbols, offset,
12315                                      filename_ptr, functionname_ptr,
12316                                      line_ptr, NULL, ABI_64_P (abfd) ? 8 : 0,
12317                                      &elf_tdata (abfd)->dwarf2_find_line_info))
12318     return TRUE;
12319
12320   msec = bfd_get_section_by_name (abfd, ".mdebug");
12321   if (msec != NULL)
12322     {
12323       flagword origflags;
12324       struct mips_elf_find_line *fi;
12325       const struct ecoff_debug_swap * const swap =
12326         get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
12327
12328       /* If we are called during a link, mips_elf_final_link may have
12329          cleared the SEC_HAS_CONTENTS field.  We force it back on here
12330          if appropriate (which it normally will be).  */
12331       origflags = msec->flags;
12332       if (elf_section_data (msec)->this_hdr.sh_type != SHT_NOBITS)
12333         msec->flags |= SEC_HAS_CONTENTS;
12334
12335       fi = mips_elf_tdata (abfd)->find_line_info;
12336       if (fi == NULL)
12337         {
12338           bfd_size_type external_fdr_size;
12339           char *fraw_src;
12340           char *fraw_end;
12341           struct fdr *fdr_ptr;
12342           bfd_size_type amt = sizeof (struct mips_elf_find_line);
12343
12344           fi = bfd_zalloc (abfd, amt);
12345           if (fi == NULL)
12346             {
12347               msec->flags = origflags;
12348               return FALSE;
12349             }
12350
12351           if (! _bfd_mips_elf_read_ecoff_info (abfd, msec, &fi->d))
12352             {
12353               msec->flags = origflags;
12354               return FALSE;
12355             }
12356
12357           /* Swap in the FDR information.  */
12358           amt = fi->d.symbolic_header.ifdMax * sizeof (struct fdr);
12359           fi->d.fdr = bfd_alloc (abfd, amt);
12360           if (fi->d.fdr == NULL)
12361             {
12362               msec->flags = origflags;
12363               return FALSE;
12364             }
12365           external_fdr_size = swap->external_fdr_size;
12366           fdr_ptr = fi->d.fdr;
12367           fraw_src = (char *) fi->d.external_fdr;
12368           fraw_end = (fraw_src
12369                       + fi->d.symbolic_header.ifdMax * external_fdr_size);
12370           for (; fraw_src < fraw_end; fraw_src += external_fdr_size, fdr_ptr++)
12371             (*swap->swap_fdr_in) (abfd, fraw_src, fdr_ptr);
12372
12373           mips_elf_tdata (abfd)->find_line_info = fi;
12374
12375           /* Note that we don't bother to ever free this information.
12376              find_nearest_line is either called all the time, as in
12377              objdump -l, so the information should be saved, or it is
12378              rarely called, as in ld error messages, so the memory
12379              wasted is unimportant.  Still, it would probably be a
12380              good idea for free_cached_info to throw it away.  */
12381         }
12382
12383       if (_bfd_ecoff_locate_line (abfd, section, offset, &fi->d, swap,
12384                                   &fi->i, filename_ptr, functionname_ptr,
12385                                   line_ptr))
12386         {
12387           msec->flags = origflags;
12388           return TRUE;
12389         }
12390
12391       msec->flags = origflags;
12392     }
12393
12394   /* Fall back on the generic ELF find_nearest_line routine.  */
12395
12396   return _bfd_elf_find_nearest_line (abfd, section, symbols, offset,
12397                                      filename_ptr, functionname_ptr,
12398                                      line_ptr);
12399 }
12400
12401 bfd_boolean
12402 _bfd_mips_elf_find_inliner_info (bfd *abfd,
12403                                  const char **filename_ptr,
12404                                  const char **functionname_ptr,
12405                                  unsigned int *line_ptr)
12406 {
12407   bfd_boolean found;
12408   found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
12409                                          functionname_ptr, line_ptr,
12410                                          & elf_tdata (abfd)->dwarf2_find_line_info);
12411   return found;
12412 }
12413
12414 \f
12415 /* When are writing out the .options or .MIPS.options section,
12416    remember the bytes we are writing out, so that we can install the
12417    GP value in the section_processing routine.  */
12418
12419 bfd_boolean
12420 _bfd_mips_elf_set_section_contents (bfd *abfd, sec_ptr section,
12421                                     const void *location,
12422                                     file_ptr offset, bfd_size_type count)
12423 {
12424   if (MIPS_ELF_OPTIONS_SECTION_NAME_P (section->name))
12425     {
12426       bfd_byte *c;
12427
12428       if (elf_section_data (section) == NULL)
12429         {
12430           bfd_size_type amt = sizeof (struct bfd_elf_section_data);
12431           section->used_by_bfd = bfd_zalloc (abfd, amt);
12432           if (elf_section_data (section) == NULL)
12433             return FALSE;
12434         }
12435       c = mips_elf_section_data (section)->u.tdata;
12436       if (c == NULL)
12437         {
12438           c = bfd_zalloc (abfd, section->size);
12439           if (c == NULL)
12440             return FALSE;
12441           mips_elf_section_data (section)->u.tdata = c;
12442         }
12443
12444       memcpy (c + offset, location, count);
12445     }
12446
12447   return _bfd_elf_set_section_contents (abfd, section, location, offset,
12448                                         count);
12449 }
12450
12451 /* This is almost identical to bfd_generic_get_... except that some
12452    MIPS relocations need to be handled specially.  Sigh.  */
12453
12454 bfd_byte *
12455 _bfd_elf_mips_get_relocated_section_contents
12456   (bfd *abfd,
12457    struct bfd_link_info *link_info,
12458    struct bfd_link_order *link_order,
12459    bfd_byte *data,
12460    bfd_boolean relocatable,
12461    asymbol **symbols)
12462 {
12463   /* Get enough memory to hold the stuff */
12464   bfd *input_bfd = link_order->u.indirect.section->owner;
12465   asection *input_section = link_order->u.indirect.section;
12466   bfd_size_type sz;
12467
12468   long reloc_size = bfd_get_reloc_upper_bound (input_bfd, input_section);
12469   arelent **reloc_vector = NULL;
12470   long reloc_count;
12471
12472   if (reloc_size < 0)
12473     goto error_return;
12474
12475   reloc_vector = bfd_malloc (reloc_size);
12476   if (reloc_vector == NULL && reloc_size != 0)
12477     goto error_return;
12478
12479   /* read in the section */
12480   sz = input_section->rawsize ? input_section->rawsize : input_section->size;
12481   if (!bfd_get_section_contents (input_bfd, input_section, data, 0, sz))
12482     goto error_return;
12483
12484   reloc_count = bfd_canonicalize_reloc (input_bfd,
12485                                         input_section,
12486                                         reloc_vector,
12487                                         symbols);
12488   if (reloc_count < 0)
12489     goto error_return;
12490
12491   if (reloc_count > 0)
12492     {
12493       arelent **parent;
12494       /* for mips */
12495       int gp_found;
12496       bfd_vma gp = 0x12345678;  /* initialize just to shut gcc up */
12497
12498       {
12499         struct bfd_hash_entry *h;
12500         struct bfd_link_hash_entry *lh;
12501         /* Skip all this stuff if we aren't mixing formats.  */
12502         if (abfd && input_bfd
12503             && abfd->xvec == input_bfd->xvec)
12504           lh = 0;
12505         else
12506           {
12507             h = bfd_hash_lookup (&link_info->hash->table, "_gp", FALSE, FALSE);
12508             lh = (struct bfd_link_hash_entry *) h;
12509           }
12510       lookup:
12511         if (lh)
12512           {
12513             switch (lh->type)
12514               {
12515               case bfd_link_hash_undefined:
12516               case bfd_link_hash_undefweak:
12517               case bfd_link_hash_common:
12518                 gp_found = 0;
12519                 break;
12520               case bfd_link_hash_defined:
12521               case bfd_link_hash_defweak:
12522                 gp_found = 1;
12523                 gp = lh->u.def.value;
12524                 break;
12525               case bfd_link_hash_indirect:
12526               case bfd_link_hash_warning:
12527                 lh = lh->u.i.link;
12528                 /* @@FIXME  ignoring warning for now */
12529                 goto lookup;
12530               case bfd_link_hash_new:
12531               default:
12532                 abort ();
12533               }
12534           }
12535         else
12536           gp_found = 0;
12537       }
12538       /* end mips */
12539       for (parent = reloc_vector; *parent != NULL; parent++)
12540         {
12541           char *error_message = NULL;
12542           bfd_reloc_status_type r;
12543
12544           /* Specific to MIPS: Deal with relocation types that require
12545              knowing the gp of the output bfd.  */
12546           asymbol *sym = *(*parent)->sym_ptr_ptr;
12547
12548           /* If we've managed to find the gp and have a special
12549              function for the relocation then go ahead, else default
12550              to the generic handling.  */
12551           if (gp_found
12552               && (*parent)->howto->special_function
12553               == _bfd_mips_elf32_gprel16_reloc)
12554             r = _bfd_mips_elf_gprel16_with_gp (input_bfd, sym, *parent,
12555                                                input_section, relocatable,
12556                                                data, gp);
12557           else
12558             r = bfd_perform_relocation (input_bfd, *parent, data,
12559                                         input_section,
12560                                         relocatable ? abfd : NULL,
12561                                         &error_message);
12562
12563           if (relocatable)
12564             {
12565               asection *os = input_section->output_section;
12566
12567               /* A partial link, so keep the relocs */
12568               os->orelocation[os->reloc_count] = *parent;
12569               os->reloc_count++;
12570             }
12571
12572           if (r != bfd_reloc_ok)
12573             {
12574               switch (r)
12575                 {
12576                 case bfd_reloc_undefined:
12577                   if (!((*link_info->callbacks->undefined_symbol)
12578                         (link_info, bfd_asymbol_name (*(*parent)->sym_ptr_ptr),
12579                          input_bfd, input_section, (*parent)->address, TRUE)))
12580                     goto error_return;
12581                   break;
12582                 case bfd_reloc_dangerous:
12583                   BFD_ASSERT (error_message != NULL);
12584                   if (!((*link_info->callbacks->reloc_dangerous)
12585                         (link_info, error_message, input_bfd, input_section,
12586                          (*parent)->address)))
12587                     goto error_return;
12588                   break;
12589                 case bfd_reloc_overflow:
12590                   if (!((*link_info->callbacks->reloc_overflow)
12591                         (link_info, NULL,
12592                          bfd_asymbol_name (*(*parent)->sym_ptr_ptr),
12593                          (*parent)->howto->name, (*parent)->addend,
12594                          input_bfd, input_section, (*parent)->address)))
12595                     goto error_return;
12596                   break;
12597                 case bfd_reloc_outofrange:
12598                 default:
12599                   abort ();
12600                   break;
12601                 }
12602
12603             }
12604         }
12605     }
12606   if (reloc_vector != NULL)
12607     free (reloc_vector);
12608   return data;
12609
12610 error_return:
12611   if (reloc_vector != NULL)
12612     free (reloc_vector);
12613   return NULL;
12614 }
12615 \f
12616 static bfd_boolean
12617 mips_elf_relax_delete_bytes (bfd *abfd,
12618                              asection *sec, bfd_vma addr, int count)
12619 {
12620   Elf_Internal_Shdr *symtab_hdr;
12621   unsigned int sec_shndx;
12622   bfd_byte *contents;
12623   Elf_Internal_Rela *irel, *irelend;
12624   Elf_Internal_Sym *isym;
12625   Elf_Internal_Sym *isymend;
12626   struct elf_link_hash_entry **sym_hashes;
12627   struct elf_link_hash_entry **end_hashes;
12628   struct elf_link_hash_entry **start_hashes;
12629   unsigned int symcount;
12630
12631   sec_shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
12632   contents = elf_section_data (sec)->this_hdr.contents;
12633
12634   irel = elf_section_data (sec)->relocs;
12635   irelend = irel + sec->reloc_count;
12636
12637   /* Actually delete the bytes.  */
12638   memmove (contents + addr, contents + addr + count,
12639            (size_t) (sec->size - addr - count));
12640   sec->size -= count;
12641
12642   /* Adjust all the relocs.  */
12643   for (irel = elf_section_data (sec)->relocs; irel < irelend; irel++)
12644     {
12645       /* Get the new reloc address.  */
12646       if (irel->r_offset > addr)
12647         irel->r_offset -= count;
12648     }
12649
12650   BFD_ASSERT (addr % 2 == 0);
12651   BFD_ASSERT (count % 2 == 0);
12652
12653   /* Adjust the local symbols defined in this section.  */
12654   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
12655   isym = (Elf_Internal_Sym *) symtab_hdr->contents;
12656   for (isymend = isym + symtab_hdr->sh_info; isym < isymend; isym++)
12657     if (isym->st_shndx == sec_shndx && isym->st_value > addr)
12658       isym->st_value -= count;
12659
12660   /* Now adjust the global symbols defined in this section.  */
12661   symcount = (symtab_hdr->sh_size / sizeof (Elf32_External_Sym)
12662               - symtab_hdr->sh_info);
12663   sym_hashes = start_hashes = elf_sym_hashes (abfd);
12664   end_hashes = sym_hashes + symcount;
12665
12666   for (; sym_hashes < end_hashes; sym_hashes++)
12667     {
12668       struct elf_link_hash_entry *sym_hash = *sym_hashes;
12669
12670       if ((sym_hash->root.type == bfd_link_hash_defined
12671            || sym_hash->root.type == bfd_link_hash_defweak)
12672           && sym_hash->root.u.def.section == sec)
12673         {
12674           bfd_vma value = sym_hash->root.u.def.value;
12675
12676           if (ELF_ST_IS_MICROMIPS (sym_hash->other))
12677             value &= MINUS_TWO;
12678           if (value > addr)
12679             sym_hash->root.u.def.value -= count;
12680         }
12681     }
12682
12683   return TRUE;
12684 }
12685
12686
12687 /* Opcodes needed for microMIPS relaxation as found in
12688    opcodes/micromips-opc.c.  */
12689
12690 struct opcode_descriptor {
12691   unsigned long match;
12692   unsigned long mask;
12693 };
12694
12695 /* The $ra register aka $31.  */
12696
12697 #define RA 31
12698
12699 /* 32-bit instruction format register fields.  */
12700
12701 #define OP32_SREG(opcode) (((opcode) >> 16) & 0x1f)
12702 #define OP32_TREG(opcode) (((opcode) >> 21) & 0x1f)
12703
12704 /* Check if a 5-bit register index can be abbreviated to 3 bits.  */
12705
12706 #define OP16_VALID_REG(r) \
12707   ((2 <= (r) && (r) <= 7) || (16 <= (r) && (r) <= 17))
12708
12709
12710 /* 32-bit and 16-bit branches.  */
12711
12712 static const struct opcode_descriptor b_insns_32[] = {
12713   { /* "b",     "p",            */ 0x40400000, 0xffff0000 }, /* bgez 0 */
12714   { /* "b",     "p",            */ 0x94000000, 0xffff0000 }, /* beq 0, 0 */
12715   { 0, 0 }  /* End marker for find_match().  */
12716 };
12717
12718 static const struct opcode_descriptor bc_insn_32 =
12719   { /* "bc(1|2)(ft)", "N,p",    */ 0x42800000, 0xfec30000 };
12720
12721 static const struct opcode_descriptor bz_insn_32 =
12722   { /* "b(g|l)(e|t)z", "s,p",   */ 0x40000000, 0xff200000 };
12723
12724 static const struct opcode_descriptor bzal_insn_32 =
12725   { /* "b(ge|lt)zal", "s,p",    */ 0x40200000, 0xffa00000 };
12726
12727 static const struct opcode_descriptor beq_insn_32 =
12728   { /* "b(eq|ne)", "s,t,p",     */ 0x94000000, 0xdc000000 };
12729
12730 static const struct opcode_descriptor b_insn_16 =
12731   { /* "b",     "mD",           */ 0xcc00,     0xfc00 };
12732
12733 static const struct opcode_descriptor bz_insn_16 =
12734   { /* "b(eq|ne)z", "md,mE",    */ 0x8c00,     0xdc00 };
12735
12736
12737 /* 32-bit and 16-bit branch EQ and NE zero.  */
12738
12739 /* NOTE: All opcode tables have BEQ/BNE in the same order: first the
12740    eq and second the ne.  This convention is used when replacing a
12741    32-bit BEQ/BNE with the 16-bit version.  */
12742
12743 #define BZC32_REG_FIELD(r) (((r) & 0x1f) << 16)
12744
12745 static const struct opcode_descriptor bz_rs_insns_32[] = {
12746   { /* "beqz",  "s,p",          */ 0x94000000, 0xffe00000 },
12747   { /* "bnez",  "s,p",          */ 0xb4000000, 0xffe00000 },
12748   { 0, 0 }  /* End marker for find_match().  */
12749 };
12750
12751 static const struct opcode_descriptor bz_rt_insns_32[] = {
12752   { /* "beqz",  "t,p",          */ 0x94000000, 0xfc01f000 },
12753   { /* "bnez",  "t,p",          */ 0xb4000000, 0xfc01f000 },
12754   { 0, 0 }  /* End marker for find_match().  */
12755 };
12756
12757 static const struct opcode_descriptor bzc_insns_32[] = {
12758   { /* "beqzc", "s,p",          */ 0x40e00000, 0xffe00000 },
12759   { /* "bnezc", "s,p",          */ 0x40a00000, 0xffe00000 },
12760   { 0, 0 }  /* End marker for find_match().  */
12761 };
12762
12763 static const struct opcode_descriptor bz_insns_16[] = {
12764   { /* "beqz",  "md,mE",        */ 0x8c00,     0xfc00 },
12765   { /* "bnez",  "md,mE",        */ 0xac00,     0xfc00 },
12766   { 0, 0 }  /* End marker for find_match().  */
12767 };
12768
12769 /* Switch between a 5-bit register index and its 3-bit shorthand.  */
12770
12771 #define BZ16_REG(opcode) ((((((opcode) >> 7) & 7) + 0x1e) & 0x17) + 2)
12772 #define BZ16_REG_FIELD(r) \
12773   (((2 <= (r) && (r) <= 7) ? (r) : ((r) - 16)) << 7)
12774
12775
12776 /* 32-bit instructions with a delay slot.  */
12777
12778 static const struct opcode_descriptor jal_insn_32_bd16 =
12779   { /* "jals",  "a",            */ 0x74000000, 0xfc000000 };
12780
12781 static const struct opcode_descriptor jal_insn_32_bd32 =
12782   { /* "jal",   "a",            */ 0xf4000000, 0xfc000000 };
12783
12784 static const struct opcode_descriptor jal_x_insn_32_bd32 =
12785   { /* "jal[x]", "a",           */ 0xf0000000, 0xf8000000 };
12786
12787 static const struct opcode_descriptor j_insn_32 =
12788   { /* "j",     "a",            */ 0xd4000000, 0xfc000000 };
12789
12790 static const struct opcode_descriptor jalr_insn_32 =
12791   { /* "jalr[.hb]", "t,s",      */ 0x00000f3c, 0xfc00efff };
12792
12793 /* This table can be compacted, because no opcode replacement is made.  */
12794
12795 static const struct opcode_descriptor ds_insns_32_bd16[] = {
12796   { /* "jals",  "a",            */ 0x74000000, 0xfc000000 },
12797
12798   { /* "jalrs[.hb]", "t,s",     */ 0x00004f3c, 0xfc00efff },
12799   { /* "b(ge|lt)zals", "s,p",   */ 0x42200000, 0xffa00000 },
12800
12801   { /* "b(g|l)(e|t)z", "s,p",   */ 0x40000000, 0xff200000 },
12802   { /* "b(eq|ne)", "s,t,p",     */ 0x94000000, 0xdc000000 },
12803   { /* "j",     "a",            */ 0xd4000000, 0xfc000000 },
12804   { 0, 0 }  /* End marker for find_match().  */
12805 };
12806
12807 /* This table can be compacted, because no opcode replacement is made.  */
12808
12809 static const struct opcode_descriptor ds_insns_32_bd32[] = {
12810   { /* "jal[x]", "a",           */ 0xf0000000, 0xf8000000 },
12811
12812   { /* "jalr[.hb]", "t,s",      */ 0x00000f3c, 0xfc00efff },
12813   { /* "b(ge|lt)zal", "s,p",    */ 0x40200000, 0xffa00000 },
12814   { 0, 0 }  /* End marker for find_match().  */
12815 };
12816
12817
12818 /* 16-bit instructions with a delay slot.  */
12819
12820 static const struct opcode_descriptor jalr_insn_16_bd16 =
12821   { /* "jalrs", "my,mj",        */ 0x45e0,     0xffe0 };
12822
12823 static const struct opcode_descriptor jalr_insn_16_bd32 =
12824   { /* "jalr",  "my,mj",        */ 0x45c0,     0xffe0 };
12825
12826 static const struct opcode_descriptor jr_insn_16 =
12827   { /* "jr",    "mj",           */ 0x4580,     0xffe0 };
12828
12829 #define JR16_REG(opcode) ((opcode) & 0x1f)
12830
12831 /* This table can be compacted, because no opcode replacement is made.  */
12832
12833 static const struct opcode_descriptor ds_insns_16_bd16[] = {
12834   { /* "jalrs", "my,mj",        */ 0x45e0,     0xffe0 },
12835
12836   { /* "b",     "mD",           */ 0xcc00,     0xfc00 },
12837   { /* "b(eq|ne)z", "md,mE",    */ 0x8c00,     0xdc00 },
12838   { /* "jr",    "mj",           */ 0x4580,     0xffe0 },
12839   { 0, 0 }  /* End marker for find_match().  */
12840 };
12841
12842
12843 /* LUI instruction.  */
12844
12845 static const struct opcode_descriptor lui_insn =
12846  { /* "lui",    "s,u",          */ 0x41a00000, 0xffe00000 };
12847
12848
12849 /* ADDIU instruction.  */
12850
12851 static const struct opcode_descriptor addiu_insn =
12852   { /* "addiu", "t,r,j",        */ 0x30000000, 0xfc000000 };
12853
12854 static const struct opcode_descriptor addiupc_insn =
12855   { /* "addiu", "mb,$pc,mQ",    */ 0x78000000, 0xfc000000 };
12856
12857 #define ADDIUPC_REG_FIELD(r) \
12858   (((2 <= (r) && (r) <= 7) ? (r) : ((r) - 16)) << 23)
12859
12860
12861 /* Relaxable instructions in a JAL delay slot: MOVE.  */
12862
12863 /* The 16-bit move has rd in 9:5 and rs in 4:0.  The 32-bit moves
12864    (ADDU, OR) have rd in 15:11 and rs in 10:16.  */
12865 #define MOVE32_RD(opcode) (((opcode) >> 11) & 0x1f)
12866 #define MOVE32_RS(opcode) (((opcode) >> 16) & 0x1f)
12867
12868 #define MOVE16_RD_FIELD(r) (((r) & 0x1f) << 5)
12869 #define MOVE16_RS_FIELD(r) (((r) & 0x1f)     )
12870
12871 static const struct opcode_descriptor move_insns_32[] = {
12872   { /* "move",  "d,s",          */ 0x00000150, 0xffe007ff }, /* addu d,s,$0 */
12873   { /* "move",  "d,s",          */ 0x00000290, 0xffe007ff }, /* or   d,s,$0 */
12874   { 0, 0 }  /* End marker for find_match().  */
12875 };
12876
12877 static const struct opcode_descriptor move_insn_16 =
12878   { /* "move",  "mp,mj",        */ 0x0c00,     0xfc00 };
12879
12880
12881 /* NOP instructions.  */
12882
12883 static const struct opcode_descriptor nop_insn_32 =
12884   { /* "nop",   "",             */ 0x00000000, 0xffffffff };
12885
12886 static const struct opcode_descriptor nop_insn_16 =
12887   { /* "nop",   "",             */ 0x0c00,     0xffff };
12888
12889
12890 /* Instruction match support.  */
12891
12892 #define MATCH(opcode, insn) ((opcode & insn.mask) == insn.match)
12893
12894 static int
12895 find_match (unsigned long opcode, const struct opcode_descriptor insn[])
12896 {
12897   unsigned long indx;
12898
12899   for (indx = 0; insn[indx].mask != 0; indx++)
12900     if (MATCH (opcode, insn[indx]))
12901       return indx;
12902
12903   return -1;
12904 }
12905
12906
12907 /* Branch and delay slot decoding support.  */
12908
12909 /* If PTR points to what *might* be a 16-bit branch or jump, then
12910    return the minimum length of its delay slot, otherwise return 0.
12911    Non-zero results are not definitive as we might be checking against
12912    the second half of another instruction.  */
12913
12914 static int
12915 check_br16_dslot (bfd *abfd, bfd_byte *ptr)
12916 {
12917   unsigned long opcode;
12918   int bdsize;
12919
12920   opcode = bfd_get_16 (abfd, ptr);
12921   if (MATCH (opcode, jalr_insn_16_bd32) != 0)
12922     /* 16-bit branch/jump with a 32-bit delay slot.  */
12923     bdsize = 4;
12924   else if (MATCH (opcode, jalr_insn_16_bd16) != 0
12925            || find_match (opcode, ds_insns_16_bd16) >= 0)
12926     /* 16-bit branch/jump with a 16-bit delay slot.  */
12927     bdsize = 2;
12928   else
12929     /* No delay slot.  */
12930     bdsize = 0;
12931
12932   return bdsize;
12933 }
12934
12935 /* If PTR points to what *might* be a 32-bit branch or jump, then
12936    return the minimum length of its delay slot, otherwise return 0.
12937    Non-zero results are not definitive as we might be checking against
12938    the second half of another instruction.  */
12939
12940 static int
12941 check_br32_dslot (bfd *abfd, bfd_byte *ptr)
12942 {
12943   unsigned long opcode;
12944   int bdsize;
12945
12946   opcode = bfd_get_micromips_32 (abfd, ptr);
12947   if (find_match (opcode, ds_insns_32_bd32) >= 0)
12948     /* 32-bit branch/jump with a 32-bit delay slot.  */
12949     bdsize = 4;
12950   else if (find_match (opcode, ds_insns_32_bd16) >= 0)
12951     /* 32-bit branch/jump with a 16-bit delay slot.  */
12952     bdsize = 2;
12953   else
12954     /* No delay slot.  */
12955     bdsize = 0;
12956
12957   return bdsize;
12958 }
12959
12960 /* If PTR points to a 16-bit branch or jump with a 32-bit delay slot
12961    that doesn't fiddle with REG, then return TRUE, otherwise FALSE.  */
12962
12963 static bfd_boolean
12964 check_br16 (bfd *abfd, bfd_byte *ptr, unsigned long reg)
12965 {
12966   unsigned long opcode;
12967
12968   opcode = bfd_get_16 (abfd, ptr);
12969   if (MATCH (opcode, b_insn_16)
12970                                                 /* B16  */
12971       || (MATCH (opcode, jr_insn_16) && reg != JR16_REG (opcode))
12972                                                 /* JR16  */
12973       || (MATCH (opcode, bz_insn_16) && reg != BZ16_REG (opcode))
12974                                                 /* BEQZ16, BNEZ16  */
12975       || (MATCH (opcode, jalr_insn_16_bd32)
12976                                                 /* JALR16  */
12977           && reg != JR16_REG (opcode) && reg != RA))
12978     return TRUE;
12979
12980   return FALSE;
12981 }
12982
12983 /* If PTR points to a 32-bit branch or jump that doesn't fiddle with REG,
12984    then return TRUE, otherwise FALSE.  */
12985
12986 static bfd_boolean
12987 check_br32 (bfd *abfd, bfd_byte *ptr, unsigned long reg)
12988 {
12989   unsigned long opcode;
12990
12991   opcode = bfd_get_micromips_32 (abfd, ptr);
12992   if (MATCH (opcode, j_insn_32)
12993                                                 /* J  */
12994       || MATCH (opcode, bc_insn_32)
12995                                                 /* BC1F, BC1T, BC2F, BC2T  */
12996       || (MATCH (opcode, jal_x_insn_32_bd32) && reg != RA)
12997                                                 /* JAL, JALX  */
12998       || (MATCH (opcode, bz_insn_32) && reg != OP32_SREG (opcode))
12999                                                 /* BGEZ, BGTZ, BLEZ, BLTZ  */
13000       || (MATCH (opcode, bzal_insn_32)
13001                                                 /* BGEZAL, BLTZAL  */
13002           && reg != OP32_SREG (opcode) && reg != RA)
13003       || ((MATCH (opcode, jalr_insn_32) || MATCH (opcode, beq_insn_32))
13004                                                 /* JALR, JALR.HB, BEQ, BNE  */
13005           && reg != OP32_SREG (opcode) && reg != OP32_TREG (opcode)))
13006     return TRUE;
13007
13008   return FALSE;
13009 }
13010
13011 /* If the instruction encoding at PTR and relocations [INTERNAL_RELOCS,
13012    IRELEND) at OFFSET indicate that there must be a compact branch there,
13013    then return TRUE, otherwise FALSE.  */
13014
13015 static bfd_boolean
13016 check_relocated_bzc (bfd *abfd, const bfd_byte *ptr, bfd_vma offset,
13017                      const Elf_Internal_Rela *internal_relocs,
13018                      const Elf_Internal_Rela *irelend)
13019 {
13020   const Elf_Internal_Rela *irel;
13021   unsigned long opcode;
13022
13023   opcode = bfd_get_micromips_32 (abfd, ptr);
13024   if (find_match (opcode, bzc_insns_32) < 0)
13025     return FALSE;
13026
13027   for (irel = internal_relocs; irel < irelend; irel++)
13028     if (irel->r_offset == offset
13029         && ELF32_R_TYPE (irel->r_info) == R_MICROMIPS_PC16_S1)
13030       return TRUE;
13031
13032   return FALSE;
13033 }
13034
13035 /* Bitsize checking.  */
13036 #define IS_BITSIZE(val, N)                                              \
13037   (((((val) & ((1ULL << (N)) - 1)) ^ (1ULL << ((N) - 1)))               \
13038     - (1ULL << ((N) - 1))) == (val))
13039
13040 \f
13041 bfd_boolean
13042 _bfd_mips_elf_relax_section (bfd *abfd, asection *sec,
13043                              struct bfd_link_info *link_info,
13044                              bfd_boolean *again)
13045 {
13046   bfd_boolean insn32 = mips_elf_hash_table (link_info)->insn32;
13047   Elf_Internal_Shdr *symtab_hdr;
13048   Elf_Internal_Rela *internal_relocs;
13049   Elf_Internal_Rela *irel, *irelend;
13050   bfd_byte *contents = NULL;
13051   Elf_Internal_Sym *isymbuf = NULL;
13052
13053   /* Assume nothing changes.  */
13054   *again = FALSE;
13055
13056   /* We don't have to do anything for a relocatable link, if
13057      this section does not have relocs, or if this is not a
13058      code section.  */
13059
13060   if (link_info->relocatable
13061       || (sec->flags & SEC_RELOC) == 0
13062       || sec->reloc_count == 0
13063       || (sec->flags & SEC_CODE) == 0)
13064     return TRUE;
13065
13066   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
13067
13068   /* Get a copy of the native relocations.  */
13069   internal_relocs = (_bfd_elf_link_read_relocs
13070                      (abfd, sec, NULL, (Elf_Internal_Rela *) NULL,
13071                       link_info->keep_memory));
13072   if (internal_relocs == NULL)
13073     goto error_return;
13074
13075   /* Walk through them looking for relaxing opportunities.  */
13076   irelend = internal_relocs + sec->reloc_count;
13077   for (irel = internal_relocs; irel < irelend; irel++)
13078     {
13079       unsigned long r_symndx = ELF32_R_SYM (irel->r_info);
13080       unsigned int r_type = ELF32_R_TYPE (irel->r_info);
13081       bfd_boolean target_is_micromips_code_p;
13082       unsigned long opcode;
13083       bfd_vma symval;
13084       bfd_vma pcrval;
13085       bfd_byte *ptr;
13086       int fndopc;
13087
13088       /* The number of bytes to delete for relaxation and from where
13089          to delete these bytes starting at irel->r_offset.  */
13090       int delcnt = 0;
13091       int deloff = 0;
13092
13093       /* If this isn't something that can be relaxed, then ignore
13094          this reloc.  */
13095       if (r_type != R_MICROMIPS_HI16
13096           && r_type != R_MICROMIPS_PC16_S1
13097           && r_type != R_MICROMIPS_26_S1)
13098         continue;
13099
13100       /* Get the section contents if we haven't done so already.  */
13101       if (contents == NULL)
13102         {
13103           /* Get cached copy if it exists.  */
13104           if (elf_section_data (sec)->this_hdr.contents != NULL)
13105             contents = elf_section_data (sec)->this_hdr.contents;
13106           /* Go get them off disk.  */
13107           else if (!bfd_malloc_and_get_section (abfd, sec, &contents))
13108             goto error_return;
13109         }
13110       ptr = contents + irel->r_offset;
13111
13112       /* Read this BFD's local symbols if we haven't done so already.  */
13113       if (isymbuf == NULL && symtab_hdr->sh_info != 0)
13114         {
13115           isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
13116           if (isymbuf == NULL)
13117             isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
13118                                             symtab_hdr->sh_info, 0,
13119                                             NULL, NULL, NULL);
13120           if (isymbuf == NULL)
13121             goto error_return;
13122         }
13123
13124       /* Get the value of the symbol referred to by the reloc.  */
13125       if (r_symndx < symtab_hdr->sh_info)
13126         {
13127           /* A local symbol.  */
13128           Elf_Internal_Sym *isym;
13129           asection *sym_sec;
13130
13131           isym = isymbuf + r_symndx;
13132           if (isym->st_shndx == SHN_UNDEF)
13133             sym_sec = bfd_und_section_ptr;
13134           else if (isym->st_shndx == SHN_ABS)
13135             sym_sec = bfd_abs_section_ptr;
13136           else if (isym->st_shndx == SHN_COMMON)
13137             sym_sec = bfd_com_section_ptr;
13138           else
13139             sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
13140           symval = (isym->st_value
13141                     + sym_sec->output_section->vma
13142                     + sym_sec->output_offset);
13143           target_is_micromips_code_p = ELF_ST_IS_MICROMIPS (isym->st_other);
13144         }
13145       else
13146         {
13147           unsigned long indx;
13148           struct elf_link_hash_entry *h;
13149
13150           /* An external symbol.  */
13151           indx = r_symndx - symtab_hdr->sh_info;
13152           h = elf_sym_hashes (abfd)[indx];
13153           BFD_ASSERT (h != NULL);
13154
13155           if (h->root.type != bfd_link_hash_defined
13156               && h->root.type != bfd_link_hash_defweak)
13157             /* This appears to be a reference to an undefined
13158                symbol.  Just ignore it -- it will be caught by the
13159                regular reloc processing.  */
13160             continue;
13161
13162           symval = (h->root.u.def.value
13163                     + h->root.u.def.section->output_section->vma
13164                     + h->root.u.def.section->output_offset);
13165           target_is_micromips_code_p = (!h->needs_plt
13166                                         && ELF_ST_IS_MICROMIPS (h->other));
13167         }
13168
13169
13170       /* For simplicity of coding, we are going to modify the
13171          section contents, the section relocs, and the BFD symbol
13172          table.  We must tell the rest of the code not to free up this
13173          information.  It would be possible to instead create a table
13174          of changes which have to be made, as is done in coff-mips.c;
13175          that would be more work, but would require less memory when
13176          the linker is run.  */
13177
13178       /* Only 32-bit instructions relaxed.  */
13179       if (irel->r_offset + 4 > sec->size)
13180         continue;
13181
13182       opcode = bfd_get_micromips_32 (abfd, ptr);
13183
13184       /* This is the pc-relative distance from the instruction the
13185          relocation is applied to, to the symbol referred.  */
13186       pcrval = (symval
13187                 - (sec->output_section->vma + sec->output_offset)
13188                 - irel->r_offset);
13189
13190       /* R_MICROMIPS_HI16 / LUI relaxation to nil, performing relaxation
13191          of corresponding R_MICROMIPS_LO16 to R_MICROMIPS_HI0_LO16 or
13192          R_MICROMIPS_PC23_S2.  The R_MICROMIPS_PC23_S2 condition is
13193
13194            (symval % 4 == 0 && IS_BITSIZE (pcrval, 25))
13195
13196          where pcrval has first to be adjusted to apply against the LO16
13197          location (we make the adjustment later on, when we have figured
13198          out the offset).  */
13199       if (r_type == R_MICROMIPS_HI16 && MATCH (opcode, lui_insn))
13200         {
13201           bfd_boolean bzc = FALSE;
13202           unsigned long nextopc;
13203           unsigned long reg;
13204           bfd_vma offset;
13205
13206           /* Give up if the previous reloc was a HI16 against this symbol
13207              too.  */
13208           if (irel > internal_relocs
13209               && ELF32_R_TYPE (irel[-1].r_info) == R_MICROMIPS_HI16
13210               && ELF32_R_SYM (irel[-1].r_info) == r_symndx)
13211             continue;
13212
13213           /* Or if the next reloc is not a LO16 against this symbol.  */
13214           if (irel + 1 >= irelend
13215               || ELF32_R_TYPE (irel[1].r_info) != R_MICROMIPS_LO16
13216               || ELF32_R_SYM (irel[1].r_info) != r_symndx)
13217             continue;
13218
13219           /* Or if the second next reloc is a LO16 against this symbol too.  */
13220           if (irel + 2 >= irelend
13221               && ELF32_R_TYPE (irel[2].r_info) == R_MICROMIPS_LO16
13222               && ELF32_R_SYM (irel[2].r_info) == r_symndx)
13223             continue;
13224
13225           /* See if the LUI instruction *might* be in a branch delay slot.
13226              We check whether what looks like a 16-bit branch or jump is
13227              actually an immediate argument to a compact branch, and let
13228              it through if so.  */
13229           if (irel->r_offset >= 2
13230               && check_br16_dslot (abfd, ptr - 2)
13231               && !(irel->r_offset >= 4
13232                    && (bzc = check_relocated_bzc (abfd,
13233                                                   ptr - 4, irel->r_offset - 4,
13234                                                   internal_relocs, irelend))))
13235             continue;
13236           if (irel->r_offset >= 4
13237               && !bzc
13238               && check_br32_dslot (abfd, ptr - 4))
13239             continue;
13240
13241           reg = OP32_SREG (opcode);
13242
13243           /* We only relax adjacent instructions or ones separated with
13244              a branch or jump that has a delay slot.  The branch or jump
13245              must not fiddle with the register used to hold the address.
13246              Subtract 4 for the LUI itself.  */
13247           offset = irel[1].r_offset - irel[0].r_offset;
13248           switch (offset - 4)
13249             {
13250             case 0:
13251               break;
13252             case 2:
13253               if (check_br16 (abfd, ptr + 4, reg))
13254                 break;
13255               continue;
13256             case 4:
13257               if (check_br32 (abfd, ptr + 4, reg))
13258                 break;
13259               continue;
13260             default:
13261               continue;
13262             }
13263
13264           nextopc = bfd_get_micromips_32 (abfd, contents + irel[1].r_offset);
13265
13266           /* Give up unless the same register is used with both
13267              relocations.  */
13268           if (OP32_SREG (nextopc) != reg)
13269             continue;
13270
13271           /* Now adjust pcrval, subtracting the offset to the LO16 reloc
13272              and rounding up to take masking of the two LSBs into account.  */
13273           pcrval = ((pcrval - offset + 3) | 3) ^ 3;
13274
13275           /* R_MICROMIPS_LO16 relaxation to R_MICROMIPS_HI0_LO16.  */
13276           if (IS_BITSIZE (symval, 16))
13277             {
13278               /* Fix the relocation's type.  */
13279               irel[1].r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_HI0_LO16);
13280
13281               /* Instructions using R_MICROMIPS_LO16 have the base or
13282                  source register in bits 20:16.  This register becomes $0
13283                  (zero) as the result of the R_MICROMIPS_HI16 being 0.  */
13284               nextopc &= ~0x001f0000;
13285               bfd_put_16 (abfd, (nextopc >> 16) & 0xffff,
13286                           contents + irel[1].r_offset);
13287             }
13288
13289           /* R_MICROMIPS_LO16 / ADDIU relaxation to R_MICROMIPS_PC23_S2.
13290              We add 4 to take LUI deletion into account while checking
13291              the PC-relative distance.  */
13292           else if (symval % 4 == 0
13293                    && IS_BITSIZE (pcrval + 4, 25)
13294                    && MATCH (nextopc, addiu_insn)
13295                    && OP32_TREG (nextopc) == OP32_SREG (nextopc)
13296                    && OP16_VALID_REG (OP32_TREG (nextopc)))
13297             {
13298               /* Fix the relocation's type.  */
13299               irel[1].r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_PC23_S2);
13300
13301               /* Replace ADDIU with the ADDIUPC version.  */
13302               nextopc = (addiupc_insn.match
13303                          | ADDIUPC_REG_FIELD (OP32_TREG (nextopc)));
13304
13305               bfd_put_micromips_32 (abfd, nextopc,
13306                                     contents + irel[1].r_offset);
13307             }
13308
13309           /* Can't do anything, give up, sigh...  */
13310           else
13311             continue;
13312
13313           /* Fix the relocation's type.  */
13314           irel->r_info = ELF32_R_INFO (r_symndx, R_MIPS_NONE);
13315
13316           /* Delete the LUI instruction: 4 bytes at irel->r_offset.  */
13317           delcnt = 4;
13318           deloff = 0;
13319         }
13320
13321       /* Compact branch relaxation -- due to the multitude of macros
13322          employed by the compiler/assembler, compact branches are not
13323          always generated.  Obviously, this can/will be fixed elsewhere,
13324          but there is no drawback in double checking it here.  */
13325       else if (r_type == R_MICROMIPS_PC16_S1
13326                && irel->r_offset + 5 < sec->size
13327                && ((fndopc = find_match (opcode, bz_rs_insns_32)) >= 0
13328                    || (fndopc = find_match (opcode, bz_rt_insns_32)) >= 0)
13329                && ((!insn32
13330                     && (delcnt = MATCH (bfd_get_16 (abfd, ptr + 4),
13331                                         nop_insn_16) ? 2 : 0))
13332                    || (irel->r_offset + 7 < sec->size
13333                        && (delcnt = MATCH (bfd_get_micromips_32 (abfd,
13334                                                                  ptr + 4),
13335                                            nop_insn_32) ? 4 : 0))))
13336         {
13337           unsigned long reg;
13338
13339           reg = OP32_SREG (opcode) ? OP32_SREG (opcode) : OP32_TREG (opcode);
13340
13341           /* Replace BEQZ/BNEZ with the compact version.  */
13342           opcode = (bzc_insns_32[fndopc].match
13343                     | BZC32_REG_FIELD (reg)
13344                     | (opcode & 0xffff));               /* Addend value.  */
13345
13346           bfd_put_micromips_32 (abfd, opcode, ptr);
13347
13348           /* Delete the delay slot NOP: two or four bytes from
13349              irel->offset + 4; delcnt has already been set above.  */
13350           deloff = 4;
13351         }
13352
13353       /* R_MICROMIPS_PC16_S1 relaxation to R_MICROMIPS_PC10_S1.  We need
13354          to check the distance from the next instruction, so subtract 2.  */
13355       else if (!insn32
13356                && r_type == R_MICROMIPS_PC16_S1
13357                && IS_BITSIZE (pcrval - 2, 11)
13358                && find_match (opcode, b_insns_32) >= 0)
13359         {
13360           /* Fix the relocation's type.  */
13361           irel->r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_PC10_S1);
13362
13363           /* Replace the 32-bit opcode with a 16-bit opcode.  */
13364           bfd_put_16 (abfd,
13365                       (b_insn_16.match
13366                        | (opcode & 0x3ff)),             /* Addend value.  */
13367                       ptr);
13368
13369           /* Delete 2 bytes from irel->r_offset + 2.  */
13370           delcnt = 2;
13371           deloff = 2;
13372         }
13373
13374       /* R_MICROMIPS_PC16_S1 relaxation to R_MICROMIPS_PC7_S1.  We need
13375          to check the distance from the next instruction, so subtract 2.  */
13376       else if (!insn32
13377                && r_type == R_MICROMIPS_PC16_S1
13378                && IS_BITSIZE (pcrval - 2, 8)
13379                && (((fndopc = find_match (opcode, bz_rs_insns_32)) >= 0
13380                     && OP16_VALID_REG (OP32_SREG (opcode)))
13381                    || ((fndopc = find_match (opcode, bz_rt_insns_32)) >= 0
13382                        && OP16_VALID_REG (OP32_TREG (opcode)))))
13383         {
13384           unsigned long reg;
13385
13386           reg = OP32_SREG (opcode) ? OP32_SREG (opcode) : OP32_TREG (opcode);
13387
13388           /* Fix the relocation's type.  */
13389           irel->r_info = ELF32_R_INFO (r_symndx, R_MICROMIPS_PC7_S1);
13390
13391           /* Replace the 32-bit opcode with a 16-bit opcode.  */
13392           bfd_put_16 (abfd,
13393                       (bz_insns_16[fndopc].match
13394                        | BZ16_REG_FIELD (reg)
13395                        | (opcode & 0x7f)),              /* Addend value.  */
13396                       ptr);
13397
13398           /* Delete 2 bytes from irel->r_offset + 2.  */
13399           delcnt = 2;
13400           deloff = 2;
13401         }
13402
13403       /* R_MICROMIPS_26_S1 -- JAL to JALS relaxation for microMIPS targets.  */
13404       else if (!insn32
13405                && r_type == R_MICROMIPS_26_S1
13406                && target_is_micromips_code_p
13407                && irel->r_offset + 7 < sec->size
13408                && MATCH (opcode, jal_insn_32_bd32))
13409         {
13410           unsigned long n32opc;
13411           bfd_boolean relaxed = FALSE;
13412
13413           n32opc = bfd_get_micromips_32 (abfd, ptr + 4);
13414
13415           if (MATCH (n32opc, nop_insn_32))
13416             {
13417               /* Replace delay slot 32-bit NOP with a 16-bit NOP.  */
13418               bfd_put_16 (abfd, nop_insn_16.match, ptr + 4);
13419
13420               relaxed = TRUE;
13421             }
13422           else if (find_match (n32opc, move_insns_32) >= 0)
13423             {
13424               /* Replace delay slot 32-bit MOVE with 16-bit MOVE.  */
13425               bfd_put_16 (abfd,
13426                           (move_insn_16.match
13427                            | MOVE16_RD_FIELD (MOVE32_RD (n32opc))
13428                            | MOVE16_RS_FIELD (MOVE32_RS (n32opc))),
13429                           ptr + 4);
13430
13431               relaxed = TRUE;
13432             }
13433           /* Other 32-bit instructions relaxable to 16-bit
13434              instructions will be handled here later.  */
13435
13436           if (relaxed)
13437             {
13438               /* JAL with 32-bit delay slot that is changed to a JALS
13439                  with 16-bit delay slot.  */
13440               bfd_put_micromips_32 (abfd, jal_insn_32_bd16.match, ptr);
13441
13442               /* Delete 2 bytes from irel->r_offset + 6.  */
13443               delcnt = 2;
13444               deloff = 6;
13445             }
13446         }
13447
13448       if (delcnt != 0)
13449         {
13450           /* Note that we've changed the relocs, section contents, etc.  */
13451           elf_section_data (sec)->relocs = internal_relocs;
13452           elf_section_data (sec)->this_hdr.contents = contents;
13453           symtab_hdr->contents = (unsigned char *) isymbuf;
13454
13455           /* Delete bytes depending on the delcnt and deloff.  */
13456           if (!mips_elf_relax_delete_bytes (abfd, sec,
13457                                             irel->r_offset + deloff, delcnt))
13458             goto error_return;
13459
13460           /* That will change things, so we should relax again.
13461              Note that this is not required, and it may be slow.  */
13462           *again = TRUE;
13463         }
13464     }
13465
13466   if (isymbuf != NULL
13467       && symtab_hdr->contents != (unsigned char *) isymbuf)
13468     {
13469       if (! link_info->keep_memory)
13470         free (isymbuf);
13471       else
13472         {
13473           /* Cache the symbols for elf_link_input_bfd.  */
13474           symtab_hdr->contents = (unsigned char *) isymbuf;
13475         }
13476     }
13477
13478   if (contents != NULL
13479       && elf_section_data (sec)->this_hdr.contents != contents)
13480     {
13481       if (! link_info->keep_memory)
13482         free (contents);
13483       else
13484         {
13485           /* Cache the section contents for elf_link_input_bfd.  */
13486           elf_section_data (sec)->this_hdr.contents = contents;
13487         }
13488     }
13489
13490   if (internal_relocs != NULL
13491       && elf_section_data (sec)->relocs != internal_relocs)
13492     free (internal_relocs);
13493
13494   return TRUE;
13495
13496  error_return:
13497   if (isymbuf != NULL
13498       && symtab_hdr->contents != (unsigned char *) isymbuf)
13499     free (isymbuf);
13500   if (contents != NULL
13501       && elf_section_data (sec)->this_hdr.contents != contents)
13502     free (contents);
13503   if (internal_relocs != NULL
13504       && elf_section_data (sec)->relocs != internal_relocs)
13505     free (internal_relocs);
13506
13507   return FALSE;
13508 }
13509 \f
13510 /* Create a MIPS ELF linker hash table.  */
13511
13512 struct bfd_link_hash_table *
13513 _bfd_mips_elf_link_hash_table_create (bfd *abfd)
13514 {
13515   struct mips_elf_link_hash_table *ret;
13516   bfd_size_type amt = sizeof (struct mips_elf_link_hash_table);
13517
13518   ret = bfd_zmalloc (amt);
13519   if (ret == NULL)
13520     return NULL;
13521
13522   if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
13523                                       mips_elf_link_hash_newfunc,
13524                                       sizeof (struct mips_elf_link_hash_entry),
13525                                       MIPS_ELF_DATA))
13526     {
13527       free (ret);
13528       return NULL;
13529     }
13530   ret->root.init_plt_refcount.plist = NULL;
13531   ret->root.init_plt_offset.plist = NULL;
13532
13533   return &ret->root.root;
13534 }
13535
13536 /* Likewise, but indicate that the target is VxWorks.  */
13537
13538 struct bfd_link_hash_table *
13539 _bfd_mips_vxworks_link_hash_table_create (bfd *abfd)
13540 {
13541   struct bfd_link_hash_table *ret;
13542
13543   ret = _bfd_mips_elf_link_hash_table_create (abfd);
13544   if (ret)
13545     {
13546       struct mips_elf_link_hash_table *htab;
13547
13548       htab = (struct mips_elf_link_hash_table *) ret;
13549       htab->use_plts_and_copy_relocs = TRUE;
13550       htab->is_vxworks = TRUE;
13551     }
13552   return ret;
13553 }
13554
13555 /* A function that the linker calls if we are allowed to use PLTs
13556    and copy relocs.  */
13557
13558 void
13559 _bfd_mips_elf_use_plts_and_copy_relocs (struct bfd_link_info *info)
13560 {
13561   mips_elf_hash_table (info)->use_plts_and_copy_relocs = TRUE;
13562 }
13563
13564 /* A function that the linker calls to select between all or only
13565    32-bit microMIPS instructions.  */
13566
13567 void
13568 _bfd_mips_elf_insn32 (struct bfd_link_info *info, bfd_boolean on)
13569 {
13570   mips_elf_hash_table (info)->insn32 = on;
13571 }
13572 \f
13573 /* We need to use a special link routine to handle the .reginfo and
13574    the .mdebug sections.  We need to merge all instances of these
13575    sections together, not write them all out sequentially.  */
13576
13577 bfd_boolean
13578 _bfd_mips_elf_final_link (bfd *abfd, struct bfd_link_info *info)
13579 {
13580   asection *o;
13581   struct bfd_link_order *p;
13582   asection *reginfo_sec, *mdebug_sec, *gptab_data_sec, *gptab_bss_sec;
13583   asection *rtproc_sec;
13584   Elf32_RegInfo reginfo;
13585   struct ecoff_debug_info debug;
13586   struct mips_htab_traverse_info hti;
13587   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13588   const struct ecoff_debug_swap *swap = bed->elf_backend_ecoff_debug_swap;
13589   HDRR *symhdr = &debug.symbolic_header;
13590   void *mdebug_handle = NULL;
13591   asection *s;
13592   EXTR esym;
13593   unsigned int i;
13594   bfd_size_type amt;
13595   struct mips_elf_link_hash_table *htab;
13596
13597   static const char * const secname[] =
13598   {
13599     ".text", ".init", ".fini", ".data",
13600     ".rodata", ".sdata", ".sbss", ".bss"
13601   };
13602   static const int sc[] =
13603   {
13604     scText, scInit, scFini, scData,
13605     scRData, scSData, scSBss, scBss
13606   };
13607
13608   /* Sort the dynamic symbols so that those with GOT entries come after
13609      those without.  */
13610   htab = mips_elf_hash_table (info);
13611   BFD_ASSERT (htab != NULL);
13612
13613   if (!mips_elf_sort_hash_table (abfd, info))
13614     return FALSE;
13615
13616   /* Create any scheduled LA25 stubs.  */
13617   hti.info = info;
13618   hti.output_bfd = abfd;
13619   hti.error = FALSE;
13620   htab_traverse (htab->la25_stubs, mips_elf_create_la25_stub, &hti);
13621   if (hti.error)
13622     return FALSE;
13623
13624   /* Get a value for the GP register.  */
13625   if (elf_gp (abfd) == 0)
13626     {
13627       struct bfd_link_hash_entry *h;
13628
13629       h = bfd_link_hash_lookup (info->hash, "_gp", FALSE, FALSE, TRUE);
13630       if (h != NULL && h->type == bfd_link_hash_defined)
13631         elf_gp (abfd) = (h->u.def.value
13632                          + h->u.def.section->output_section->vma
13633                          + h->u.def.section->output_offset);
13634       else if (htab->is_vxworks
13635                && (h = bfd_link_hash_lookup (info->hash,
13636                                              "_GLOBAL_OFFSET_TABLE_",
13637                                              FALSE, FALSE, TRUE))
13638                && h->type == bfd_link_hash_defined)
13639         elf_gp (abfd) = (h->u.def.section->output_section->vma
13640                          + h->u.def.section->output_offset
13641                          + h->u.def.value);
13642       else if (info->relocatable)
13643         {
13644           bfd_vma lo = MINUS_ONE;
13645
13646           /* Find the GP-relative section with the lowest offset.  */
13647           for (o = abfd->sections; o != NULL; o = o->next)
13648             if (o->vma < lo
13649                 && (elf_section_data (o)->this_hdr.sh_flags & SHF_MIPS_GPREL))
13650               lo = o->vma;
13651
13652           /* And calculate GP relative to that.  */
13653           elf_gp (abfd) = lo + ELF_MIPS_GP_OFFSET (info);
13654         }
13655       else
13656         {
13657           /* If the relocate_section function needs to do a reloc
13658              involving the GP value, it should make a reloc_dangerous
13659              callback to warn that GP is not defined.  */
13660         }
13661     }
13662
13663   /* Go through the sections and collect the .reginfo and .mdebug
13664      information.  */
13665   reginfo_sec = NULL;
13666   mdebug_sec = NULL;
13667   gptab_data_sec = NULL;
13668   gptab_bss_sec = NULL;
13669   for (o = abfd->sections; o != NULL; o = o->next)
13670     {
13671       if (strcmp (o->name, ".reginfo") == 0)
13672         {
13673           memset (&reginfo, 0, sizeof reginfo);
13674
13675           /* We have found the .reginfo section in the output file.
13676              Look through all the link_orders comprising it and merge
13677              the information together.  */
13678           for (p = o->map_head.link_order; p != NULL; p = p->next)
13679             {
13680               asection *input_section;
13681               bfd *input_bfd;
13682               Elf32_External_RegInfo ext;
13683               Elf32_RegInfo sub;
13684
13685               if (p->type != bfd_indirect_link_order)
13686                 {
13687                   if (p->type == bfd_data_link_order)
13688                     continue;
13689                   abort ();
13690                 }
13691
13692               input_section = p->u.indirect.section;
13693               input_bfd = input_section->owner;
13694
13695               if (! bfd_get_section_contents (input_bfd, input_section,
13696                                               &ext, 0, sizeof ext))
13697                 return FALSE;
13698
13699               bfd_mips_elf32_swap_reginfo_in (input_bfd, &ext, &sub);
13700
13701               reginfo.ri_gprmask |= sub.ri_gprmask;
13702               reginfo.ri_cprmask[0] |= sub.ri_cprmask[0];
13703               reginfo.ri_cprmask[1] |= sub.ri_cprmask[1];
13704               reginfo.ri_cprmask[2] |= sub.ri_cprmask[2];
13705               reginfo.ri_cprmask[3] |= sub.ri_cprmask[3];
13706
13707               /* ri_gp_value is set by the function
13708                  mips_elf32_section_processing when the section is
13709                  finally written out.  */
13710
13711               /* Hack: reset the SEC_HAS_CONTENTS flag so that
13712                  elf_link_input_bfd ignores this section.  */
13713               input_section->flags &= ~SEC_HAS_CONTENTS;
13714             }
13715
13716           /* Size has been set in _bfd_mips_elf_always_size_sections.  */
13717           BFD_ASSERT(o->size == sizeof (Elf32_External_RegInfo));
13718
13719           /* Skip this section later on (I don't think this currently
13720              matters, but someday it might).  */
13721           o->map_head.link_order = NULL;
13722
13723           reginfo_sec = o;
13724         }
13725
13726       if (strcmp (o->name, ".mdebug") == 0)
13727         {
13728           struct extsym_info einfo;
13729           bfd_vma last;
13730
13731           /* We have found the .mdebug section in the output file.
13732              Look through all the link_orders comprising it and merge
13733              the information together.  */
13734           symhdr->magic = swap->sym_magic;
13735           /* FIXME: What should the version stamp be?  */
13736           symhdr->vstamp = 0;
13737           symhdr->ilineMax = 0;
13738           symhdr->cbLine = 0;
13739           symhdr->idnMax = 0;
13740           symhdr->ipdMax = 0;
13741           symhdr->isymMax = 0;
13742           symhdr->ioptMax = 0;
13743           symhdr->iauxMax = 0;
13744           symhdr->issMax = 0;
13745           symhdr->issExtMax = 0;
13746           symhdr->ifdMax = 0;
13747           symhdr->crfd = 0;
13748           symhdr->iextMax = 0;
13749
13750           /* We accumulate the debugging information itself in the
13751              debug_info structure.  */
13752           debug.line = NULL;
13753           debug.external_dnr = NULL;
13754           debug.external_pdr = NULL;
13755           debug.external_sym = NULL;
13756           debug.external_opt = NULL;
13757           debug.external_aux = NULL;
13758           debug.ss = NULL;
13759           debug.ssext = debug.ssext_end = NULL;
13760           debug.external_fdr = NULL;
13761           debug.external_rfd = NULL;
13762           debug.external_ext = debug.external_ext_end = NULL;
13763
13764           mdebug_handle = bfd_ecoff_debug_init (abfd, &debug, swap, info);
13765           if (mdebug_handle == NULL)
13766             return FALSE;
13767
13768           esym.jmptbl = 0;
13769           esym.cobol_main = 0;
13770           esym.weakext = 0;
13771           esym.reserved = 0;
13772           esym.ifd = ifdNil;
13773           esym.asym.iss = issNil;
13774           esym.asym.st = stLocal;
13775           esym.asym.reserved = 0;
13776           esym.asym.index = indexNil;
13777           last = 0;
13778           for (i = 0; i < sizeof (secname) / sizeof (secname[0]); i++)
13779             {
13780               esym.asym.sc = sc[i];
13781               s = bfd_get_section_by_name (abfd, secname[i]);
13782               if (s != NULL)
13783                 {
13784                   esym.asym.value = s->vma;
13785                   last = s->vma + s->size;
13786                 }
13787               else
13788                 esym.asym.value = last;
13789               if (!bfd_ecoff_debug_one_external (abfd, &debug, swap,
13790                                                  secname[i], &esym))
13791                 return FALSE;
13792             }
13793
13794           for (p = o->map_head.link_order; p != NULL; p = p->next)
13795             {
13796               asection *input_section;
13797               bfd *input_bfd;
13798               const struct ecoff_debug_swap *input_swap;
13799               struct ecoff_debug_info input_debug;
13800               char *eraw_src;
13801               char *eraw_end;
13802
13803               if (p->type != bfd_indirect_link_order)
13804                 {
13805                   if (p->type == bfd_data_link_order)
13806                     continue;
13807                   abort ();
13808                 }
13809
13810               input_section = p->u.indirect.section;
13811               input_bfd = input_section->owner;
13812
13813               if (!is_mips_elf (input_bfd))
13814                 {
13815                   /* I don't know what a non MIPS ELF bfd would be
13816                      doing with a .mdebug section, but I don't really
13817                      want to deal with it.  */
13818                   continue;
13819                 }
13820
13821               input_swap = (get_elf_backend_data (input_bfd)
13822                             ->elf_backend_ecoff_debug_swap);
13823
13824               BFD_ASSERT (p->size == input_section->size);
13825
13826               /* The ECOFF linking code expects that we have already
13827                  read in the debugging information and set up an
13828                  ecoff_debug_info structure, so we do that now.  */
13829               if (! _bfd_mips_elf_read_ecoff_info (input_bfd, input_section,
13830                                                    &input_debug))
13831                 return FALSE;
13832
13833               if (! (bfd_ecoff_debug_accumulate
13834                      (mdebug_handle, abfd, &debug, swap, input_bfd,
13835                       &input_debug, input_swap, info)))
13836                 return FALSE;
13837
13838               /* Loop through the external symbols.  For each one with
13839                  interesting information, try to find the symbol in
13840                  the linker global hash table and save the information
13841                  for the output external symbols.  */
13842               eraw_src = input_debug.external_ext;
13843               eraw_end = (eraw_src
13844                           + (input_debug.symbolic_header.iextMax
13845                              * input_swap->external_ext_size));
13846               for (;
13847                    eraw_src < eraw_end;
13848                    eraw_src += input_swap->external_ext_size)
13849                 {
13850                   EXTR ext;
13851                   const char *name;
13852                   struct mips_elf_link_hash_entry *h;
13853
13854                   (*input_swap->swap_ext_in) (input_bfd, eraw_src, &ext);
13855                   if (ext.asym.sc == scNil
13856                       || ext.asym.sc == scUndefined
13857                       || ext.asym.sc == scSUndefined)
13858                     continue;
13859
13860                   name = input_debug.ssext + ext.asym.iss;
13861                   h = mips_elf_link_hash_lookup (mips_elf_hash_table (info),
13862                                                  name, FALSE, FALSE, TRUE);
13863                   if (h == NULL || h->esym.ifd != -2)
13864                     continue;
13865
13866                   if (ext.ifd != -1)
13867                     {
13868                       BFD_ASSERT (ext.ifd
13869                                   < input_debug.symbolic_header.ifdMax);
13870                       ext.ifd = input_debug.ifdmap[ext.ifd];
13871                     }
13872
13873                   h->esym = ext;
13874                 }
13875
13876               /* Free up the information we just read.  */
13877               free (input_debug.line);
13878               free (input_debug.external_dnr);
13879               free (input_debug.external_pdr);
13880               free (input_debug.external_sym);
13881               free (input_debug.external_opt);
13882               free (input_debug.external_aux);
13883               free (input_debug.ss);
13884               free (input_debug.ssext);
13885               free (input_debug.external_fdr);
13886               free (input_debug.external_rfd);
13887               free (input_debug.external_ext);
13888
13889               /* Hack: reset the SEC_HAS_CONTENTS flag so that
13890                  elf_link_input_bfd ignores this section.  */
13891               input_section->flags &= ~SEC_HAS_CONTENTS;
13892             }
13893
13894           if (SGI_COMPAT (abfd) && info->shared)
13895             {
13896               /* Create .rtproc section.  */
13897               rtproc_sec = bfd_get_linker_section (abfd, ".rtproc");
13898               if (rtproc_sec == NULL)
13899                 {
13900                   flagword flags = (SEC_HAS_CONTENTS | SEC_IN_MEMORY
13901                                     | SEC_LINKER_CREATED | SEC_READONLY);
13902
13903                   rtproc_sec = bfd_make_section_anyway_with_flags (abfd,
13904                                                                    ".rtproc",
13905                                                                    flags);
13906                   if (rtproc_sec == NULL
13907                       || ! bfd_set_section_alignment (abfd, rtproc_sec, 4))
13908                     return FALSE;
13909                 }
13910
13911               if (! mips_elf_create_procedure_table (mdebug_handle, abfd,
13912                                                      info, rtproc_sec,
13913                                                      &debug))
13914                 return FALSE;
13915             }
13916
13917           /* Build the external symbol information.  */
13918           einfo.abfd = abfd;
13919           einfo.info = info;
13920           einfo.debug = &debug;
13921           einfo.swap = swap;
13922           einfo.failed = FALSE;
13923           mips_elf_link_hash_traverse (mips_elf_hash_table (info),
13924                                        mips_elf_output_extsym, &einfo);
13925           if (einfo.failed)
13926             return FALSE;
13927
13928           /* Set the size of the .mdebug section.  */
13929           o->size = bfd_ecoff_debug_size (abfd, &debug, swap);
13930
13931           /* Skip this section later on (I don't think this currently
13932              matters, but someday it might).  */
13933           o->map_head.link_order = NULL;
13934
13935           mdebug_sec = o;
13936         }
13937
13938       if (CONST_STRNEQ (o->name, ".gptab."))
13939         {
13940           const char *subname;
13941           unsigned int c;
13942           Elf32_gptab *tab;
13943           Elf32_External_gptab *ext_tab;
13944           unsigned int j;
13945
13946           /* The .gptab.sdata and .gptab.sbss sections hold
13947              information describing how the small data area would
13948              change depending upon the -G switch.  These sections
13949              not used in executables files.  */
13950           if (! info->relocatable)
13951             {
13952               for (p = o->map_head.link_order; p != NULL; p = p->next)
13953                 {
13954                   asection *input_section;
13955
13956                   if (p->type != bfd_indirect_link_order)
13957                     {
13958                       if (p->type == bfd_data_link_order)
13959                         continue;
13960                       abort ();
13961                     }
13962
13963                   input_section = p->u.indirect.section;
13964
13965                   /* Hack: reset the SEC_HAS_CONTENTS flag so that
13966                      elf_link_input_bfd ignores this section.  */
13967                   input_section->flags &= ~SEC_HAS_CONTENTS;
13968                 }
13969
13970               /* Skip this section later on (I don't think this
13971                  currently matters, but someday it might).  */
13972               o->map_head.link_order = NULL;
13973
13974               /* Really remove the section.  */
13975               bfd_section_list_remove (abfd, o);
13976               --abfd->section_count;
13977
13978               continue;
13979             }
13980
13981           /* There is one gptab for initialized data, and one for
13982              uninitialized data.  */
13983           if (strcmp (o->name, ".gptab.sdata") == 0)
13984             gptab_data_sec = o;
13985           else if (strcmp (o->name, ".gptab.sbss") == 0)
13986             gptab_bss_sec = o;
13987           else
13988             {
13989               (*_bfd_error_handler)
13990                 (_("%s: illegal section name `%s'"),
13991                  bfd_get_filename (abfd), o->name);
13992               bfd_set_error (bfd_error_nonrepresentable_section);
13993               return FALSE;
13994             }
13995
13996           /* The linker script always combines .gptab.data and
13997              .gptab.sdata into .gptab.sdata, and likewise for
13998              .gptab.bss and .gptab.sbss.  It is possible that there is
13999              no .sdata or .sbss section in the output file, in which
14000              case we must change the name of the output section.  */
14001           subname = o->name + sizeof ".gptab" - 1;
14002           if (bfd_get_section_by_name (abfd, subname) == NULL)
14003             {
14004               if (o == gptab_data_sec)
14005                 o->name = ".gptab.data";
14006               else
14007                 o->name = ".gptab.bss";
14008               subname = o->name + sizeof ".gptab" - 1;
14009               BFD_ASSERT (bfd_get_section_by_name (abfd, subname) != NULL);
14010             }
14011
14012           /* Set up the first entry.  */
14013           c = 1;
14014           amt = c * sizeof (Elf32_gptab);
14015           tab = bfd_malloc (amt);
14016           if (tab == NULL)
14017             return FALSE;
14018           tab[0].gt_header.gt_current_g_value = elf_gp_size (abfd);
14019           tab[0].gt_header.gt_unused = 0;
14020
14021           /* Combine the input sections.  */
14022           for (p = o->map_head.link_order; p != NULL; p = p->next)
14023             {
14024               asection *input_section;
14025               bfd *input_bfd;
14026               bfd_size_type size;
14027               unsigned long last;
14028               bfd_size_type gpentry;
14029
14030               if (p->type != bfd_indirect_link_order)
14031                 {
14032                   if (p->type == bfd_data_link_order)
14033                     continue;
14034                   abort ();
14035                 }
14036
14037               input_section = p->u.indirect.section;
14038               input_bfd = input_section->owner;
14039
14040               /* Combine the gptab entries for this input section one
14041                  by one.  We know that the input gptab entries are
14042                  sorted by ascending -G value.  */
14043               size = input_section->size;
14044               last = 0;
14045               for (gpentry = sizeof (Elf32_External_gptab);
14046                    gpentry < size;
14047                    gpentry += sizeof (Elf32_External_gptab))
14048                 {
14049                   Elf32_External_gptab ext_gptab;
14050                   Elf32_gptab int_gptab;
14051                   unsigned long val;
14052                   unsigned long add;
14053                   bfd_boolean exact;
14054                   unsigned int look;
14055
14056                   if (! (bfd_get_section_contents
14057                          (input_bfd, input_section, &ext_gptab, gpentry,
14058                           sizeof (Elf32_External_gptab))))
14059                     {
14060                       free (tab);
14061                       return FALSE;
14062                     }
14063
14064                   bfd_mips_elf32_swap_gptab_in (input_bfd, &ext_gptab,
14065                                                 &int_gptab);
14066                   val = int_gptab.gt_entry.gt_g_value;
14067                   add = int_gptab.gt_entry.gt_bytes - last;
14068
14069                   exact = FALSE;
14070                   for (look = 1; look < c; look++)
14071                     {
14072                       if (tab[look].gt_entry.gt_g_value >= val)
14073                         tab[look].gt_entry.gt_bytes += add;
14074
14075                       if (tab[look].gt_entry.gt_g_value == val)
14076                         exact = TRUE;
14077                     }
14078
14079                   if (! exact)
14080                     {
14081                       Elf32_gptab *new_tab;
14082                       unsigned int max;
14083
14084                       /* We need a new table entry.  */
14085                       amt = (bfd_size_type) (c + 1) * sizeof (Elf32_gptab);
14086                       new_tab = bfd_realloc (tab, amt);
14087                       if (new_tab == NULL)
14088                         {
14089                           free (tab);
14090                           return FALSE;
14091                         }
14092                       tab = new_tab;
14093                       tab[c].gt_entry.gt_g_value = val;
14094                       tab[c].gt_entry.gt_bytes = add;
14095
14096                       /* Merge in the size for the next smallest -G
14097                          value, since that will be implied by this new
14098                          value.  */
14099                       max = 0;
14100                       for (look = 1; look < c; look++)
14101                         {
14102                           if (tab[look].gt_entry.gt_g_value < val
14103                               && (max == 0
14104                                   || (tab[look].gt_entry.gt_g_value
14105                                       > tab[max].gt_entry.gt_g_value)))
14106                             max = look;
14107                         }
14108                       if (max != 0)
14109                         tab[c].gt_entry.gt_bytes +=
14110                           tab[max].gt_entry.gt_bytes;
14111
14112                       ++c;
14113                     }
14114
14115                   last = int_gptab.gt_entry.gt_bytes;
14116                 }
14117
14118               /* Hack: reset the SEC_HAS_CONTENTS flag so that
14119                  elf_link_input_bfd ignores this section.  */
14120               input_section->flags &= ~SEC_HAS_CONTENTS;
14121             }
14122
14123           /* The table must be sorted by -G value.  */
14124           if (c > 2)
14125             qsort (tab + 1, c - 1, sizeof (tab[0]), gptab_compare);
14126
14127           /* Swap out the table.  */
14128           amt = (bfd_size_type) c * sizeof (Elf32_External_gptab);
14129           ext_tab = bfd_alloc (abfd, amt);
14130           if (ext_tab == NULL)
14131             {
14132               free (tab);
14133               return FALSE;
14134             }
14135
14136           for (j = 0; j < c; j++)
14137             bfd_mips_elf32_swap_gptab_out (abfd, tab + j, ext_tab + j);
14138           free (tab);
14139
14140           o->size = c * sizeof (Elf32_External_gptab);
14141           o->contents = (bfd_byte *) ext_tab;
14142
14143           /* Skip this section later on (I don't think this currently
14144              matters, but someday it might).  */
14145           o->map_head.link_order = NULL;
14146         }
14147     }
14148
14149   /* Invoke the regular ELF backend linker to do all the work.  */
14150   if (!bfd_elf_final_link (abfd, info))
14151     return FALSE;
14152
14153   /* Now write out the computed sections.  */
14154
14155   if (reginfo_sec != NULL)
14156     {
14157       Elf32_External_RegInfo ext;
14158
14159       bfd_mips_elf32_swap_reginfo_out (abfd, &reginfo, &ext);
14160       if (! bfd_set_section_contents (abfd, reginfo_sec, &ext, 0, sizeof ext))
14161         return FALSE;
14162     }
14163
14164   if (mdebug_sec != NULL)
14165     {
14166       BFD_ASSERT (abfd->output_has_begun);
14167       if (! bfd_ecoff_write_accumulated_debug (mdebug_handle, abfd, &debug,
14168                                                swap, info,
14169                                                mdebug_sec->filepos))
14170         return FALSE;
14171
14172       bfd_ecoff_debug_free (mdebug_handle, abfd, &debug, swap, info);
14173     }
14174
14175   if (gptab_data_sec != NULL)
14176     {
14177       if (! bfd_set_section_contents (abfd, gptab_data_sec,
14178                                       gptab_data_sec->contents,
14179                                       0, gptab_data_sec->size))
14180         return FALSE;
14181     }
14182
14183   if (gptab_bss_sec != NULL)
14184     {
14185       if (! bfd_set_section_contents (abfd, gptab_bss_sec,
14186                                       gptab_bss_sec->contents,
14187                                       0, gptab_bss_sec->size))
14188         return FALSE;
14189     }
14190
14191   if (SGI_COMPAT (abfd))
14192     {
14193       rtproc_sec = bfd_get_section_by_name (abfd, ".rtproc");
14194       if (rtproc_sec != NULL)
14195         {
14196           if (! bfd_set_section_contents (abfd, rtproc_sec,
14197                                           rtproc_sec->contents,
14198                                           0, rtproc_sec->size))
14199             return FALSE;
14200         }
14201     }
14202
14203   return TRUE;
14204 }
14205 \f
14206 /* Structure for saying that BFD machine EXTENSION extends BASE.  */
14207
14208 struct mips_mach_extension
14209 {
14210   unsigned long extension, base;
14211 };
14212
14213
14214 /* An array describing how BFD machines relate to one another.  The entries
14215    are ordered topologically with MIPS I extensions listed last.  */
14216
14217 static const struct mips_mach_extension mips_mach_extensions[] =
14218 {
14219   /* MIPS64r2 extensions.  */
14220   { bfd_mach_mips_octeon2, bfd_mach_mips_octeonp },
14221   { bfd_mach_mips_octeonp, bfd_mach_mips_octeon },
14222   { bfd_mach_mips_octeon, bfd_mach_mipsisa64r2 },
14223
14224   /* MIPS64 extensions.  */
14225   { bfd_mach_mipsisa64r2, bfd_mach_mipsisa64 },
14226   { bfd_mach_mips_sb1, bfd_mach_mipsisa64 },
14227   { bfd_mach_mips_xlr, bfd_mach_mipsisa64 },
14228   { bfd_mach_mips_loongson_3a, bfd_mach_mipsisa64 },
14229
14230   /* MIPS V extensions.  */
14231   { bfd_mach_mipsisa64, bfd_mach_mips5 },
14232
14233   /* R10000 extensions.  */
14234   { bfd_mach_mips12000, bfd_mach_mips10000 },
14235   { bfd_mach_mips14000, bfd_mach_mips10000 },
14236   { bfd_mach_mips16000, bfd_mach_mips10000 },
14237
14238   /* R5000 extensions.  Note: the vr5500 ISA is an extension of the core
14239      vr5400 ISA, but doesn't include the multimedia stuff.  It seems
14240      better to allow vr5400 and vr5500 code to be merged anyway, since
14241      many libraries will just use the core ISA.  Perhaps we could add
14242      some sort of ASE flag if this ever proves a problem.  */
14243   { bfd_mach_mips5500, bfd_mach_mips5400 },
14244   { bfd_mach_mips5400, bfd_mach_mips5000 },
14245
14246   /* MIPS IV extensions.  */
14247   { bfd_mach_mips5, bfd_mach_mips8000 },
14248   { bfd_mach_mips10000, bfd_mach_mips8000 },
14249   { bfd_mach_mips5000, bfd_mach_mips8000 },
14250   { bfd_mach_mips7000, bfd_mach_mips8000 },
14251   { bfd_mach_mips9000, bfd_mach_mips8000 },
14252
14253   /* VR4100 extensions.  */
14254   { bfd_mach_mips4120, bfd_mach_mips4100 },
14255   { bfd_mach_mips4111, bfd_mach_mips4100 },
14256
14257   /* MIPS III extensions.  */
14258   { bfd_mach_mips_loongson_2e, bfd_mach_mips4000 },
14259   { bfd_mach_mips_loongson_2f, bfd_mach_mips4000 },
14260   { bfd_mach_mips8000, bfd_mach_mips4000 },
14261   { bfd_mach_mips4650, bfd_mach_mips4000 },
14262   { bfd_mach_mips4600, bfd_mach_mips4000 },
14263   { bfd_mach_mips4400, bfd_mach_mips4000 },
14264   { bfd_mach_mips4300, bfd_mach_mips4000 },
14265   { bfd_mach_mips4100, bfd_mach_mips4000 },
14266   { bfd_mach_mips4010, bfd_mach_mips4000 },
14267   { bfd_mach_mips5900, bfd_mach_mips4000 },
14268
14269   /* MIPS32 extensions.  */
14270   { bfd_mach_mipsisa32r2, bfd_mach_mipsisa32 },
14271
14272   /* MIPS II extensions.  */
14273   { bfd_mach_mips4000, bfd_mach_mips6000 },
14274   { bfd_mach_mipsisa32, bfd_mach_mips6000 },
14275
14276   /* MIPS I extensions.  */
14277   { bfd_mach_mips6000, bfd_mach_mips3000 },
14278   { bfd_mach_mips3900, bfd_mach_mips3000 }
14279 };
14280
14281
14282 /* Return true if bfd machine EXTENSION is an extension of machine BASE.  */
14283
14284 static bfd_boolean
14285 mips_mach_extends_p (unsigned long base, unsigned long extension)
14286 {
14287   size_t i;
14288
14289   if (extension == base)
14290     return TRUE;
14291
14292   if (base == bfd_mach_mipsisa32
14293       && mips_mach_extends_p (bfd_mach_mipsisa64, extension))
14294     return TRUE;
14295
14296   if (base == bfd_mach_mipsisa32r2
14297       && mips_mach_extends_p (bfd_mach_mipsisa64r2, extension))
14298     return TRUE;
14299
14300   for (i = 0; i < ARRAY_SIZE (mips_mach_extensions); i++)
14301     if (extension == mips_mach_extensions[i].extension)
14302       {
14303         extension = mips_mach_extensions[i].base;
14304         if (extension == base)
14305           return TRUE;
14306       }
14307
14308   return FALSE;
14309 }
14310
14311
14312 /* Return true if the given ELF header flags describe a 32-bit binary.  */
14313
14314 static bfd_boolean
14315 mips_32bit_flags_p (flagword flags)
14316 {
14317   return ((flags & EF_MIPS_32BITMODE) != 0
14318           || (flags & EF_MIPS_ABI) == E_MIPS_ABI_O32
14319           || (flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI32
14320           || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1
14321           || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_2
14322           || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32
14323           || (flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R2);
14324 }
14325
14326
14327 /* Merge object attributes from IBFD into OBFD.  Raise an error if
14328    there are conflicting attributes.  */
14329 static bfd_boolean
14330 mips_elf_merge_obj_attributes (bfd *ibfd, bfd *obfd)
14331 {
14332   obj_attribute *in_attr;
14333   obj_attribute *out_attr;
14334   bfd *abi_fp_bfd;
14335   bfd *abi_msa_bfd;
14336
14337   abi_fp_bfd = mips_elf_tdata (obfd)->abi_fp_bfd;
14338   in_attr = elf_known_obj_attributes (ibfd)[OBJ_ATTR_GNU];
14339   if (!abi_fp_bfd && in_attr[Tag_GNU_MIPS_ABI_FP].i != Val_GNU_MIPS_ABI_FP_ANY)
14340     mips_elf_tdata (obfd)->abi_fp_bfd = ibfd;
14341
14342   abi_msa_bfd = mips_elf_tdata (obfd)->abi_msa_bfd;
14343   if (!abi_msa_bfd
14344       && in_attr[Tag_GNU_MIPS_ABI_MSA].i != Val_GNU_MIPS_ABI_MSA_ANY)
14345     mips_elf_tdata (obfd)->abi_msa_bfd = ibfd;
14346
14347   if (!elf_known_obj_attributes_proc (obfd)[0].i)
14348     {
14349       /* This is the first object.  Copy the attributes.  */
14350       _bfd_elf_copy_obj_attributes (ibfd, obfd);
14351
14352       /* Use the Tag_null value to indicate the attributes have been
14353          initialized.  */
14354       elf_known_obj_attributes_proc (obfd)[0].i = 1;
14355
14356       return TRUE;
14357     }
14358
14359   /* Check for conflicting Tag_GNU_MIPS_ABI_FP attributes and merge
14360      non-conflicting ones.  */
14361   out_attr = elf_known_obj_attributes (obfd)[OBJ_ATTR_GNU];
14362   if (in_attr[Tag_GNU_MIPS_ABI_FP].i != out_attr[Tag_GNU_MIPS_ABI_FP].i)
14363     {
14364       out_attr[Tag_GNU_MIPS_ABI_FP].type = 1;
14365       if (out_attr[Tag_GNU_MIPS_ABI_FP].i == Val_GNU_MIPS_ABI_FP_ANY)
14366         out_attr[Tag_GNU_MIPS_ABI_FP].i = in_attr[Tag_GNU_MIPS_ABI_FP].i;
14367       else if (in_attr[Tag_GNU_MIPS_ABI_FP].i != Val_GNU_MIPS_ABI_FP_ANY)
14368         switch (out_attr[Tag_GNU_MIPS_ABI_FP].i)
14369           {
14370           case Val_GNU_MIPS_ABI_FP_DOUBLE:
14371             switch (in_attr[Tag_GNU_MIPS_ABI_FP].i)
14372               {
14373               case Val_GNU_MIPS_ABI_FP_SINGLE:
14374                 _bfd_error_handler
14375                   (_("Warning: %B uses %s (set by %B), %B uses %s"),
14376                    obfd, abi_fp_bfd, ibfd, "-mdouble-float", "-msingle-float");
14377                 break;
14378
14379               case Val_GNU_MIPS_ABI_FP_SOFT:
14380                 _bfd_error_handler
14381                   (_("Warning: %B uses %s (set by %B), %B uses %s"),
14382                    obfd, abi_fp_bfd, ibfd, "-mhard-float", "-msoft-float");
14383                 break;
14384
14385               case Val_GNU_MIPS_ABI_FP_64:
14386                 _bfd_error_handler
14387                   (_("Warning: %B uses %s (set by %B), %B uses %s"),
14388                    obfd, abi_fp_bfd, ibfd,
14389                    "-mdouble-float", "-mips32r2 -mfp64");
14390                 break;
14391
14392               default:
14393                 _bfd_error_handler
14394                   (_("Warning: %B uses %s (set by %B), "
14395                      "%B uses unknown floating point ABI %d"),
14396                    obfd, abi_fp_bfd, ibfd,
14397                    "-mdouble-float", in_attr[Tag_GNU_MIPS_ABI_FP].i);
14398                 break;
14399               }
14400             break;
14401
14402           case Val_GNU_MIPS_ABI_FP_SINGLE:
14403             switch (in_attr[Tag_GNU_MIPS_ABI_FP].i)
14404               {
14405               case Val_GNU_MIPS_ABI_FP_DOUBLE:
14406                 _bfd_error_handler
14407                   (_("Warning: %B uses %s (set by %B), %B uses %s"),
14408                    obfd, abi_fp_bfd, ibfd, "-msingle-float", "-mdouble-float");
14409                 break;
14410
14411               case Val_GNU_MIPS_ABI_FP_SOFT:
14412                 _bfd_error_handler
14413                   (_("Warning: %B uses %s (set by %B), %B uses %s"),
14414                    obfd, abi_fp_bfd, ibfd, "-mhard-float", "-msoft-float");
14415                 break;
14416
14417               case Val_GNU_MIPS_ABI_FP_64:
14418                 _bfd_error_handler
14419                   (_("Warning: %B uses %s (set by %B), %B uses %s"),
14420                    obfd, abi_fp_bfd, ibfd,
14421                    "-msingle-float", "-mips32r2 -mfp64");
14422                 break;
14423
14424               default:
14425                 _bfd_error_handler
14426                   (_("Warning: %B uses %s (set by %B), "
14427                      "%B uses unknown floating point ABI %d"),
14428                    obfd, abi_fp_bfd, ibfd,
14429                    "-msingle-float", in_attr[Tag_GNU_MIPS_ABI_FP].i);
14430                 break;
14431               }
14432             break;
14433
14434           case Val_GNU_MIPS_ABI_FP_SOFT:
14435             switch (in_attr[Tag_GNU_MIPS_ABI_FP].i)
14436               {
14437               case Val_GNU_MIPS_ABI_FP_DOUBLE:
14438               case Val_GNU_MIPS_ABI_FP_SINGLE:
14439               case Val_GNU_MIPS_ABI_FP_64:
14440                 _bfd_error_handler
14441                   (_("Warning: %B uses %s (set by %B), %B uses %s"),
14442                    obfd, abi_fp_bfd, ibfd, "-msoft-float", "-mhard-float");
14443                 break;
14444
14445               default:
14446                 _bfd_error_handler
14447                   (_("Warning: %B uses %s (set by %B), "
14448                      "%B uses unknown floating point ABI %d"),
14449                    obfd, abi_fp_bfd, ibfd,
14450                    "-msoft-float", in_attr[Tag_GNU_MIPS_ABI_FP].i);
14451                 break;
14452               }
14453             break;
14454
14455           case Val_GNU_MIPS_ABI_FP_64:
14456             switch (in_attr[Tag_GNU_MIPS_ABI_FP].i)
14457               {
14458               case Val_GNU_MIPS_ABI_FP_DOUBLE:
14459                 _bfd_error_handler
14460                   (_("Warning: %B uses %s (set by %B), %B uses %s"),
14461                    obfd, abi_fp_bfd, ibfd,
14462                    "-mips32r2 -mfp64", "-mdouble-float");
14463                 break;
14464
14465               case Val_GNU_MIPS_ABI_FP_SINGLE:
14466                 _bfd_error_handler
14467                   (_("Warning: %B uses %s (set by %B), %B uses %s"),
14468                    obfd, abi_fp_bfd, ibfd,
14469                    "-mips32r2 -mfp64", "-msingle-float");
14470                 break;
14471
14472               case Val_GNU_MIPS_ABI_FP_SOFT:
14473                 _bfd_error_handler
14474                   (_("Warning: %B uses %s (set by %B), %B uses %s"),
14475                    obfd, abi_fp_bfd, ibfd, "-mhard-float", "-msoft-float");
14476                 break;
14477
14478               default:
14479                 _bfd_error_handler
14480                   (_("Warning: %B uses %s (set by %B), "
14481                      "%B uses unknown floating point ABI %d"),
14482                    obfd, abi_fp_bfd, ibfd,
14483                    "-mips32r2 -mfp64", in_attr[Tag_GNU_MIPS_ABI_FP].i);
14484                 break;
14485               }
14486             break;
14487
14488           default:
14489             switch (in_attr[Tag_GNU_MIPS_ABI_FP].i)
14490               {
14491               case Val_GNU_MIPS_ABI_FP_DOUBLE:
14492                 _bfd_error_handler
14493                   (_("Warning: %B uses unknown floating point ABI %d "
14494                      "(set by %B), %B uses %s"),
14495                    obfd, abi_fp_bfd, ibfd,
14496                    out_attr[Tag_GNU_MIPS_ABI_FP].i, "-mdouble-float");
14497                 break;
14498
14499               case Val_GNU_MIPS_ABI_FP_SINGLE:
14500                 _bfd_error_handler
14501                   (_("Warning: %B uses unknown floating point ABI %d "
14502                      "(set by %B), %B uses %s"),
14503                    obfd, abi_fp_bfd, ibfd,
14504                    out_attr[Tag_GNU_MIPS_ABI_FP].i, "-msingle-float");
14505                 break;
14506
14507               case Val_GNU_MIPS_ABI_FP_SOFT:
14508                 _bfd_error_handler
14509                   (_("Warning: %B uses unknown floating point ABI %d "
14510                      "(set by %B), %B uses %s"),
14511                    obfd, abi_fp_bfd, ibfd,
14512                    out_attr[Tag_GNU_MIPS_ABI_FP].i, "-msoft-float");
14513                 break;
14514
14515               case Val_GNU_MIPS_ABI_FP_64:
14516                 _bfd_error_handler
14517                   (_("Warning: %B uses unknown floating point ABI %d "
14518                      "(set by %B), %B uses %s"),
14519                    obfd, abi_fp_bfd, ibfd,
14520                    out_attr[Tag_GNU_MIPS_ABI_FP].i, "-mips32r2 -mfp64");
14521                 break;
14522
14523               default:
14524                 _bfd_error_handler
14525                   (_("Warning: %B uses unknown floating point ABI %d "
14526                      "(set by %B), %B uses unknown floating point ABI %d"),
14527                    obfd, abi_fp_bfd, ibfd,
14528                    out_attr[Tag_GNU_MIPS_ABI_FP].i,
14529                    in_attr[Tag_GNU_MIPS_ABI_FP].i);
14530                 break;
14531               }
14532             break;
14533           }
14534     }
14535
14536   /* Check for conflicting Tag_GNU_MIPS_ABI_MSA attributes and merge
14537      non-conflicting ones.  */
14538   if (in_attr[Tag_GNU_MIPS_ABI_MSA].i != out_attr[Tag_GNU_MIPS_ABI_MSA].i)
14539     {
14540       out_attr[Tag_GNU_MIPS_ABI_MSA].type = 1;
14541       if (out_attr[Tag_GNU_MIPS_ABI_MSA].i == Val_GNU_MIPS_ABI_MSA_ANY)
14542         out_attr[Tag_GNU_MIPS_ABI_MSA].i = in_attr[Tag_GNU_MIPS_ABI_MSA].i;
14543       else if (in_attr[Tag_GNU_MIPS_ABI_MSA].i != Val_GNU_MIPS_ABI_MSA_ANY)
14544         switch (out_attr[Tag_GNU_MIPS_ABI_MSA].i)
14545           {
14546           case Val_GNU_MIPS_ABI_MSA_128:
14547             _bfd_error_handler
14548               (_("Warning: %B uses %s (set by %B), "
14549                  "%B uses unknown MSA ABI %d"),
14550                obfd, abi_msa_bfd, ibfd,
14551                "-mmsa", in_attr[Tag_GNU_MIPS_ABI_MSA].i);
14552             break;
14553
14554           default:
14555             switch (in_attr[Tag_GNU_MIPS_ABI_MSA].i)
14556               {
14557               case Val_GNU_MIPS_ABI_MSA_128:
14558                 _bfd_error_handler
14559                   (_("Warning: %B uses unknown MSA ABI %d "
14560                      "(set by %B), %B uses %s"),
14561                      obfd, abi_msa_bfd, ibfd,
14562                      out_attr[Tag_GNU_MIPS_ABI_MSA].i, "-mmsa");
14563                   break;
14564
14565               default:
14566                 _bfd_error_handler
14567                   (_("Warning: %B uses unknown MSA ABI %d "
14568                      "(set by %B), %B uses unknown MSA ABI %d"),
14569                    obfd, abi_msa_bfd, ibfd,
14570                    out_attr[Tag_GNU_MIPS_ABI_MSA].i,
14571                    in_attr[Tag_GNU_MIPS_ABI_MSA].i);
14572                 break;
14573               }
14574           }
14575     }
14576
14577   /* Merge Tag_compatibility attributes and any common GNU ones.  */
14578   _bfd_elf_merge_object_attributes (ibfd, obfd);
14579
14580   return TRUE;
14581 }
14582
14583 /* Merge backend specific data from an object file to the output
14584    object file when linking.  */
14585
14586 bfd_boolean
14587 _bfd_mips_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
14588 {
14589   flagword old_flags;
14590   flagword new_flags;
14591   bfd_boolean ok;
14592   bfd_boolean null_input_bfd = TRUE;
14593   asection *sec;
14594
14595   /* Check if we have the same endianness.  */
14596   if (! _bfd_generic_verify_endian_match (ibfd, obfd))
14597     {
14598       (*_bfd_error_handler)
14599         (_("%B: endianness incompatible with that of the selected emulation"),
14600          ibfd);
14601       return FALSE;
14602     }
14603
14604   if (!is_mips_elf (ibfd) || !is_mips_elf (obfd))
14605     return TRUE;
14606
14607   if (strcmp (bfd_get_target (ibfd), bfd_get_target (obfd)) != 0)
14608     {
14609       (*_bfd_error_handler)
14610         (_("%B: ABI is incompatible with that of the selected emulation"),
14611          ibfd);
14612       return FALSE;
14613     }
14614
14615   if (!mips_elf_merge_obj_attributes (ibfd, obfd))
14616     return FALSE;
14617
14618   new_flags = elf_elfheader (ibfd)->e_flags;
14619   elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_NOREORDER;
14620   old_flags = elf_elfheader (obfd)->e_flags;
14621
14622   if (! elf_flags_init (obfd))
14623     {
14624       elf_flags_init (obfd) = TRUE;
14625       elf_elfheader (obfd)->e_flags = new_flags;
14626       elf_elfheader (obfd)->e_ident[EI_CLASS]
14627         = elf_elfheader (ibfd)->e_ident[EI_CLASS];
14628
14629       if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
14630           && (bfd_get_arch_info (obfd)->the_default
14631               || mips_mach_extends_p (bfd_get_mach (obfd),
14632                                       bfd_get_mach (ibfd))))
14633         {
14634           if (! bfd_set_arch_mach (obfd, bfd_get_arch (ibfd),
14635                                    bfd_get_mach (ibfd)))
14636             return FALSE;
14637         }
14638
14639       return TRUE;
14640     }
14641
14642   /* Check flag compatibility.  */
14643
14644   new_flags &= ~EF_MIPS_NOREORDER;
14645   old_flags &= ~EF_MIPS_NOREORDER;
14646
14647   /* Some IRIX 6 BSD-compatibility objects have this bit set.  It
14648      doesn't seem to matter.  */
14649   new_flags &= ~EF_MIPS_XGOT;
14650   old_flags &= ~EF_MIPS_XGOT;
14651
14652   /* MIPSpro generates ucode info in n64 objects.  Again, we should
14653      just be able to ignore this.  */
14654   new_flags &= ~EF_MIPS_UCODE;
14655   old_flags &= ~EF_MIPS_UCODE;
14656
14657   /* DSOs should only be linked with CPIC code.  */
14658   if ((ibfd->flags & DYNAMIC) != 0)
14659     new_flags |= EF_MIPS_PIC | EF_MIPS_CPIC;
14660
14661   if (new_flags == old_flags)
14662     return TRUE;
14663
14664   /* Check to see if the input BFD actually contains any sections.
14665      If not, its flags may not have been initialised either, but it cannot
14666      actually cause any incompatibility.  */
14667   for (sec = ibfd->sections; sec != NULL; sec = sec->next)
14668     {
14669       /* Ignore synthetic sections and empty .text, .data and .bss sections
14670          which are automatically generated by gas.  Also ignore fake
14671          (s)common sections, since merely defining a common symbol does
14672          not affect compatibility.  */
14673       if ((sec->flags & SEC_IS_COMMON) == 0
14674           && strcmp (sec->name, ".reginfo")
14675           && strcmp (sec->name, ".mdebug")
14676           && (sec->size != 0
14677               || (strcmp (sec->name, ".text")
14678                   && strcmp (sec->name, ".data")
14679                   && strcmp (sec->name, ".bss"))))
14680         {
14681           null_input_bfd = FALSE;
14682           break;
14683         }
14684     }
14685   if (null_input_bfd)
14686     return TRUE;
14687
14688   ok = TRUE;
14689
14690   if (((new_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) != 0)
14691       != ((old_flags & (EF_MIPS_PIC | EF_MIPS_CPIC)) != 0))
14692     {
14693       (*_bfd_error_handler)
14694         (_("%B: warning: linking abicalls files with non-abicalls files"),
14695          ibfd);
14696       ok = TRUE;
14697     }
14698
14699   if (new_flags & (EF_MIPS_PIC | EF_MIPS_CPIC))
14700     elf_elfheader (obfd)->e_flags |= EF_MIPS_CPIC;
14701   if (! (new_flags & EF_MIPS_PIC))
14702     elf_elfheader (obfd)->e_flags &= ~EF_MIPS_PIC;
14703
14704   new_flags &= ~ (EF_MIPS_PIC | EF_MIPS_CPIC);
14705   old_flags &= ~ (EF_MIPS_PIC | EF_MIPS_CPIC);
14706
14707   /* Compare the ISAs.  */
14708   if (mips_32bit_flags_p (old_flags) != mips_32bit_flags_p (new_flags))
14709     {
14710       (*_bfd_error_handler)
14711         (_("%B: linking 32-bit code with 64-bit code"),
14712          ibfd);
14713       ok = FALSE;
14714     }
14715   else if (!mips_mach_extends_p (bfd_get_mach (ibfd), bfd_get_mach (obfd)))
14716     {
14717       /* OBFD's ISA isn't the same as, or an extension of, IBFD's.  */
14718       if (mips_mach_extends_p (bfd_get_mach (obfd), bfd_get_mach (ibfd)))
14719         {
14720           /* Copy the architecture info from IBFD to OBFD.  Also copy
14721              the 32-bit flag (if set) so that we continue to recognise
14722              OBFD as a 32-bit binary.  */
14723           bfd_set_arch_info (obfd, bfd_get_arch_info (ibfd));
14724           elf_elfheader (obfd)->e_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH);
14725           elf_elfheader (obfd)->e_flags
14726             |= new_flags & (EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
14727
14728           /* Copy across the ABI flags if OBFD doesn't use them
14729              and if that was what caused us to treat IBFD as 32-bit.  */
14730           if ((old_flags & EF_MIPS_ABI) == 0
14731               && mips_32bit_flags_p (new_flags)
14732               && !mips_32bit_flags_p (new_flags & ~EF_MIPS_ABI))
14733             elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_ABI;
14734         }
14735       else
14736         {
14737           /* The ISAs aren't compatible.  */
14738           (*_bfd_error_handler)
14739             (_("%B: linking %s module with previous %s modules"),
14740              ibfd,
14741              bfd_printable_name (ibfd),
14742              bfd_printable_name (obfd));
14743           ok = FALSE;
14744         }
14745     }
14746
14747   new_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
14748   old_flags &= ~(EF_MIPS_ARCH | EF_MIPS_MACH | EF_MIPS_32BITMODE);
14749
14750   /* Compare ABIs.  The 64-bit ABI does not use EF_MIPS_ABI.  But, it
14751      does set EI_CLASS differently from any 32-bit ABI.  */
14752   if ((new_flags & EF_MIPS_ABI) != (old_flags & EF_MIPS_ABI)
14753       || (elf_elfheader (ibfd)->e_ident[EI_CLASS]
14754           != elf_elfheader (obfd)->e_ident[EI_CLASS]))
14755     {
14756       /* Only error if both are set (to different values).  */
14757       if (((new_flags & EF_MIPS_ABI) && (old_flags & EF_MIPS_ABI))
14758           || (elf_elfheader (ibfd)->e_ident[EI_CLASS]
14759               != elf_elfheader (obfd)->e_ident[EI_CLASS]))
14760         {
14761           (*_bfd_error_handler)
14762             (_("%B: ABI mismatch: linking %s module with previous %s modules"),
14763              ibfd,
14764              elf_mips_abi_name (ibfd),
14765              elf_mips_abi_name (obfd));
14766           ok = FALSE;
14767         }
14768       new_flags &= ~EF_MIPS_ABI;
14769       old_flags &= ~EF_MIPS_ABI;
14770     }
14771
14772   /* Compare ASEs.  Forbid linking MIPS16 and microMIPS ASE modules together
14773      and allow arbitrary mixing of the remaining ASEs (retain the union).  */
14774   if ((new_flags & EF_MIPS_ARCH_ASE) != (old_flags & EF_MIPS_ARCH_ASE))
14775     {
14776       int old_micro = old_flags & EF_MIPS_ARCH_ASE_MICROMIPS;
14777       int new_micro = new_flags & EF_MIPS_ARCH_ASE_MICROMIPS;
14778       int old_m16 = old_flags & EF_MIPS_ARCH_ASE_M16;
14779       int new_m16 = new_flags & EF_MIPS_ARCH_ASE_M16;
14780       int micro_mis = old_m16 && new_micro;
14781       int m16_mis = old_micro && new_m16;
14782
14783       if (m16_mis || micro_mis)
14784         {
14785           (*_bfd_error_handler)
14786             (_("%B: ASE mismatch: linking %s module with previous %s modules"),
14787              ibfd,
14788              m16_mis ? "MIPS16" : "microMIPS",
14789              m16_mis ? "microMIPS" : "MIPS16");
14790           ok = FALSE;
14791         }
14792
14793       elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_ARCH_ASE;
14794
14795       new_flags &= ~ EF_MIPS_ARCH_ASE;
14796       old_flags &= ~ EF_MIPS_ARCH_ASE;
14797     }
14798
14799   /* Compare NaN encodings.  */
14800   if ((new_flags & EF_MIPS_NAN2008) != (old_flags & EF_MIPS_NAN2008))
14801     {
14802       _bfd_error_handler (_("%B: linking %s module with previous %s modules"),
14803                           ibfd,
14804                           (new_flags & EF_MIPS_NAN2008
14805                            ? "-mnan=2008" : "-mnan=legacy"),
14806                           (old_flags & EF_MIPS_NAN2008
14807                            ? "-mnan=2008" : "-mnan=legacy"));
14808       ok = FALSE;
14809       new_flags &= ~EF_MIPS_NAN2008;
14810       old_flags &= ~EF_MIPS_NAN2008;
14811     }
14812
14813   /* Warn about any other mismatches */
14814   if (new_flags != old_flags)
14815     {
14816       (*_bfd_error_handler)
14817         (_("%B: uses different e_flags (0x%lx) fields than previous modules (0x%lx)"),
14818          ibfd, (unsigned long) new_flags,
14819          (unsigned long) old_flags);
14820       ok = FALSE;
14821     }
14822
14823   if (! ok)
14824     {
14825       bfd_set_error (bfd_error_bad_value);
14826       return FALSE;
14827     }
14828
14829   return TRUE;
14830 }
14831
14832 /* Function to keep MIPS specific file flags like as EF_MIPS_PIC.  */
14833
14834 bfd_boolean
14835 _bfd_mips_elf_set_private_flags (bfd *abfd, flagword flags)
14836 {
14837   BFD_ASSERT (!elf_flags_init (abfd)
14838               || elf_elfheader (abfd)->e_flags == flags);
14839
14840   elf_elfheader (abfd)->e_flags = flags;
14841   elf_flags_init (abfd) = TRUE;
14842   return TRUE;
14843 }
14844
14845 char *
14846 _bfd_mips_elf_get_target_dtag (bfd_vma dtag)
14847 {
14848   switch (dtag)
14849     {
14850     default: return "";
14851     case DT_MIPS_RLD_VERSION:
14852       return "MIPS_RLD_VERSION";
14853     case DT_MIPS_TIME_STAMP:
14854       return "MIPS_TIME_STAMP";
14855     case DT_MIPS_ICHECKSUM:
14856       return "MIPS_ICHECKSUM";
14857     case DT_MIPS_IVERSION:
14858       return "MIPS_IVERSION";
14859     case DT_MIPS_FLAGS:
14860       return "MIPS_FLAGS";
14861     case DT_MIPS_BASE_ADDRESS:
14862       return "MIPS_BASE_ADDRESS";
14863     case DT_MIPS_MSYM:
14864       return "MIPS_MSYM";
14865     case DT_MIPS_CONFLICT:
14866       return "MIPS_CONFLICT";
14867     case DT_MIPS_LIBLIST:
14868       return "MIPS_LIBLIST";
14869     case DT_MIPS_LOCAL_GOTNO:
14870       return "MIPS_LOCAL_GOTNO";
14871     case DT_MIPS_CONFLICTNO:
14872       return "MIPS_CONFLICTNO";
14873     case DT_MIPS_LIBLISTNO:
14874       return "MIPS_LIBLISTNO";
14875     case DT_MIPS_SYMTABNO:
14876       return "MIPS_SYMTABNO";
14877     case DT_MIPS_UNREFEXTNO:
14878       return "MIPS_UNREFEXTNO";
14879     case DT_MIPS_GOTSYM:
14880       return "MIPS_GOTSYM";
14881     case DT_MIPS_HIPAGENO:
14882       return "MIPS_HIPAGENO";
14883     case DT_MIPS_RLD_MAP:
14884       return "MIPS_RLD_MAP";
14885     case DT_MIPS_DELTA_CLASS:
14886       return "MIPS_DELTA_CLASS";
14887     case DT_MIPS_DELTA_CLASS_NO:
14888       return "MIPS_DELTA_CLASS_NO";
14889     case DT_MIPS_DELTA_INSTANCE:
14890       return "MIPS_DELTA_INSTANCE";
14891     case DT_MIPS_DELTA_INSTANCE_NO:
14892       return "MIPS_DELTA_INSTANCE_NO";
14893     case DT_MIPS_DELTA_RELOC:
14894       return "MIPS_DELTA_RELOC";
14895     case DT_MIPS_DELTA_RELOC_NO:
14896       return "MIPS_DELTA_RELOC_NO";
14897     case DT_MIPS_DELTA_SYM:
14898       return "MIPS_DELTA_SYM";
14899     case DT_MIPS_DELTA_SYM_NO:
14900       return "MIPS_DELTA_SYM_NO";
14901     case DT_MIPS_DELTA_CLASSSYM:
14902       return "MIPS_DELTA_CLASSSYM";
14903     case DT_MIPS_DELTA_CLASSSYM_NO:
14904       return "MIPS_DELTA_CLASSSYM_NO";
14905     case DT_MIPS_CXX_FLAGS:
14906       return "MIPS_CXX_FLAGS";
14907     case DT_MIPS_PIXIE_INIT:
14908       return "MIPS_PIXIE_INIT";
14909     case DT_MIPS_SYMBOL_LIB:
14910       return "MIPS_SYMBOL_LIB";
14911     case DT_MIPS_LOCALPAGE_GOTIDX:
14912       return "MIPS_LOCALPAGE_GOTIDX";
14913     case DT_MIPS_LOCAL_GOTIDX:
14914       return "MIPS_LOCAL_GOTIDX";
14915     case DT_MIPS_HIDDEN_GOTIDX:
14916       return "MIPS_HIDDEN_GOTIDX";
14917     case DT_MIPS_PROTECTED_GOTIDX:
14918       return "MIPS_PROTECTED_GOT_IDX";
14919     case DT_MIPS_OPTIONS:
14920       return "MIPS_OPTIONS";
14921     case DT_MIPS_INTERFACE:
14922       return "MIPS_INTERFACE";
14923     case DT_MIPS_DYNSTR_ALIGN:
14924       return "DT_MIPS_DYNSTR_ALIGN";
14925     case DT_MIPS_INTERFACE_SIZE:
14926       return "DT_MIPS_INTERFACE_SIZE";
14927     case DT_MIPS_RLD_TEXT_RESOLVE_ADDR:
14928       return "DT_MIPS_RLD_TEXT_RESOLVE_ADDR";
14929     case DT_MIPS_PERF_SUFFIX:
14930       return "DT_MIPS_PERF_SUFFIX";
14931     case DT_MIPS_COMPACT_SIZE:
14932       return "DT_MIPS_COMPACT_SIZE";
14933     case DT_MIPS_GP_VALUE:
14934       return "DT_MIPS_GP_VALUE";
14935     case DT_MIPS_AUX_DYNAMIC:
14936       return "DT_MIPS_AUX_DYNAMIC";
14937     case DT_MIPS_PLTGOT:
14938       return "DT_MIPS_PLTGOT";
14939     case DT_MIPS_RWPLT:
14940       return "DT_MIPS_RWPLT";
14941     }
14942 }
14943
14944 bfd_boolean
14945 _bfd_mips_elf_print_private_bfd_data (bfd *abfd, void *ptr)
14946 {
14947   FILE *file = ptr;
14948
14949   BFD_ASSERT (abfd != NULL && ptr != NULL);
14950
14951   /* Print normal ELF private data.  */
14952   _bfd_elf_print_private_bfd_data (abfd, ptr);
14953
14954   /* xgettext:c-format */
14955   fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
14956
14957   if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O32)
14958     fprintf (file, _(" [abi=O32]"));
14959   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_O64)
14960     fprintf (file, _(" [abi=O64]"));
14961   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI32)
14962     fprintf (file, _(" [abi=EABI32]"));
14963   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64)
14964     fprintf (file, _(" [abi=EABI64]"));
14965   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ABI))
14966     fprintf (file, _(" [abi unknown]"));
14967   else if (ABI_N32_P (abfd))
14968     fprintf (file, _(" [abi=N32]"));
14969   else if (ABI_64_P (abfd))
14970     fprintf (file, _(" [abi=64]"));
14971   else
14972     fprintf (file, _(" [no abi set]"));
14973
14974   if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_1)
14975     fprintf (file, " [mips1]");
14976   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_2)
14977     fprintf (file, " [mips2]");
14978   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_3)
14979     fprintf (file, " [mips3]");
14980   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_4)
14981     fprintf (file, " [mips4]");
14982   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_5)
14983     fprintf (file, " [mips5]");
14984   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32)
14985     fprintf (file, " [mips32]");
14986   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64)
14987     fprintf (file, " [mips64]");
14988   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32R2)
14989     fprintf (file, " [mips32r2]");
14990   else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64R2)
14991     fprintf (file, " [mips64r2]");
14992   else
14993     fprintf (file, _(" [unknown ISA]"));
14994
14995   if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MDMX)
14996     fprintf (file, " [mdmx]");
14997
14998   if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_M16)
14999     fprintf (file, " [mips16]");
15000
15001   if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MICROMIPS)
15002     fprintf (file, " [micromips]");
15003
15004   if (elf_elfheader (abfd)->e_flags & EF_MIPS_NAN2008)
15005     fprintf (file, " [nan2008]");
15006
15007   if (elf_elfheader (abfd)->e_flags & EF_MIPS_FP64)
15008     fprintf (file, " [fp64]");
15009
15010   if (elf_elfheader (abfd)->e_flags & EF_MIPS_32BITMODE)
15011     fprintf (file, " [32bitmode]");
15012   else
15013     fprintf (file, _(" [not 32bitmode]"));
15014
15015   if (elf_elfheader (abfd)->e_flags & EF_MIPS_NOREORDER)
15016     fprintf (file, " [noreorder]");
15017
15018   if (elf_elfheader (abfd)->e_flags & EF_MIPS_PIC)
15019     fprintf (file, " [PIC]");
15020
15021   if (elf_elfheader (abfd)->e_flags & EF_MIPS_CPIC)
15022     fprintf (file, " [CPIC]");
15023
15024   if (elf_elfheader (abfd)->e_flags & EF_MIPS_XGOT)
15025     fprintf (file, " [XGOT]");
15026
15027   if (elf_elfheader (abfd)->e_flags & EF_MIPS_UCODE)
15028     fprintf (file, " [UCODE]");
15029
15030   fputc ('\n', file);
15031
15032   return TRUE;
15033 }
15034
15035 const struct bfd_elf_special_section _bfd_mips_elf_special_sections[] =
15036 {
15037   { STRING_COMMA_LEN (".lit4"),   0, SHT_PROGBITS,   SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
15038   { STRING_COMMA_LEN (".lit8"),   0, SHT_PROGBITS,   SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
15039   { STRING_COMMA_LEN (".mdebug"), 0, SHT_MIPS_DEBUG, 0 },
15040   { STRING_COMMA_LEN (".sbss"),  -2, SHT_NOBITS,     SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
15041   { STRING_COMMA_LEN (".sdata"), -2, SHT_PROGBITS,   SHF_ALLOC + SHF_WRITE + SHF_MIPS_GPREL },
15042   { STRING_COMMA_LEN (".ucode"),  0, SHT_MIPS_UCODE, 0 },
15043   { NULL,                     0,  0, 0,              0 }
15044 };
15045
15046 /* Merge non visibility st_other attributes.  Ensure that the
15047    STO_OPTIONAL flag is copied into h->other, even if this is not a
15048    definiton of the symbol.  */
15049 void
15050 _bfd_mips_elf_merge_symbol_attribute (struct elf_link_hash_entry *h,
15051                                       const Elf_Internal_Sym *isym,
15052                                       bfd_boolean definition,
15053                                       bfd_boolean dynamic ATTRIBUTE_UNUSED)
15054 {
15055   if ((isym->st_other & ~ELF_ST_VISIBILITY (-1)) != 0)
15056     {
15057       unsigned char other;
15058
15059       other = (definition ? isym->st_other : h->other);
15060       other &= ~ELF_ST_VISIBILITY (-1);
15061       h->other = other | ELF_ST_VISIBILITY (h->other);
15062     }
15063
15064   if (!definition
15065       && ELF_MIPS_IS_OPTIONAL (isym->st_other))
15066     h->other |= STO_OPTIONAL;
15067 }
15068
15069 /* Decide whether an undefined symbol is special and can be ignored.
15070    This is the case for OPTIONAL symbols on IRIX.  */
15071 bfd_boolean
15072 _bfd_mips_elf_ignore_undef_symbol (struct elf_link_hash_entry *h)
15073 {
15074   return ELF_MIPS_IS_OPTIONAL (h->other) ? TRUE : FALSE;
15075 }
15076
15077 bfd_boolean
15078 _bfd_mips_elf_common_definition (Elf_Internal_Sym *sym)
15079 {
15080   return (sym->st_shndx == SHN_COMMON
15081           || sym->st_shndx == SHN_MIPS_ACOMMON
15082           || sym->st_shndx == SHN_MIPS_SCOMMON);
15083 }
15084
15085 /* Return address for Ith PLT stub in section PLT, for relocation REL
15086    or (bfd_vma) -1 if it should not be included.  */
15087
15088 bfd_vma
15089 _bfd_mips_elf_plt_sym_val (bfd_vma i, const asection *plt,
15090                            const arelent *rel ATTRIBUTE_UNUSED)
15091 {
15092   return (plt->vma
15093           + 4 * ARRAY_SIZE (mips_o32_exec_plt0_entry)
15094           + i * 4 * ARRAY_SIZE (mips_exec_plt_entry));
15095 }
15096
15097 /* Build a table of synthetic symbols to represent the PLT.  As with MIPS16
15098    and microMIPS PLT slots we may have a many-to-one mapping between .plt
15099    and .got.plt and also the slots may be of a different size each we walk
15100    the PLT manually fetching instructions and matching them against known
15101    patterns.  To make things easier standard MIPS slots, if any, always come
15102    first.  As we don't create proper ELF symbols we use the UDATA.I member
15103    of ASYMBOL to carry ISA annotation.  The encoding used is the same as
15104    with the ST_OTHER member of the ELF symbol.  */
15105
15106 long
15107 _bfd_mips_elf_get_synthetic_symtab (bfd *abfd,
15108                                     long symcount ATTRIBUTE_UNUSED,
15109                                     asymbol **syms ATTRIBUTE_UNUSED,
15110                                     long dynsymcount, asymbol **dynsyms,
15111                                     asymbol **ret)
15112 {
15113   static const char pltname[] = "_PROCEDURE_LINKAGE_TABLE_";
15114   static const char microsuffix[] = "@micromipsplt";
15115   static const char m16suffix[] = "@mips16plt";
15116   static const char mipssuffix[] = "@plt";
15117
15118   bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
15119   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
15120   bfd_boolean micromips_p = MICROMIPS_P (abfd);
15121   Elf_Internal_Shdr *hdr;
15122   bfd_byte *plt_data;
15123   bfd_vma plt_offset;
15124   unsigned int other;
15125   bfd_vma entry_size;
15126   bfd_vma plt0_size;
15127   asection *relplt;
15128   bfd_vma opcode;
15129   asection *plt;
15130   asymbol *send;
15131   size_t size;
15132   char *names;
15133   long counti;
15134   arelent *p;
15135   asymbol *s;
15136   char *nend;
15137   long count;
15138   long pi;
15139   long i;
15140   long n;
15141
15142   *ret = NULL;
15143
15144   if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0 || dynsymcount <= 0)
15145     return 0;
15146
15147   relplt = bfd_get_section_by_name (abfd, ".rel.plt");
15148   if (relplt == NULL)
15149     return 0;
15150
15151   hdr = &elf_section_data (relplt)->this_hdr;
15152   if (hdr->sh_link != elf_dynsymtab (abfd) || hdr->sh_type != SHT_REL)
15153     return 0;
15154
15155   plt = bfd_get_section_by_name (abfd, ".plt");
15156   if (plt == NULL)
15157     return 0;
15158
15159   slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
15160   if (!(*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
15161     return -1;
15162   p = relplt->relocation;
15163
15164   /* Calculating the exact amount of space required for symbols would
15165      require two passes over the PLT, so just pessimise assuming two
15166      PLT slots per relocation.  */
15167   count = relplt->size / hdr->sh_entsize;
15168   counti = count * bed->s->int_rels_per_ext_rel;
15169   size = 2 * count * sizeof (asymbol);
15170   size += count * (sizeof (mipssuffix) +
15171                    (micromips_p ? sizeof (microsuffix) : sizeof (m16suffix)));
15172   for (pi = 0; pi < counti; pi += bed->s->int_rels_per_ext_rel)
15173     size += 2 * strlen ((*p[pi].sym_ptr_ptr)->name);
15174
15175   /* Add the size of "_PROCEDURE_LINKAGE_TABLE_" too.  */
15176   size += sizeof (asymbol) + sizeof (pltname);
15177
15178   if (!bfd_malloc_and_get_section (abfd, plt, &plt_data))
15179     return -1;
15180
15181   if (plt->size < 16)
15182     return -1;
15183
15184   s = *ret = bfd_malloc (size);
15185   if (s == NULL)
15186     return -1;
15187   send = s + 2 * count + 1;
15188
15189   names = (char *) send;
15190   nend = (char *) s + size;
15191   n = 0;
15192
15193   opcode = bfd_get_micromips_32 (abfd, plt_data + 12);
15194   if (opcode == 0x3302fffe)
15195     {
15196       if (!micromips_p)
15197         return -1;
15198       plt0_size = 2 * ARRAY_SIZE (micromips_o32_exec_plt0_entry);
15199       other = STO_MICROMIPS;
15200     }
15201   else if (opcode == 0x0398c1d0)
15202     {
15203       if (!micromips_p)
15204         return -1;
15205       plt0_size = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt0_entry);
15206       other = STO_MICROMIPS;
15207     }
15208   else
15209     {
15210       plt0_size = 4 * ARRAY_SIZE (mips_o32_exec_plt0_entry);
15211       other = 0;
15212     }
15213
15214   s->the_bfd = abfd;
15215   s->flags = BSF_SYNTHETIC | BSF_FUNCTION | BSF_LOCAL;
15216   s->section = plt;
15217   s->value = 0;
15218   s->name = names;
15219   s->udata.i = other;
15220   memcpy (names, pltname, sizeof (pltname));
15221   names += sizeof (pltname);
15222   ++s, ++n;
15223
15224   pi = 0;
15225   for (plt_offset = plt0_size;
15226        plt_offset + 8 <= plt->size && s < send;
15227        plt_offset += entry_size)
15228     {
15229       bfd_vma gotplt_addr;
15230       const char *suffix;
15231       bfd_vma gotplt_hi;
15232       bfd_vma gotplt_lo;
15233       size_t suffixlen;
15234
15235       opcode = bfd_get_micromips_32 (abfd, plt_data + plt_offset + 4);
15236
15237       /* Check if the second word matches the expected MIPS16 instruction.  */
15238       if (opcode == 0x651aeb00)
15239         {
15240           if (micromips_p)
15241             return -1;
15242           /* Truncated table???  */
15243           if (plt_offset + 16 > plt->size)
15244             break;
15245           gotplt_addr = bfd_get_32 (abfd, plt_data + plt_offset + 12);
15246           entry_size = 2 * ARRAY_SIZE (mips16_o32_exec_plt_entry);
15247           suffixlen = sizeof (m16suffix);
15248           suffix = m16suffix;
15249           other = STO_MIPS16;
15250         }
15251       /* Likewise the expected microMIPS instruction (no insn32 mode).  */
15252       else if (opcode == 0xff220000)
15253         {
15254           if (!micromips_p)
15255             return -1;
15256           gotplt_hi = bfd_get_16 (abfd, plt_data + plt_offset) & 0x7f;
15257           gotplt_lo = bfd_get_16 (abfd, plt_data + plt_offset + 2) & 0xffff;
15258           gotplt_hi = ((gotplt_hi ^ 0x40) - 0x40) << 18;
15259           gotplt_lo <<= 2;
15260           gotplt_addr = gotplt_hi + gotplt_lo;
15261           gotplt_addr += ((plt->vma + plt_offset) | 3) ^ 3;
15262           entry_size = 2 * ARRAY_SIZE (micromips_o32_exec_plt_entry);
15263           suffixlen = sizeof (microsuffix);
15264           suffix = microsuffix;
15265           other = STO_MICROMIPS;
15266         }
15267       /* Likewise the expected microMIPS instruction (insn32 mode).  */
15268       else if ((opcode & 0xffff0000) == 0xff2f0000)
15269         {
15270           gotplt_hi = bfd_get_16 (abfd, plt_data + plt_offset + 2) & 0xffff;
15271           gotplt_lo = bfd_get_16 (abfd, plt_data + plt_offset + 6) & 0xffff;
15272           gotplt_hi = ((gotplt_hi ^ 0x8000) - 0x8000) << 16;
15273           gotplt_lo = (gotplt_lo ^ 0x8000) - 0x8000;
15274           gotplt_addr = gotplt_hi + gotplt_lo;
15275           entry_size = 2 * ARRAY_SIZE (micromips_insn32_o32_exec_plt_entry);
15276           suffixlen = sizeof (microsuffix);
15277           suffix = microsuffix;
15278           other = STO_MICROMIPS;
15279         }
15280       /* Otherwise assume standard MIPS code.  */
15281       else
15282         {
15283           gotplt_hi = bfd_get_32 (abfd, plt_data + plt_offset) & 0xffff;
15284           gotplt_lo = bfd_get_32 (abfd, plt_data + plt_offset + 4) & 0xffff;
15285           gotplt_hi = ((gotplt_hi ^ 0x8000) - 0x8000) << 16;
15286           gotplt_lo = (gotplt_lo ^ 0x8000) - 0x8000;
15287           gotplt_addr = gotplt_hi + gotplt_lo;
15288           entry_size = 4 * ARRAY_SIZE (mips_exec_plt_entry);
15289           suffixlen = sizeof (mipssuffix);
15290           suffix = mipssuffix;
15291           other = 0;
15292         }
15293       /* Truncated table???  */
15294       if (plt_offset + entry_size > plt->size)
15295         break;
15296
15297       for (i = 0;
15298            i < count && p[pi].address != gotplt_addr;
15299            i++, pi = (pi + bed->s->int_rels_per_ext_rel) % counti);
15300
15301       if (i < count)
15302         {
15303           size_t namelen;
15304           size_t len;
15305
15306           *s = **p[pi].sym_ptr_ptr;
15307           /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set.  Since
15308              we are defining a symbol, ensure one of them is set.  */
15309           if ((s->flags & BSF_LOCAL) == 0)
15310             s->flags |= BSF_GLOBAL;
15311           s->flags |= BSF_SYNTHETIC;
15312           s->section = plt;
15313           s->value = plt_offset;
15314           s->name = names;
15315           s->udata.i = other;
15316
15317           len = strlen ((*p[pi].sym_ptr_ptr)->name);
15318           namelen = len + suffixlen;
15319           if (names + namelen > nend)
15320             break;
15321
15322           memcpy (names, (*p[pi].sym_ptr_ptr)->name, len);
15323           names += len;
15324           memcpy (names, suffix, suffixlen);
15325           names += suffixlen;
15326
15327           ++s, ++n;
15328           pi = (pi + bed->s->int_rels_per_ext_rel) % counti;
15329         }
15330     }
15331
15332   free (plt_data);
15333
15334   return n;
15335 }
15336
15337 void
15338 _bfd_mips_post_process_headers (bfd *abfd, struct bfd_link_info *link_info)
15339 {
15340   struct mips_elf_link_hash_table *htab;
15341   Elf_Internal_Ehdr *i_ehdrp;
15342
15343   i_ehdrp = elf_elfheader (abfd);
15344   if (link_info)
15345     {
15346       htab = mips_elf_hash_table (link_info);
15347       BFD_ASSERT (htab != NULL);
15348
15349       if (htab->use_plts_and_copy_relocs && !htab->is_vxworks)
15350         i_ehdrp->e_ident[EI_ABIVERSION] = 1;
15351     }
15352
15353   _bfd_elf_post_process_headers (abfd, link_info);
15354 }