[GOLD] Set sh_info of .rela.plt for powerpc
[external/binutils.git] / gold / powerpc.cc
1 // powerpc.cc -- powerpc target support for gold.
2
3 // Copyright (C) 2008-2017 Free Software Foundation, Inc.
4 // Written by David S. Miller <davem@davemloft.net>
5 //        and David Edelsohn <edelsohn@gnu.org>
6
7 // This file is part of gold.
8
9 // This program is free software; you can redistribute it and/or modify
10 // it under the terms of the GNU General Public License as published by
11 // the Free Software Foundation; either version 3 of the License, or
12 // (at your option) any later version.
13
14 // This program is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 // GNU General Public License for more details.
18
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 // MA 02110-1301, USA.
23
24 #include "gold.h"
25
26 #include <set>
27 #include <algorithm>
28 #include "elfcpp.h"
29 #include "dwarf.h"
30 #include "parameters.h"
31 #include "reloc.h"
32 #include "powerpc.h"
33 #include "object.h"
34 #include "symtab.h"
35 #include "layout.h"
36 #include "output.h"
37 #include "copy-relocs.h"
38 #include "target.h"
39 #include "target-reloc.h"
40 #include "target-select.h"
41 #include "tls.h"
42 #include "errors.h"
43 #include "gc.h"
44
45 namespace
46 {
47
48 using namespace gold;
49
50 template<int size, bool big_endian>
51 class Output_data_plt_powerpc;
52
53 template<int size, bool big_endian>
54 class Output_data_brlt_powerpc;
55
56 template<int size, bool big_endian>
57 class Output_data_got_powerpc;
58
59 template<int size, bool big_endian>
60 class Output_data_glink;
61
62 template<int size, bool big_endian>
63 class Stub_table;
64
65 template<int size, bool big_endian>
66 class Output_data_save_res;
67
68 template<int size, bool big_endian>
69 class Target_powerpc;
70
71 struct Stub_table_owner
72 {
73   Stub_table_owner()
74     : output_section(NULL), owner(NULL)
75   { }
76
77   Output_section* output_section;
78   const Output_section::Input_section* owner;
79 };
80
81 inline bool
82 is_branch_reloc(unsigned int r_type);
83
84 template<int size, bool big_endian>
85 class Powerpc_relobj : public Sized_relobj_file<size, big_endian>
86 {
87 public:
88   typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
89   typedef Unordered_set<Section_id, Section_id_hash> Section_refs;
90   typedef Unordered_map<Address, Section_refs> Access_from;
91
92   Powerpc_relobj(const std::string& name, Input_file* input_file, off_t offset,
93                  const typename elfcpp::Ehdr<size, big_endian>& ehdr)
94     : Sized_relobj_file<size, big_endian>(name, input_file, offset, ehdr),
95       special_(0), has_small_toc_reloc_(false), opd_valid_(false),
96       opd_ent_(), access_from_map_(), has14_(), stub_table_index_(),
97       e_flags_(ehdr.get_e_flags()), st_other_()
98   {
99     this->set_abiversion(0);
100   }
101
102   ~Powerpc_relobj()
103   { }
104
105   // Read the symbols then set up st_other vector.
106   void
107   do_read_symbols(Read_symbols_data*);
108
109   // The .got2 section shndx.
110   unsigned int
111   got2_shndx() const
112   {
113     if (size == 32)
114       return this->special_;
115     else
116       return 0;
117   }
118
119   // The .opd section shndx.
120   unsigned int
121   opd_shndx() const
122   {
123     if (size == 32)
124       return 0;
125     else
126       return this->special_;
127   }
128
129   // Init OPD entry arrays.
130   void
131   init_opd(size_t opd_size)
132   {
133     size_t count = this->opd_ent_ndx(opd_size);
134     this->opd_ent_.resize(count);
135   }
136
137   // Return section and offset of function entry for .opd + R_OFF.
138   unsigned int
139   get_opd_ent(Address r_off, Address* value = NULL) const
140   {
141     size_t ndx = this->opd_ent_ndx(r_off);
142     gold_assert(ndx < this->opd_ent_.size());
143     gold_assert(this->opd_ent_[ndx].shndx != 0);
144     if (value != NULL)
145       *value = this->opd_ent_[ndx].off;
146     return this->opd_ent_[ndx].shndx;
147   }
148
149   // Set section and offset of function entry for .opd + R_OFF.
150   void
151   set_opd_ent(Address r_off, unsigned int shndx, Address value)
152   {
153     size_t ndx = this->opd_ent_ndx(r_off);
154     gold_assert(ndx < this->opd_ent_.size());
155     this->opd_ent_[ndx].shndx = shndx;
156     this->opd_ent_[ndx].off = value;
157   }
158
159   // Return discard flag for .opd + R_OFF.
160   bool
161   get_opd_discard(Address r_off) const
162   {
163     size_t ndx = this->opd_ent_ndx(r_off);
164     gold_assert(ndx < this->opd_ent_.size());
165     return this->opd_ent_[ndx].discard;
166   }
167
168   // Set discard flag for .opd + R_OFF.
169   void
170   set_opd_discard(Address r_off)
171   {
172     size_t ndx = this->opd_ent_ndx(r_off);
173     gold_assert(ndx < this->opd_ent_.size());
174     this->opd_ent_[ndx].discard = true;
175   }
176
177   bool
178   opd_valid() const
179   { return this->opd_valid_; }
180
181   void
182   set_opd_valid()
183   { this->opd_valid_ = true; }
184
185   // Examine .rela.opd to build info about function entry points.
186   void
187   scan_opd_relocs(size_t reloc_count,
188                   const unsigned char* prelocs,
189                   const unsigned char* plocal_syms);
190
191   // Perform the Sized_relobj_file method, then set up opd info from
192   // .opd relocs.
193   void
194   do_read_relocs(Read_relocs_data*);
195
196   bool
197   do_find_special_sections(Read_symbols_data* sd);
198
199   // Adjust this local symbol value.  Return false if the symbol
200   // should be discarded from the output file.
201   bool
202   do_adjust_local_symbol(Symbol_value<size>* lv) const
203   {
204     if (size == 64 && this->opd_shndx() != 0)
205       {
206         bool is_ordinary;
207         if (lv->input_shndx(&is_ordinary) != this->opd_shndx())
208           return true;
209         if (this->get_opd_discard(lv->input_value()))
210           return false;
211       }
212     return true;
213   }
214
215   Access_from*
216   access_from_map()
217   { return &this->access_from_map_; }
218
219   // Add a reference from SRC_OBJ, SRC_INDX to this object's .opd
220   // section at DST_OFF.
221   void
222   add_reference(Relobj* src_obj,
223                 unsigned int src_indx,
224                 typename elfcpp::Elf_types<size>::Elf_Addr dst_off)
225   {
226     Section_id src_id(src_obj, src_indx);
227     this->access_from_map_[dst_off].insert(src_id);
228   }
229
230   // Add a reference to the code section specified by the .opd entry
231   // at DST_OFF
232   void
233   add_gc_mark(typename elfcpp::Elf_types<size>::Elf_Addr dst_off)
234   {
235     size_t ndx = this->opd_ent_ndx(dst_off);
236     if (ndx >= this->opd_ent_.size())
237       this->opd_ent_.resize(ndx + 1);
238     this->opd_ent_[ndx].gc_mark = true;
239   }
240
241   void
242   process_gc_mark(Symbol_table* symtab)
243   {
244     for (size_t i = 0; i < this->opd_ent_.size(); i++)
245       if (this->opd_ent_[i].gc_mark)
246         {
247           unsigned int shndx = this->opd_ent_[i].shndx;
248           symtab->gc()->worklist().push_back(Section_id(this, shndx));
249         }
250   }
251
252   // Return offset in output GOT section that this object will use
253   // as a TOC pointer.  Won't be just a constant with multi-toc support.
254   Address
255   toc_base_offset() const
256   { return 0x8000; }
257
258   void
259   set_has_small_toc_reloc()
260   { has_small_toc_reloc_ = true; }
261
262   bool
263   has_small_toc_reloc() const
264   { return has_small_toc_reloc_; }
265
266   void
267   set_has_14bit_branch(unsigned int shndx)
268   {
269     if (shndx >= this->has14_.size())
270       this->has14_.resize(shndx + 1);
271     this->has14_[shndx] = true;
272   }
273
274   bool
275   has_14bit_branch(unsigned int shndx) const
276   { return shndx < this->has14_.size() && this->has14_[shndx];  }
277
278   void
279   set_stub_table(unsigned int shndx, unsigned int stub_index)
280   {
281     if (shndx >= this->stub_table_index_.size())
282       this->stub_table_index_.resize(shndx + 1, -1);
283     this->stub_table_index_[shndx] = stub_index;
284   }
285
286   Stub_table<size, big_endian>*
287   stub_table(unsigned int shndx)
288   {
289     if (shndx < this->stub_table_index_.size())
290       {
291         Target_powerpc<size, big_endian>* target
292           = static_cast<Target_powerpc<size, big_endian>*>(
293               parameters->sized_target<size, big_endian>());
294         unsigned int indx = this->stub_table_index_[shndx];
295         if (indx < target->stub_tables().size())
296           return target->stub_tables()[indx];
297       }
298     return NULL;
299   }
300
301   void
302   clear_stub_table()
303   {
304     this->stub_table_index_.clear();
305   }
306
307   int
308   abiversion() const
309   { return this->e_flags_ & elfcpp::EF_PPC64_ABI; }
310
311   // Set ABI version for input and output
312   void
313   set_abiversion(int ver);
314
315   unsigned int
316   ppc64_local_entry_offset(const Symbol* sym) const
317   { return elfcpp::ppc64_decode_local_entry(sym->nonvis() >> 3); }
318
319   unsigned int
320   ppc64_local_entry_offset(unsigned int symndx) const
321   { return elfcpp::ppc64_decode_local_entry(this->st_other_[symndx] >> 5); }
322
323 private:
324   struct Opd_ent
325   {
326     unsigned int shndx;
327     bool discard : 1;
328     bool gc_mark : 1;
329     Address off;
330   };
331
332   // Return index into opd_ent_ array for .opd entry at OFF.
333   // .opd entries are 24 bytes long, but they can be spaced 16 bytes
334   // apart when the language doesn't use the last 8-byte word, the
335   // environment pointer.  Thus dividing the entry section offset by
336   // 16 will give an index into opd_ent_ that works for either layout
337   // of .opd.  (It leaves some elements of the vector unused when .opd
338   // entries are spaced 24 bytes apart, but we don't know the spacing
339   // until relocations are processed, and in any case it is possible
340   // for an object to have some entries spaced 16 bytes apart and
341   // others 24 bytes apart.)
342   size_t
343   opd_ent_ndx(size_t off) const
344   { return off >> 4;}
345
346   // For 32-bit the .got2 section shdnx, for 64-bit the .opd section shndx.
347   unsigned int special_;
348
349   // For 64-bit, whether this object uses small model relocs to access
350   // the toc.
351   bool has_small_toc_reloc_;
352
353   // Set at the start of gc_process_relocs, when we know opd_ent_
354   // vector is valid.  The flag could be made atomic and set in
355   // do_read_relocs with memory_order_release and then tested with
356   // memory_order_acquire, potentially resulting in fewer entries in
357   // access_from_map_.
358   bool opd_valid_;
359
360   // The first 8-byte word of an OPD entry gives the address of the
361   // entry point of the function.  Relocatable object files have a
362   // relocation on this word.  The following vector records the
363   // section and offset specified by these relocations.
364   std::vector<Opd_ent> opd_ent_;
365
366   // References made to this object's .opd section when running
367   // gc_process_relocs for another object, before the opd_ent_ vector
368   // is valid for this object.
369   Access_from access_from_map_;
370
371   // Whether input section has a 14-bit branch reloc.
372   std::vector<bool> has14_;
373
374   // The stub table to use for a given input section.
375   std::vector<unsigned int> stub_table_index_;
376
377   // Header e_flags
378   elfcpp::Elf_Word e_flags_;
379
380   // ELF st_other field for local symbols.
381   std::vector<unsigned char> st_other_;
382 };
383
384 template<int size, bool big_endian>
385 class Powerpc_dynobj : public Sized_dynobj<size, big_endian>
386 {
387 public:
388   typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
389
390   Powerpc_dynobj(const std::string& name, Input_file* input_file, off_t offset,
391                  const typename elfcpp::Ehdr<size, big_endian>& ehdr)
392     : Sized_dynobj<size, big_endian>(name, input_file, offset, ehdr),
393       opd_shndx_(0), opd_ent_(), e_flags_(ehdr.get_e_flags())
394   {
395     this->set_abiversion(0);
396   }
397
398   ~Powerpc_dynobj()
399   { }
400
401   // Call Sized_dynobj::do_read_symbols to read the symbols then
402   // read .opd from a dynamic object, filling in opd_ent_ vector,
403   void
404   do_read_symbols(Read_symbols_data*);
405
406   // The .opd section shndx.
407   unsigned int
408   opd_shndx() const
409   {
410     return this->opd_shndx_;
411   }
412
413   // The .opd section address.
414   Address
415   opd_address() const
416   {
417     return this->opd_address_;
418   }
419
420   // Init OPD entry arrays.
421   void
422   init_opd(size_t opd_size)
423   {
424     size_t count = this->opd_ent_ndx(opd_size);
425     this->opd_ent_.resize(count);
426   }
427
428   // Return section and offset of function entry for .opd + R_OFF.
429   unsigned int
430   get_opd_ent(Address r_off, Address* value = NULL) const
431   {
432     size_t ndx = this->opd_ent_ndx(r_off);
433     gold_assert(ndx < this->opd_ent_.size());
434     gold_assert(this->opd_ent_[ndx].shndx != 0);
435     if (value != NULL)
436       *value = this->opd_ent_[ndx].off;
437     return this->opd_ent_[ndx].shndx;
438   }
439
440   // Set section and offset of function entry for .opd + R_OFF.
441   void
442   set_opd_ent(Address r_off, unsigned int shndx, Address value)
443   {
444     size_t ndx = this->opd_ent_ndx(r_off);
445     gold_assert(ndx < this->opd_ent_.size());
446     this->opd_ent_[ndx].shndx = shndx;
447     this->opd_ent_[ndx].off = value;
448   }
449
450   int
451   abiversion() const
452   { return this->e_flags_ & elfcpp::EF_PPC64_ABI; }
453
454   // Set ABI version for input and output.
455   void
456   set_abiversion(int ver);
457
458 private:
459   // Used to specify extent of executable sections.
460   struct Sec_info
461   {
462     Sec_info(Address start_, Address len_, unsigned int shndx_)
463       : start(start_), len(len_), shndx(shndx_)
464     { }
465
466     bool
467     operator<(const Sec_info& that) const
468     { return this->start < that.start; }
469
470     Address start;
471     Address len;
472     unsigned int shndx;
473   };
474
475   struct Opd_ent
476   {
477     unsigned int shndx;
478     Address off;
479   };
480
481   // Return index into opd_ent_ array for .opd entry at OFF.
482   size_t
483   opd_ent_ndx(size_t off) const
484   { return off >> 4;}
485
486   // For 64-bit the .opd section shndx and address.
487   unsigned int opd_shndx_;
488   Address opd_address_;
489
490   // The first 8-byte word of an OPD entry gives the address of the
491   // entry point of the function.  Records the section and offset
492   // corresponding to the address.  Note that in dynamic objects,
493   // offset is *not* relative to the section.
494   std::vector<Opd_ent> opd_ent_;
495
496   // Header e_flags
497   elfcpp::Elf_Word e_flags_;
498 };
499
500 template<int size, bool big_endian>
501 class Target_powerpc : public Sized_target<size, big_endian>
502 {
503  public:
504   typedef
505     Output_data_reloc<elfcpp::SHT_RELA, true, size, big_endian> Reloc_section;
506   typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
507   typedef typename elfcpp::Elf_types<size>::Elf_Swxword Signed_address;
508   static const Address invalid_address = static_cast<Address>(0) - 1;
509   // Offset of tp and dtp pointers from start of TLS block.
510   static const Address tp_offset = 0x7000;
511   static const Address dtp_offset = 0x8000;
512
513   Target_powerpc()
514     : Sized_target<size, big_endian>(&powerpc_info),
515       got_(NULL), plt_(NULL), iplt_(NULL), brlt_section_(NULL),
516       glink_(NULL), rela_dyn_(NULL), copy_relocs_(elfcpp::R_POWERPC_COPY),
517       tlsld_got_offset_(-1U),
518       stub_tables_(), branch_lookup_table_(), branch_info_(),
519       plt_thread_safe_(false), relax_failed_(false), relax_fail_count_(0),
520       stub_group_size_(0), savres_section_(0)
521   {
522   }
523
524   // Process the relocations to determine unreferenced sections for
525   // garbage collection.
526   void
527   gc_process_relocs(Symbol_table* symtab,
528                     Layout* layout,
529                     Sized_relobj_file<size, big_endian>* object,
530                     unsigned int data_shndx,
531                     unsigned int sh_type,
532                     const unsigned char* prelocs,
533                     size_t reloc_count,
534                     Output_section* output_section,
535                     bool needs_special_offset_handling,
536                     size_t local_symbol_count,
537                     const unsigned char* plocal_symbols);
538
539   // Scan the relocations to look for symbol adjustments.
540   void
541   scan_relocs(Symbol_table* symtab,
542               Layout* layout,
543               Sized_relobj_file<size, big_endian>* object,
544               unsigned int data_shndx,
545               unsigned int sh_type,
546               const unsigned char* prelocs,
547               size_t reloc_count,
548               Output_section* output_section,
549               bool needs_special_offset_handling,
550               size_t local_symbol_count,
551               const unsigned char* plocal_symbols);
552
553   // Map input .toc section to output .got section.
554   const char*
555   do_output_section_name(const Relobj*, const char* name, size_t* plen) const
556   {
557     if (size == 64 && strcmp(name, ".toc") == 0)
558       {
559         *plen = 4;
560         return ".got";
561       }
562     return NULL;
563   }
564
565   // Provide linker defined save/restore functions.
566   void
567   define_save_restore_funcs(Layout*, Symbol_table*);
568
569   // No stubs unless a final link.
570   bool
571   do_may_relax() const
572   { return !parameters->options().relocatable(); }
573
574   bool
575   do_relax(int, const Input_objects*, Symbol_table*, Layout*, const Task*);
576
577   void
578   do_plt_fde_location(const Output_data*, unsigned char*,
579                       uint64_t*, off_t*) const;
580
581   // Stash info about branches, for stub generation.
582   void
583   push_branch(Powerpc_relobj<size, big_endian>* ppc_object,
584               unsigned int data_shndx, Address r_offset,
585               unsigned int r_type, unsigned int r_sym, Address addend)
586   {
587     Branch_info info(ppc_object, data_shndx, r_offset, r_type, r_sym, addend);
588     this->branch_info_.push_back(info);
589     if (r_type == elfcpp::R_POWERPC_REL14
590         || r_type == elfcpp::R_POWERPC_REL14_BRTAKEN
591         || r_type == elfcpp::R_POWERPC_REL14_BRNTAKEN)
592       ppc_object->set_has_14bit_branch(data_shndx);
593   }
594
595   void
596   do_define_standard_symbols(Symbol_table*, Layout*);
597
598   // Finalize the sections.
599   void
600   do_finalize_sections(Layout*, const Input_objects*, Symbol_table*);
601
602   // Return the value to use for a dynamic which requires special
603   // treatment.
604   uint64_t
605   do_dynsym_value(const Symbol*) const;
606
607   // Return the PLT address to use for a local symbol.
608   uint64_t
609   do_plt_address_for_local(const Relobj*, unsigned int) const;
610
611   // Return the PLT address to use for a global symbol.
612   uint64_t
613   do_plt_address_for_global(const Symbol*) const;
614
615   // Return the offset to use for the GOT_INDX'th got entry which is
616   // for a local tls symbol specified by OBJECT, SYMNDX.
617   int64_t
618   do_tls_offset_for_local(const Relobj* object,
619                           unsigned int symndx,
620                           unsigned int got_indx) const;
621
622   // Return the offset to use for the GOT_INDX'th got entry which is
623   // for global tls symbol GSYM.
624   int64_t
625   do_tls_offset_for_global(Symbol* gsym, unsigned int got_indx) const;
626
627   void
628   do_function_location(Symbol_location*) const;
629
630   bool
631   do_can_check_for_function_pointers() const
632   { return true; }
633
634   // Adjust -fsplit-stack code which calls non-split-stack code.
635   void
636   do_calls_non_split(Relobj* object, unsigned int shndx,
637                      section_offset_type fnoffset, section_size_type fnsize,
638                      const unsigned char* prelocs, size_t reloc_count,
639                      unsigned char* view, section_size_type view_size,
640                      std::string* from, std::string* to) const;
641
642   // Relocate a section.
643   void
644   relocate_section(const Relocate_info<size, big_endian>*,
645                    unsigned int sh_type,
646                    const unsigned char* prelocs,
647                    size_t reloc_count,
648                    Output_section* output_section,
649                    bool needs_special_offset_handling,
650                    unsigned char* view,
651                    Address view_address,
652                    section_size_type view_size,
653                    const Reloc_symbol_changes*);
654
655   // Scan the relocs during a relocatable link.
656   void
657   scan_relocatable_relocs(Symbol_table* symtab,
658                           Layout* layout,
659                           Sized_relobj_file<size, big_endian>* object,
660                           unsigned int data_shndx,
661                           unsigned int sh_type,
662                           const unsigned char* prelocs,
663                           size_t reloc_count,
664                           Output_section* output_section,
665                           bool needs_special_offset_handling,
666                           size_t local_symbol_count,
667                           const unsigned char* plocal_symbols,
668                           Relocatable_relocs*);
669
670   // Scan the relocs for --emit-relocs.
671   void
672   emit_relocs_scan(Symbol_table* symtab,
673                    Layout* layout,
674                    Sized_relobj_file<size, big_endian>* object,
675                    unsigned int data_shndx,
676                    unsigned int sh_type,
677                    const unsigned char* prelocs,
678                    size_t reloc_count,
679                    Output_section* output_section,
680                    bool needs_special_offset_handling,
681                    size_t local_symbol_count,
682                    const unsigned char* plocal_syms,
683                    Relocatable_relocs* rr);
684
685   // Emit relocations for a section.
686   void
687   relocate_relocs(const Relocate_info<size, big_endian>*,
688                   unsigned int sh_type,
689                   const unsigned char* prelocs,
690                   size_t reloc_count,
691                   Output_section* output_section,
692                   typename elfcpp::Elf_types<size>::Elf_Off
693                     offset_in_output_section,
694                   unsigned char*,
695                   Address view_address,
696                   section_size_type,
697                   unsigned char* reloc_view,
698                   section_size_type reloc_view_size);
699
700   // Return whether SYM is defined by the ABI.
701   bool
702   do_is_defined_by_abi(const Symbol* sym) const
703   {
704     return strcmp(sym->name(), "__tls_get_addr") == 0;
705   }
706
707   // Return the size of the GOT section.
708   section_size_type
709   got_size() const
710   {
711     gold_assert(this->got_ != NULL);
712     return this->got_->data_size();
713   }
714
715   // Get the PLT section.
716   const Output_data_plt_powerpc<size, big_endian>*
717   plt_section() const
718   {
719     gold_assert(this->plt_ != NULL);
720     return this->plt_;
721   }
722
723   // Get the IPLT section.
724   const Output_data_plt_powerpc<size, big_endian>*
725   iplt_section() const
726   {
727     gold_assert(this->iplt_ != NULL);
728     return this->iplt_;
729   }
730
731   // Get the .glink section.
732   const Output_data_glink<size, big_endian>*
733   glink_section() const
734   {
735     gold_assert(this->glink_ != NULL);
736     return this->glink_;
737   }
738
739   Output_data_glink<size, big_endian>*
740   glink_section()
741   {
742     gold_assert(this->glink_ != NULL);
743     return this->glink_;
744   }
745
746   bool has_glink() const
747   { return this->glink_ != NULL; }
748
749   // Get the GOT section.
750   const Output_data_got_powerpc<size, big_endian>*
751   got_section() const
752   {
753     gold_assert(this->got_ != NULL);
754     return this->got_;
755   }
756
757   // Get the GOT section, creating it if necessary.
758   Output_data_got_powerpc<size, big_endian>*
759   got_section(Symbol_table*, Layout*);
760
761   Object*
762   do_make_elf_object(const std::string&, Input_file*, off_t,
763                      const elfcpp::Ehdr<size, big_endian>&);
764
765   // Return the number of entries in the GOT.
766   unsigned int
767   got_entry_count() const
768   {
769     if (this->got_ == NULL)
770       return 0;
771     return this->got_size() / (size / 8);
772   }
773
774   // Return the number of entries in the PLT.
775   unsigned int
776   plt_entry_count() const;
777
778   // Return the offset of the first non-reserved PLT entry.
779   unsigned int
780   first_plt_entry_offset() const
781   {
782     if (size == 32)
783       return 0;
784     if (this->abiversion() >= 2)
785       return 16;
786     return 24;
787   }
788
789   // Return the size of each PLT entry.
790   unsigned int
791   plt_entry_size() const
792   {
793     if (size == 32)
794       return 4;
795     if (this->abiversion() >= 2)
796       return 8;
797     return 24;
798   }
799
800   Output_data_save_res<size, big_endian>*
801   savres_section() const
802   {
803     return this->savres_section_;
804   }
805
806   // Add any special sections for this symbol to the gc work list.
807   // For powerpc64, this adds the code section of a function
808   // descriptor.
809   void
810   do_gc_mark_symbol(Symbol_table* symtab, Symbol* sym) const;
811
812   // Handle target specific gc actions when adding a gc reference from
813   // SRC_OBJ, SRC_SHNDX to a location specified by DST_OBJ, DST_SHNDX
814   // and DST_OFF.  For powerpc64, this adds a referenc to the code
815   // section of a function descriptor.
816   void
817   do_gc_add_reference(Symbol_table* symtab,
818                       Relobj* src_obj,
819                       unsigned int src_shndx,
820                       Relobj* dst_obj,
821                       unsigned int dst_shndx,
822                       Address dst_off) const;
823
824   typedef std::vector<Stub_table<size, big_endian>*> Stub_tables;
825   const Stub_tables&
826   stub_tables() const
827   { return this->stub_tables_; }
828
829   const Output_data_brlt_powerpc<size, big_endian>*
830   brlt_section() const
831   { return this->brlt_section_; }
832
833   void
834   add_branch_lookup_table(Address to)
835   {
836     unsigned int off = this->branch_lookup_table_.size() * (size / 8);
837     this->branch_lookup_table_.insert(std::make_pair(to, off));
838   }
839
840   Address
841   find_branch_lookup_table(Address to)
842   {
843     typename Branch_lookup_table::const_iterator p
844       = this->branch_lookup_table_.find(to);
845     return p == this->branch_lookup_table_.end() ? invalid_address : p->second;
846   }
847
848   void
849   write_branch_lookup_table(unsigned char *oview)
850   {
851     for (typename Branch_lookup_table::const_iterator p
852            = this->branch_lookup_table_.begin();
853          p != this->branch_lookup_table_.end();
854          ++p)
855       {
856         elfcpp::Swap<size, big_endian>::writeval(oview + p->second, p->first);
857       }
858   }
859
860   bool
861   plt_thread_safe() const
862   { return this->plt_thread_safe_; }
863
864   int
865   abiversion () const
866   { return this->processor_specific_flags() & elfcpp::EF_PPC64_ABI; }
867
868   void
869   set_abiversion (int ver)
870   {
871     elfcpp::Elf_Word flags = this->processor_specific_flags();
872     flags &= ~elfcpp::EF_PPC64_ABI;
873     flags |= ver & elfcpp::EF_PPC64_ABI;
874     this->set_processor_specific_flags(flags);
875   }
876
877   // Offset to to save stack slot
878   int
879   stk_toc () const
880   { return this->abiversion() < 2 ? 40 : 24; }
881
882  private:
883
884   class Track_tls
885   {
886   public:
887     enum Tls_get_addr
888     {
889       NOT_EXPECTED = 0,
890       EXPECTED = 1,
891       SKIP = 2,
892       NORMAL = 3
893     };
894
895     Track_tls()
896       : tls_get_addr_(NOT_EXPECTED),
897         relinfo_(NULL), relnum_(0), r_offset_(0)
898     { }
899
900     ~Track_tls()
901     {
902       if (this->tls_get_addr_ != NOT_EXPECTED)
903         this->missing();
904     }
905
906     void
907     missing(void)
908     {
909       if (this->relinfo_ != NULL)
910         gold_error_at_location(this->relinfo_, this->relnum_, this->r_offset_,
911                                _("missing expected __tls_get_addr call"));
912     }
913
914     void
915     expect_tls_get_addr_call(
916         const Relocate_info<size, big_endian>* relinfo,
917         size_t relnum,
918         Address r_offset)
919     {
920       this->tls_get_addr_ = EXPECTED;
921       this->relinfo_ = relinfo;
922       this->relnum_ = relnum;
923       this->r_offset_ = r_offset;
924     }
925
926     void
927     expect_tls_get_addr_call()
928     { this->tls_get_addr_ = EXPECTED; }
929
930     void
931     skip_next_tls_get_addr_call()
932     {this->tls_get_addr_ = SKIP; }
933
934     Tls_get_addr
935     maybe_skip_tls_get_addr_call(unsigned int r_type, const Symbol* gsym)
936     {
937       bool is_tls_call = ((r_type == elfcpp::R_POWERPC_REL24
938                            || r_type == elfcpp::R_PPC_PLTREL24)
939                           && gsym != NULL
940                           && strcmp(gsym->name(), "__tls_get_addr") == 0);
941       Tls_get_addr last_tls = this->tls_get_addr_;
942       this->tls_get_addr_ = NOT_EXPECTED;
943       if (is_tls_call && last_tls != EXPECTED)
944         return last_tls;
945       else if (!is_tls_call && last_tls != NOT_EXPECTED)
946         {
947           this->missing();
948           return EXPECTED;
949         }
950       return NORMAL;
951     }
952
953   private:
954     // What we're up to regarding calls to __tls_get_addr.
955     // On powerpc, the branch and link insn making a call to
956     // __tls_get_addr is marked with a relocation, R_PPC64_TLSGD,
957     // R_PPC64_TLSLD, R_PPC_TLSGD or R_PPC_TLSLD, in addition to the
958     // usual R_POWERPC_REL24 or R_PPC_PLTREL25 relocation on a call.
959     // The marker relocation always comes first, and has the same
960     // symbol as the reloc on the insn setting up the __tls_get_addr
961     // argument.  This ties the arg setup insn with the call insn,
962     // allowing ld to safely optimize away the call.  We check that
963     // every call to __tls_get_addr has a marker relocation, and that
964     // every marker relocation is on a call to __tls_get_addr.
965     Tls_get_addr tls_get_addr_;
966     // Info about the last reloc for error message.
967     const Relocate_info<size, big_endian>* relinfo_;
968     size_t relnum_;
969     Address r_offset_;
970   };
971
972   // The class which scans relocations.
973   class Scan : protected Track_tls
974   {
975   public:
976     typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
977
978     Scan()
979       : Track_tls(), issued_non_pic_error_(false)
980     { }
981
982     static inline int
983     get_reference_flags(unsigned int r_type, const Target_powerpc* target);
984
985     inline void
986     local(Symbol_table* symtab, Layout* layout, Target_powerpc* target,
987           Sized_relobj_file<size, big_endian>* object,
988           unsigned int data_shndx,
989           Output_section* output_section,
990           const elfcpp::Rela<size, big_endian>& reloc, unsigned int r_type,
991           const elfcpp::Sym<size, big_endian>& lsym,
992           bool is_discarded);
993
994     inline void
995     global(Symbol_table* symtab, Layout* layout, Target_powerpc* target,
996            Sized_relobj_file<size, big_endian>* object,
997            unsigned int data_shndx,
998            Output_section* output_section,
999            const elfcpp::Rela<size, big_endian>& reloc, unsigned int r_type,
1000            Symbol* gsym);
1001
1002     inline bool
1003     local_reloc_may_be_function_pointer(Symbol_table* , Layout* ,
1004                                         Target_powerpc* ,
1005                                         Sized_relobj_file<size, big_endian>* relobj,
1006                                         unsigned int ,
1007                                         Output_section* ,
1008                                         const elfcpp::Rela<size, big_endian>& ,
1009                                         unsigned int r_type,
1010                                         const elfcpp::Sym<size, big_endian>&)
1011     {
1012       // PowerPC64 .opd is not folded, so any identical function text
1013       // may be folded and we'll still keep function addresses distinct.
1014       // That means no reloc is of concern here.
1015       if (size == 64)
1016         {
1017           Powerpc_relobj<size, big_endian>* ppcobj = static_cast
1018             <Powerpc_relobj<size, big_endian>*>(relobj);
1019           if (ppcobj->abiversion() == 1)
1020             return false;
1021         }
1022       // For 32-bit and ELFv2, conservatively assume anything but calls to
1023       // function code might be taking the address of the function.
1024       return !is_branch_reloc(r_type);
1025     }
1026
1027     inline bool
1028     global_reloc_may_be_function_pointer(Symbol_table* , Layout* ,
1029                                          Target_powerpc* ,
1030                                          Sized_relobj_file<size, big_endian>* relobj,
1031                                          unsigned int ,
1032                                          Output_section* ,
1033                                          const elfcpp::Rela<size, big_endian>& ,
1034                                          unsigned int r_type,
1035                                          Symbol*)
1036     {
1037       // As above.
1038       if (size == 64)
1039         {
1040           Powerpc_relobj<size, big_endian>* ppcobj = static_cast
1041             <Powerpc_relobj<size, big_endian>*>(relobj);
1042           if (ppcobj->abiversion() == 1)
1043             return false;
1044         }
1045       return !is_branch_reloc(r_type);
1046     }
1047
1048     static bool
1049     reloc_needs_plt_for_ifunc(Target_powerpc<size, big_endian>* target,
1050                               Sized_relobj_file<size, big_endian>* object,
1051                               unsigned int r_type, bool report_err);
1052
1053   private:
1054     static void
1055     unsupported_reloc_local(Sized_relobj_file<size, big_endian>*,
1056                             unsigned int r_type);
1057
1058     static void
1059     unsupported_reloc_global(Sized_relobj_file<size, big_endian>*,
1060                              unsigned int r_type, Symbol*);
1061
1062     static void
1063     generate_tls_call(Symbol_table* symtab, Layout* layout,
1064                       Target_powerpc* target);
1065
1066     void
1067     check_non_pic(Relobj*, unsigned int r_type);
1068
1069     // Whether we have issued an error about a non-PIC compilation.
1070     bool issued_non_pic_error_;
1071   };
1072
1073   bool
1074   symval_for_branch(const Symbol_table* symtab,
1075                     const Sized_symbol<size>* gsym,
1076                     Powerpc_relobj<size, big_endian>* object,
1077                     Address *value, unsigned int *dest_shndx);
1078
1079   // The class which implements relocation.
1080   class Relocate : protected Track_tls
1081   {
1082    public:
1083     // Use 'at' branch hints when true, 'y' when false.
1084     // FIXME maybe: set this with an option.
1085     static const bool is_isa_v2 = true;
1086
1087     Relocate()
1088       : Track_tls()
1089     { }
1090
1091     // Do a relocation.  Return false if the caller should not issue
1092     // any warnings about this relocation.
1093     inline bool
1094     relocate(const Relocate_info<size, big_endian>*, unsigned int,
1095              Target_powerpc*, Output_section*, size_t, const unsigned char*,
1096              const Sized_symbol<size>*, const Symbol_value<size>*,
1097              unsigned char*, typename elfcpp::Elf_types<size>::Elf_Addr,
1098              section_size_type);
1099   };
1100
1101   class Relocate_comdat_behavior
1102   {
1103    public:
1104     // Decide what the linker should do for relocations that refer to
1105     // discarded comdat sections.
1106     inline Comdat_behavior
1107     get(const char* name)
1108     {
1109       gold::Default_comdat_behavior default_behavior;
1110       Comdat_behavior ret = default_behavior.get(name);
1111       if (ret == CB_WARNING)
1112         {
1113           if (size == 32
1114               && (strcmp(name, ".fixup") == 0
1115                   || strcmp(name, ".got2") == 0))
1116             ret = CB_IGNORE;
1117           if (size == 64
1118               && (strcmp(name, ".opd") == 0
1119                   || strcmp(name, ".toc") == 0
1120                   || strcmp(name, ".toc1") == 0))
1121             ret = CB_IGNORE;
1122         }
1123       return ret;
1124     }
1125   };
1126
1127   // Optimize the TLS relocation type based on what we know about the
1128   // symbol.  IS_FINAL is true if the final address of this symbol is
1129   // known at link time.
1130
1131   tls::Tls_optimization
1132   optimize_tls_gd(bool is_final)
1133   {
1134     // If we are generating a shared library, then we can't do anything
1135     // in the linker.
1136     if (parameters->options().shared())
1137       return tls::TLSOPT_NONE;
1138
1139     if (!is_final)
1140       return tls::TLSOPT_TO_IE;
1141     return tls::TLSOPT_TO_LE;
1142   }
1143
1144   tls::Tls_optimization
1145   optimize_tls_ld()
1146   {
1147     if (parameters->options().shared())
1148       return tls::TLSOPT_NONE;
1149
1150     return tls::TLSOPT_TO_LE;
1151   }
1152
1153   tls::Tls_optimization
1154   optimize_tls_ie(bool is_final)
1155   {
1156     if (!is_final || parameters->options().shared())
1157       return tls::TLSOPT_NONE;
1158
1159     return tls::TLSOPT_TO_LE;
1160   }
1161
1162   // Create glink.
1163   void
1164   make_glink_section(Layout*);
1165
1166   // Create the PLT section.
1167   void
1168   make_plt_section(Symbol_table*, Layout*);
1169
1170   void
1171   make_iplt_section(Symbol_table*, Layout*);
1172
1173   void
1174   make_brlt_section(Layout*);
1175
1176   // Create a PLT entry for a global symbol.
1177   void
1178   make_plt_entry(Symbol_table*, Layout*, Symbol*);
1179
1180   // Create a PLT entry for a local IFUNC symbol.
1181   void
1182   make_local_ifunc_plt_entry(Symbol_table*, Layout*,
1183                              Sized_relobj_file<size, big_endian>*,
1184                              unsigned int);
1185
1186
1187   // Create a GOT entry for local dynamic __tls_get_addr.
1188   unsigned int
1189   tlsld_got_offset(Symbol_table* symtab, Layout* layout,
1190                    Sized_relobj_file<size, big_endian>* object);
1191
1192   unsigned int
1193   tlsld_got_offset() const
1194   {
1195     return this->tlsld_got_offset_;
1196   }
1197
1198   // Get the dynamic reloc section, creating it if necessary.
1199   Reloc_section*
1200   rela_dyn_section(Layout*);
1201
1202   // Similarly, but for ifunc symbols get the one for ifunc.
1203   Reloc_section*
1204   rela_dyn_section(Symbol_table*, Layout*, bool for_ifunc);
1205
1206   // Copy a relocation against a global symbol.
1207   void
1208   copy_reloc(Symbol_table* symtab, Layout* layout,
1209              Sized_relobj_file<size, big_endian>* object,
1210              unsigned int shndx, Output_section* output_section,
1211              Symbol* sym, const elfcpp::Rela<size, big_endian>& reloc)
1212   {
1213     unsigned int r_type = elfcpp::elf_r_type<size>(reloc.get_r_info());
1214     this->copy_relocs_.copy_reloc(symtab, layout,
1215                                   symtab->get_sized_symbol<size>(sym),
1216                                   object, shndx, output_section,
1217                                   r_type, reloc.get_r_offset(),
1218                                   reloc.get_r_addend(),
1219                                   this->rela_dyn_section(layout));
1220   }
1221
1222   // Look over all the input sections, deciding where to place stubs.
1223   void
1224   group_sections(Layout*, const Task*, bool);
1225
1226   // Sort output sections by address.
1227   struct Sort_sections
1228   {
1229     bool
1230     operator()(const Output_section* sec1, const Output_section* sec2)
1231     { return sec1->address() < sec2->address(); }
1232   };
1233
1234   class Branch_info
1235   {
1236    public:
1237     Branch_info(Powerpc_relobj<size, big_endian>* ppc_object,
1238                 unsigned int data_shndx,
1239                 Address r_offset,
1240                 unsigned int r_type,
1241                 unsigned int r_sym,
1242                 Address addend)
1243       : object_(ppc_object), shndx_(data_shndx), offset_(r_offset),
1244         r_type_(r_type), r_sym_(r_sym), addend_(addend)
1245     { }
1246
1247     ~Branch_info()
1248     { }
1249
1250     // If this branch needs a plt call stub, or a long branch stub, make one.
1251     bool
1252     make_stub(Stub_table<size, big_endian>*,
1253               Stub_table<size, big_endian>*,
1254               Symbol_table*) const;
1255
1256    private:
1257     // The branch location..
1258     Powerpc_relobj<size, big_endian>* object_;
1259     unsigned int shndx_;
1260     Address offset_;
1261     // ..and the branch type and destination.
1262     unsigned int r_type_;
1263     unsigned int r_sym_;
1264     Address addend_;
1265   };
1266
1267   // Information about this specific target which we pass to the
1268   // general Target structure.
1269   static Target::Target_info powerpc_info;
1270
1271   // The types of GOT entries needed for this platform.
1272   // These values are exposed to the ABI in an incremental link.
1273   // Do not renumber existing values without changing the version
1274   // number of the .gnu_incremental_inputs section.
1275   enum Got_type
1276   {
1277     GOT_TYPE_STANDARD,
1278     GOT_TYPE_TLSGD,     // double entry for @got@tlsgd
1279     GOT_TYPE_DTPREL,    // entry for @got@dtprel
1280     GOT_TYPE_TPREL      // entry for @got@tprel
1281   };
1282
1283   // The GOT section.
1284   Output_data_got_powerpc<size, big_endian>* got_;
1285   // The PLT section.  This is a container for a table of addresses,
1286   // and their relocations.  Each address in the PLT has a dynamic
1287   // relocation (R_*_JMP_SLOT) and each address will have a
1288   // corresponding entry in .glink for lazy resolution of the PLT.
1289   // ppc32 initialises the PLT to point at the .glink entry, while
1290   // ppc64 leaves this to ld.so.  To make a call via the PLT, the
1291   // linker adds a stub that loads the PLT entry into ctr then
1292   // branches to ctr.  There may be more than one stub for each PLT
1293   // entry.  DT_JMPREL points at the first PLT dynamic relocation and
1294   // DT_PLTRELSZ gives the total size of PLT dynamic relocations.
1295   Output_data_plt_powerpc<size, big_endian>* plt_;
1296   // The IPLT section.  Like plt_, this is a container for a table of
1297   // addresses and their relocations, specifically for STT_GNU_IFUNC
1298   // functions that resolve locally (STT_GNU_IFUNC functions that
1299   // don't resolve locally go in PLT).  Unlike plt_, these have no
1300   // entry in .glink for lazy resolution, and the relocation section
1301   // does not have a 1-1 correspondence with IPLT addresses.  In fact,
1302   // the relocation section may contain relocations against
1303   // STT_GNU_IFUNC symbols at locations outside of IPLT.  The
1304   // relocation section will appear at the end of other dynamic
1305   // relocations, so that ld.so applies these relocations after other
1306   // dynamic relocations.  In a static executable, the relocation
1307   // section is emitted and marked with __rela_iplt_start and
1308   // __rela_iplt_end symbols.
1309   Output_data_plt_powerpc<size, big_endian>* iplt_;
1310   // Section holding long branch destinations.
1311   Output_data_brlt_powerpc<size, big_endian>* brlt_section_;
1312   // The .glink section.
1313   Output_data_glink<size, big_endian>* glink_;
1314   // The dynamic reloc section.
1315   Reloc_section* rela_dyn_;
1316   // Relocs saved to avoid a COPY reloc.
1317   Copy_relocs<elfcpp::SHT_RELA, size, big_endian> copy_relocs_;
1318   // Offset of the GOT entry for local dynamic __tls_get_addr calls.
1319   unsigned int tlsld_got_offset_;
1320
1321   Stub_tables stub_tables_;
1322   typedef Unordered_map<Address, unsigned int> Branch_lookup_table;
1323   Branch_lookup_table branch_lookup_table_;
1324
1325   typedef std::vector<Branch_info> Branches;
1326   Branches branch_info_;
1327
1328   bool plt_thread_safe_;
1329
1330   bool relax_failed_;
1331   int relax_fail_count_;
1332   int32_t stub_group_size_;
1333
1334   Output_data_save_res<size, big_endian> *savres_section_;
1335 };
1336
1337 template<>
1338 Target::Target_info Target_powerpc<32, true>::powerpc_info =
1339 {
1340   32,                   // size
1341   true,                 // is_big_endian
1342   elfcpp::EM_PPC,       // machine_code
1343   false,                // has_make_symbol
1344   false,                // has_resolve
1345   false,                // has_code_fill
1346   true,                 // is_default_stack_executable
1347   false,                // can_icf_inline_merge_sections
1348   '\0',                 // wrap_char
1349   "/usr/lib/ld.so.1",   // dynamic_linker
1350   0x10000000,           // default_text_segment_address
1351   64 * 1024,            // abi_pagesize (overridable by -z max-page-size)
1352   4 * 1024,             // common_pagesize (overridable by -z common-page-size)
1353   false,                // isolate_execinstr
1354   0,                    // rosegment_gap
1355   elfcpp::SHN_UNDEF,    // small_common_shndx
1356   elfcpp::SHN_UNDEF,    // large_common_shndx
1357   0,                    // small_common_section_flags
1358   0,                    // large_common_section_flags
1359   NULL,                 // attributes_section
1360   NULL,                 // attributes_vendor
1361   "_start",             // entry_symbol_name
1362   32,                   // hash_entry_size
1363 };
1364
1365 template<>
1366 Target::Target_info Target_powerpc<32, false>::powerpc_info =
1367 {
1368   32,                   // size
1369   false,                // is_big_endian
1370   elfcpp::EM_PPC,       // machine_code
1371   false,                // has_make_symbol
1372   false,                // has_resolve
1373   false,                // has_code_fill
1374   true,                 // is_default_stack_executable
1375   false,                // can_icf_inline_merge_sections
1376   '\0',                 // wrap_char
1377   "/usr/lib/ld.so.1",   // dynamic_linker
1378   0x10000000,           // default_text_segment_address
1379   64 * 1024,            // abi_pagesize (overridable by -z max-page-size)
1380   4 * 1024,             // common_pagesize (overridable by -z common-page-size)
1381   false,                // isolate_execinstr
1382   0,                    // rosegment_gap
1383   elfcpp::SHN_UNDEF,    // small_common_shndx
1384   elfcpp::SHN_UNDEF,    // large_common_shndx
1385   0,                    // small_common_section_flags
1386   0,                    // large_common_section_flags
1387   NULL,                 // attributes_section
1388   NULL,                 // attributes_vendor
1389   "_start",             // entry_symbol_name
1390   32,                   // hash_entry_size
1391 };
1392
1393 template<>
1394 Target::Target_info Target_powerpc<64, true>::powerpc_info =
1395 {
1396   64,                   // size
1397   true,                 // is_big_endian
1398   elfcpp::EM_PPC64,     // machine_code
1399   false,                // has_make_symbol
1400   false,                // has_resolve
1401   false,                // has_code_fill
1402   true,                 // is_default_stack_executable
1403   false,                // can_icf_inline_merge_sections
1404   '\0',                 // wrap_char
1405   "/usr/lib/ld.so.1",   // dynamic_linker
1406   0x10000000,           // default_text_segment_address
1407   64 * 1024,            // abi_pagesize (overridable by -z max-page-size)
1408   4 * 1024,             // common_pagesize (overridable by -z common-page-size)
1409   false,                // isolate_execinstr
1410   0,                    // rosegment_gap
1411   elfcpp::SHN_UNDEF,    // small_common_shndx
1412   elfcpp::SHN_UNDEF,    // large_common_shndx
1413   0,                    // small_common_section_flags
1414   0,                    // large_common_section_flags
1415   NULL,                 // attributes_section
1416   NULL,                 // attributes_vendor
1417   "_start",             // entry_symbol_name
1418   32,                   // hash_entry_size
1419 };
1420
1421 template<>
1422 Target::Target_info Target_powerpc<64, false>::powerpc_info =
1423 {
1424   64,                   // size
1425   false,                // is_big_endian
1426   elfcpp::EM_PPC64,     // machine_code
1427   false,                // has_make_symbol
1428   false,                // has_resolve
1429   false,                // has_code_fill
1430   true,                 // is_default_stack_executable
1431   false,                // can_icf_inline_merge_sections
1432   '\0',                 // wrap_char
1433   "/usr/lib/ld.so.1",   // dynamic_linker
1434   0x10000000,           // default_text_segment_address
1435   64 * 1024,            // abi_pagesize (overridable by -z max-page-size)
1436   4 * 1024,             // common_pagesize (overridable by -z common-page-size)
1437   false,                // isolate_execinstr
1438   0,                    // rosegment_gap
1439   elfcpp::SHN_UNDEF,    // small_common_shndx
1440   elfcpp::SHN_UNDEF,    // large_common_shndx
1441   0,                    // small_common_section_flags
1442   0,                    // large_common_section_flags
1443   NULL,                 // attributes_section
1444   NULL,                 // attributes_vendor
1445   "_start",             // entry_symbol_name
1446   32,                   // hash_entry_size
1447 };
1448
1449 inline bool
1450 is_branch_reloc(unsigned int r_type)
1451 {
1452   return (r_type == elfcpp::R_POWERPC_REL24
1453           || r_type == elfcpp::R_PPC_PLTREL24
1454           || r_type == elfcpp::R_PPC_LOCAL24PC
1455           || r_type == elfcpp::R_POWERPC_REL14
1456           || r_type == elfcpp::R_POWERPC_REL14_BRTAKEN
1457           || r_type == elfcpp::R_POWERPC_REL14_BRNTAKEN
1458           || r_type == elfcpp::R_POWERPC_ADDR24
1459           || r_type == elfcpp::R_POWERPC_ADDR14
1460           || r_type == elfcpp::R_POWERPC_ADDR14_BRTAKEN
1461           || r_type == elfcpp::R_POWERPC_ADDR14_BRNTAKEN);
1462 }
1463
1464 // If INSN is an opcode that may be used with an @tls operand, return
1465 // the transformed insn for TLS optimisation, otherwise return 0.  If
1466 // REG is non-zero only match an insn with RB or RA equal to REG.
1467 uint32_t
1468 at_tls_transform(uint32_t insn, unsigned int reg)
1469 {
1470   if ((insn & (0x3f << 26)) != 31 << 26)
1471     return 0;
1472
1473   unsigned int rtra;
1474   if (reg == 0 || ((insn >> 11) & 0x1f) == reg)
1475     rtra = insn & ((1 << 26) - (1 << 16));
1476   else if (((insn >> 16) & 0x1f) == reg)
1477     rtra = (insn & (0x1f << 21)) | ((insn & (0x1f << 11)) << 5);
1478   else
1479     return 0;
1480
1481   if ((insn & (0x3ff << 1)) == 266 << 1)
1482     // add -> addi
1483     insn = 14 << 26;
1484   else if ((insn & (0x1f << 1)) == 23 << 1
1485            && ((insn & (0x1f << 6)) < 14 << 6
1486                || ((insn & (0x1f << 6)) >= 16 << 6
1487                    && (insn & (0x1f << 6)) < 24 << 6)))
1488     // load and store indexed -> dform
1489     insn = (32 | ((insn >> 6) & 0x1f)) << 26;
1490   else if ((insn & (((0x1a << 5) | 0x1f) << 1)) == 21 << 1)
1491     // ldx, ldux, stdx, stdux -> ld, ldu, std, stdu
1492     insn = ((58 | ((insn >> 6) & 4)) << 26) | ((insn >> 6) & 1);
1493   else if ((insn & (((0x1f << 5) | 0x1f) << 1)) == 341 << 1)
1494     // lwax -> lwa
1495     insn = (58 << 26) | 2;
1496   else
1497     return 0;
1498   insn |= rtra;
1499   return insn;
1500 }
1501
1502
1503 template<int size, bool big_endian>
1504 class Powerpc_relocate_functions
1505 {
1506 public:
1507   enum Overflow_check
1508   {
1509     CHECK_NONE,
1510     CHECK_SIGNED,
1511     CHECK_UNSIGNED,
1512     CHECK_BITFIELD,
1513     CHECK_LOW_INSN,
1514     CHECK_HIGH_INSN
1515   };
1516
1517   enum Status
1518   {
1519     STATUS_OK,
1520     STATUS_OVERFLOW
1521   };
1522
1523 private:
1524   typedef Powerpc_relocate_functions<size, big_endian> This;
1525   typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
1526   typedef typename elfcpp::Elf_types<size>::Elf_Swxword SignedAddress;
1527
1528   template<int valsize>
1529   static inline bool
1530   has_overflow_signed(Address value)
1531   {
1532     // limit = 1 << (valsize - 1) without shift count exceeding size of type
1533     Address limit = static_cast<Address>(1) << ((valsize - 1) >> 1);
1534     limit <<= ((valsize - 1) >> 1);
1535     limit <<= ((valsize - 1) - 2 * ((valsize - 1) >> 1));
1536     return value + limit > (limit << 1) - 1;
1537   }
1538
1539   template<int valsize>
1540   static inline bool
1541   has_overflow_unsigned(Address value)
1542   {
1543     Address limit = static_cast<Address>(1) << ((valsize - 1) >> 1);
1544     limit <<= ((valsize - 1) >> 1);
1545     limit <<= ((valsize - 1) - 2 * ((valsize - 1) >> 1));
1546     return value > (limit << 1) - 1;
1547   }
1548
1549   template<int valsize>
1550   static inline bool
1551   has_overflow_bitfield(Address value)
1552   {
1553     return (has_overflow_unsigned<valsize>(value)
1554             && has_overflow_signed<valsize>(value));
1555   }
1556
1557   template<int valsize>
1558   static inline Status
1559   overflowed(Address value, Overflow_check overflow)
1560   {
1561     if (overflow == CHECK_SIGNED)
1562       {
1563         if (has_overflow_signed<valsize>(value))
1564           return STATUS_OVERFLOW;
1565       }
1566     else if (overflow == CHECK_UNSIGNED)
1567       {
1568         if (has_overflow_unsigned<valsize>(value))
1569           return STATUS_OVERFLOW;
1570       }
1571     else if (overflow == CHECK_BITFIELD)
1572       {
1573         if (has_overflow_bitfield<valsize>(value))
1574           return STATUS_OVERFLOW;
1575       }
1576     return STATUS_OK;
1577   }
1578
1579   // Do a simple RELA relocation
1580   template<int fieldsize, int valsize>
1581   static inline Status
1582   rela(unsigned char* view, Address value, Overflow_check overflow)
1583   {
1584     typedef typename elfcpp::Swap<fieldsize, big_endian>::Valtype Valtype;
1585     Valtype* wv = reinterpret_cast<Valtype*>(view);
1586     elfcpp::Swap<fieldsize, big_endian>::writeval(wv, value);
1587     return overflowed<valsize>(value, overflow);
1588   }
1589
1590   template<int fieldsize, int valsize>
1591   static inline Status
1592   rela(unsigned char* view,
1593        unsigned int right_shift,
1594        typename elfcpp::Valtype_base<fieldsize>::Valtype dst_mask,
1595        Address value,
1596        Overflow_check overflow)
1597   {
1598     typedef typename elfcpp::Swap<fieldsize, big_endian>::Valtype Valtype;
1599     Valtype* wv = reinterpret_cast<Valtype*>(view);
1600     Valtype val = elfcpp::Swap<fieldsize, big_endian>::readval(wv);
1601     Valtype reloc = value >> right_shift;
1602     val &= ~dst_mask;
1603     reloc &= dst_mask;
1604     elfcpp::Swap<fieldsize, big_endian>::writeval(wv, val | reloc);
1605     return overflowed<valsize>(value >> right_shift, overflow);
1606   }
1607
1608   // Do a simple RELA relocation, unaligned.
1609   template<int fieldsize, int valsize>
1610   static inline Status
1611   rela_ua(unsigned char* view, Address value, Overflow_check overflow)
1612   {
1613     elfcpp::Swap_unaligned<fieldsize, big_endian>::writeval(view, value);
1614     return overflowed<valsize>(value, overflow);
1615   }
1616
1617   template<int fieldsize, int valsize>
1618   static inline Status
1619   rela_ua(unsigned char* view,
1620           unsigned int right_shift,
1621           typename elfcpp::Valtype_base<fieldsize>::Valtype dst_mask,
1622           Address value,
1623           Overflow_check overflow)
1624   {
1625     typedef typename elfcpp::Swap_unaligned<fieldsize, big_endian>::Valtype
1626       Valtype;
1627     Valtype val = elfcpp::Swap<fieldsize, big_endian>::readval(view);
1628     Valtype reloc = value >> right_shift;
1629     val &= ~dst_mask;
1630     reloc &= dst_mask;
1631     elfcpp::Swap_unaligned<fieldsize, big_endian>::writeval(view, val | reloc);
1632     return overflowed<valsize>(value >> right_shift, overflow);
1633   }
1634
1635 public:
1636   // R_PPC64_ADDR64: (Symbol + Addend)
1637   static inline void
1638   addr64(unsigned char* view, Address value)
1639   { This::template rela<64,64>(view, value, CHECK_NONE); }
1640
1641   // R_PPC64_UADDR64: (Symbol + Addend) unaligned
1642   static inline void
1643   addr64_u(unsigned char* view, Address value)
1644   { This::template rela_ua<64,64>(view, value, CHECK_NONE); }
1645
1646   // R_POWERPC_ADDR32: (Symbol + Addend)
1647   static inline Status
1648   addr32(unsigned char* view, Address value, Overflow_check overflow)
1649   { return This::template rela<32,32>(view, value, overflow); }
1650
1651   // R_POWERPC_UADDR32: (Symbol + Addend) unaligned
1652   static inline Status
1653   addr32_u(unsigned char* view, Address value, Overflow_check overflow)
1654   { return This::template rela_ua<32,32>(view, value, overflow); }
1655
1656   // R_POWERPC_ADDR24: (Symbol + Addend) & 0x3fffffc
1657   static inline Status
1658   addr24(unsigned char* view, Address value, Overflow_check overflow)
1659   {
1660     Status stat = This::template rela<32,26>(view, 0, 0x03fffffc,
1661                                              value, overflow);
1662     if (overflow != CHECK_NONE && (value & 3) != 0)
1663       stat = STATUS_OVERFLOW;
1664     return stat;
1665   }
1666
1667   // R_POWERPC_ADDR16: (Symbol + Addend) & 0xffff
1668   static inline Status
1669   addr16(unsigned char* view, Address value, Overflow_check overflow)
1670   { return This::template rela<16,16>(view, value, overflow); }
1671
1672   // R_POWERPC_ADDR16: (Symbol + Addend) & 0xffff, unaligned
1673   static inline Status
1674   addr16_u(unsigned char* view, Address value, Overflow_check overflow)
1675   { return This::template rela_ua<16,16>(view, value, overflow); }
1676
1677   // R_POWERPC_ADDR16_DS: (Symbol + Addend) & 0xfffc
1678   static inline Status
1679   addr16_ds(unsigned char* view, Address value, Overflow_check overflow)
1680   {
1681     Status stat = This::template rela<16,16>(view, 0, 0xfffc, value, overflow);
1682     if ((value & 3) != 0)
1683       stat = STATUS_OVERFLOW;
1684     return stat;
1685   }
1686
1687   // R_POWERPC_ADDR16_DQ: (Symbol + Addend) & 0xfff0
1688   static inline Status
1689   addr16_dq(unsigned char* view, Address value, Overflow_check overflow)
1690   {
1691     Status stat = This::template rela<16,16>(view, 0, 0xfff0, value, overflow);
1692     if ((value & 15) != 0)
1693       stat = STATUS_OVERFLOW;
1694     return stat;
1695   }
1696
1697   // R_POWERPC_ADDR16_HI: ((Symbol + Addend) >> 16) & 0xffff
1698   static inline void
1699   addr16_hi(unsigned char* view, Address value)
1700   { This::template rela<16,16>(view, 16, 0xffff, value, CHECK_NONE); }
1701
1702   // R_POWERPC_ADDR16_HA: ((Symbol + Addend + 0x8000) >> 16) & 0xffff
1703   static inline void
1704   addr16_ha(unsigned char* view, Address value)
1705   { This::addr16_hi(view, value + 0x8000); }
1706
1707   // R_POWERPC_ADDR16_HIGHER: ((Symbol + Addend) >> 32) & 0xffff
1708   static inline void
1709   addr16_hi2(unsigned char* view, Address value)
1710   { This::template rela<16,16>(view, 32, 0xffff, value, CHECK_NONE); }
1711
1712   // R_POWERPC_ADDR16_HIGHERA: ((Symbol + Addend + 0x8000) >> 32) & 0xffff
1713   static inline void
1714   addr16_ha2(unsigned char* view, Address value)
1715   { This::addr16_hi2(view, value + 0x8000); }
1716
1717   // R_POWERPC_ADDR16_HIGHEST: ((Symbol + Addend) >> 48) & 0xffff
1718   static inline void
1719   addr16_hi3(unsigned char* view, Address value)
1720   { This::template rela<16,16>(view, 48, 0xffff, value, CHECK_NONE); }
1721
1722   // R_POWERPC_ADDR16_HIGHESTA: ((Symbol + Addend + 0x8000) >> 48) & 0xffff
1723   static inline void
1724   addr16_ha3(unsigned char* view, Address value)
1725   { This::addr16_hi3(view, value + 0x8000); }
1726
1727   // R_POWERPC_ADDR14: (Symbol + Addend) & 0xfffc
1728   static inline Status
1729   addr14(unsigned char* view, Address value, Overflow_check overflow)
1730   {
1731     Status stat = This::template rela<32,16>(view, 0, 0xfffc, value, overflow);
1732     if (overflow != CHECK_NONE && (value & 3) != 0)
1733       stat = STATUS_OVERFLOW;
1734     return stat;
1735   }
1736
1737   // R_POWERPC_REL16DX_HA
1738   static inline Status
1739   addr16dx_ha(unsigned char *view, Address value, Overflow_check overflow)
1740   {
1741     typedef typename elfcpp::Swap<32, big_endian>::Valtype Valtype;
1742     Valtype* wv = reinterpret_cast<Valtype*>(view);
1743     Valtype val = elfcpp::Swap<32, big_endian>::readval(wv);
1744     value += 0x8000;
1745     value = static_cast<SignedAddress>(value) >> 16;
1746     val |= (value & 0xffc1) | ((value & 0x3e) << 15);
1747     elfcpp::Swap<32, big_endian>::writeval(wv, val);
1748     return overflowed<16>(value, overflow);
1749   }
1750 };
1751
1752 // Set ABI version for input and output.
1753
1754 template<int size, bool big_endian>
1755 void
1756 Powerpc_relobj<size, big_endian>::set_abiversion(int ver)
1757 {
1758   this->e_flags_ |= ver;
1759   if (this->abiversion() != 0)
1760     {
1761       Target_powerpc<size, big_endian>* target =
1762         static_cast<Target_powerpc<size, big_endian>*>(
1763            parameters->sized_target<size, big_endian>());
1764       if (target->abiversion() == 0)
1765         target->set_abiversion(this->abiversion());
1766       else if (target->abiversion() != this->abiversion())
1767         gold_error(_("%s: ABI version %d is not compatible "
1768                      "with ABI version %d output"),
1769                    this->name().c_str(),
1770                    this->abiversion(), target->abiversion());
1771
1772     }
1773 }
1774
1775 // Stash away the index of .got2 or .opd in a relocatable object, if
1776 // such a section exists.
1777
1778 template<int size, bool big_endian>
1779 bool
1780 Powerpc_relobj<size, big_endian>::do_find_special_sections(
1781     Read_symbols_data* sd)
1782 {
1783   const unsigned char* const pshdrs = sd->section_headers->data();
1784   const unsigned char* namesu = sd->section_names->data();
1785   const char* names = reinterpret_cast<const char*>(namesu);
1786   section_size_type names_size = sd->section_names_size;
1787   const unsigned char* s;
1788
1789   s = this->template find_shdr<size, big_endian>(pshdrs,
1790                                                  size == 32 ? ".got2" : ".opd",
1791                                                  names, names_size, NULL);
1792   if (s != NULL)
1793     {
1794       unsigned int ndx = (s - pshdrs) / elfcpp::Elf_sizes<size>::shdr_size;
1795       this->special_ = ndx;
1796       if (size == 64)
1797         {
1798           if (this->abiversion() == 0)
1799             this->set_abiversion(1);
1800           else if (this->abiversion() > 1)
1801             gold_error(_("%s: .opd invalid in abiv%d"),
1802                        this->name().c_str(), this->abiversion());
1803         }
1804     }
1805   return Sized_relobj_file<size, big_endian>::do_find_special_sections(sd);
1806 }
1807
1808 // Examine .rela.opd to build info about function entry points.
1809
1810 template<int size, bool big_endian>
1811 void
1812 Powerpc_relobj<size, big_endian>::scan_opd_relocs(
1813     size_t reloc_count,
1814     const unsigned char* prelocs,
1815     const unsigned char* plocal_syms)
1816 {
1817   if (size == 64)
1818     {
1819       typedef typename elfcpp::Rela<size, big_endian> Reltype;
1820       const int reloc_size = elfcpp::Elf_sizes<size>::rela_size;
1821       const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
1822       Address expected_off = 0;
1823       bool regular = true;
1824       unsigned int opd_ent_size = 0;
1825
1826       for (size_t i = 0; i < reloc_count; ++i, prelocs += reloc_size)
1827         {
1828           Reltype reloc(prelocs);
1829           typename elfcpp::Elf_types<size>::Elf_WXword r_info
1830             = reloc.get_r_info();
1831           unsigned int r_type = elfcpp::elf_r_type<size>(r_info);
1832           if (r_type == elfcpp::R_PPC64_ADDR64)
1833             {
1834               unsigned int r_sym = elfcpp::elf_r_sym<size>(r_info);
1835               typename elfcpp::Elf_types<size>::Elf_Addr value;
1836               bool is_ordinary;
1837               unsigned int shndx;
1838               if (r_sym < this->local_symbol_count())
1839                 {
1840                   typename elfcpp::Sym<size, big_endian>
1841                     lsym(plocal_syms + r_sym * sym_size);
1842                   shndx = lsym.get_st_shndx();
1843                   shndx = this->adjust_sym_shndx(r_sym, shndx, &is_ordinary);
1844                   value = lsym.get_st_value();
1845                 }
1846               else
1847                 shndx = this->symbol_section_and_value(r_sym, &value,
1848                                                        &is_ordinary);
1849               this->set_opd_ent(reloc.get_r_offset(), shndx,
1850                                 value + reloc.get_r_addend());
1851               if (i == 2)
1852                 {
1853                   expected_off = reloc.get_r_offset();
1854                   opd_ent_size = expected_off;
1855                 }
1856               else if (expected_off != reloc.get_r_offset())
1857                 regular = false;
1858               expected_off += opd_ent_size;
1859             }
1860           else if (r_type == elfcpp::R_PPC64_TOC)
1861             {
1862               if (expected_off - opd_ent_size + 8 != reloc.get_r_offset())
1863                 regular = false;
1864             }
1865           else
1866             {
1867               gold_warning(_("%s: unexpected reloc type %u in .opd section"),
1868                            this->name().c_str(), r_type);
1869               regular = false;
1870             }
1871         }
1872       if (reloc_count <= 2)
1873         opd_ent_size = this->section_size(this->opd_shndx());
1874       if (opd_ent_size != 24 && opd_ent_size != 16)
1875         regular = false;
1876       if (!regular)
1877         {
1878           gold_warning(_("%s: .opd is not a regular array of opd entries"),
1879                        this->name().c_str());
1880           opd_ent_size = 0;
1881         }
1882     }
1883 }
1884
1885 template<int size, bool big_endian>
1886 void
1887 Powerpc_relobj<size, big_endian>::do_read_relocs(Read_relocs_data* rd)
1888 {
1889   Sized_relobj_file<size, big_endian>::do_read_relocs(rd);
1890   if (size == 64)
1891     {
1892       for (Read_relocs_data::Relocs_list::iterator p = rd->relocs.begin();
1893            p != rd->relocs.end();
1894            ++p)
1895         {
1896           if (p->data_shndx == this->opd_shndx())
1897             {
1898               uint64_t opd_size = this->section_size(this->opd_shndx());
1899               gold_assert(opd_size == static_cast<size_t>(opd_size));
1900               if (opd_size != 0)
1901                 {
1902                   this->init_opd(opd_size);
1903                   this->scan_opd_relocs(p->reloc_count, p->contents->data(),
1904                                         rd->local_symbols->data());
1905                 }
1906               break;
1907             }
1908         }
1909     }
1910 }
1911
1912 // Read the symbols then set up st_other vector.
1913
1914 template<int size, bool big_endian>
1915 void
1916 Powerpc_relobj<size, big_endian>::do_read_symbols(Read_symbols_data* sd)
1917 {
1918   this->base_read_symbols(sd);
1919   if (size == 64)
1920     {
1921       const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
1922       const unsigned char* const pshdrs = sd->section_headers->data();
1923       const unsigned int loccount = this->do_local_symbol_count();
1924       if (loccount != 0)
1925         {
1926           this->st_other_.resize(loccount);
1927           const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
1928           off_t locsize = loccount * sym_size;
1929           const unsigned int symtab_shndx = this->symtab_shndx();
1930           const unsigned char *psymtab = pshdrs + symtab_shndx * shdr_size;
1931           typename elfcpp::Shdr<size, big_endian> shdr(psymtab);
1932           const unsigned char* psyms = this->get_view(shdr.get_sh_offset(),
1933                                                       locsize, true, false);
1934           psyms += sym_size;
1935           for (unsigned int i = 1; i < loccount; ++i, psyms += sym_size)
1936             {
1937               elfcpp::Sym<size, big_endian> sym(psyms);
1938               unsigned char st_other = sym.get_st_other();
1939               this->st_other_[i] = st_other;
1940               if ((st_other & elfcpp::STO_PPC64_LOCAL_MASK) != 0)
1941                 {
1942                   if (this->abiversion() == 0)
1943                     this->set_abiversion(2);
1944                   else if (this->abiversion() < 2)
1945                     gold_error(_("%s: local symbol %d has invalid st_other"
1946                                  " for ABI version 1"),
1947                                this->name().c_str(), i);
1948                 }
1949             }
1950         }
1951     }
1952 }
1953
1954 template<int size, bool big_endian>
1955 void
1956 Powerpc_dynobj<size, big_endian>::set_abiversion(int ver)
1957 {
1958   this->e_flags_ |= ver;
1959   if (this->abiversion() != 0)
1960     {
1961       Target_powerpc<size, big_endian>* target =
1962         static_cast<Target_powerpc<size, big_endian>*>(
1963           parameters->sized_target<size, big_endian>());
1964       if (target->abiversion() == 0)
1965         target->set_abiversion(this->abiversion());
1966       else if (target->abiversion() != this->abiversion())
1967         gold_error(_("%s: ABI version %d is not compatible "
1968                      "with ABI version %d output"),
1969                    this->name().c_str(),
1970                    this->abiversion(), target->abiversion());
1971
1972     }
1973 }
1974
1975 // Call Sized_dynobj::base_read_symbols to read the symbols then
1976 // read .opd from a dynamic object, filling in opd_ent_ vector,
1977
1978 template<int size, bool big_endian>
1979 void
1980 Powerpc_dynobj<size, big_endian>::do_read_symbols(Read_symbols_data* sd)
1981 {
1982   this->base_read_symbols(sd);
1983   if (size == 64)
1984     {
1985       const int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
1986       const unsigned char* const pshdrs = sd->section_headers->data();
1987       const unsigned char* namesu = sd->section_names->data();
1988       const char* names = reinterpret_cast<const char*>(namesu);
1989       const unsigned char* s = NULL;
1990       const unsigned char* opd;
1991       section_size_type opd_size;
1992
1993       // Find and read .opd section.
1994       while (1)
1995         {
1996           s = this->template find_shdr<size, big_endian>(pshdrs, ".opd", names,
1997                                                          sd->section_names_size,
1998                                                          s);
1999           if (s == NULL)
2000             return;
2001
2002           typename elfcpp::Shdr<size, big_endian> shdr(s);
2003           if (shdr.get_sh_type() == elfcpp::SHT_PROGBITS
2004               && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) != 0)
2005             {
2006               if (this->abiversion() == 0)
2007                 this->set_abiversion(1);
2008               else if (this->abiversion() > 1)
2009                 gold_error(_("%s: .opd invalid in abiv%d"),
2010                            this->name().c_str(), this->abiversion());
2011
2012               this->opd_shndx_ = (s - pshdrs) / shdr_size;
2013               this->opd_address_ = shdr.get_sh_addr();
2014               opd_size = convert_to_section_size_type(shdr.get_sh_size());
2015               opd = this->get_view(shdr.get_sh_offset(), opd_size,
2016                                    true, false);
2017               break;
2018             }
2019         }
2020
2021       // Build set of executable sections.
2022       // Using a set is probably overkill.  There is likely to be only
2023       // a few executable sections, typically .init, .text and .fini,
2024       // and they are generally grouped together.
2025       typedef std::set<Sec_info> Exec_sections;
2026       Exec_sections exec_sections;
2027       s = pshdrs;
2028       for (unsigned int i = 1; i < this->shnum(); ++i, s += shdr_size)
2029         {
2030           typename elfcpp::Shdr<size, big_endian> shdr(s);
2031           if (shdr.get_sh_type() == elfcpp::SHT_PROGBITS
2032               && ((shdr.get_sh_flags()
2033                    & (elfcpp::SHF_ALLOC | elfcpp::SHF_EXECINSTR))
2034                   == (elfcpp::SHF_ALLOC | elfcpp::SHF_EXECINSTR))
2035               && shdr.get_sh_size() != 0)
2036             {
2037               exec_sections.insert(Sec_info(shdr.get_sh_addr(),
2038                                             shdr.get_sh_size(), i));
2039             }
2040         }
2041       if (exec_sections.empty())
2042         return;
2043
2044       // Look over the OPD entries.  This is complicated by the fact
2045       // that some binaries will use two-word entries while others
2046       // will use the standard three-word entries.  In most cases
2047       // the third word (the environment pointer for languages like
2048       // Pascal) is unused and will be zero.  If the third word is
2049       // used it should not be pointing into executable sections,
2050       // I think.
2051       this->init_opd(opd_size);
2052       for (const unsigned char* p = opd; p < opd + opd_size; p += 8)
2053         {
2054           typedef typename elfcpp::Swap<64, big_endian>::Valtype Valtype;
2055           const Valtype* valp = reinterpret_cast<const Valtype*>(p);
2056           Valtype val = elfcpp::Swap<64, big_endian>::readval(valp);
2057           if (val == 0)
2058             // Chances are that this is the third word of an OPD entry.
2059             continue;
2060           typename Exec_sections::const_iterator e
2061             = exec_sections.upper_bound(Sec_info(val, 0, 0));
2062           if (e != exec_sections.begin())
2063             {
2064               --e;
2065               if (e->start <= val && val < e->start + e->len)
2066                 {
2067                   // We have an address in an executable section.
2068                   // VAL ought to be the function entry, set it up.
2069                   this->set_opd_ent(p - opd, e->shndx, val);
2070                   // Skip second word of OPD entry, the TOC pointer.
2071                   p += 8;
2072                 }
2073             }
2074           // If we didn't match any executable sections, we likely
2075           // have a non-zero third word in the OPD entry.
2076         }
2077     }
2078 }
2079
2080 // Set up some symbols.
2081
2082 template<int size, bool big_endian>
2083 void
2084 Target_powerpc<size, big_endian>::do_define_standard_symbols(
2085     Symbol_table* symtab,
2086     Layout* layout)
2087 {
2088   if (size == 32)
2089     {
2090       // Define _GLOBAL_OFFSET_TABLE_ to ensure it isn't seen as
2091       // undefined when scanning relocs (and thus requires
2092       // non-relative dynamic relocs).  The proper value will be
2093       // updated later.
2094       Symbol *gotsym = symtab->lookup("_GLOBAL_OFFSET_TABLE_", NULL);
2095       if (gotsym != NULL && gotsym->is_undefined())
2096         {
2097           Target_powerpc<size, big_endian>* target =
2098             static_cast<Target_powerpc<size, big_endian>*>(
2099                 parameters->sized_target<size, big_endian>());
2100           Output_data_got_powerpc<size, big_endian>* got
2101             = target->got_section(symtab, layout);
2102           symtab->define_in_output_data("_GLOBAL_OFFSET_TABLE_", NULL,
2103                                         Symbol_table::PREDEFINED,
2104                                         got, 0, 0,
2105                                         elfcpp::STT_OBJECT,
2106                                         elfcpp::STB_LOCAL,
2107                                         elfcpp::STV_HIDDEN, 0,
2108                                         false, false);
2109         }
2110
2111       // Define _SDA_BASE_ at the start of the .sdata section + 32768.
2112       Symbol *sdasym = symtab->lookup("_SDA_BASE_", NULL);
2113       if (sdasym != NULL && sdasym->is_undefined())
2114         {
2115           Output_data_space* sdata = new Output_data_space(4, "** sdata");
2116           Output_section* os
2117             = layout->add_output_section_data(".sdata", 0,
2118                                               elfcpp::SHF_ALLOC
2119                                               | elfcpp::SHF_WRITE,
2120                                               sdata, ORDER_SMALL_DATA, false);
2121           symtab->define_in_output_data("_SDA_BASE_", NULL,
2122                                         Symbol_table::PREDEFINED,
2123                                         os, 32768, 0, elfcpp::STT_OBJECT,
2124                                         elfcpp::STB_LOCAL, elfcpp::STV_HIDDEN,
2125                                         0, false, false);
2126         }
2127     }
2128   else
2129     {
2130       // Define .TOC. as for 32-bit _GLOBAL_OFFSET_TABLE_
2131       Symbol *gotsym = symtab->lookup(".TOC.", NULL);
2132       if (gotsym != NULL && gotsym->is_undefined())
2133         {
2134           Target_powerpc<size, big_endian>* target =
2135             static_cast<Target_powerpc<size, big_endian>*>(
2136                 parameters->sized_target<size, big_endian>());
2137           Output_data_got_powerpc<size, big_endian>* got
2138             = target->got_section(symtab, layout);
2139           symtab->define_in_output_data(".TOC.", NULL,
2140                                         Symbol_table::PREDEFINED,
2141                                         got, 0x8000, 0,
2142                                         elfcpp::STT_OBJECT,
2143                                         elfcpp::STB_LOCAL,
2144                                         elfcpp::STV_HIDDEN, 0,
2145                                         false, false);
2146         }
2147     }
2148 }
2149
2150 // Set up PowerPC target specific relobj.
2151
2152 template<int size, bool big_endian>
2153 Object*
2154 Target_powerpc<size, big_endian>::do_make_elf_object(
2155     const std::string& name,
2156     Input_file* input_file,
2157     off_t offset, const elfcpp::Ehdr<size, big_endian>& ehdr)
2158 {
2159   int et = ehdr.get_e_type();
2160   // ET_EXEC files are valid input for --just-symbols/-R,
2161   // and we treat them as relocatable objects.
2162   if (et == elfcpp::ET_REL
2163       || (et == elfcpp::ET_EXEC && input_file->just_symbols()))
2164     {
2165       Powerpc_relobj<size, big_endian>* obj =
2166         new Powerpc_relobj<size, big_endian>(name, input_file, offset, ehdr);
2167       obj->setup();
2168       return obj;
2169     }
2170   else if (et == elfcpp::ET_DYN)
2171     {
2172       Powerpc_dynobj<size, big_endian>* obj =
2173         new Powerpc_dynobj<size, big_endian>(name, input_file, offset, ehdr);
2174       obj->setup();
2175       return obj;
2176     }
2177   else
2178     {
2179       gold_error(_("%s: unsupported ELF file type %d"), name.c_str(), et);
2180       return NULL;
2181     }
2182 }
2183
2184 template<int size, bool big_endian>
2185 class Output_data_got_powerpc : public Output_data_got<size, big_endian>
2186 {
2187 public:
2188   typedef typename elfcpp::Elf_types<size>::Elf_Addr Valtype;
2189   typedef Output_data_reloc<elfcpp::SHT_RELA, true, size, big_endian> Rela_dyn;
2190
2191   Output_data_got_powerpc(Symbol_table* symtab, Layout* layout)
2192     : Output_data_got<size, big_endian>(),
2193       symtab_(symtab), layout_(layout),
2194       header_ent_cnt_(size == 32 ? 3 : 1),
2195       header_index_(size == 32 ? 0x2000 : 0)
2196   {
2197     if (size == 64)
2198       this->set_addralign(256);
2199   }
2200
2201   // Override all the Output_data_got methods we use so as to first call
2202   // reserve_ent().
2203   bool
2204   add_global(Symbol* gsym, unsigned int got_type)
2205   {
2206     this->reserve_ent();
2207     return Output_data_got<size, big_endian>::add_global(gsym, got_type);
2208   }
2209
2210   bool
2211   add_global_plt(Symbol* gsym, unsigned int got_type)
2212   {
2213     this->reserve_ent();
2214     return Output_data_got<size, big_endian>::add_global_plt(gsym, got_type);
2215   }
2216
2217   bool
2218   add_global_tls(Symbol* gsym, unsigned int got_type)
2219   { return this->add_global_plt(gsym, got_type); }
2220
2221   void
2222   add_global_with_rel(Symbol* gsym, unsigned int got_type,
2223                       Output_data_reloc_generic* rel_dyn, unsigned int r_type)
2224   {
2225     this->reserve_ent();
2226     Output_data_got<size, big_endian>::
2227       add_global_with_rel(gsym, got_type, rel_dyn, r_type);
2228   }
2229
2230   void
2231   add_global_pair_with_rel(Symbol* gsym, unsigned int got_type,
2232                            Output_data_reloc_generic* rel_dyn,
2233                            unsigned int r_type_1, unsigned int r_type_2)
2234   {
2235     this->reserve_ent(2);
2236     Output_data_got<size, big_endian>::
2237       add_global_pair_with_rel(gsym, got_type, rel_dyn, r_type_1, r_type_2);
2238   }
2239
2240   bool
2241   add_local(Relobj* object, unsigned int sym_index, unsigned int got_type)
2242   {
2243     this->reserve_ent();
2244     return Output_data_got<size, big_endian>::add_local(object, sym_index,
2245                                                         got_type);
2246   }
2247
2248   bool
2249   add_local_plt(Relobj* object, unsigned int sym_index, unsigned int got_type)
2250   {
2251     this->reserve_ent();
2252     return Output_data_got<size, big_endian>::add_local_plt(object, sym_index,
2253                                                             got_type);
2254   }
2255
2256   bool
2257   add_local_tls(Relobj* object, unsigned int sym_index, unsigned int got_type)
2258   { return this->add_local_plt(object, sym_index, got_type); }
2259
2260   void
2261   add_local_tls_pair(Relobj* object, unsigned int sym_index,
2262                      unsigned int got_type,
2263                      Output_data_reloc_generic* rel_dyn,
2264                      unsigned int r_type)
2265   {
2266     this->reserve_ent(2);
2267     Output_data_got<size, big_endian>::
2268       add_local_tls_pair(object, sym_index, got_type, rel_dyn, r_type);
2269   }
2270
2271   unsigned int
2272   add_constant(Valtype constant)
2273   {
2274     this->reserve_ent();
2275     return Output_data_got<size, big_endian>::add_constant(constant);
2276   }
2277
2278   unsigned int
2279   add_constant_pair(Valtype c1, Valtype c2)
2280   {
2281     this->reserve_ent(2);
2282     return Output_data_got<size, big_endian>::add_constant_pair(c1, c2);
2283   }
2284
2285   // Offset of _GLOBAL_OFFSET_TABLE_.
2286   unsigned int
2287   g_o_t() const
2288   {
2289     return this->got_offset(this->header_index_);
2290   }
2291
2292   // Offset of base used to access the GOT/TOC.
2293   // The got/toc pointer reg will be set to this value.
2294   Valtype
2295   got_base_offset(const Powerpc_relobj<size, big_endian>* object) const
2296   {
2297     if (size == 32)
2298       return this->g_o_t();
2299     else
2300       return (this->output_section()->address()
2301               + object->toc_base_offset()
2302               - this->address());
2303   }
2304
2305   // Ensure our GOT has a header.
2306   void
2307   set_final_data_size()
2308   {
2309     if (this->header_ent_cnt_ != 0)
2310       this->make_header();
2311     Output_data_got<size, big_endian>::set_final_data_size();
2312   }
2313
2314   // First word of GOT header needs some values that are not
2315   // handled by Output_data_got so poke them in here.
2316   // For 32-bit, address of .dynamic, for 64-bit, address of TOCbase.
2317   void
2318   do_write(Output_file* of)
2319   {
2320     Valtype val = 0;
2321     if (size == 32 && this->layout_->dynamic_data() != NULL)
2322       val = this->layout_->dynamic_section()->address();
2323     if (size == 64)
2324       val = this->output_section()->address() + 0x8000;
2325     this->replace_constant(this->header_index_, val);
2326     Output_data_got<size, big_endian>::do_write(of);
2327   }
2328
2329 private:
2330   void
2331   reserve_ent(unsigned int cnt = 1)
2332   {
2333     if (this->header_ent_cnt_ == 0)
2334       return;
2335     if (this->num_entries() + cnt > this->header_index_)
2336       this->make_header();
2337   }
2338
2339   void
2340   make_header()
2341   {
2342     this->header_ent_cnt_ = 0;
2343     this->header_index_ = this->num_entries();
2344     if (size == 32)
2345       {
2346         Output_data_got<size, big_endian>::add_constant(0);
2347         Output_data_got<size, big_endian>::add_constant(0);
2348         Output_data_got<size, big_endian>::add_constant(0);
2349
2350         // Define _GLOBAL_OFFSET_TABLE_ at the header
2351         Symbol *gotsym = this->symtab_->lookup("_GLOBAL_OFFSET_TABLE_", NULL);
2352         if (gotsym != NULL)
2353           {
2354             Sized_symbol<size>* sym = static_cast<Sized_symbol<size>*>(gotsym);
2355             sym->set_value(this->g_o_t());
2356           }
2357         else
2358           this->symtab_->define_in_output_data("_GLOBAL_OFFSET_TABLE_", NULL,
2359                                                Symbol_table::PREDEFINED,
2360                                                this, this->g_o_t(), 0,
2361                                                elfcpp::STT_OBJECT,
2362                                                elfcpp::STB_LOCAL,
2363                                                elfcpp::STV_HIDDEN, 0,
2364                                                false, false);
2365       }
2366     else
2367       Output_data_got<size, big_endian>::add_constant(0);
2368   }
2369
2370   // Stashed pointers.
2371   Symbol_table* symtab_;
2372   Layout* layout_;
2373
2374   // GOT header size.
2375   unsigned int header_ent_cnt_;
2376   // GOT header index.
2377   unsigned int header_index_;
2378 };
2379
2380 // Get the GOT section, creating it if necessary.
2381
2382 template<int size, bool big_endian>
2383 Output_data_got_powerpc<size, big_endian>*
2384 Target_powerpc<size, big_endian>::got_section(Symbol_table* symtab,
2385                                               Layout* layout)
2386 {
2387   if (this->got_ == NULL)
2388     {
2389       gold_assert(symtab != NULL && layout != NULL);
2390
2391       this->got_
2392         = new Output_data_got_powerpc<size, big_endian>(symtab, layout);
2393
2394       layout->add_output_section_data(".got", elfcpp::SHT_PROGBITS,
2395                                       elfcpp::SHF_ALLOC | elfcpp::SHF_WRITE,
2396                                       this->got_, ORDER_DATA, false);
2397     }
2398
2399   return this->got_;
2400 }
2401
2402 // Get the dynamic reloc section, creating it if necessary.
2403
2404 template<int size, bool big_endian>
2405 typename Target_powerpc<size, big_endian>::Reloc_section*
2406 Target_powerpc<size, big_endian>::rela_dyn_section(Layout* layout)
2407 {
2408   if (this->rela_dyn_ == NULL)
2409     {
2410       gold_assert(layout != NULL);
2411       this->rela_dyn_ = new Reloc_section(parameters->options().combreloc());
2412       layout->add_output_section_data(".rela.dyn", elfcpp::SHT_RELA,
2413                                       elfcpp::SHF_ALLOC, this->rela_dyn_,
2414                                       ORDER_DYNAMIC_RELOCS, false);
2415     }
2416   return this->rela_dyn_;
2417 }
2418
2419 // Similarly, but for ifunc symbols get the one for ifunc.
2420
2421 template<int size, bool big_endian>
2422 typename Target_powerpc<size, big_endian>::Reloc_section*
2423 Target_powerpc<size, big_endian>::rela_dyn_section(Symbol_table* symtab,
2424                                                    Layout* layout,
2425                                                    bool for_ifunc)
2426 {
2427   if (!for_ifunc)
2428     return this->rela_dyn_section(layout);
2429
2430   if (this->iplt_ == NULL)
2431     this->make_iplt_section(symtab, layout);
2432   return this->iplt_->rel_plt();
2433 }
2434
2435 class Stub_control
2436 {
2437  public:
2438   // Determine the stub group size.  The group size is the absolute
2439   // value of the parameter --stub-group-size.  If --stub-group-size
2440   // is passed a negative value, we restrict stubs to be always after
2441   // the stubbed branches.
2442   Stub_control(int32_t size, bool no_size_errors, bool multi_os)
2443     : stub_group_size_(abs(size)), stubs_always_after_branch_(size < 0),
2444       suppress_size_errors_(no_size_errors), multi_os_(multi_os),
2445       state_(NO_GROUP), group_size_(0), group_start_addr_(0),
2446       owner_(NULL), output_section_(NULL)
2447   {
2448   }
2449
2450   // Return true iff input section can be handled by current stub
2451   // group.
2452   bool
2453   can_add_to_stub_group(Output_section* o,
2454                         const Output_section::Input_section* i,
2455                         bool has14);
2456
2457   const Output_section::Input_section*
2458   owner()
2459   { return owner_; }
2460
2461   Output_section*
2462   output_section()
2463   { return output_section_; }
2464
2465   void
2466   set_output_and_owner(Output_section* o,
2467                        const Output_section::Input_section* i)
2468   {
2469     this->output_section_ = o;
2470     this->owner_ = i;
2471   }
2472
2473  private:
2474   typedef enum
2475   {
2476     // Initial state.
2477     NO_GROUP,
2478     // Adding group sections before the stubs.
2479     FINDING_STUB_SECTION,
2480     // Adding group sections after the stubs.
2481     HAS_STUB_SECTION
2482   } State;
2483
2484   uint32_t stub_group_size_;
2485   bool stubs_always_after_branch_;
2486   bool suppress_size_errors_;
2487   // True if a stub group can serve multiple output sections.
2488   bool multi_os_;
2489   State state_;
2490   // Current max size of group.  Starts at stub_group_size_ but is
2491   // reduced to stub_group_size_/1024 on seeing a section with
2492   // external conditional branches.
2493   uint32_t group_size_;
2494   uint64_t group_start_addr_;
2495   // owner_ and output_section_ specify the section to which stubs are
2496   // attached.  The stubs are placed at the end of this section.
2497   const Output_section::Input_section* owner_;
2498   Output_section* output_section_;
2499 };
2500
2501 // Return true iff input section can be handled by current stub
2502 // group.  Sections are presented to this function in order,
2503 // so the first section is the head of the group.
2504
2505 bool
2506 Stub_control::can_add_to_stub_group(Output_section* o,
2507                                     const Output_section::Input_section* i,
2508                                     bool has14)
2509 {
2510   bool whole_sec = o->order() == ORDER_INIT || o->order() == ORDER_FINI;
2511   uint64_t this_size;
2512   uint64_t start_addr = o->address();
2513
2514   if (whole_sec)
2515     // .init and .fini sections are pasted together to form a single
2516     // function.  We can't be adding stubs in the middle of the function.
2517     this_size = o->data_size();
2518   else
2519     {
2520       start_addr += i->relobj()->output_section_offset(i->shndx());
2521       this_size = i->data_size();
2522     }
2523
2524   uint64_t end_addr = start_addr + this_size;
2525   uint32_t group_size = this->stub_group_size_;
2526   if (has14)
2527     this->group_size_ = group_size = group_size >> 10;
2528
2529   if (this_size > group_size && !this->suppress_size_errors_)
2530     gold_warning(_("%s:%s exceeds group size"),
2531                  i->relobj()->name().c_str(),
2532                  i->relobj()->section_name(i->shndx()).c_str());
2533
2534   gold_debug(DEBUG_TARGET, "maybe add%s %s:%s size=%#llx total=%#llx",
2535              has14 ? " 14bit" : "",
2536              i->relobj()->name().c_str(),
2537              i->relobj()->section_name(i->shndx()).c_str(),
2538              (long long) this_size,
2539              (this->state_ == NO_GROUP
2540               ? this_size
2541               : (long long) end_addr - this->group_start_addr_));
2542
2543   if (this->state_ == NO_GROUP)
2544     {
2545       // Only here on very first use of Stub_control
2546       this->owner_ = i;
2547       this->output_section_ = o;
2548       this->state_ = FINDING_STUB_SECTION;
2549       this->group_size_ = group_size;
2550       this->group_start_addr_ = start_addr;
2551       return true;
2552     }
2553   else if (!this->multi_os_ && this->output_section_ != o)
2554     ;
2555   else if (this->state_ == HAS_STUB_SECTION)
2556     {
2557       // Can we add this section, which is after the stubs, to the
2558       // group?
2559       if (end_addr - this->group_start_addr_ <= this->group_size_)
2560         return true;
2561     }
2562   else if (this->state_ == FINDING_STUB_SECTION)
2563     {
2564       if ((whole_sec && this->output_section_ == o)
2565           || end_addr - this->group_start_addr_ <= this->group_size_)
2566         {
2567           // Stubs are added at the end of "owner_".
2568           this->owner_ = i;
2569           this->output_section_ = o;
2570           return true;
2571         }
2572       // The group before the stubs has reached maximum size.
2573       // Now see about adding sections after the stubs to the
2574       // group.  If the current section has a 14-bit branch and
2575       // the group before the stubs exceeds group_size_ (because
2576       // they didn't have 14-bit branches), don't add sections
2577       // after the stubs:  The size of stubs for such a large
2578       // group may exceed the reach of a 14-bit branch.
2579       if (!this->stubs_always_after_branch_
2580           && this_size <= this->group_size_
2581           && start_addr - this->group_start_addr_ <= this->group_size_)
2582         {
2583           gold_debug(DEBUG_TARGET, "adding after stubs");
2584           this->state_ = HAS_STUB_SECTION;
2585           this->group_start_addr_ = start_addr;
2586           return true;
2587         }
2588     }
2589   else
2590     gold_unreachable();
2591
2592   gold_debug(DEBUG_TARGET,
2593              !this->multi_os_ && this->output_section_ != o
2594              ? "nope, new output section\n"
2595              : "nope, didn't fit\n");
2596
2597   // The section fails to fit in the current group.  Set up a few
2598   // things for the next group.  owner_ and output_section_ will be
2599   // set later after we've retrieved those values for the current
2600   // group.
2601   this->state_ = FINDING_STUB_SECTION;
2602   this->group_size_ = group_size;
2603   this->group_start_addr_ = start_addr;
2604   return false;
2605 }
2606
2607 // Look over all the input sections, deciding where to place stubs.
2608
2609 template<int size, bool big_endian>
2610 void
2611 Target_powerpc<size, big_endian>::group_sections(Layout* layout,
2612                                                  const Task*,
2613                                                  bool no_size_errors)
2614 {
2615   Stub_control stub_control(this->stub_group_size_, no_size_errors,
2616                             parameters->options().stub_group_multi());
2617
2618   // Group input sections and insert stub table
2619   Stub_table_owner* table_owner = NULL;
2620   std::vector<Stub_table_owner*> tables;
2621   Layout::Section_list section_list;
2622   layout->get_executable_sections(&section_list);
2623   std::stable_sort(section_list.begin(), section_list.end(), Sort_sections());
2624   for (Layout::Section_list::iterator o = section_list.begin();
2625        o != section_list.end();
2626        ++o)
2627     {
2628       typedef Output_section::Input_section_list Input_section_list;
2629       for (Input_section_list::const_iterator i
2630              = (*o)->input_sections().begin();
2631            i != (*o)->input_sections().end();
2632            ++i)
2633         {
2634           if (i->is_input_section()
2635               || i->is_relaxed_input_section())
2636             {
2637               Powerpc_relobj<size, big_endian>* ppcobj = static_cast
2638                 <Powerpc_relobj<size, big_endian>*>(i->relobj());
2639               bool has14 = ppcobj->has_14bit_branch(i->shndx());
2640               if (!stub_control.can_add_to_stub_group(*o, &*i, has14))
2641                 {
2642                   table_owner->output_section = stub_control.output_section();
2643                   table_owner->owner = stub_control.owner();
2644                   stub_control.set_output_and_owner(*o, &*i);
2645                   table_owner = NULL;
2646                 }
2647               if (table_owner == NULL)
2648                 {
2649                   table_owner = new Stub_table_owner;
2650                   tables.push_back(table_owner);
2651                 }
2652               ppcobj->set_stub_table(i->shndx(), tables.size() - 1);
2653             }
2654         }
2655     }
2656   if (table_owner != NULL)
2657     {
2658       table_owner->output_section = stub_control.output_section();
2659       table_owner->owner = stub_control.owner();;
2660     }
2661   for (typename std::vector<Stub_table_owner*>::iterator t = tables.begin();
2662        t != tables.end();
2663        ++t)
2664     {
2665       Stub_table<size, big_endian>* stub_table;
2666
2667       if ((*t)->owner->is_input_section())
2668         stub_table = new Stub_table<size, big_endian>(this,
2669                                                       (*t)->output_section,
2670                                                       (*t)->owner);
2671       else if ((*t)->owner->is_relaxed_input_section())
2672         stub_table = static_cast<Stub_table<size, big_endian>*>(
2673                         (*t)->owner->relaxed_input_section());
2674       else
2675         gold_unreachable();
2676       this->stub_tables_.push_back(stub_table);
2677       delete *t;
2678     }
2679 }
2680
2681 static unsigned long
2682 max_branch_delta (unsigned int r_type)
2683 {
2684   if (r_type == elfcpp::R_POWERPC_REL14
2685       || r_type == elfcpp::R_POWERPC_REL14_BRTAKEN
2686       || r_type == elfcpp::R_POWERPC_REL14_BRNTAKEN)
2687     return 1L << 15;
2688   if (r_type == elfcpp::R_POWERPC_REL24
2689       || r_type == elfcpp::R_PPC_PLTREL24
2690       || r_type == elfcpp::R_PPC_LOCAL24PC)
2691     return 1L << 25;
2692   return 0;
2693 }
2694
2695 // If this branch needs a plt call stub, or a long branch stub, make one.
2696
2697 template<int size, bool big_endian>
2698 bool
2699 Target_powerpc<size, big_endian>::Branch_info::make_stub(
2700     Stub_table<size, big_endian>* stub_table,
2701     Stub_table<size, big_endian>* ifunc_stub_table,
2702     Symbol_table* symtab) const
2703 {
2704   Symbol* sym = this->object_->global_symbol(this->r_sym_);
2705   if (sym != NULL && sym->is_forwarder())
2706     sym = symtab->resolve_forwards(sym);
2707   const Sized_symbol<size>* gsym = static_cast<const Sized_symbol<size>*>(sym);
2708   Target_powerpc<size, big_endian>* target =
2709     static_cast<Target_powerpc<size, big_endian>*>(
2710       parameters->sized_target<size, big_endian>());
2711   bool ok = true;
2712
2713   if (gsym != NULL
2714       ? gsym->use_plt_offset(Scan::get_reference_flags(this->r_type_, target))
2715       : this->object_->local_has_plt_offset(this->r_sym_))
2716     {
2717       if (size == 64
2718           && gsym != NULL
2719           && target->abiversion() >= 2
2720           && !parameters->options().output_is_position_independent()
2721           && !is_branch_reloc(this->r_type_))
2722         target->glink_section()->add_global_entry(gsym);
2723       else
2724         {
2725           if (stub_table == NULL)
2726             stub_table = this->object_->stub_table(this->shndx_);
2727           if (stub_table == NULL)
2728             {
2729               // This is a ref from a data section to an ifunc symbol.
2730               stub_table = ifunc_stub_table;
2731             }
2732           gold_assert(stub_table != NULL);
2733           Address from = this->object_->get_output_section_offset(this->shndx_);
2734           if (from != invalid_address)
2735             from += (this->object_->output_section(this->shndx_)->address()
2736                      + this->offset_);
2737           if (gsym != NULL)
2738             ok = stub_table->add_plt_call_entry(from,
2739                                                 this->object_, gsym,
2740                                                 this->r_type_, this->addend_);
2741           else
2742             ok = stub_table->add_plt_call_entry(from,
2743                                                 this->object_, this->r_sym_,
2744                                                 this->r_type_, this->addend_);
2745         }
2746     }
2747   else
2748     {
2749       Address max_branch_offset = max_branch_delta(this->r_type_);
2750       if (max_branch_offset == 0)
2751         return true;
2752       Address from = this->object_->get_output_section_offset(this->shndx_);
2753       gold_assert(from != invalid_address);
2754       from += (this->object_->output_section(this->shndx_)->address()
2755                + this->offset_);
2756       Address to;
2757       if (gsym != NULL)
2758         {
2759           switch (gsym->source())
2760             {
2761             case Symbol::FROM_OBJECT:
2762               {
2763                 Object* symobj = gsym->object();
2764                 if (symobj->is_dynamic()
2765                     || symobj->pluginobj() != NULL)
2766                   return true;
2767                 bool is_ordinary;
2768                 unsigned int shndx = gsym->shndx(&is_ordinary);
2769                 if (shndx == elfcpp::SHN_UNDEF)
2770                   return true;
2771               }
2772               break;
2773
2774             case Symbol::IS_UNDEFINED:
2775               return true;
2776
2777             default:
2778               break;
2779             }
2780           Symbol_table::Compute_final_value_status status;
2781           to = symtab->compute_final_value<size>(gsym, &status);
2782           if (status != Symbol_table::CFVS_OK)
2783             return true;
2784           if (size == 64)
2785             to += this->object_->ppc64_local_entry_offset(gsym);
2786         }
2787       else
2788         {
2789           const Symbol_value<size>* psymval
2790             = this->object_->local_symbol(this->r_sym_);
2791           Symbol_value<size> symval;
2792           if (psymval->is_section_symbol())
2793             symval.set_is_section_symbol();
2794           typedef Sized_relobj_file<size, big_endian> ObjType;
2795           typename ObjType::Compute_final_local_value_status status
2796             = this->object_->compute_final_local_value(this->r_sym_, psymval,
2797                                                        &symval, symtab);
2798           if (status != ObjType::CFLV_OK
2799               || !symval.has_output_value())
2800             return true;
2801           to = symval.value(this->object_, 0);
2802           if (size == 64)
2803             to += this->object_->ppc64_local_entry_offset(this->r_sym_);
2804         }
2805       if (!(size == 32 && this->r_type_ == elfcpp::R_PPC_PLTREL24))
2806         to += this->addend_;
2807       if (stub_table == NULL)
2808         stub_table = this->object_->stub_table(this->shndx_);
2809       if (size == 64 && target->abiversion() < 2)
2810         {
2811           unsigned int dest_shndx;
2812           if (!target->symval_for_branch(symtab, gsym, this->object_,
2813                                          &to, &dest_shndx))
2814             return true;
2815         }
2816       Address delta = to - from;
2817       if (delta + max_branch_offset >= 2 * max_branch_offset)
2818         {
2819           if (stub_table == NULL)
2820             {
2821               gold_warning(_("%s:%s: branch in non-executable section,"
2822                              " no long branch stub for you"),
2823                            this->object_->name().c_str(),
2824                            this->object_->section_name(this->shndx_).c_str());
2825               return true;
2826             }
2827           bool save_res = (size == 64
2828                            && gsym != NULL
2829                            && gsym->source() == Symbol::IN_OUTPUT_DATA
2830                            && gsym->output_data() == target->savres_section());
2831           ok = stub_table->add_long_branch_entry(this->object_,
2832                                                  this->r_type_,
2833                                                  from, to, save_res);
2834         }
2835     }
2836   if (!ok)
2837     gold_debug(DEBUG_TARGET,
2838                "branch at %s:%s+%#lx\n"
2839                "can't reach stub attached to %s:%s",
2840                this->object_->name().c_str(),
2841                this->object_->section_name(this->shndx_).c_str(),
2842                (unsigned long) this->offset_,
2843                stub_table->relobj()->name().c_str(),
2844                stub_table->relobj()->section_name(stub_table->shndx()).c_str());
2845
2846   return ok;
2847 }
2848
2849 // Relaxation hook.  This is where we do stub generation.
2850
2851 template<int size, bool big_endian>
2852 bool
2853 Target_powerpc<size, big_endian>::do_relax(int pass,
2854                                            const Input_objects*,
2855                                            Symbol_table* symtab,
2856                                            Layout* layout,
2857                                            const Task* task)
2858 {
2859   unsigned int prev_brlt_size = 0;
2860   if (pass == 1)
2861     {
2862       bool thread_safe
2863         = this->abiversion() < 2 && parameters->options().plt_thread_safe();
2864       if (size == 64
2865           && this->abiversion() < 2
2866           && !thread_safe
2867           && !parameters->options().user_set_plt_thread_safe())
2868         {
2869           static const char* const thread_starter[] =
2870             {
2871               "pthread_create",
2872               /* libstdc++ */
2873               "_ZNSt6thread15_M_start_threadESt10shared_ptrINS_10_Impl_baseEE",
2874               /* librt */
2875               "aio_init", "aio_read", "aio_write", "aio_fsync", "lio_listio",
2876               "mq_notify", "create_timer",
2877               /* libanl */
2878               "getaddrinfo_a",
2879               /* libgomp */
2880               "GOMP_parallel",
2881               "GOMP_parallel_start",
2882               "GOMP_parallel_loop_static",
2883               "GOMP_parallel_loop_static_start",
2884               "GOMP_parallel_loop_dynamic",
2885               "GOMP_parallel_loop_dynamic_start",
2886               "GOMP_parallel_loop_guided",
2887               "GOMP_parallel_loop_guided_start",
2888               "GOMP_parallel_loop_runtime",
2889               "GOMP_parallel_loop_runtime_start",
2890               "GOMP_parallel_sections",
2891               "GOMP_parallel_sections_start",
2892               /* libgo */
2893               "__go_go",
2894             };
2895
2896           if (parameters->options().shared())
2897             thread_safe = true;
2898           else
2899             {
2900               for (unsigned int i = 0;
2901                    i < sizeof(thread_starter) / sizeof(thread_starter[0]);
2902                    i++)
2903                 {
2904                   Symbol* sym = symtab->lookup(thread_starter[i], NULL);
2905                   thread_safe = (sym != NULL
2906                                  && sym->in_reg()
2907                                  && sym->in_real_elf());
2908                   if (thread_safe)
2909                     break;
2910                 }
2911             }
2912         }
2913       this->plt_thread_safe_ = thread_safe;
2914     }
2915
2916   if (pass == 1)
2917     {
2918       this->stub_group_size_ = parameters->options().stub_group_size();
2919       bool no_size_errors = true;
2920       if (this->stub_group_size_ == 1)
2921         this->stub_group_size_ = 0x1c00000;
2922       else if (this->stub_group_size_ == -1)
2923         this->stub_group_size_ = -0x1e00000;
2924       else
2925         no_size_errors = false;
2926       this->group_sections(layout, task, no_size_errors);
2927     }
2928   else if (this->relax_failed_ && this->relax_fail_count_ < 3)
2929     {
2930       this->branch_lookup_table_.clear();
2931       for (typename Stub_tables::iterator p = this->stub_tables_.begin();
2932            p != this->stub_tables_.end();
2933            ++p)
2934         {
2935           (*p)->clear_stubs(true);
2936         }
2937       this->stub_tables_.clear();
2938       this->stub_group_size_ = this->stub_group_size_ / 4 * 3;
2939       gold_info(_("%s: stub group size is too large; retrying with %#x"),
2940                 program_name, this->stub_group_size_);
2941       this->group_sections(layout, task, true);
2942     }
2943
2944   // We need address of stub tables valid for make_stub.
2945   for (typename Stub_tables::iterator p = this->stub_tables_.begin();
2946        p != this->stub_tables_.end();
2947        ++p)
2948     {
2949       const Powerpc_relobj<size, big_endian>* object
2950         = static_cast<const Powerpc_relobj<size, big_endian>*>((*p)->relobj());
2951       Address off = object->get_output_section_offset((*p)->shndx());
2952       gold_assert(off != invalid_address);
2953       Output_section* os = (*p)->output_section();
2954       (*p)->set_address_and_size(os, off);
2955     }
2956
2957   if (pass != 1)
2958     {
2959       // Clear plt call stubs, long branch stubs and branch lookup table.
2960       prev_brlt_size = this->branch_lookup_table_.size();
2961       this->branch_lookup_table_.clear();
2962       for (typename Stub_tables::iterator p = this->stub_tables_.begin();
2963            p != this->stub_tables_.end();
2964            ++p)
2965         {
2966           (*p)->clear_stubs(false);
2967         }
2968     }
2969
2970   // Build all the stubs.
2971   this->relax_failed_ = false;
2972   Stub_table<size, big_endian>* ifunc_stub_table
2973     = this->stub_tables_.size() == 0 ? NULL : this->stub_tables_[0];
2974   Stub_table<size, big_endian>* one_stub_table
2975     = this->stub_tables_.size() != 1 ? NULL : ifunc_stub_table;
2976   for (typename Branches::const_iterator b = this->branch_info_.begin();
2977        b != this->branch_info_.end();
2978        b++)
2979     {
2980       if (!b->make_stub(one_stub_table, ifunc_stub_table, symtab)
2981           && !this->relax_failed_)
2982         {
2983           this->relax_failed_ = true;
2984           this->relax_fail_count_++;
2985           if (this->relax_fail_count_ < 3)
2986             return true;
2987         }
2988     }
2989
2990   // Did anything change size?
2991   unsigned int num_huge_branches = this->branch_lookup_table_.size();
2992   bool again = num_huge_branches != prev_brlt_size;
2993   if (size == 64 && num_huge_branches != 0)
2994     this->make_brlt_section(layout);
2995   if (size == 64 && again)
2996     this->brlt_section_->set_current_size(num_huge_branches);
2997
2998   typedef Unordered_set<Output_section*> Output_sections;
2999   Output_sections os_need_update;
3000   for (typename Stub_tables::iterator p = this->stub_tables_.begin();
3001        p != this->stub_tables_.end();
3002        ++p)
3003     {
3004       if ((*p)->size_update())
3005         {
3006           again = true;
3007           (*p)->add_eh_frame(layout);
3008           os_need_update.insert((*p)->output_section());
3009         }
3010     }
3011
3012   // Set output section offsets for all input sections in an output
3013   // section that just changed size.  Anything past the stubs will
3014   // need updating.
3015   for (typename Output_sections::iterator p = os_need_update.begin();
3016        p != os_need_update.end();
3017        p++)
3018     {
3019       Output_section* os = *p;
3020       Address off = 0;
3021       typedef Output_section::Input_section_list Input_section_list;
3022       for (Input_section_list::const_iterator i = os->input_sections().begin();
3023            i != os->input_sections().end();
3024            ++i)
3025         {
3026           off = align_address(off, i->addralign());
3027           if (i->is_input_section() || i->is_relaxed_input_section())
3028             i->relobj()->set_section_offset(i->shndx(), off);
3029           if (i->is_relaxed_input_section())
3030             {
3031               Stub_table<size, big_endian>* stub_table
3032                 = static_cast<Stub_table<size, big_endian>*>(
3033                     i->relaxed_input_section());
3034               Address stub_table_size = stub_table->set_address_and_size(os, off);
3035               off += stub_table_size;
3036               // After a few iterations, set current stub table size
3037               // as min size threshold, so later stub tables can only
3038               // grow in size.
3039               if (pass >= 4)
3040                 stub_table->set_min_size_threshold(stub_table_size);
3041             }
3042           else
3043             off += i->data_size();
3044         }
3045       // If .branch_lt is part of this output section, then we have
3046       // just done the offset adjustment.
3047       os->clear_section_offsets_need_adjustment();
3048     }
3049
3050   if (size == 64
3051       && !again
3052       && num_huge_branches != 0
3053       && parameters->options().output_is_position_independent())
3054     {
3055       // Fill in the BRLT relocs.
3056       this->brlt_section_->reset_brlt_sizes();
3057       for (typename Branch_lookup_table::const_iterator p
3058              = this->branch_lookup_table_.begin();
3059            p != this->branch_lookup_table_.end();
3060            ++p)
3061         {
3062           this->brlt_section_->add_reloc(p->first, p->second);
3063         }
3064       this->brlt_section_->finalize_brlt_sizes();
3065     }
3066   return again;
3067 }
3068
3069 template<int size, bool big_endian>
3070 void
3071 Target_powerpc<size, big_endian>::do_plt_fde_location(const Output_data* plt,
3072                                                       unsigned char* oview,
3073                                                       uint64_t* paddress,
3074                                                       off_t* plen) const
3075 {
3076   uint64_t address = plt->address();
3077   off_t len = plt->data_size();
3078
3079   if (plt == this->glink_)
3080     {
3081       // See Output_data_glink::do_write() for glink contents.
3082       if (len == 0)
3083         {
3084           gold_assert(parameters->doing_static_link());
3085           // Static linking may need stubs, to support ifunc and long
3086           // branches.  We need to create an output section for
3087           // .eh_frame early in the link process, to have a place to
3088           // attach stub .eh_frame info.  We also need to have
3089           // registered a CIE that matches the stub CIE.  Both of
3090           // these requirements are satisfied by creating an FDE and
3091           // CIE for .glink, even though static linking will leave
3092           // .glink zero length.
3093           // ??? Hopefully generating an FDE with a zero address range
3094           // won't confuse anything that consumes .eh_frame info.
3095         }
3096       else if (size == 64)
3097         {
3098           // There is one word before __glink_PLTresolve
3099           address += 8;
3100           len -= 8;
3101         }
3102       else if (parameters->options().output_is_position_independent())
3103         {
3104           // There are two FDEs for a position independent glink.
3105           // The first covers the branch table, the second
3106           // __glink_PLTresolve at the end of glink.
3107           off_t resolve_size = this->glink_->pltresolve_size;
3108           if (oview[9] == elfcpp::DW_CFA_nop)
3109             len -= resolve_size;
3110           else
3111             {
3112               address += len - resolve_size;
3113               len = resolve_size;
3114             }
3115         }
3116     }
3117   else
3118     {
3119       // Must be a stub table.
3120       const Stub_table<size, big_endian>* stub_table
3121         = static_cast<const Stub_table<size, big_endian>*>(plt);
3122       uint64_t stub_address = stub_table->stub_address();
3123       len -= stub_address - address;
3124       address = stub_address;
3125     }
3126
3127   *paddress = address;
3128   *plen = len;
3129 }
3130
3131 // A class to handle the PLT data.
3132
3133 template<int size, bool big_endian>
3134 class Output_data_plt_powerpc : public Output_section_data_build
3135 {
3136  public:
3137   typedef Output_data_reloc<elfcpp::SHT_RELA, true,
3138                             size, big_endian> Reloc_section;
3139
3140   Output_data_plt_powerpc(Target_powerpc<size, big_endian>* targ,
3141                           Reloc_section* plt_rel,
3142                           const char* name)
3143     : Output_section_data_build(size == 32 ? 4 : 8),
3144       rel_(plt_rel),
3145       targ_(targ),
3146       name_(name)
3147   { }
3148
3149   // Add an entry to the PLT.
3150   void
3151   add_entry(Symbol*);
3152
3153   void
3154   add_ifunc_entry(Symbol*);
3155
3156   void
3157   add_local_ifunc_entry(Sized_relobj_file<size, big_endian>*, unsigned int);
3158
3159   // Return the .rela.plt section data.
3160   Reloc_section*
3161   rel_plt() const
3162   {
3163     return this->rel_;
3164   }
3165
3166   // Return the number of PLT entries.
3167   unsigned int
3168   entry_count() const
3169   {
3170     if (this->current_data_size() == 0)
3171       return 0;
3172     return ((this->current_data_size() - this->first_plt_entry_offset())
3173             / this->plt_entry_size());
3174   }
3175
3176  protected:
3177   void
3178   do_adjust_output_section(Output_section* os)
3179   {
3180     os->set_entsize(0);
3181   }
3182
3183   // Write to a map file.
3184   void
3185   do_print_to_mapfile(Mapfile* mapfile) const
3186   { mapfile->print_output_data(this, this->name_); }
3187
3188  private:
3189   // Return the offset of the first non-reserved PLT entry.
3190   unsigned int
3191   first_plt_entry_offset() const
3192   {
3193     // IPLT has no reserved entry.
3194     if (this->name_[3] == 'I')
3195       return 0;
3196     return this->targ_->first_plt_entry_offset();
3197   }
3198
3199   // Return the size of each PLT entry.
3200   unsigned int
3201   plt_entry_size() const
3202   {
3203     return this->targ_->plt_entry_size();
3204   }
3205
3206   // Write out the PLT data.
3207   void
3208   do_write(Output_file*);
3209
3210   // The reloc section.
3211   Reloc_section* rel_;
3212   // Allows access to .glink for do_write.
3213   Target_powerpc<size, big_endian>* targ_;
3214   // What to report in map file.
3215   const char *name_;
3216 };
3217
3218 // Add an entry to the PLT.
3219
3220 template<int size, bool big_endian>
3221 void
3222 Output_data_plt_powerpc<size, big_endian>::add_entry(Symbol* gsym)
3223 {
3224   if (!gsym->has_plt_offset())
3225     {
3226       section_size_type off = this->current_data_size();
3227       if (off == 0)
3228         off += this->first_plt_entry_offset();
3229       gsym->set_plt_offset(off);
3230       gsym->set_needs_dynsym_entry();
3231       unsigned int dynrel = elfcpp::R_POWERPC_JMP_SLOT;
3232       this->rel_->add_global(gsym, dynrel, this, off, 0);
3233       off += this->plt_entry_size();
3234       this->set_current_data_size(off);
3235     }
3236 }
3237
3238 // Add an entry for a global ifunc symbol that resolves locally, to the IPLT.
3239
3240 template<int size, bool big_endian>
3241 void
3242 Output_data_plt_powerpc<size, big_endian>::add_ifunc_entry(Symbol* gsym)
3243 {
3244   if (!gsym->has_plt_offset())
3245     {
3246       section_size_type off = this->current_data_size();
3247       gsym->set_plt_offset(off);
3248       unsigned int dynrel = elfcpp::R_POWERPC_IRELATIVE;
3249       if (size == 64 && this->targ_->abiversion() < 2)
3250         dynrel = elfcpp::R_PPC64_JMP_IREL;
3251       this->rel_->add_symbolless_global_addend(gsym, dynrel, this, off, 0);
3252       off += this->plt_entry_size();
3253       this->set_current_data_size(off);
3254     }
3255 }
3256
3257 // Add an entry for a local ifunc symbol to the IPLT.
3258
3259 template<int size, bool big_endian>
3260 void
3261 Output_data_plt_powerpc<size, big_endian>::add_local_ifunc_entry(
3262     Sized_relobj_file<size, big_endian>* relobj,
3263     unsigned int local_sym_index)
3264 {
3265   if (!relobj->local_has_plt_offset(local_sym_index))
3266     {
3267       section_size_type off = this->current_data_size();
3268       relobj->set_local_plt_offset(local_sym_index, off);
3269       unsigned int dynrel = elfcpp::R_POWERPC_IRELATIVE;
3270       if (size == 64 && this->targ_->abiversion() < 2)
3271         dynrel = elfcpp::R_PPC64_JMP_IREL;
3272       this->rel_->add_symbolless_local_addend(relobj, local_sym_index, dynrel,
3273                                               this, off, 0);
3274       off += this->plt_entry_size();
3275       this->set_current_data_size(off);
3276     }
3277 }
3278
3279 static const uint32_t add_0_11_11       = 0x7c0b5a14;
3280 static const uint32_t add_2_2_11        = 0x7c425a14;
3281 static const uint32_t add_2_2_12        = 0x7c426214;
3282 static const uint32_t add_3_3_2         = 0x7c631214;
3283 static const uint32_t add_3_3_13        = 0x7c636a14;
3284 static const uint32_t add_11_0_11       = 0x7d605a14;
3285 static const uint32_t add_11_2_11       = 0x7d625a14;
3286 static const uint32_t add_11_11_2       = 0x7d6b1214;
3287 static const uint32_t addi_0_12         = 0x380c0000;
3288 static const uint32_t addi_2_2          = 0x38420000;
3289 static const uint32_t addi_3_3          = 0x38630000;
3290 static const uint32_t addi_11_11        = 0x396b0000;
3291 static const uint32_t addi_12_1         = 0x39810000;
3292 static const uint32_t addi_12_12        = 0x398c0000;
3293 static const uint32_t addis_0_2         = 0x3c020000;
3294 static const uint32_t addis_0_13        = 0x3c0d0000;
3295 static const uint32_t addis_2_12        = 0x3c4c0000;
3296 static const uint32_t addis_11_2        = 0x3d620000;
3297 static const uint32_t addis_11_11       = 0x3d6b0000;
3298 static const uint32_t addis_11_30       = 0x3d7e0000;
3299 static const uint32_t addis_12_1        = 0x3d810000;
3300 static const uint32_t addis_12_2        = 0x3d820000;
3301 static const uint32_t addis_12_12       = 0x3d8c0000;
3302 static const uint32_t b                 = 0x48000000;
3303 static const uint32_t bcl_20_31         = 0x429f0005;
3304 static const uint32_t bctr              = 0x4e800420;
3305 static const uint32_t blr               = 0x4e800020;
3306 static const uint32_t bnectr_p4         = 0x4ce20420;
3307 static const uint32_t cmpld_7_12_0      = 0x7fac0040;
3308 static const uint32_t cmpldi_2_0        = 0x28220000;
3309 static const uint32_t cror_15_15_15     = 0x4def7b82;
3310 static const uint32_t cror_31_31_31     = 0x4ffffb82;
3311 static const uint32_t ld_0_1            = 0xe8010000;
3312 static const uint32_t ld_0_12           = 0xe80c0000;
3313 static const uint32_t ld_2_1            = 0xe8410000;
3314 static const uint32_t ld_2_2            = 0xe8420000;
3315 static const uint32_t ld_2_11           = 0xe84b0000;
3316 static const uint32_t ld_2_12           = 0xe84c0000;
3317 static const uint32_t ld_11_2           = 0xe9620000;
3318 static const uint32_t ld_11_11          = 0xe96b0000;
3319 static const uint32_t ld_12_2           = 0xe9820000;
3320 static const uint32_t ld_12_11          = 0xe98b0000;
3321 static const uint32_t ld_12_12          = 0xe98c0000;
3322 static const uint32_t lfd_0_1           = 0xc8010000;
3323 static const uint32_t li_0_0            = 0x38000000;
3324 static const uint32_t li_12_0           = 0x39800000;
3325 static const uint32_t lis_0             = 0x3c000000;
3326 static const uint32_t lis_2             = 0x3c400000;
3327 static const uint32_t lis_11            = 0x3d600000;
3328 static const uint32_t lis_12            = 0x3d800000;
3329 static const uint32_t lvx_0_12_0        = 0x7c0c00ce;
3330 static const uint32_t lwz_0_12          = 0x800c0000;
3331 static const uint32_t lwz_11_11         = 0x816b0000;
3332 static const uint32_t lwz_11_30         = 0x817e0000;
3333 static const uint32_t lwz_12_12         = 0x818c0000;
3334 static const uint32_t lwzu_0_12         = 0x840c0000;
3335 static const uint32_t mflr_0            = 0x7c0802a6;
3336 static const uint32_t mflr_11           = 0x7d6802a6;
3337 static const uint32_t mflr_12           = 0x7d8802a6;
3338 static const uint32_t mtctr_0           = 0x7c0903a6;
3339 static const uint32_t mtctr_11          = 0x7d6903a6;
3340 static const uint32_t mtctr_12          = 0x7d8903a6;
3341 static const uint32_t mtlr_0            = 0x7c0803a6;
3342 static const uint32_t mtlr_12           = 0x7d8803a6;
3343 static const uint32_t nop               = 0x60000000;
3344 static const uint32_t ori_0_0_0         = 0x60000000;
3345 static const uint32_t srdi_0_0_2        = 0x7800f082;
3346 static const uint32_t std_0_1           = 0xf8010000;
3347 static const uint32_t std_0_12          = 0xf80c0000;
3348 static const uint32_t std_2_1           = 0xf8410000;
3349 static const uint32_t stfd_0_1          = 0xd8010000;
3350 static const uint32_t stvx_0_12_0       = 0x7c0c01ce;
3351 static const uint32_t sub_11_11_12      = 0x7d6c5850;
3352 static const uint32_t sub_12_12_11      = 0x7d8b6050;
3353 static const uint32_t xor_2_12_12       = 0x7d826278;
3354 static const uint32_t xor_11_12_12      = 0x7d8b6278;
3355
3356 // Write out the PLT.
3357
3358 template<int size, bool big_endian>
3359 void
3360 Output_data_plt_powerpc<size, big_endian>::do_write(Output_file* of)
3361 {
3362   if (size == 32 && this->name_[3] != 'I')
3363     {
3364       const section_size_type offset = this->offset();
3365       const section_size_type oview_size
3366         = convert_to_section_size_type(this->data_size());
3367       unsigned char* const oview = of->get_output_view(offset, oview_size);
3368       unsigned char* pov = oview;
3369       unsigned char* endpov = oview + oview_size;
3370
3371       // The address of the .glink branch table
3372       const Output_data_glink<size, big_endian>* glink
3373         = this->targ_->glink_section();
3374       elfcpp::Elf_types<32>::Elf_Addr branch_tab = glink->address();
3375
3376       while (pov < endpov)
3377         {
3378           elfcpp::Swap<32, big_endian>::writeval(pov, branch_tab);
3379           pov += 4;
3380           branch_tab += 4;
3381         }
3382
3383       of->write_output_view(offset, oview_size, oview);
3384     }
3385 }
3386
3387 // Create the PLT section.
3388
3389 template<int size, bool big_endian>
3390 void
3391 Target_powerpc<size, big_endian>::make_plt_section(Symbol_table* symtab,
3392                                                    Layout* layout)
3393 {
3394   if (this->plt_ == NULL)
3395     {
3396       if (this->got_ == NULL)
3397         this->got_section(symtab, layout);
3398
3399       if (this->glink_ == NULL)
3400         make_glink_section(layout);
3401
3402       // Ensure that .rela.dyn always appears before .rela.plt  This is
3403       // necessary due to how, on PowerPC and some other targets, .rela.dyn
3404       // needs to include .rela.plt in its range.
3405       this->rela_dyn_section(layout);
3406
3407       Reloc_section* plt_rel = new Reloc_section(false);
3408       layout->add_output_section_data(".rela.plt", elfcpp::SHT_RELA,
3409                                       elfcpp::SHF_ALLOC, plt_rel,
3410                                       ORDER_DYNAMIC_PLT_RELOCS, false);
3411       this->plt_
3412         = new Output_data_plt_powerpc<size, big_endian>(this, plt_rel,
3413                                                         "** PLT");
3414       layout->add_output_section_data(".plt",
3415                                       (size == 32
3416                                        ? elfcpp::SHT_PROGBITS
3417                                        : elfcpp::SHT_NOBITS),
3418                                       elfcpp::SHF_ALLOC | elfcpp::SHF_WRITE,
3419                                       this->plt_,
3420                                       (size == 32
3421                                        ? ORDER_SMALL_DATA
3422                                        : ORDER_SMALL_BSS),
3423                                       false);
3424
3425       Output_section* rela_plt_os = plt_rel->output_section();
3426       rela_plt_os->set_info_section(this->plt_->output_section());
3427     }
3428 }
3429
3430 // Create the IPLT section.
3431
3432 template<int size, bool big_endian>
3433 void
3434 Target_powerpc<size, big_endian>::make_iplt_section(Symbol_table* symtab,
3435                                                     Layout* layout)
3436 {
3437   if (this->iplt_ == NULL)
3438     {
3439       this->make_plt_section(symtab, layout);
3440
3441       Reloc_section* iplt_rel = new Reloc_section(false);
3442       this->rela_dyn_->output_section()->add_output_section_data(iplt_rel);
3443       this->iplt_
3444         = new Output_data_plt_powerpc<size, big_endian>(this, iplt_rel,
3445                                                         "** IPLT");
3446       this->plt_->output_section()->add_output_section_data(this->iplt_);
3447     }
3448 }
3449
3450 // A section for huge long branch addresses, similar to plt section.
3451
3452 template<int size, bool big_endian>
3453 class Output_data_brlt_powerpc : public Output_section_data_build
3454 {
3455  public:
3456   typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
3457   typedef Output_data_reloc<elfcpp::SHT_RELA, true,
3458                             size, big_endian> Reloc_section;
3459
3460   Output_data_brlt_powerpc(Target_powerpc<size, big_endian>* targ,
3461                            Reloc_section* brlt_rel)
3462     : Output_section_data_build(size == 32 ? 4 : 8),
3463       rel_(brlt_rel),
3464       targ_(targ)
3465   { }
3466
3467   void
3468   reset_brlt_sizes()
3469   {
3470     this->reset_data_size();
3471     this->rel_->reset_data_size();
3472   }
3473
3474   void
3475   finalize_brlt_sizes()
3476   {
3477     this->finalize_data_size();
3478     this->rel_->finalize_data_size();
3479   }
3480
3481   // Add a reloc for an entry in the BRLT.
3482   void
3483   add_reloc(Address to, unsigned int off)
3484   { this->rel_->add_relative(elfcpp::R_POWERPC_RELATIVE, this, off, to); }
3485
3486   // Update section and reloc section size.
3487   void
3488   set_current_size(unsigned int num_branches)
3489   {
3490     this->reset_address_and_file_offset();
3491     this->set_current_data_size(num_branches * 16);
3492     this->finalize_data_size();
3493     Output_section* os = this->output_section();
3494     os->set_section_offsets_need_adjustment();
3495     if (this->rel_ != NULL)
3496       {
3497         const unsigned int reloc_size = elfcpp::Elf_sizes<size>::rela_size;
3498         this->rel_->reset_address_and_file_offset();
3499         this->rel_->set_current_data_size(num_branches * reloc_size);
3500         this->rel_->finalize_data_size();
3501         Output_section* os = this->rel_->output_section();
3502         os->set_section_offsets_need_adjustment();
3503       }
3504   }
3505
3506  protected:
3507   void
3508   do_adjust_output_section(Output_section* os)
3509   {
3510     os->set_entsize(0);
3511   }
3512
3513   // Write to a map file.
3514   void
3515   do_print_to_mapfile(Mapfile* mapfile) const
3516   { mapfile->print_output_data(this, "** BRLT"); }
3517
3518  private:
3519   // Write out the BRLT data.
3520   void
3521   do_write(Output_file*);
3522
3523   // The reloc section.
3524   Reloc_section* rel_;
3525   Target_powerpc<size, big_endian>* targ_;
3526 };
3527
3528 // Make the branch lookup table section.
3529
3530 template<int size, bool big_endian>
3531 void
3532 Target_powerpc<size, big_endian>::make_brlt_section(Layout* layout)
3533 {
3534   if (size == 64 && this->brlt_section_ == NULL)
3535     {
3536       Reloc_section* brlt_rel = NULL;
3537       bool is_pic = parameters->options().output_is_position_independent();
3538       if (is_pic)
3539         {
3540           // When PIC we can't fill in .branch_lt (like .plt it can be
3541           // a bss style section) but must initialise at runtime via
3542           // dynamic relocats.
3543           this->rela_dyn_section(layout);
3544           brlt_rel = new Reloc_section(false);
3545           this->rela_dyn_->output_section()->add_output_section_data(brlt_rel);
3546         }
3547       this->brlt_section_
3548         = new Output_data_brlt_powerpc<size, big_endian>(this, brlt_rel);
3549       if (this->plt_ && is_pic)
3550         this->plt_->output_section()
3551           ->add_output_section_data(this->brlt_section_);
3552       else
3553         layout->add_output_section_data(".branch_lt",
3554                                         (is_pic ? elfcpp::SHT_NOBITS
3555                                          : elfcpp::SHT_PROGBITS),
3556                                         elfcpp::SHF_ALLOC | elfcpp::SHF_WRITE,
3557                                         this->brlt_section_,
3558                                         (is_pic ? ORDER_SMALL_BSS
3559                                          : ORDER_SMALL_DATA),
3560                                         false);
3561     }
3562 }
3563
3564 // Write out .branch_lt when non-PIC.
3565
3566 template<int size, bool big_endian>
3567 void
3568 Output_data_brlt_powerpc<size, big_endian>::do_write(Output_file* of)
3569 {
3570   if (size == 64 && !parameters->options().output_is_position_independent())
3571     {
3572       const section_size_type offset = this->offset();
3573       const section_size_type oview_size
3574         = convert_to_section_size_type(this->data_size());
3575       unsigned char* const oview = of->get_output_view(offset, oview_size);
3576
3577       this->targ_->write_branch_lookup_table(oview);
3578       of->write_output_view(offset, oview_size, oview);
3579     }
3580 }
3581
3582 static inline uint32_t
3583 l(uint32_t a)
3584 {
3585   return a & 0xffff;
3586 }
3587
3588 static inline uint32_t
3589 hi(uint32_t a)
3590 {
3591   return l(a >> 16);
3592 }
3593
3594 static inline uint32_t
3595 ha(uint32_t a)
3596 {
3597   return hi(a + 0x8000);
3598 }
3599
3600 template<int size>
3601 struct Eh_cie
3602 {
3603   static const unsigned char eh_frame_cie[12];
3604 };
3605
3606 template<int size>
3607 const unsigned char Eh_cie<size>::eh_frame_cie[] =
3608 {
3609   1,                                    // CIE version.
3610   'z', 'R', 0,                          // Augmentation string.
3611   4,                                    // Code alignment.
3612   0x80 - size / 8 ,                     // Data alignment.
3613   65,                                   // RA reg.
3614   1,                                    // Augmentation size.
3615   (elfcpp::DW_EH_PE_pcrel
3616    | elfcpp::DW_EH_PE_sdata4),          // FDE encoding.
3617   elfcpp::DW_CFA_def_cfa, 1, 0          // def_cfa: r1 offset 0.
3618 };
3619
3620 // Describe __glink_PLTresolve use of LR, 64-bit version ABIv1.
3621 static const unsigned char glink_eh_frame_fde_64v1[] =
3622 {
3623   0, 0, 0, 0,                           // Replaced with offset to .glink.
3624   0, 0, 0, 0,                           // Replaced with size of .glink.
3625   0,                                    // Augmentation size.
3626   elfcpp::DW_CFA_advance_loc + 1,
3627   elfcpp::DW_CFA_register, 65, 12,
3628   elfcpp::DW_CFA_advance_loc + 4,
3629   elfcpp::DW_CFA_restore_extended, 65
3630 };
3631
3632 // Describe __glink_PLTresolve use of LR, 64-bit version ABIv2.
3633 static const unsigned char glink_eh_frame_fde_64v2[] =
3634 {
3635   0, 0, 0, 0,                           // Replaced with offset to .glink.
3636   0, 0, 0, 0,                           // Replaced with size of .glink.
3637   0,                                    // Augmentation size.
3638   elfcpp::DW_CFA_advance_loc + 1,
3639   elfcpp::DW_CFA_register, 65, 0,
3640   elfcpp::DW_CFA_advance_loc + 4,
3641   elfcpp::DW_CFA_restore_extended, 65
3642 };
3643
3644 // Describe __glink_PLTresolve use of LR, 32-bit version.
3645 static const unsigned char glink_eh_frame_fde_32[] =
3646 {
3647   0, 0, 0, 0,                           // Replaced with offset to .glink.
3648   0, 0, 0, 0,                           // Replaced with size of .glink.
3649   0,                                    // Augmentation size.
3650   elfcpp::DW_CFA_advance_loc + 2,
3651   elfcpp::DW_CFA_register, 65, 0,
3652   elfcpp::DW_CFA_advance_loc + 4,
3653   elfcpp::DW_CFA_restore_extended, 65
3654 };
3655
3656 static const unsigned char default_fde[] =
3657 {
3658   0, 0, 0, 0,                           // Replaced with offset to stubs.
3659   0, 0, 0, 0,                           // Replaced with size of stubs.
3660   0,                                    // Augmentation size.
3661   elfcpp::DW_CFA_nop,                   // Pad.
3662   elfcpp::DW_CFA_nop,
3663   elfcpp::DW_CFA_nop
3664 };
3665
3666 template<bool big_endian>
3667 static inline void
3668 write_insn(unsigned char* p, uint32_t v)
3669 {
3670   elfcpp::Swap<32, big_endian>::writeval(p, v);
3671 }
3672
3673 // Stub_table holds information about plt and long branch stubs.
3674 // Stubs are built in an area following some input section determined
3675 // by group_sections().  This input section is converted to a relaxed
3676 // input section allowing it to be resized to accommodate the stubs
3677
3678 template<int size, bool big_endian>
3679 class Stub_table : public Output_relaxed_input_section
3680 {
3681  public:
3682   typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
3683   static const Address invalid_address = static_cast<Address>(0) - 1;
3684
3685   Stub_table(Target_powerpc<size, big_endian>* targ,
3686              Output_section* output_section,
3687              const Output_section::Input_section* owner)
3688     : Output_relaxed_input_section(owner->relobj(), owner->shndx(),
3689                                    owner->relobj()
3690                                    ->section_addralign(owner->shndx())),
3691       targ_(targ), plt_call_stubs_(), long_branch_stubs_(),
3692       orig_data_size_(owner->current_data_size()),
3693       plt_size_(0), last_plt_size_(0),
3694       branch_size_(0), last_branch_size_(0), min_size_threshold_(0),
3695       eh_frame_added_(false), need_save_res_(false)
3696   {
3697     this->set_output_section(output_section);
3698
3699     std::vector<Output_relaxed_input_section*> new_relaxed;
3700     new_relaxed.push_back(this);
3701     output_section->convert_input_sections_to_relaxed_sections(new_relaxed);
3702   }
3703
3704   // Add a plt call stub.
3705   bool
3706   add_plt_call_entry(Address,
3707                      const Sized_relobj_file<size, big_endian>*,
3708                      const Symbol*,
3709                      unsigned int,
3710                      Address);
3711
3712   bool
3713   add_plt_call_entry(Address,
3714                      const Sized_relobj_file<size, big_endian>*,
3715                      unsigned int,
3716                      unsigned int,
3717                      Address);
3718
3719   // Find a given plt call stub.
3720   Address
3721   find_plt_call_entry(const Symbol*) const;
3722
3723   Address
3724   find_plt_call_entry(const Sized_relobj_file<size, big_endian>*,
3725                       unsigned int) const;
3726
3727   Address
3728   find_plt_call_entry(const Sized_relobj_file<size, big_endian>*,
3729                       const Symbol*,
3730                       unsigned int,
3731                       Address) const;
3732
3733   Address
3734   find_plt_call_entry(const Sized_relobj_file<size, big_endian>*,
3735                       unsigned int,
3736                       unsigned int,
3737                       Address) const;
3738
3739   // Add a long branch stub.
3740   bool
3741   add_long_branch_entry(const Powerpc_relobj<size, big_endian>*,
3742                         unsigned int, Address, Address, bool);
3743
3744   Address
3745   find_long_branch_entry(const Powerpc_relobj<size, big_endian>*,
3746                          Address) const;
3747
3748   bool
3749   can_reach_stub(Address from, unsigned int off, unsigned int r_type)
3750   {
3751     Address max_branch_offset = max_branch_delta(r_type);
3752     if (max_branch_offset == 0)
3753       return true;
3754     gold_assert(from != invalid_address);
3755     Address loc = off + this->stub_address();
3756     return loc - from + max_branch_offset < 2 * max_branch_offset;
3757   }
3758
3759   void
3760   clear_stubs(bool all)
3761   {
3762     this->plt_call_stubs_.clear();
3763     this->plt_size_ = 0;
3764     this->long_branch_stubs_.clear();
3765     this->branch_size_ = 0;
3766     this->need_save_res_ = false;
3767     if (all)
3768       {
3769         this->last_plt_size_ = 0;
3770         this->last_branch_size_ = 0;
3771       }
3772   }
3773
3774   Address
3775   set_address_and_size(const Output_section* os, Address off)
3776   {
3777     Address start_off = off;
3778     off += this->orig_data_size_;
3779     Address my_size = this->plt_size_ + this->branch_size_;
3780     if (this->need_save_res_)
3781       my_size += this->targ_->savres_section()->data_size();
3782     if (my_size != 0)
3783       off = align_address(off, this->stub_align());
3784     // Include original section size and alignment padding in size
3785     my_size += off - start_off;
3786     // Ensure new size is always larger than min size
3787     // threshold. Alignment requirement is included in "my_size", so
3788     // increase "my_size" does not invalidate alignment.
3789     if (my_size < this->min_size_threshold_)
3790       my_size = this->min_size_threshold_;
3791     this->reset_address_and_file_offset();
3792     this->set_current_data_size(my_size);
3793     this->set_address_and_file_offset(os->address() + start_off,
3794                                       os->offset() + start_off);
3795     return my_size;
3796   }
3797
3798   Address
3799   stub_address() const
3800   {
3801     return align_address(this->address() + this->orig_data_size_,
3802                          this->stub_align());
3803   }
3804
3805   Address
3806   stub_offset() const
3807   {
3808     return align_address(this->offset() + this->orig_data_size_,
3809                          this->stub_align());
3810   }
3811
3812   section_size_type
3813   plt_size() const
3814   { return this->plt_size_; }
3815
3816   void set_min_size_threshold(Address min_size)
3817   { this->min_size_threshold_ = min_size; }
3818
3819   bool
3820   size_update()
3821   {
3822     Output_section* os = this->output_section();
3823     if (os->addralign() < this->stub_align())
3824       {
3825         os->set_addralign(this->stub_align());
3826         // FIXME: get rid of the insane checkpointing.
3827         // We can't increase alignment of the input section to which
3828         // stubs are attached;  The input section may be .init which
3829         // is pasted together with other .init sections to form a
3830         // function.  Aligning might insert zero padding resulting in
3831         // sigill.  However we do need to increase alignment of the
3832         // output section so that the align_address() on offset in
3833         // set_address_and_size() adds the same padding as the
3834         // align_address() on address in stub_address().
3835         // What's more, we need this alignment for the layout done in
3836         // relaxation_loop_body() so that the output section starts at
3837         // a suitably aligned address.
3838         os->checkpoint_set_addralign(this->stub_align());
3839       }
3840     if (this->last_plt_size_ != this->plt_size_
3841         || this->last_branch_size_ != this->branch_size_)
3842       {
3843         this->last_plt_size_ = this->plt_size_;
3844         this->last_branch_size_ = this->branch_size_;
3845         return true;
3846       }
3847     return false;
3848   }
3849
3850   // Add .eh_frame info for this stub section.  Unlike other linker
3851   // generated .eh_frame this is added late in the link, because we
3852   // only want the .eh_frame info if this particular stub section is
3853   // non-empty.
3854   void
3855   add_eh_frame(Layout* layout)
3856   {
3857     if (!this->eh_frame_added_)
3858       {
3859         if (!parameters->options().ld_generated_unwind_info())
3860           return;
3861
3862         // Since we add stub .eh_frame info late, it must be placed
3863         // after all other linker generated .eh_frame info so that
3864         // merge mapping need not be updated for input sections.
3865         // There is no provision to use a different CIE to that used
3866         // by .glink.
3867         if (!this->targ_->has_glink())
3868           return;
3869
3870         layout->add_eh_frame_for_plt(this,
3871                                      Eh_cie<size>::eh_frame_cie,
3872                                      sizeof (Eh_cie<size>::eh_frame_cie),
3873                                      default_fde,
3874                                      sizeof (default_fde));
3875         this->eh_frame_added_ = true;
3876       }
3877   }
3878
3879   Target_powerpc<size, big_endian>*
3880   targ() const
3881   { return targ_; }
3882
3883  private:
3884   class Plt_stub_ent;
3885   class Plt_stub_ent_hash;
3886   typedef Unordered_map<Plt_stub_ent, unsigned int,
3887                         Plt_stub_ent_hash> Plt_stub_entries;
3888
3889   // Alignment of stub section.
3890   unsigned int
3891   stub_align() const
3892   {
3893     if (size == 32)
3894       return 16;
3895     unsigned int min_align = 32;
3896     unsigned int user_align = 1 << parameters->options().plt_align();
3897     return std::max(user_align, min_align);
3898   }
3899
3900   // Return the plt offset for the given call stub.
3901   Address
3902   plt_off(typename Plt_stub_entries::const_iterator p, bool* is_iplt) const
3903   {
3904     const Symbol* gsym = p->first.sym_;
3905     if (gsym != NULL)
3906       {
3907         *is_iplt = (gsym->type() == elfcpp::STT_GNU_IFUNC
3908                     && gsym->can_use_relative_reloc(false));
3909         return gsym->plt_offset();
3910       }
3911     else
3912       {
3913         *is_iplt = true;
3914         const Sized_relobj_file<size, big_endian>* relobj = p->first.object_;
3915         unsigned int local_sym_index = p->first.locsym_;
3916         return relobj->local_plt_offset(local_sym_index);
3917       }
3918   }
3919
3920   // Size of a given plt call stub.
3921   unsigned int
3922   plt_call_size(typename Plt_stub_entries::const_iterator p) const
3923   {
3924     if (size == 32)
3925       return 16;
3926
3927     bool is_iplt;
3928     Address plt_addr = this->plt_off(p, &is_iplt);
3929     if (is_iplt)
3930       plt_addr += this->targ_->iplt_section()->address();
3931     else
3932       plt_addr += this->targ_->plt_section()->address();
3933     Address got_addr = this->targ_->got_section()->output_section()->address();
3934     const Powerpc_relobj<size, big_endian>* ppcobj = static_cast
3935       <const Powerpc_relobj<size, big_endian>*>(p->first.object_);
3936     got_addr += ppcobj->toc_base_offset();
3937     Address off = plt_addr - got_addr;
3938     unsigned int bytes = 4 * 4 + 4 * (ha(off) != 0);
3939     if (this->targ_->abiversion() < 2)
3940       {
3941         bool static_chain = parameters->options().plt_static_chain();
3942         bool thread_safe = this->targ_->plt_thread_safe();
3943         bytes += (4
3944                   + 4 * static_chain
3945                   + 8 * thread_safe
3946                   + 4 * (ha(off + 8 + 8 * static_chain) != ha(off)));
3947       }
3948     unsigned int align = 1 << parameters->options().plt_align();
3949     if (align > 1)
3950       bytes = (bytes + align - 1) & -align;
3951     return bytes;
3952   }
3953
3954   // Return long branch stub size.
3955   unsigned int
3956   branch_stub_size(Address to)
3957   {
3958     Address loc
3959       = this->stub_address() + this->last_plt_size_ + this->branch_size_;
3960     if (to - loc + (1 << 25) < 2 << 25)
3961       return 4;
3962     if (size == 64 || !parameters->options().output_is_position_independent())
3963       return 16;
3964     return 32;
3965   }
3966
3967   // Write out stubs.
3968   void
3969   do_write(Output_file*);
3970
3971   // Plt call stub keys.
3972   class Plt_stub_ent
3973   {
3974   public:
3975     Plt_stub_ent(const Symbol* sym)
3976       : sym_(sym), object_(0), addend_(0), locsym_(0)
3977     { }
3978
3979     Plt_stub_ent(const Sized_relobj_file<size, big_endian>* object,
3980                  unsigned int locsym_index)
3981       : sym_(NULL), object_(object), addend_(0), locsym_(locsym_index)
3982     { }
3983
3984     Plt_stub_ent(const Sized_relobj_file<size, big_endian>* object,
3985                  const Symbol* sym,
3986                  unsigned int r_type,
3987                  Address addend)
3988       : sym_(sym), object_(0), addend_(0), locsym_(0)
3989     {
3990       if (size != 32)
3991         this->addend_ = addend;
3992       else if (parameters->options().output_is_position_independent()
3993                && r_type == elfcpp::R_PPC_PLTREL24)
3994         {
3995           this->addend_ = addend;
3996           if (this->addend_ >= 32768)
3997             this->object_ = object;
3998         }
3999     }
4000
4001     Plt_stub_ent(const Sized_relobj_file<size, big_endian>* object,
4002                  unsigned int locsym_index,
4003                  unsigned int r_type,
4004                  Address addend)
4005       : sym_(NULL), object_(object), addend_(0), locsym_(locsym_index)
4006     {
4007       if (size != 32)
4008         this->addend_ = addend;
4009       else if (parameters->options().output_is_position_independent()
4010                && r_type == elfcpp::R_PPC_PLTREL24)
4011         this->addend_ = addend;
4012     }
4013
4014     bool operator==(const Plt_stub_ent& that) const
4015     {
4016       return (this->sym_ == that.sym_
4017               && this->object_ == that.object_
4018               && this->addend_ == that.addend_
4019               && this->locsym_ == that.locsym_);
4020     }
4021
4022     const Symbol* sym_;
4023     const Sized_relobj_file<size, big_endian>* object_;
4024     typename elfcpp::Elf_types<size>::Elf_Addr addend_;
4025     unsigned int locsym_;
4026   };
4027
4028   class Plt_stub_ent_hash
4029   {
4030   public:
4031     size_t operator()(const Plt_stub_ent& ent) const
4032     {
4033       return (reinterpret_cast<uintptr_t>(ent.sym_)
4034               ^ reinterpret_cast<uintptr_t>(ent.object_)
4035               ^ ent.addend_
4036               ^ ent.locsym_);
4037     }
4038   };
4039
4040   // Long branch stub keys.
4041   class Branch_stub_ent
4042   {
4043   public:
4044     Branch_stub_ent(const Powerpc_relobj<size, big_endian>* obj,
4045                     Address to, bool save_res)
4046       : dest_(to), toc_base_off_(0), save_res_(save_res)
4047     {
4048       if (size == 64)
4049         toc_base_off_ = obj->toc_base_offset();
4050     }
4051
4052     bool operator==(const Branch_stub_ent& that) const
4053     {
4054       return (this->dest_ == that.dest_
4055               && (size == 32
4056                   || this->toc_base_off_ == that.toc_base_off_));
4057     }
4058
4059     Address dest_;
4060     unsigned int toc_base_off_;
4061     bool save_res_;
4062   };
4063
4064   class Branch_stub_ent_hash
4065   {
4066   public:
4067     size_t operator()(const Branch_stub_ent& ent) const
4068     { return ent.dest_ ^ ent.toc_base_off_; }
4069   };
4070
4071   // In a sane world this would be a global.
4072   Target_powerpc<size, big_endian>* targ_;
4073   // Map sym/object/addend to stub offset.
4074   Plt_stub_entries plt_call_stubs_;
4075   // Map destination address to stub offset.
4076   typedef Unordered_map<Branch_stub_ent, unsigned int,
4077                         Branch_stub_ent_hash> Branch_stub_entries;
4078   Branch_stub_entries long_branch_stubs_;
4079   // size of input section
4080   section_size_type orig_data_size_;
4081   // size of stubs
4082   section_size_type plt_size_, last_plt_size_, branch_size_, last_branch_size_;
4083   // Some rare cases cause (PR/20529) fluctuation in stub table
4084   // size, which leads to an endless relax loop. This is to be fixed
4085   // by, after the first few iterations, allowing only increase of
4086   // stub table size. This variable sets the minimal possible size of
4087   // a stub table, it is zero for the first few iterations, then
4088   // increases monotonically.
4089   Address min_size_threshold_;
4090   // Whether .eh_frame info has been created for this stub section.
4091   bool eh_frame_added_;
4092   // Set if this stub group needs a copy of out-of-line register
4093   // save/restore functions.
4094   bool need_save_res_;
4095 };
4096
4097 // Add a plt call stub, if we do not already have one for this
4098 // sym/object/addend combo.
4099
4100 template<int size, bool big_endian>
4101 bool
4102 Stub_table<size, big_endian>::add_plt_call_entry(
4103     Address from,
4104     const Sized_relobj_file<size, big_endian>* object,
4105     const Symbol* gsym,
4106     unsigned int r_type,
4107     Address addend)
4108 {
4109   Plt_stub_ent ent(object, gsym, r_type, addend);
4110   unsigned int off = this->plt_size_;
4111   std::pair<typename Plt_stub_entries::iterator, bool> p
4112     = this->plt_call_stubs_.insert(std::make_pair(ent, off));
4113   if (p.second)
4114     this->plt_size_ = off + this->plt_call_size(p.first);
4115   return this->can_reach_stub(from, off, r_type);
4116 }
4117
4118 template<int size, bool big_endian>
4119 bool
4120 Stub_table<size, big_endian>::add_plt_call_entry(
4121     Address from,
4122     const Sized_relobj_file<size, big_endian>* object,
4123     unsigned int locsym_index,
4124     unsigned int r_type,
4125     Address addend)
4126 {
4127   Plt_stub_ent ent(object, locsym_index, r_type, addend);
4128   unsigned int off = this->plt_size_;
4129   std::pair<typename Plt_stub_entries::iterator, bool> p
4130     = this->plt_call_stubs_.insert(std::make_pair(ent, off));
4131   if (p.second)
4132     this->plt_size_ = off + this->plt_call_size(p.first);
4133   return this->can_reach_stub(from, off, r_type);
4134 }
4135
4136 // Find a plt call stub.
4137
4138 template<int size, bool big_endian>
4139 typename Stub_table<size, big_endian>::Address
4140 Stub_table<size, big_endian>::find_plt_call_entry(
4141     const Sized_relobj_file<size, big_endian>* object,
4142     const Symbol* gsym,
4143     unsigned int r_type,
4144     Address addend) const
4145 {
4146   Plt_stub_ent ent(object, gsym, r_type, addend);
4147   typename Plt_stub_entries::const_iterator p = this->plt_call_stubs_.find(ent);
4148   return p == this->plt_call_stubs_.end() ? invalid_address : p->second;
4149 }
4150
4151 template<int size, bool big_endian>
4152 typename Stub_table<size, big_endian>::Address
4153 Stub_table<size, big_endian>::find_plt_call_entry(const Symbol* gsym) const
4154 {
4155   Plt_stub_ent ent(gsym);
4156   typename Plt_stub_entries::const_iterator p = this->plt_call_stubs_.find(ent);
4157   return p == this->plt_call_stubs_.end() ? invalid_address : p->second;
4158 }
4159
4160 template<int size, bool big_endian>
4161 typename Stub_table<size, big_endian>::Address
4162 Stub_table<size, big_endian>::find_plt_call_entry(
4163     const Sized_relobj_file<size, big_endian>* object,
4164     unsigned int locsym_index,
4165     unsigned int r_type,
4166     Address addend) const
4167 {
4168   Plt_stub_ent ent(object, locsym_index, r_type, addend);
4169   typename Plt_stub_entries::const_iterator p = this->plt_call_stubs_.find(ent);
4170   return p == this->plt_call_stubs_.end() ? invalid_address : p->second;
4171 }
4172
4173 template<int size, bool big_endian>
4174 typename Stub_table<size, big_endian>::Address
4175 Stub_table<size, big_endian>::find_plt_call_entry(
4176     const Sized_relobj_file<size, big_endian>* object,
4177     unsigned int locsym_index) const
4178 {
4179   Plt_stub_ent ent(object, locsym_index);
4180   typename Plt_stub_entries::const_iterator p = this->plt_call_stubs_.find(ent);
4181   return p == this->plt_call_stubs_.end() ? invalid_address : p->second;
4182 }
4183
4184 // Add a long branch stub if we don't already have one to given
4185 // destination.
4186
4187 template<int size, bool big_endian>
4188 bool
4189 Stub_table<size, big_endian>::add_long_branch_entry(
4190     const Powerpc_relobj<size, big_endian>* object,
4191     unsigned int r_type,
4192     Address from,
4193     Address to,
4194     bool save_res)
4195 {
4196   Branch_stub_ent ent(object, to, save_res);
4197   Address off = this->branch_size_;
4198   if (this->long_branch_stubs_.insert(std::make_pair(ent, off)).second)
4199     {
4200       if (save_res)
4201         this->need_save_res_ = true;
4202       else
4203         {
4204           unsigned int stub_size = this->branch_stub_size(to);
4205           this->branch_size_ = off + stub_size;
4206           if (size == 64 && stub_size != 4)
4207             this->targ_->add_branch_lookup_table(to);
4208         }
4209     }
4210   return this->can_reach_stub(from, off, r_type);
4211 }
4212
4213 // Find long branch stub offset.
4214
4215 template<int size, bool big_endian>
4216 typename Stub_table<size, big_endian>::Address
4217 Stub_table<size, big_endian>::find_long_branch_entry(
4218     const Powerpc_relobj<size, big_endian>* object,
4219     Address to) const
4220 {
4221   Branch_stub_ent ent(object, to, false);
4222   typename Branch_stub_entries::const_iterator p
4223     = this->long_branch_stubs_.find(ent);
4224   if (p == this->long_branch_stubs_.end())
4225     return invalid_address;
4226   if (p->first.save_res_)
4227     return to - this->targ_->savres_section()->address() + this->branch_size_;
4228   return p->second;
4229 }
4230
4231 // A class to handle .glink.
4232
4233 template<int size, bool big_endian>
4234 class Output_data_glink : public Output_section_data
4235 {
4236  public:
4237   typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
4238   static const Address invalid_address = static_cast<Address>(0) - 1;
4239   static const int pltresolve_size = 16*4;
4240
4241   Output_data_glink(Target_powerpc<size, big_endian>* targ)
4242     : Output_section_data(16), targ_(targ), global_entry_stubs_(),
4243       end_branch_table_(), ge_size_(0)
4244   { }
4245
4246   void
4247   add_eh_frame(Layout* layout);
4248
4249   void
4250   add_global_entry(const Symbol*);
4251
4252   Address
4253   find_global_entry(const Symbol*) const;
4254
4255   Address
4256   global_entry_address() const
4257   {
4258     gold_assert(this->is_data_size_valid());
4259     unsigned int global_entry_off = (this->end_branch_table_ + 15) & -16;
4260     return this->address() + global_entry_off;
4261   }
4262
4263  protected:
4264   // Write to a map file.
4265   void
4266   do_print_to_mapfile(Mapfile* mapfile) const
4267   { mapfile->print_output_data(this, _("** glink")); }
4268
4269  private:
4270   void
4271   set_final_data_size();
4272
4273   // Write out .glink
4274   void
4275   do_write(Output_file*);
4276
4277   // Allows access to .got and .plt for do_write.
4278   Target_powerpc<size, big_endian>* targ_;
4279
4280   // Map sym to stub offset.
4281   typedef Unordered_map<const Symbol*, unsigned int> Global_entry_stub_entries;
4282   Global_entry_stub_entries global_entry_stubs_;
4283
4284   unsigned int end_branch_table_, ge_size_;
4285 };
4286
4287 template<int size, bool big_endian>
4288 void
4289 Output_data_glink<size, big_endian>::add_eh_frame(Layout* layout)
4290 {
4291   if (!parameters->options().ld_generated_unwind_info())
4292     return;
4293
4294   if (size == 64)
4295     {
4296       if (this->targ_->abiversion() < 2)
4297         layout->add_eh_frame_for_plt(this,
4298                                      Eh_cie<64>::eh_frame_cie,
4299                                      sizeof (Eh_cie<64>::eh_frame_cie),
4300                                      glink_eh_frame_fde_64v1,
4301                                      sizeof (glink_eh_frame_fde_64v1));
4302       else
4303         layout->add_eh_frame_for_plt(this,
4304                                      Eh_cie<64>::eh_frame_cie,
4305                                      sizeof (Eh_cie<64>::eh_frame_cie),
4306                                      glink_eh_frame_fde_64v2,
4307                                      sizeof (glink_eh_frame_fde_64v2));
4308     }
4309   else
4310     {
4311       // 32-bit .glink can use the default since the CIE return
4312       // address reg, LR, is valid.
4313       layout->add_eh_frame_for_plt(this,
4314                                    Eh_cie<32>::eh_frame_cie,
4315                                    sizeof (Eh_cie<32>::eh_frame_cie),
4316                                    default_fde,
4317                                    sizeof (default_fde));
4318       // Except where LR is used in a PIC __glink_PLTresolve.
4319       if (parameters->options().output_is_position_independent())
4320         layout->add_eh_frame_for_plt(this,
4321                                      Eh_cie<32>::eh_frame_cie,
4322                                      sizeof (Eh_cie<32>::eh_frame_cie),
4323                                      glink_eh_frame_fde_32,
4324                                      sizeof (glink_eh_frame_fde_32));
4325     }
4326 }
4327
4328 template<int size, bool big_endian>
4329 void
4330 Output_data_glink<size, big_endian>::add_global_entry(const Symbol* gsym)
4331 {
4332   std::pair<typename Global_entry_stub_entries::iterator, bool> p
4333     = this->global_entry_stubs_.insert(std::make_pair(gsym, this->ge_size_));
4334   if (p.second)
4335     this->ge_size_ += 16;
4336 }
4337
4338 template<int size, bool big_endian>
4339 typename Output_data_glink<size, big_endian>::Address
4340 Output_data_glink<size, big_endian>::find_global_entry(const Symbol* gsym) const
4341 {
4342   typename Global_entry_stub_entries::const_iterator p
4343     = this->global_entry_stubs_.find(gsym);
4344   return p == this->global_entry_stubs_.end() ? invalid_address : p->second;
4345 }
4346
4347 template<int size, bool big_endian>
4348 void
4349 Output_data_glink<size, big_endian>::set_final_data_size()
4350 {
4351   unsigned int count = this->targ_->plt_entry_count();
4352   section_size_type total = 0;
4353
4354   if (count != 0)
4355     {
4356       if (size == 32)
4357         {
4358           // space for branch table
4359           total += 4 * (count - 1);
4360
4361           total += -total & 15;
4362           total += this->pltresolve_size;
4363         }
4364       else
4365         {
4366           total += this->pltresolve_size;
4367
4368           // space for branch table
4369           total += 4 * count;
4370           if (this->targ_->abiversion() < 2)
4371             {
4372               total += 4 * count;
4373               if (count > 0x8000)
4374                 total += 4 * (count - 0x8000);
4375             }
4376         }
4377     }
4378   this->end_branch_table_ = total;
4379   total = (total + 15) & -16;
4380   total += this->ge_size_;
4381
4382   this->set_data_size(total);
4383 }
4384
4385 // Write out plt and long branch stub code.
4386
4387 template<int size, bool big_endian>
4388 void
4389 Stub_table<size, big_endian>::do_write(Output_file* of)
4390 {
4391   if (this->plt_call_stubs_.empty()
4392       && this->long_branch_stubs_.empty())
4393     return;
4394
4395   const section_size_type start_off = this->offset();
4396   const section_size_type off = this->stub_offset();
4397   const section_size_type oview_size =
4398     convert_to_section_size_type(this->data_size() - (off - start_off));
4399   unsigned char* const oview = of->get_output_view(off, oview_size);
4400   unsigned char* p;
4401
4402   if (size == 64)
4403     {
4404       const Output_data_got_powerpc<size, big_endian>* got
4405         = this->targ_->got_section();
4406       Address got_os_addr = got->output_section()->address();
4407
4408       if (!this->plt_call_stubs_.empty())
4409         {
4410           // The base address of the .plt section.
4411           Address plt_base = this->targ_->plt_section()->address();
4412           Address iplt_base = invalid_address;
4413
4414           // Write out plt call stubs.
4415           typename Plt_stub_entries::const_iterator cs;
4416           for (cs = this->plt_call_stubs_.begin();
4417                cs != this->plt_call_stubs_.end();
4418                ++cs)
4419             {
4420               bool is_iplt;
4421               Address pltoff = this->plt_off(cs, &is_iplt);
4422               Address plt_addr = pltoff;
4423               if (is_iplt)
4424                 {
4425                   if (iplt_base == invalid_address)
4426                     iplt_base = this->targ_->iplt_section()->address();
4427                   plt_addr += iplt_base;
4428                 }
4429               else
4430                 plt_addr += plt_base;
4431               const Powerpc_relobj<size, big_endian>* ppcobj = static_cast
4432                 <const Powerpc_relobj<size, big_endian>*>(cs->first.object_);
4433               Address got_addr = got_os_addr + ppcobj->toc_base_offset();
4434               Address off = plt_addr - got_addr;
4435
4436               if (off + 0x80008000 > 0xffffffff || (off & 7) != 0)
4437                 gold_error(_("%s: linkage table error against `%s'"),
4438                            cs->first.object_->name().c_str(),
4439                            cs->first.sym_->demangled_name().c_str());
4440
4441               bool plt_load_toc = this->targ_->abiversion() < 2;
4442               bool static_chain
4443                 = plt_load_toc && parameters->options().plt_static_chain();
4444               bool thread_safe
4445                 = plt_load_toc && this->targ_->plt_thread_safe();
4446               bool use_fake_dep = false;
4447               Address cmp_branch_off = 0;
4448               if (thread_safe)
4449                 {
4450                   unsigned int pltindex
4451                     = ((pltoff - this->targ_->first_plt_entry_offset())
4452                        / this->targ_->plt_entry_size());
4453                   Address glinkoff
4454                     = (this->targ_->glink_section()->pltresolve_size
4455                        + pltindex * 8);
4456                   if (pltindex > 32768)
4457                     glinkoff += (pltindex - 32768) * 4;
4458                   Address to
4459                     = this->targ_->glink_section()->address() + glinkoff;
4460                   Address from
4461                     = (this->stub_address() + cs->second + 24
4462                        + 4 * (ha(off) != 0)
4463                        + 4 * (ha(off + 8 + 8 * static_chain) != ha(off))
4464                        + 4 * static_chain);
4465                   cmp_branch_off = to - from;
4466                   use_fake_dep = cmp_branch_off + (1 << 25) >= (1 << 26);
4467                 }
4468
4469               p = oview + cs->second;
4470               if (ha(off) != 0)
4471                 {
4472                   write_insn<big_endian>(p, std_2_1 + this->targ_->stk_toc());
4473                   p += 4;
4474                   if (plt_load_toc)
4475                     {
4476                       write_insn<big_endian>(p, addis_11_2 + ha(off));
4477                       p += 4;
4478                       write_insn<big_endian>(p, ld_12_11 + l(off));
4479                       p += 4;
4480                     }
4481                   else
4482                     {
4483                       write_insn<big_endian>(p, addis_12_2 + ha(off));
4484                       p += 4;
4485                       write_insn<big_endian>(p, ld_12_12 + l(off));
4486                       p += 4;
4487                     }
4488                   if (plt_load_toc
4489                       && ha(off + 8 + 8 * static_chain) != ha(off))
4490                     {
4491                       write_insn<big_endian>(p, addi_11_11 + l(off));
4492                       p += 4;
4493                       off = 0;
4494                     }
4495                   write_insn<big_endian>(p, mtctr_12);
4496                   p += 4;
4497                   if (plt_load_toc)
4498                     {
4499                       if (use_fake_dep)
4500                         {
4501                           write_insn<big_endian>(p, xor_2_12_12);
4502                           p += 4;
4503                           write_insn<big_endian>(p, add_11_11_2);
4504                           p += 4;
4505                         }
4506                       write_insn<big_endian>(p, ld_2_11 + l(off + 8));
4507                       p += 4;
4508                       if (static_chain)
4509                         {
4510                           write_insn<big_endian>(p, ld_11_11 + l(off + 16));
4511                           p += 4;
4512                         }
4513                     }
4514                 }
4515               else
4516                 {
4517                   write_insn<big_endian>(p, std_2_1 + this->targ_->stk_toc());
4518                   p += 4;
4519                   write_insn<big_endian>(p, ld_12_2 + l(off));
4520                   p += 4;
4521                   if (plt_load_toc
4522                       && ha(off + 8 + 8 * static_chain) != ha(off))
4523                     {
4524                       write_insn<big_endian>(p, addi_2_2 + l(off));
4525                       p += 4;
4526                       off = 0;
4527                     }
4528                   write_insn<big_endian>(p, mtctr_12);
4529                   p += 4;
4530                   if (plt_load_toc)
4531                     {
4532                       if (use_fake_dep)
4533                         {
4534                           write_insn<big_endian>(p, xor_11_12_12);
4535                           p += 4;
4536                           write_insn<big_endian>(p, add_2_2_11);
4537                           p += 4;
4538                         }
4539                       if (static_chain)
4540                         {
4541                           write_insn<big_endian>(p, ld_11_2 + l(off + 16));
4542                           p += 4;
4543                         }
4544                       write_insn<big_endian>(p, ld_2_2 + l(off + 8));
4545                       p += 4;
4546                     }
4547                 }
4548               if (thread_safe && !use_fake_dep)
4549                 {
4550                   write_insn<big_endian>(p, cmpldi_2_0);
4551                   p += 4;
4552                   write_insn<big_endian>(p, bnectr_p4);
4553                   p += 4;
4554                   write_insn<big_endian>(p, b | (cmp_branch_off & 0x3fffffc));
4555                 }
4556               else
4557                 write_insn<big_endian>(p, bctr);
4558             }
4559         }
4560
4561       // Write out long branch stubs.
4562       typename Branch_stub_entries::const_iterator bs;
4563       for (bs = this->long_branch_stubs_.begin();
4564            bs != this->long_branch_stubs_.end();
4565            ++bs)
4566         {
4567           if (bs->first.save_res_)
4568             continue;
4569           p = oview + this->plt_size_ + bs->second;
4570           Address loc = this->stub_address() + this->plt_size_ + bs->second;
4571           Address delta = bs->first.dest_ - loc;
4572           if (delta + (1 << 25) < 2 << 25)
4573             write_insn<big_endian>(p, b | (delta & 0x3fffffc));
4574           else
4575             {
4576               Address brlt_addr
4577                 = this->targ_->find_branch_lookup_table(bs->first.dest_);
4578               gold_assert(brlt_addr != invalid_address);
4579               brlt_addr += this->targ_->brlt_section()->address();
4580               Address got_addr = got_os_addr + bs->first.toc_base_off_;
4581               Address brltoff = brlt_addr - got_addr;
4582               if (ha(brltoff) == 0)
4583                 {
4584                   write_insn<big_endian>(p, ld_12_2 + l(brltoff)),      p += 4;
4585                 }
4586               else
4587                 {
4588                   write_insn<big_endian>(p, addis_12_2 + ha(brltoff)),  p += 4;
4589                   write_insn<big_endian>(p, ld_12_12 + l(brltoff)),     p += 4;
4590                 }
4591               write_insn<big_endian>(p, mtctr_12),                      p += 4;
4592               write_insn<big_endian>(p, bctr);
4593             }
4594         }
4595     }
4596   else
4597     {
4598       if (!this->plt_call_stubs_.empty())
4599         {
4600           // The base address of the .plt section.
4601           Address plt_base = this->targ_->plt_section()->address();
4602           Address iplt_base = invalid_address;
4603           // The address of _GLOBAL_OFFSET_TABLE_.
4604           Address g_o_t = invalid_address;
4605
4606           // Write out plt call stubs.
4607           typename Plt_stub_entries::const_iterator cs;
4608           for (cs = this->plt_call_stubs_.begin();
4609                cs != this->plt_call_stubs_.end();
4610                ++cs)
4611             {
4612               bool is_iplt;
4613               Address plt_addr = this->plt_off(cs, &is_iplt);
4614               if (is_iplt)
4615                 {
4616                   if (iplt_base == invalid_address)
4617                     iplt_base = this->targ_->iplt_section()->address();
4618                   plt_addr += iplt_base;
4619                 }
4620               else
4621                 plt_addr += plt_base;
4622
4623               p = oview + cs->second;
4624               if (parameters->options().output_is_position_independent())
4625                 {
4626                   Address got_addr;
4627                   const Powerpc_relobj<size, big_endian>* ppcobj
4628                     = (static_cast<const Powerpc_relobj<size, big_endian>*>
4629                        (cs->first.object_));
4630                   if (ppcobj != NULL && cs->first.addend_ >= 32768)
4631                     {
4632                       unsigned int got2 = ppcobj->got2_shndx();
4633                       got_addr = ppcobj->get_output_section_offset(got2);
4634                       gold_assert(got_addr != invalid_address);
4635                       got_addr += (ppcobj->output_section(got2)->address()
4636                                    + cs->first.addend_);
4637                     }
4638                   else
4639                     {
4640                       if (g_o_t == invalid_address)
4641                         {
4642                           const Output_data_got_powerpc<size, big_endian>* got
4643                             = this->targ_->got_section();
4644                           g_o_t = got->address() + got->g_o_t();
4645                         }
4646                       got_addr = g_o_t;
4647                     }
4648
4649                   Address off = plt_addr - got_addr;
4650                   if (ha(off) == 0)
4651                     {
4652                       write_insn<big_endian>(p +  0, lwz_11_30 + l(off));
4653                       write_insn<big_endian>(p +  4, mtctr_11);
4654                       write_insn<big_endian>(p +  8, bctr);
4655                     }
4656                   else
4657                     {
4658                       write_insn<big_endian>(p +  0, addis_11_30 + ha(off));
4659                       write_insn<big_endian>(p +  4, lwz_11_11 + l(off));
4660                       write_insn<big_endian>(p +  8, mtctr_11);
4661                       write_insn<big_endian>(p + 12, bctr);
4662                     }
4663                 }
4664               else
4665                 {
4666                   write_insn<big_endian>(p +  0, lis_11 + ha(plt_addr));
4667                   write_insn<big_endian>(p +  4, lwz_11_11 + l(plt_addr));
4668                   write_insn<big_endian>(p +  8, mtctr_11);
4669                   write_insn<big_endian>(p + 12, bctr);
4670                 }
4671             }
4672         }
4673
4674       // Write out long branch stubs.
4675       typename Branch_stub_entries::const_iterator bs;
4676       for (bs = this->long_branch_stubs_.begin();
4677            bs != this->long_branch_stubs_.end();
4678            ++bs)
4679         {
4680           if (bs->first.save_res_)
4681             continue;
4682           p = oview + this->plt_size_ + bs->second;
4683           Address loc = this->stub_address() + this->plt_size_ + bs->second;
4684           Address delta = bs->first.dest_ - loc;
4685           if (delta + (1 << 25) < 2 << 25)
4686             write_insn<big_endian>(p, b | (delta & 0x3fffffc));
4687           else if (!parameters->options().output_is_position_independent())
4688             {
4689               write_insn<big_endian>(p +  0, lis_12 + ha(bs->first.dest_));
4690               write_insn<big_endian>(p +  4, addi_12_12 + l(bs->first.dest_));
4691               write_insn<big_endian>(p +  8, mtctr_12);
4692               write_insn<big_endian>(p + 12, bctr);
4693             }
4694           else
4695             {
4696               delta -= 8;
4697               write_insn<big_endian>(p +  0, mflr_0);
4698               write_insn<big_endian>(p +  4, bcl_20_31);
4699               write_insn<big_endian>(p +  8, mflr_12);
4700               write_insn<big_endian>(p + 12, addis_12_12 + ha(delta));
4701               write_insn<big_endian>(p + 16, addi_12_12 + l(delta));
4702               write_insn<big_endian>(p + 20, mtlr_0);
4703               write_insn<big_endian>(p + 24, mtctr_12);
4704               write_insn<big_endian>(p + 28, bctr);
4705             }
4706         }
4707     }
4708   if (this->need_save_res_)
4709     {
4710       p = oview + this->plt_size_ + this->branch_size_;
4711       memcpy (p, this->targ_->savres_section()->contents(),
4712               this->targ_->savres_section()->data_size());
4713     }
4714 }
4715
4716 // Write out .glink.
4717
4718 template<int size, bool big_endian>
4719 void
4720 Output_data_glink<size, big_endian>::do_write(Output_file* of)
4721 {
4722   const section_size_type off = this->offset();
4723   const section_size_type oview_size =
4724     convert_to_section_size_type(this->data_size());
4725   unsigned char* const oview = of->get_output_view(off, oview_size);
4726   unsigned char* p;
4727
4728   // The base address of the .plt section.
4729   typedef typename elfcpp::Elf_types<size>::Elf_Addr Address;
4730   Address plt_base = this->targ_->plt_section()->address();
4731
4732   if (size == 64)
4733     {
4734       if (this->end_branch_table_ != 0)
4735         {
4736           // Write pltresolve stub.
4737           p = oview;
4738           Address after_bcl = this->address() + 16;
4739           Address pltoff = plt_base - after_bcl;
4740
4741           elfcpp::Swap<64, big_endian>::writeval(p, pltoff),    p += 8;
4742
4743           if (this->targ_->abiversion() < 2)
4744             {
4745               write_insn<big_endian>(p, mflr_12),               p += 4;
4746               write_insn<big_endian>(p, bcl_20_31),             p += 4;
4747               write_insn<big_endian>(p, mflr_11),               p += 4;
4748               write_insn<big_endian>(p, ld_2_11 + l(-16)),      p += 4;
4749               write_insn<big_endian>(p, mtlr_12),               p += 4;
4750               write_insn<big_endian>(p, add_11_2_11),           p += 4;
4751               write_insn<big_endian>(p, ld_12_11 + 0),          p += 4;
4752               write_insn<big_endian>(p, ld_2_11 + 8),           p += 4;
4753               write_insn<big_endian>(p, mtctr_12),              p += 4;
4754               write_insn<big_endian>(p, ld_11_11 + 16),         p += 4;
4755             }
4756           else
4757             {
4758               write_insn<big_endian>(p, mflr_0),                p += 4;
4759               write_insn<big_endian>(p, bcl_20_31),             p += 4;
4760               write_insn<big_endian>(p, mflr_11),               p += 4;
4761               write_insn<big_endian>(p, ld_2_11 + l(-16)),      p += 4;
4762               write_insn<big_endian>(p, mtlr_0),                p += 4;
4763               write_insn<big_endian>(p, sub_12_12_11),          p += 4;
4764               write_insn<big_endian>(p, add_11_2_11),           p += 4;
4765               write_insn<big_endian>(p, addi_0_12 + l(-48)),    p += 4;
4766               write_insn<big_endian>(p, ld_12_11 + 0),          p += 4;
4767               write_insn<big_endian>(p, srdi_0_0_2),            p += 4;
4768               write_insn<big_endian>(p, mtctr_12),              p += 4;
4769               write_insn<big_endian>(p, ld_11_11 + 8),          p += 4;
4770             }
4771           write_insn<big_endian>(p, bctr),                      p += 4;
4772           while (p < oview + this->pltresolve_size)
4773             write_insn<big_endian>(p, nop), p += 4;
4774
4775           // Write lazy link call stubs.
4776           uint32_t indx = 0;
4777           while (p < oview + this->end_branch_table_)
4778             {
4779               if (this->targ_->abiversion() < 2)
4780                 {
4781                   if (indx < 0x8000)
4782                     {
4783                       write_insn<big_endian>(p, li_0_0 + indx),         p += 4;
4784                     }
4785                   else
4786                     {
4787                       write_insn<big_endian>(p, lis_0 + hi(indx)),      p += 4;
4788                       write_insn<big_endian>(p, ori_0_0_0 + l(indx)),   p += 4;
4789                     }
4790                 }
4791               uint32_t branch_off = 8 - (p - oview);
4792               write_insn<big_endian>(p, b + (branch_off & 0x3fffffc)),  p += 4;
4793               indx++;
4794             }
4795         }
4796
4797       Address plt_base = this->targ_->plt_section()->address();
4798       Address iplt_base = invalid_address;
4799       unsigned int global_entry_off = (this->end_branch_table_ + 15) & -16;
4800       Address global_entry_base = this->address() + global_entry_off;
4801       typename Global_entry_stub_entries::const_iterator ge;
4802       for (ge = this->global_entry_stubs_.begin();
4803            ge != this->global_entry_stubs_.end();
4804            ++ge)
4805         {
4806           p = oview + global_entry_off + ge->second;
4807           Address plt_addr = ge->first->plt_offset();
4808           if (ge->first->type() == elfcpp::STT_GNU_IFUNC
4809               && ge->first->can_use_relative_reloc(false))
4810             {
4811               if (iplt_base == invalid_address)
4812                 iplt_base = this->targ_->iplt_section()->address();
4813               plt_addr += iplt_base;
4814             }
4815           else
4816             plt_addr += plt_base;
4817           Address my_addr = global_entry_base + ge->second;
4818           Address off = plt_addr - my_addr;
4819
4820           if (off + 0x80008000 > 0xffffffff || (off & 3) != 0)
4821             gold_error(_("%s: linkage table error against `%s'"),
4822                        ge->first->object()->name().c_str(),
4823                        ge->first->demangled_name().c_str());
4824
4825           write_insn<big_endian>(p, addis_12_12 + ha(off)),     p += 4;
4826           write_insn<big_endian>(p, ld_12_12 + l(off)),         p += 4;
4827           write_insn<big_endian>(p, mtctr_12),                  p += 4;
4828           write_insn<big_endian>(p, bctr);
4829         }
4830     }
4831   else
4832     {
4833       const Output_data_got_powerpc<size, big_endian>* got
4834         = this->targ_->got_section();
4835       // The address of _GLOBAL_OFFSET_TABLE_.
4836       Address g_o_t = got->address() + got->g_o_t();
4837
4838       // Write out pltresolve branch table.
4839       p = oview;
4840       unsigned int the_end = oview_size - this->pltresolve_size;
4841       unsigned char* end_p = oview + the_end;
4842       while (p < end_p - 8 * 4)
4843         write_insn<big_endian>(p, b + end_p - p), p += 4;
4844       while (p < end_p)
4845         write_insn<big_endian>(p, nop), p += 4;
4846
4847       // Write out pltresolve call stub.
4848       if (parameters->options().output_is_position_independent())
4849         {
4850           Address res0_off = 0;
4851           Address after_bcl_off = the_end + 12;
4852           Address bcl_res0 = after_bcl_off - res0_off;
4853
4854           write_insn<big_endian>(p +  0, addis_11_11 + ha(bcl_res0));
4855           write_insn<big_endian>(p +  4, mflr_0);
4856           write_insn<big_endian>(p +  8, bcl_20_31);
4857           write_insn<big_endian>(p + 12, addi_11_11 + l(bcl_res0));
4858           write_insn<big_endian>(p + 16, mflr_12);
4859           write_insn<big_endian>(p + 20, mtlr_0);
4860           write_insn<big_endian>(p + 24, sub_11_11_12);
4861
4862           Address got_bcl = g_o_t + 4 - (after_bcl_off + this->address());
4863
4864           write_insn<big_endian>(p + 28, addis_12_12 + ha(got_bcl));
4865           if (ha(got_bcl) == ha(got_bcl + 4))
4866             {
4867               write_insn<big_endian>(p + 32, lwz_0_12 + l(got_bcl));
4868               write_insn<big_endian>(p + 36, lwz_12_12 + l(got_bcl + 4));
4869             }
4870           else
4871             {
4872               write_insn<big_endian>(p + 32, lwzu_0_12 + l(got_bcl));
4873               write_insn<big_endian>(p + 36, lwz_12_12 + 4);
4874             }
4875           write_insn<big_endian>(p + 40, mtctr_0);
4876           write_insn<big_endian>(p + 44, add_0_11_11);
4877           write_insn<big_endian>(p + 48, add_11_0_11);
4878           write_insn<big_endian>(p + 52, bctr);
4879           write_insn<big_endian>(p + 56, nop);
4880           write_insn<big_endian>(p + 60, nop);
4881         }
4882       else
4883         {
4884           Address res0 = this->address();
4885
4886           write_insn<big_endian>(p + 0, lis_12 + ha(g_o_t + 4));
4887           write_insn<big_endian>(p + 4, addis_11_11 + ha(-res0));
4888           if (ha(g_o_t + 4) == ha(g_o_t + 8))
4889             write_insn<big_endian>(p + 8, lwz_0_12 + l(g_o_t + 4));
4890           else
4891             write_insn<big_endian>(p + 8, lwzu_0_12 + l(g_o_t + 4));
4892           write_insn<big_endian>(p + 12, addi_11_11 + l(-res0));
4893           write_insn<big_endian>(p + 16, mtctr_0);
4894           write_insn<big_endian>(p + 20, add_0_11_11);
4895           if (ha(g_o_t + 4) == ha(g_o_t + 8))
4896             write_insn<big_endian>(p + 24, lwz_12_12 + l(g_o_t + 8));
4897           else
4898             write_insn<big_endian>(p + 24, lwz_12_12 + 4);
4899           write_insn<big_endian>(p + 28, add_11_0_11);
4900           write_insn<big_endian>(p + 32, bctr);
4901           write_insn<big_endian>(p + 36, nop);
4902           write_insn<big_endian>(p + 40, nop);
4903           write_insn<big_endian>(p + 44, nop);
4904           write_insn<big_endian>(p + 48, nop);
4905           write_insn<big_endian>(p + 52, nop);
4906           write_insn<big_endian>(p + 56, nop);
4907           write_insn<big_endian>(p + 60, nop);
4908         }
4909       p += 64;
4910     }
4911
4912   of->write_output_view(off, oview_size, oview);
4913 }
4914
4915
4916 // A class to handle linker generated save/restore functions.
4917
4918 template<int size, bool big_endian>
4919 class Output_data_save_res : public Output_section_data_build
4920 {
4921  public:
4922   Output_data_save_res(Symbol_table* symtab);
4923
4924   const unsigned char*
4925   contents() const
4926   {
4927     return contents_;
4928   }
4929
4930  protected:
4931   // Write to a map file.
4932   void
4933   do_print_to_mapfile(Mapfile* mapfile) const
4934   { mapfile->print_output_data(this, _("** save/restore")); }
4935
4936   void
4937   do_write(Output_file*);
4938
4939  private:
4940   // The maximum size of save/restore contents.
4941   static const unsigned int savres_max = 218*4;
4942
4943   void
4944   savres_define(Symbol_table* symtab,
4945                 const char *name,
4946                 unsigned int lo, unsigned int hi,
4947                 unsigned char* write_ent(unsigned char*, int),
4948                 unsigned char* write_tail(unsigned char*, int));
4949
4950   unsigned char *contents_;
4951 };
4952
4953 template<bool big_endian>
4954 static unsigned char*
4955 savegpr0(unsigned char* p, int r)
4956 {
4957   uint32_t insn = std_0_1 + (r << 21) + (1 << 16) - (32 - r) * 8;
4958   write_insn<big_endian>(p, insn);
4959   return p + 4;
4960 }
4961
4962 template<bool big_endian>
4963 static unsigned char*
4964 savegpr0_tail(unsigned char* p, int r)
4965 {
4966   p = savegpr0<big_endian>(p, r);
4967   uint32_t insn = std_0_1 + 16;
4968   write_insn<big_endian>(p, insn);
4969   p = p + 4;
4970   write_insn<big_endian>(p, blr);
4971   return p + 4;
4972 }
4973
4974 template<bool big_endian>
4975 static unsigned char*
4976 restgpr0(unsigned char* p, int r)
4977 {
4978   uint32_t insn = ld_0_1 + (r << 21) + (1 << 16) - (32 - r) * 8;
4979   write_insn<big_endian>(p, insn);
4980   return p + 4;
4981 }
4982
4983 template<bool big_endian>
4984 static unsigned char*
4985 restgpr0_tail(unsigned char* p, int r)
4986 {
4987   uint32_t insn = ld_0_1 + 16;
4988   write_insn<big_endian>(p, insn);
4989   p = p + 4;
4990   p = restgpr0<big_endian>(p, r);
4991   write_insn<big_endian>(p, mtlr_0);
4992   p = p + 4;
4993   if (r == 29)
4994     {
4995       p = restgpr0<big_endian>(p, 30);
4996       p = restgpr0<big_endian>(p, 31);
4997     }
4998   write_insn<big_endian>(p, blr);
4999   return p + 4;
5000 }
5001
5002 template<bool big_endian>
5003 static unsigned char*
5004 savegpr1(unsigned char* p, int r)
5005 {
5006   uint32_t insn = std_0_12 + (r << 21) + (1 << 16) - (32 - r) * 8;
5007   write_insn<big_endian>(p, insn);
5008   return p + 4;
5009 }
5010
5011 template<bool big_endian>
5012 static unsigned char*
5013 savegpr1_tail(unsigned char* p, int r)
5014 {
5015   p = savegpr1<big_endian>(p, r);
5016   write_insn<big_endian>(p, blr);
5017   return p + 4;
5018 }
5019
5020 template<bool big_endian>
5021 static unsigned char*
5022 restgpr1(unsigned char* p, int r)
5023 {
5024   uint32_t insn = ld_0_12 + (r << 21) + (1 << 16) - (32 - r) * 8;
5025   write_insn<big_endian>(p, insn);
5026   return p + 4;
5027 }
5028
5029 template<bool big_endian>
5030 static unsigned char*
5031 restgpr1_tail(unsigned char* p, int r)
5032 {
5033   p = restgpr1<big_endian>(p, r);
5034   write_insn<big_endian>(p, blr);
5035   return p + 4;
5036 }
5037
5038 template<bool big_endian>
5039 static unsigned char*
5040 savefpr(unsigned char* p, int r)
5041 {
5042   uint32_t insn = stfd_0_1 + (r << 21) + (1 << 16) - (32 - r) * 8;
5043   write_insn<big_endian>(p, insn);
5044   return p + 4;
5045 }
5046
5047 template<bool big_endian>
5048 static unsigned char*
5049 savefpr0_tail(unsigned char* p, int r)
5050 {
5051   p = savefpr<big_endian>(p, r);
5052   write_insn<big_endian>(p, std_0_1 + 16);
5053   p = p + 4;
5054   write_insn<big_endian>(p, blr);
5055   return p + 4;
5056 }
5057
5058 template<bool big_endian>
5059 static unsigned char*
5060 restfpr(unsigned char* p, int r)
5061 {
5062   uint32_t insn = lfd_0_1 + (r << 21) + (1 << 16) - (32 - r) * 8;
5063   write_insn<big_endian>(p, insn);
5064   return p + 4;
5065 }
5066
5067 template<bool big_endian>
5068 static unsigned char*
5069 restfpr0_tail(unsigned char* p, int r)
5070 {
5071   write_insn<big_endian>(p, ld_0_1 + 16);
5072   p = p + 4;
5073   p = restfpr<big_endian>(p, r);
5074   write_insn<big_endian>(p, mtlr_0);
5075   p = p + 4;
5076   if (r == 29)
5077     {
5078       p = restfpr<big_endian>(p, 30);
5079       p = restfpr<big_endian>(p, 31);
5080     }
5081   write_insn<big_endian>(p, blr);
5082   return p + 4;
5083 }
5084
5085 template<bool big_endian>
5086 static unsigned char*
5087 savefpr1_tail(unsigned char* p, int r)
5088 {
5089   p = savefpr<big_endian>(p, r);
5090   write_insn<big_endian>(p, blr);
5091   return p + 4;
5092 }
5093
5094 template<bool big_endian>
5095 static unsigned char*
5096 restfpr1_tail(unsigned char* p, int r)
5097 {
5098   p = restfpr<big_endian>(p, r);
5099   write_insn<big_endian>(p, blr);
5100   return p + 4;
5101 }
5102
5103 template<bool big_endian>
5104 static unsigned char*
5105 savevr(unsigned char* p, int r)
5106 {
5107   uint32_t insn = li_12_0 + (1 << 16) - (32 - r) * 16;
5108   write_insn<big_endian>(p, insn);
5109   p = p + 4;
5110   insn = stvx_0_12_0 + (r << 21);
5111   write_insn<big_endian>(p, insn);
5112   return p + 4;
5113 }
5114
5115 template<bool big_endian>
5116 static unsigned char*
5117 savevr_tail(unsigned char* p, int r)
5118 {
5119   p = savevr<big_endian>(p, r);
5120   write_insn<big_endian>(p, blr);
5121   return p + 4;
5122 }
5123
5124 template<bool big_endian>
5125 static unsigned char*
5126 restvr(unsigned char* p, int r)
5127 {
5128   uint32_t insn = li_12_0 + (1 << 16) - (32 - r) * 16;
5129   write_insn<big_endian>(p, insn);
5130   p = p + 4;
5131   insn = lvx_0_12_0 + (r << 21);
5132   write_insn<big_endian>(p, insn);
5133   return p + 4;
5134 }
5135
5136 template<bool big_endian>
5137 static unsigned char*
5138 restvr_tail(unsigned char* p, int r)
5139 {
5140   p = restvr<big_endian>(p, r);
5141   write_insn<big_endian>(p, blr);
5142   return p + 4;
5143 }
5144
5145
5146 template<int size, bool big_endian>
5147 Output_data_save_res<size, big_endian>::Output_data_save_res(
5148     Symbol_table* symtab)
5149   : Output_section_data_build(4),
5150     contents_(NULL)
5151 {
5152   this->savres_define(symtab,
5153                       "_savegpr0_", 14, 31,
5154                       savegpr0<big_endian>, savegpr0_tail<big_endian>);
5155   this->savres_define(symtab,
5156                       "_restgpr0_", 14, 29,
5157                       restgpr0<big_endian>, restgpr0_tail<big_endian>);
5158   this->savres_define(symtab,
5159                       "_restgpr0_", 30, 31,
5160                       restgpr0<big_endian>, restgpr0_tail<big_endian>);
5161   this->savres_define(symtab,
5162                       "_savegpr1_", 14, 31,
5163                       savegpr1<big_endian>, savegpr1_tail<big_endian>);
5164   this->savres_define(symtab,
5165                       "_restgpr1_", 14, 31,
5166                       restgpr1<big_endian>, restgpr1_tail<big_endian>);
5167   this->savres_define(symtab,
5168                       "_savefpr_", 14, 31,
5169                       savefpr<big_endian>, savefpr0_tail<big_endian>);
5170   this->savres_define(symtab,
5171                       "_restfpr_", 14, 29,
5172                       restfpr<big_endian>, restfpr0_tail<big_endian>);
5173   this->savres_define(symtab,
5174                       "_restfpr_", 30, 31,
5175                       restfpr<big_endian>, restfpr0_tail<big_endian>);
5176   this->savres_define(symtab,
5177                       "._savef", 14, 31,
5178                       savefpr<big_endian>, savefpr1_tail<big_endian>);
5179   this->savres_define(symtab,
5180                       "._restf", 14, 31,
5181                       restfpr<big_endian>, restfpr1_tail<big_endian>);
5182   this->savres_define(symtab,
5183                       "_savevr_", 20, 31,
5184                       savevr<big_endian>, savevr_tail<big_endian>);
5185   this->savres_define(symtab,
5186                       "_restvr_", 20, 31,
5187                       restvr<big_endian>, restvr_tail<big_endian>);
5188 }
5189
5190 template<int size, bool big_endian>
5191 void
5192 Output_data_save_res<size, big_endian>::savres_define(
5193     Symbol_table* symtab,
5194     const char *name,
5195     unsigned int lo, unsigned int hi,
5196     unsigned char* write_ent(unsigned char*, int),
5197     unsigned char* write_tail(unsigned char*, int))
5198 {
5199   size_t len = strlen(name);
5200   bool writing = false;
5201   char sym[16];
5202
5203   memcpy(sym, name, len);
5204   sym[len + 2] = 0;
5205
5206   for (unsigned int i = lo; i <= hi; i++)
5207     {
5208       sym[len + 0] = i / 10 + '0';
5209       sym[len + 1] = i % 10 + '0';
5210       Symbol* gsym = symtab->lookup(sym);
5211       bool refd = gsym != NULL && gsym->is_undefined();
5212       writing = writing || refd;
5213       if (writing)
5214         {
5215           if (this->contents_ == NULL)
5216             this->contents_ = new unsigned char[this->savres_max];
5217
5218           section_size_type value = this->current_data_size();
5219           unsigned char* p = this->contents_ + value;
5220           if (i != hi)
5221             p = write_ent(p, i);
5222           else
5223             p = write_tail(p, i);
5224           section_size_type cur_size = p - this->contents_;
5225           this->set_current_data_size(cur_size);
5226           if (refd)
5227             symtab->define_in_output_data(sym, NULL, Symbol_table::PREDEFINED,
5228                                           this, value, cur_size - value,
5229                                           elfcpp::STT_FUNC, elfcpp::STB_GLOBAL,
5230                                           elfcpp::STV_HIDDEN, 0, false, false);
5231         }
5232     }
5233 }
5234
5235 // Write out save/restore.
5236
5237 template<int size, bool big_endian>
5238 void
5239 Output_data_save_res<size, big_endian>::do_write(Output_file* of)
5240 {
5241   const section_size_type off = this->offset();
5242   const section_size_type oview_size =
5243     convert_to_section_size_type(this->data_size());
5244   unsigned char* const oview = of->get_output_view(off, oview_size);
5245   memcpy(oview, this->contents_, oview_size);
5246   of->write_output_view(off, oview_size, oview);
5247 }
5248
5249
5250 // Create the glink section.
5251
5252 template<int size, bool big_endian>
5253 void
5254 Target_powerpc<size, big_endian>::make_glink_section(Layout* layout)
5255 {
5256   if (this->glink_ == NULL)
5257     {
5258       this->glink_ = new Output_data_glink<size, big_endian>(this);
5259       this->glink_->add_eh_frame(layout);
5260       layout->add_output_section_data(".text", elfcpp::SHT_PROGBITS,
5261                                       elfcpp::SHF_ALLOC | elfcpp::SHF_EXECINSTR,
5262                                       this->glink_, ORDER_TEXT, false);
5263     }
5264 }
5265
5266 // Create a PLT entry for a global symbol.
5267
5268 template<int size, bool big_endian>
5269 void
5270 Target_powerpc<size, big_endian>::make_plt_entry(Symbol_table* symtab,
5271                                                  Layout* layout,
5272                                                  Symbol* gsym)
5273 {
5274   if (gsym->type() == elfcpp::STT_GNU_IFUNC
5275       && gsym->can_use_relative_reloc(false))
5276     {
5277       if (this->iplt_ == NULL)
5278         this->make_iplt_section(symtab, layout);
5279       this->iplt_->add_ifunc_entry(gsym);
5280     }
5281   else
5282     {
5283       if (this->plt_ == NULL)
5284         this->make_plt_section(symtab, layout);
5285       this->plt_->add_entry(gsym);
5286     }
5287 }
5288
5289 // Make a PLT entry for a local STT_GNU_IFUNC symbol.
5290
5291 template<int size, bool big_endian>
5292 void
5293 Target_powerpc<size, big_endian>::make_local_ifunc_plt_entry(
5294     Symbol_table* symtab,
5295     Layout* layout,
5296     Sized_relobj_file<size, big_endian>* relobj,
5297     unsigned int r_sym)
5298 {
5299   if (this->iplt_ == NULL)
5300     this->make_iplt_section(symtab, layout);
5301   this->iplt_->add_local_ifunc_entry(relobj, r_sym);
5302 }
5303
5304 // Return the number of entries in the PLT.
5305
5306 template<int size, bool big_endian>
5307 unsigned int
5308 Target_powerpc<size, big_endian>::plt_entry_count() const
5309 {
5310   if (this->plt_ == NULL)
5311     return 0;
5312   return this->plt_->entry_count();
5313 }
5314
5315 // Create a GOT entry for local dynamic __tls_get_addr calls.
5316
5317 template<int size, bool big_endian>
5318 unsigned int
5319 Target_powerpc<size, big_endian>::tlsld_got_offset(
5320     Symbol_table* symtab,
5321     Layout* layout,
5322     Sized_relobj_file<size, big_endian>* object)
5323 {
5324   if (this->tlsld_got_offset_ == -1U)
5325     {
5326       gold_assert(symtab != NULL && layout != NULL && object != NULL);
5327       Reloc_section* rela_dyn = this->rela_dyn_section(layout);
5328       Output_data_got_powerpc<size, big_endian>* got
5329         = this->got_section(symtab, layout);
5330       unsigned int got_offset = got->add_constant_pair(0, 0);
5331       rela_dyn->add_local(object, 0, elfcpp::R_POWERPC_DTPMOD, got,
5332                           got_offset, 0);
5333       this->tlsld_got_offset_ = got_offset;
5334     }
5335   return this->tlsld_got_offset_;
5336 }
5337
5338 // Get the Reference_flags for a particular relocation.
5339
5340 template<int size, bool big_endian>
5341 int
5342 Target_powerpc<size, big_endian>::Scan::get_reference_flags(
5343     unsigned int r_type,
5344     const Target_powerpc* target)
5345 {
5346   int ref = 0;
5347
5348   switch (r_type)
5349     {
5350     case elfcpp::R_POWERPC_NONE:
5351     case elfcpp::R_POWERPC_GNU_VTINHERIT:
5352     case elfcpp::R_POWERPC_GNU_VTENTRY:
5353     case elfcpp::R_PPC64_TOC:
5354       // No symbol reference.
5355       break;
5356
5357     case elfcpp::R_PPC64_ADDR64:
5358     case elfcpp::R_PPC64_UADDR64:
5359     case elfcpp::R_POWERPC_ADDR32:
5360     case elfcpp::R_POWERPC_UADDR32:
5361     case elfcpp::R_POWERPC_ADDR16:
5362     case elfcpp::R_POWERPC_UADDR16:
5363     case elfcpp::R_POWERPC_ADDR16_LO:
5364     case elfcpp::R_POWERPC_ADDR16_HI:
5365     case elfcpp::R_POWERPC_ADDR16_HA:
5366       ref = Symbol::ABSOLUTE_REF;
5367       break;
5368
5369     case elfcpp::R_POWERPC_ADDR24:
5370     case elfcpp::R_POWERPC_ADDR14:
5371     case elfcpp::R_POWERPC_ADDR14_BRTAKEN:
5372     case elfcpp::R_POWERPC_ADDR14_BRNTAKEN:
5373       ref = Symbol::FUNCTION_CALL | Symbol::ABSOLUTE_REF;
5374       break;
5375
5376     case elfcpp::R_PPC64_REL64:
5377     case elfcpp::R_POWERPC_REL32:
5378     case elfcpp::R_PPC_LOCAL24PC:
5379     case elfcpp::R_POWERPC_REL16:
5380     case elfcpp::R_POWERPC_REL16_LO:
5381     case elfcpp::R_POWERPC_REL16_HI:
5382     case elfcpp::R_POWERPC_REL16_HA:
5383       ref = Symbol::RELATIVE_REF;
5384       break;
5385
5386     case elfcpp::R_POWERPC_REL24:
5387     case elfcpp::R_PPC_PLTREL24:
5388     case elfcpp::R_POWERPC_REL14:
5389     case elfcpp::R_POWERPC_REL14_BRTAKEN:
5390     case elfcpp::R_POWERPC_REL14_BRNTAKEN:
5391       ref = Symbol::FUNCTION_CALL | Symbol::RELATIVE_REF;
5392       break;
5393
5394     case elfcpp::R_POWERPC_GOT16:
5395     case elfcpp::R_POWERPC_GOT16_LO:
5396     case elfcpp::R_POWERPC_GOT16_HI:
5397     case elfcpp::R_POWERPC_GOT16_HA:
5398     case elfcpp::R_PPC64_GOT16_DS:
5399     case elfcpp::R_PPC64_GOT16_LO_DS:
5400     case elfcpp::R_PPC64_TOC16:
5401     case elfcpp::R_PPC64_TOC16_LO:
5402     case elfcpp::R_PPC64_TOC16_HI:
5403     case elfcpp::R_PPC64_TOC16_HA:
5404     case elfcpp::R_PPC64_TOC16_DS:
5405     case elfcpp::R_PPC64_TOC16_LO_DS:
5406       ref = Symbol::RELATIVE_REF;
5407       break;
5408
5409     case elfcpp::R_POWERPC_GOT_TPREL16:
5410     case elfcpp::R_POWERPC_TLS:
5411       ref = Symbol::TLS_REF;
5412       break;
5413
5414     case elfcpp::R_POWERPC_COPY:
5415     case elfcpp::R_POWERPC_GLOB_DAT:
5416     case elfcpp::R_POWERPC_JMP_SLOT:
5417     case elfcpp::R_POWERPC_RELATIVE:
5418     case elfcpp::R_POWERPC_DTPMOD:
5419     default:
5420       // Not expected.  We will give an error later.
5421       break;
5422     }
5423
5424   if (size == 64 && target->abiversion() < 2)
5425     ref |= Symbol::FUNC_DESC_ABI;
5426   return ref;
5427 }
5428
5429 // Report an unsupported relocation against a local symbol.
5430
5431 template<int size, bool big_endian>
5432 void
5433 Target_powerpc<size, big_endian>::Scan::unsupported_reloc_local(
5434     Sized_relobj_file<size, big_endian>* object,
5435     unsigned int r_type)
5436 {
5437   gold_error(_("%s: unsupported reloc %u against local symbol"),
5438              object->name().c_str(), r_type);
5439 }
5440
5441 // We are about to emit a dynamic relocation of type R_TYPE.  If the
5442 // dynamic linker does not support it, issue an error.
5443
5444 template<int size, bool big_endian>
5445 void
5446 Target_powerpc<size, big_endian>::Scan::check_non_pic(Relobj* object,
5447                                                       unsigned int r_type)
5448 {
5449   gold_assert(r_type != elfcpp::R_POWERPC_NONE);
5450
5451   // These are the relocation types supported by glibc for both 32-bit
5452   // and 64-bit powerpc.
5453   switch (r_type)
5454     {
5455     case elfcpp::R_POWERPC_NONE:
5456     case elfcpp::R_POWERPC_RELATIVE:
5457     case elfcpp::R_POWERPC_GLOB_DAT:
5458     case elfcpp::R_POWERPC_DTPMOD:
5459     case elfcpp::R_POWERPC_DTPREL:
5460     case elfcpp::R_POWERPC_TPREL:
5461     case elfcpp::R_POWERPC_JMP_SLOT:
5462     case elfcpp::R_POWERPC_COPY:
5463     case elfcpp::R_POWERPC_IRELATIVE:
5464     case elfcpp::R_POWERPC_ADDR32:
5465     case elfcpp::R_POWERPC_UADDR32:
5466     case elfcpp::R_POWERPC_ADDR24:
5467     case elfcpp::R_POWERPC_ADDR16:
5468     case elfcpp::R_POWERPC_UADDR16:
5469     case elfcpp::R_POWERPC_ADDR16_LO:
5470     case elfcpp::R_POWERPC_ADDR16_HI:
5471     case elfcpp::R_POWERPC_ADDR16_HA:
5472     case elfcpp::R_POWERPC_ADDR14:
5473     case elfcpp::R_POWERPC_ADDR14_BRTAKEN:
5474     case elfcpp::R_POWERPC_ADDR14_BRNTAKEN:
5475     case elfcpp::R_POWERPC_REL32:
5476     case elfcpp::R_POWERPC_REL24:
5477     case elfcpp::R_POWERPC_TPREL16:
5478     case elfcpp::R_POWERPC_TPREL16_LO:
5479     case elfcpp::R_POWERPC_TPREL16_HI:
5480     case elfcpp::R_POWERPC_TPREL16_HA:
5481       return;
5482
5483     default:
5484       break;
5485     }
5486
5487   if (size == 64)
5488     {
5489       switch (r_type)
5490         {
5491           // These are the relocation types supported only on 64-bit.
5492         case elfcpp::R_PPC64_ADDR64:
5493         case elfcpp::R_PPC64_UADDR64:
5494         case elfcpp::R_PPC64_JMP_IREL:
5495         case elfcpp::R_PPC64_ADDR16_DS:
5496         case elfcpp::R_PPC64_ADDR16_LO_DS:
5497         case elfcpp::R_PPC64_ADDR16_HIGH:
5498         case elfcpp::R_PPC64_ADDR16_HIGHA:
5499         case elfcpp::R_PPC64_ADDR16_HIGHER:
5500         case elfcpp::R_PPC64_ADDR16_HIGHEST:
5501         case elfcpp::R_PPC64_ADDR16_HIGHERA:
5502         case elfcpp::R_PPC64_ADDR16_HIGHESTA:
5503         case elfcpp::R_PPC64_REL64:
5504         case elfcpp::R_POWERPC_ADDR30:
5505         case elfcpp::R_PPC64_TPREL16_DS:
5506         case elfcpp::R_PPC64_TPREL16_LO_DS:
5507         case elfcpp::R_PPC64_TPREL16_HIGH:
5508         case elfcpp::R_PPC64_TPREL16_HIGHA:
5509         case elfcpp::R_PPC64_TPREL16_HIGHER:
5510         case elfcpp::R_PPC64_TPREL16_HIGHEST:
5511         case elfcpp::R_PPC64_TPREL16_HIGHERA:
5512         case elfcpp::R_PPC64_TPREL16_HIGHESTA:
5513           return;
5514
5515         default:
5516           break;
5517         }
5518     }
5519   else
5520     {
5521       switch (r_type)
5522         {
5523           // These are the relocation types supported only on 32-bit.
5524           // ??? glibc ld.so doesn't need to support these.
5525         case elfcpp::R_POWERPC_DTPREL16:
5526         case elfcpp::R_POWERPC_DTPREL16_LO:
5527         case elfcpp::R_POWERPC_DTPREL16_HI:
5528         case elfcpp::R_POWERPC_DTPREL16_HA:
5529           return;
5530
5531         default:
5532           break;
5533         }
5534     }
5535
5536   // This prevents us from issuing more than one error per reloc
5537   // section.  But we can still wind up issuing more than one
5538   // error per object file.
5539   if (this->issued_non_pic_error_)
5540     return;
5541   gold_assert(parameters->options().output_is_position_independent());
5542   object->error(_("requires unsupported dynamic reloc; "
5543                   "recompile with -fPIC"));
5544   this->issued_non_pic_error_ = true;
5545   return;
5546 }
5547
5548 // Return whether we need to make a PLT entry for a relocation of the
5549 // given type against a STT_GNU_IFUNC symbol.
5550
5551 template<int size, bool big_endian>
5552 bool
5553 Target_powerpc<size, big_endian>::Scan::reloc_needs_plt_for_ifunc(
5554      Target_powerpc<size, big_endian>* target,
5555      Sized_relobj_file<size, big_endian>* object,
5556      unsigned int r_type,
5557      bool report_err)
5558 {
5559   // In non-pic code any reference will resolve to the plt call stub
5560   // for the ifunc symbol.
5561   if ((size == 32 || target->abiversion() >= 2)
5562       && !parameters->options().output_is_position_independent())
5563     return true;
5564
5565   switch (r_type)
5566     {
5567     // Word size refs from data sections are OK, but don't need a PLT entry.
5568     case elfcpp::R_POWERPC_ADDR32:
5569     case elfcpp::R_POWERPC_UADDR32:
5570       if (size == 32)
5571         return false;
5572       break;
5573
5574     case elfcpp::R_PPC64_ADDR64:
5575     case elfcpp::R_PPC64_UADDR64:
5576       if (size == 64)
5577         return false;
5578       break;
5579
5580     // GOT refs are good, but also don't need a PLT entry.
5581     case elfcpp::R_POWERPC_GOT16:
5582     case elfcpp::R_POWERPC_GOT16_LO:
5583     case elfcpp::R_POWERPC_GOT16_HI:
5584     case elfcpp::R_POWERPC_GOT16_HA:
5585     case elfcpp::R_PPC64_GOT16_DS:
5586     case elfcpp::R_PPC64_GOT16_LO_DS:
5587       return false;
5588
5589     // Function calls are good, and these do need a PLT entry.
5590     case elfcpp::R_POWERPC_ADDR24:
5591     case elfcpp::R_POWERPC_ADDR14:
5592     case elfcpp::R_POWERPC_ADDR14_BRTAKEN:
5593     case elfcpp::R_POWERPC_ADDR14_BRNTAKEN:
5594     case elfcpp::R_POWERPC_REL24:
5595     case elfcpp::R_PPC_PLTREL24:
5596     case elfcpp::R_POWERPC_REL14:
5597     case elfcpp::R_POWERPC_REL14_BRTAKEN:
5598     case elfcpp::R_POWERPC_REL14_BRNTAKEN:
5599       return true;
5600
5601     default:
5602       break;
5603     }
5604
5605   // Anything else is a problem.
5606   // If we are building a static executable, the libc startup function
5607   // responsible for applying indirect function relocations is going
5608   // to complain about the reloc type.
5609   // If we are building a dynamic executable, we will have a text
5610   // relocation.  The dynamic loader will set the text segment
5611   // writable and non-executable to apply text relocations.  So we'll
5612   // segfault when trying to run the indirection function to resolve
5613   // the reloc.
5614   if (report_err)
5615     gold_error(_("%s: unsupported reloc %u for IFUNC symbol"),
5616                object->name().c_str(), r_type);
5617   return false;
5618 }
5619
5620 // Scan a relocation for a local symbol.
5621
5622 template<int size, bool big_endian>
5623 inline void
5624 Target_powerpc<size, big_endian>::Scan::local(
5625     Symbol_table* symtab,
5626     Layout* layout,
5627     Target_powerpc<size, big_endian>* target,
5628     Sized_relobj_file<size, big_endian>* object,
5629     unsigned int data_shndx,
5630     Output_section* output_section,
5631     const elfcpp::Rela<size, big_endian>& reloc,
5632     unsigned int r_type,
5633     const elfcpp::Sym<size, big_endian>& lsym,
5634     bool is_discarded)
5635 {
5636   this->maybe_skip_tls_get_addr_call(r_type, NULL);
5637
5638   if ((size == 64 && r_type == elfcpp::R_PPC64_TLSGD)
5639       || (size == 32 && r_type == elfcpp::R_PPC_TLSGD))
5640     {
5641       this->expect_tls_get_addr_call();
5642       const tls::Tls_optimization tls_type = target->optimize_tls_gd(true);
5643       if (tls_type != tls::TLSOPT_NONE)
5644         this->skip_next_tls_get_addr_call();
5645     }
5646   else if ((size == 64 && r_type == elfcpp::R_PPC64_TLSLD)
5647            || (size == 32 && r_type == elfcpp::R_PPC_TLSLD))
5648     {
5649       this->expect_tls_get_addr_call();
5650       const tls::Tls_optimization tls_type = target->optimize_tls_ld();
5651       if (tls_type != tls::TLSOPT_NONE)
5652         this->skip_next_tls_get_addr_call();
5653     }
5654
5655   Powerpc_relobj<size, big_endian>* ppc_object
5656     = static_cast<Powerpc_relobj<size, big_endian>*>(object);
5657
5658   if (is_discarded)
5659     {
5660       if (size == 64
5661           && data_shndx == ppc_object->opd_shndx()
5662           && r_type == elfcpp::R_PPC64_ADDR64)
5663         ppc_object->set_opd_discard(reloc.get_r_offset());
5664       return;
5665     }
5666
5667   // A local STT_GNU_IFUNC symbol may require a PLT entry.
5668   bool is_ifunc = lsym.get_st_type() == elfcpp::STT_GNU_IFUNC;
5669   if (is_ifunc && this->reloc_needs_plt_for_ifunc(target, object, r_type, true))
5670     {
5671       unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info());
5672       target->push_branch(ppc_object, data_shndx, reloc.get_r_offset(),
5673                           r_type, r_sym, reloc.get_r_addend());
5674       target->make_local_ifunc_plt_entry(symtab, layout, object, r_sym);
5675     }
5676
5677   switch (r_type)
5678     {
5679     case elfcpp::R_POWERPC_NONE:
5680     case elfcpp::R_POWERPC_GNU_VTINHERIT:
5681     case elfcpp::R_POWERPC_GNU_VTENTRY:
5682     case elfcpp::R_PPC64_TOCSAVE:
5683     case elfcpp::R_POWERPC_TLS:
5684     case elfcpp::R_PPC64_ENTRY:
5685       break;
5686
5687     case elfcpp::R_PPC64_TOC:
5688       {
5689         Output_data_got_powerpc<size, big_endian>* got
5690           = target->got_section(symtab, layout);
5691         if (parameters->options().output_is_position_independent())
5692           {
5693             Address off = reloc.get_r_offset();
5694             if (size == 64
5695                 && target->abiversion() < 2
5696                 && data_shndx == ppc_object->opd_shndx()
5697                 && ppc_object->get_opd_discard(off - 8))
5698               break;
5699
5700             Reloc_section* rela_dyn = target->rela_dyn_section(layout);
5701             Powerpc_relobj<size, big_endian>* symobj = ppc_object;
5702             rela_dyn->add_output_section_relative(got->output_section(),
5703                                                   elfcpp::R_POWERPC_RELATIVE,
5704                                                   output_section,
5705                                                   object, data_shndx, off,
5706                                                   symobj->toc_base_offset());
5707           }
5708       }
5709       break;
5710
5711     case elfcpp::R_PPC64_ADDR64:
5712     case elfcpp::R_PPC64_UADDR64:
5713     case elfcpp::R_POWERPC_ADDR32:
5714     case elfcpp::R_POWERPC_UADDR32:
5715     case elfcpp::R_POWERPC_ADDR24:
5716     case elfcpp::R_POWERPC_ADDR16:
5717     case elfcpp::R_POWERPC_ADDR16_LO:
5718     case elfcpp::R_POWERPC_ADDR16_HI:
5719     case elfcpp::R_POWERPC_ADDR16_HA:
5720     case elfcpp::R_POWERPC_UADDR16:
5721     case elfcpp::R_PPC64_ADDR16_HIGH:
5722     case elfcpp::R_PPC64_ADDR16_HIGHA:
5723     case elfcpp::R_PPC64_ADDR16_HIGHER:
5724     case elfcpp::R_PPC64_ADDR16_HIGHERA:
5725     case elfcpp::R_PPC64_ADDR16_HIGHEST:
5726     case elfcpp::R_PPC64_ADDR16_HIGHESTA:
5727     case elfcpp::R_PPC64_ADDR16_DS:
5728     case elfcpp::R_PPC64_ADDR16_LO_DS:
5729     case elfcpp::R_POWERPC_ADDR14:
5730     case elfcpp::R_POWERPC_ADDR14_BRTAKEN:
5731     case elfcpp::R_POWERPC_ADDR14_BRNTAKEN:
5732       // If building a shared library (or a position-independent
5733       // executable), we need to create a dynamic relocation for
5734       // this location.
5735       if (parameters->options().output_is_position_independent()
5736           || (size == 64 && is_ifunc && target->abiversion() < 2))
5737         {
5738           Reloc_section* rela_dyn = target->rela_dyn_section(symtab, layout,
5739                                                              is_ifunc);
5740           unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info());
5741           if ((size == 32 && r_type == elfcpp::R_POWERPC_ADDR32)
5742               || (size == 64 && r_type == elfcpp::R_PPC64_ADDR64))
5743             {
5744               unsigned int dynrel = (is_ifunc ? elfcpp::R_POWERPC_IRELATIVE
5745                                      : elfcpp::R_POWERPC_RELATIVE);
5746               rela_dyn->add_local_relative(object, r_sym, dynrel,
5747                                            output_section, data_shndx,
5748                                            reloc.get_r_offset(),
5749                                            reloc.get_r_addend(), false);
5750             }
5751           else if (lsym.get_st_type() != elfcpp::STT_SECTION)
5752             {
5753               check_non_pic(object, r_type);
5754               rela_dyn->add_local(object, r_sym, r_type, output_section,
5755                                   data_shndx, reloc.get_r_offset(),
5756                                   reloc.get_r_addend());
5757             }
5758           else
5759             {
5760               gold_assert(lsym.get_st_value() == 0);
5761               unsigned int shndx = lsym.get_st_shndx();
5762               bool is_ordinary;
5763               shndx = object->adjust_sym_shndx(r_sym, shndx,
5764                                                &is_ordinary);
5765               if (!is_ordinary)
5766                 object->error(_("section symbol %u has bad shndx %u"),
5767                               r_sym, shndx);
5768               else
5769                 rela_dyn->add_local_section(object, shndx, r_type,
5770                                             output_section, data_shndx,
5771                                             reloc.get_r_offset());
5772             }
5773         }
5774       break;
5775
5776     case elfcpp::R_POWERPC_REL24:
5777     case elfcpp::R_PPC_PLTREL24:
5778     case elfcpp::R_PPC_LOCAL24PC:
5779     case elfcpp::R_POWERPC_REL14:
5780     case elfcpp::R_POWERPC_REL14_BRTAKEN:
5781     case elfcpp::R_POWERPC_REL14_BRNTAKEN:
5782       if (!is_ifunc)
5783         {
5784           unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info());
5785           target->push_branch(ppc_object, data_shndx, reloc.get_r_offset(),
5786                               r_type, r_sym, reloc.get_r_addend());
5787         }
5788       break;
5789
5790     case elfcpp::R_PPC64_REL64:
5791     case elfcpp::R_POWERPC_REL32:
5792     case elfcpp::R_POWERPC_REL16:
5793     case elfcpp::R_POWERPC_REL16_LO:
5794     case elfcpp::R_POWERPC_REL16_HI:
5795     case elfcpp::R_POWERPC_REL16_HA:
5796     case elfcpp::R_POWERPC_REL16DX_HA:
5797     case elfcpp::R_POWERPC_SECTOFF:
5798     case elfcpp::R_POWERPC_SECTOFF_LO:
5799     case elfcpp::R_POWERPC_SECTOFF_HI:
5800     case elfcpp::R_POWERPC_SECTOFF_HA:
5801     case elfcpp::R_PPC64_SECTOFF_DS:
5802     case elfcpp::R_PPC64_SECTOFF_LO_DS:
5803     case elfcpp::R_POWERPC_TPREL16:
5804     case elfcpp::R_POWERPC_TPREL16_LO:
5805     case elfcpp::R_POWERPC_TPREL16_HI:
5806     case elfcpp::R_POWERPC_TPREL16_HA:
5807     case elfcpp::R_PPC64_TPREL16_DS:
5808     case elfcpp::R_PPC64_TPREL16_LO_DS:
5809     case elfcpp::R_PPC64_TPREL16_HIGH:
5810     case elfcpp::R_PPC64_TPREL16_HIGHA:
5811     case elfcpp::R_PPC64_TPREL16_HIGHER:
5812     case elfcpp::R_PPC64_TPREL16_HIGHERA:
5813     case elfcpp::R_PPC64_TPREL16_HIGHEST:
5814     case elfcpp::R_PPC64_TPREL16_HIGHESTA:
5815     case elfcpp::R_POWERPC_DTPREL16:
5816     case elfcpp::R_POWERPC_DTPREL16_LO:
5817     case elfcpp::R_POWERPC_DTPREL16_HI:
5818     case elfcpp::R_POWERPC_DTPREL16_HA:
5819     case elfcpp::R_PPC64_DTPREL16_DS:
5820     case elfcpp::R_PPC64_DTPREL16_LO_DS:
5821     case elfcpp::R_PPC64_DTPREL16_HIGH:
5822     case elfcpp::R_PPC64_DTPREL16_HIGHA:
5823     case elfcpp::R_PPC64_DTPREL16_HIGHER:
5824     case elfcpp::R_PPC64_DTPREL16_HIGHERA:
5825     case elfcpp::R_PPC64_DTPREL16_HIGHEST:
5826     case elfcpp::R_PPC64_DTPREL16_HIGHESTA:
5827     case elfcpp::R_PPC64_TLSGD:
5828     case elfcpp::R_PPC64_TLSLD:
5829     case elfcpp::R_PPC64_ADDR64_LOCAL:
5830       break;
5831
5832     case elfcpp::R_POWERPC_GOT16:
5833     case elfcpp::R_POWERPC_GOT16_LO:
5834     case elfcpp::R_POWERPC_GOT16_HI:
5835     case elfcpp::R_POWERPC_GOT16_HA:
5836     case elfcpp::R_PPC64_GOT16_DS:
5837     case elfcpp::R_PPC64_GOT16_LO_DS:
5838       {
5839         // The symbol requires a GOT entry.
5840         Output_data_got_powerpc<size, big_endian>* got
5841           = target->got_section(symtab, layout);
5842         unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info());
5843
5844         if (!parameters->options().output_is_position_independent())
5845           {
5846             if (is_ifunc
5847                 && (size == 32 || target->abiversion() >= 2))
5848               got->add_local_plt(object, r_sym, GOT_TYPE_STANDARD);
5849             else
5850               got->add_local(object, r_sym, GOT_TYPE_STANDARD);
5851           }
5852         else if (!object->local_has_got_offset(r_sym, GOT_TYPE_STANDARD))
5853           {
5854             // If we are generating a shared object or a pie, this
5855             // symbol's GOT entry will be set by a dynamic relocation.
5856             unsigned int off;
5857             off = got->add_constant(0);
5858             object->set_local_got_offset(r_sym, GOT_TYPE_STANDARD, off);
5859
5860             Reloc_section* rela_dyn = target->rela_dyn_section(symtab, layout,
5861                                                                is_ifunc);
5862             unsigned int dynrel = (is_ifunc ? elfcpp::R_POWERPC_IRELATIVE
5863                                    : elfcpp::R_POWERPC_RELATIVE);
5864             rela_dyn->add_local_relative(object, r_sym, dynrel,
5865                                          got, off, 0, false);
5866           }
5867       }
5868       break;
5869
5870     case elfcpp::R_PPC64_TOC16:
5871     case elfcpp::R_PPC64_TOC16_LO:
5872     case elfcpp::R_PPC64_TOC16_HI:
5873     case elfcpp::R_PPC64_TOC16_HA:
5874     case elfcpp::R_PPC64_TOC16_DS:
5875     case elfcpp::R_PPC64_TOC16_LO_DS:
5876       // We need a GOT section.
5877       target->got_section(symtab, layout);
5878       break;
5879
5880     case elfcpp::R_POWERPC_GOT_TLSGD16:
5881     case elfcpp::R_POWERPC_GOT_TLSGD16_LO:
5882     case elfcpp::R_POWERPC_GOT_TLSGD16_HI:
5883     case elfcpp::R_POWERPC_GOT_TLSGD16_HA:
5884       {
5885         const tls::Tls_optimization tls_type = target->optimize_tls_gd(true);
5886         if (tls_type == tls::TLSOPT_NONE)
5887           {
5888             Output_data_got_powerpc<size, big_endian>* got
5889               = target->got_section(symtab, layout);
5890             unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info());
5891             Reloc_section* rela_dyn = target->rela_dyn_section(layout);
5892             got->add_local_tls_pair(object, r_sym, GOT_TYPE_TLSGD,
5893                                     rela_dyn, elfcpp::R_POWERPC_DTPMOD);
5894           }
5895         else if (tls_type == tls::TLSOPT_TO_LE)
5896           {
5897             // no GOT relocs needed for Local Exec.
5898           }
5899         else
5900           gold_unreachable();
5901       }
5902       break;
5903
5904     case elfcpp::R_POWERPC_GOT_TLSLD16:
5905     case elfcpp::R_POWERPC_GOT_TLSLD16_LO:
5906     case elfcpp::R_POWERPC_GOT_TLSLD16_HI:
5907     case elfcpp::R_POWERPC_GOT_TLSLD16_HA:
5908       {
5909         const tls::Tls_optimization tls_type = target->optimize_tls_ld();
5910         if (tls_type == tls::TLSOPT_NONE)
5911           target->tlsld_got_offset(symtab, layout, object);
5912         else if (tls_type == tls::TLSOPT_TO_LE)
5913           {
5914             // no GOT relocs needed for Local Exec.
5915             if (parameters->options().emit_relocs())
5916               {
5917                 Output_section* os = layout->tls_segment()->first_section();
5918                 gold_assert(os != NULL);
5919                 os->set_needs_symtab_index();
5920               }
5921           }
5922         else
5923           gold_unreachable();
5924       }
5925       break;
5926
5927     case elfcpp::R_POWERPC_GOT_DTPREL16:
5928     case elfcpp::R_POWERPC_GOT_DTPREL16_LO:
5929     case elfcpp::R_POWERPC_GOT_DTPREL16_HI:
5930     case elfcpp::R_POWERPC_GOT_DTPREL16_HA:
5931       {
5932         Output_data_got_powerpc<size, big_endian>* got
5933           = target->got_section(symtab, layout);
5934         unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info());
5935         got->add_local_tls(object, r_sym, GOT_TYPE_DTPREL);
5936       }
5937       break;
5938
5939     case elfcpp::R_POWERPC_GOT_TPREL16:
5940     case elfcpp::R_POWERPC_GOT_TPREL16_LO:
5941     case elfcpp::R_POWERPC_GOT_TPREL16_HI:
5942     case elfcpp::R_POWERPC_GOT_TPREL16_HA:
5943       {
5944         const tls::Tls_optimization tls_type = target->optimize_tls_ie(true);
5945         if (tls_type == tls::TLSOPT_NONE)
5946           {
5947             unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info());
5948             if (!object->local_has_got_offset(r_sym, GOT_TYPE_TPREL))
5949               {
5950                 Output_data_got_powerpc<size, big_endian>* got
5951                   = target->got_section(symtab, layout);
5952                 unsigned int off = got->add_constant(0);
5953                 object->set_local_got_offset(r_sym, GOT_TYPE_TPREL, off);
5954
5955                 Reloc_section* rela_dyn = target->rela_dyn_section(layout);
5956                 rela_dyn->add_symbolless_local_addend(object, r_sym,
5957                                                       elfcpp::R_POWERPC_TPREL,
5958                                                       got, off, 0);
5959               }
5960           }
5961         else if (tls_type == tls::TLSOPT_TO_LE)
5962           {
5963             // no GOT relocs needed for Local Exec.
5964           }
5965         else
5966           gold_unreachable();
5967       }
5968       break;
5969
5970     default:
5971       unsupported_reloc_local(object, r_type);
5972       break;
5973     }
5974
5975   switch (r_type)
5976     {
5977     case elfcpp::R_POWERPC_GOT_TLSLD16:
5978     case elfcpp::R_POWERPC_GOT_TLSGD16:
5979     case elfcpp::R_POWERPC_GOT_TPREL16:
5980     case elfcpp::R_POWERPC_GOT_DTPREL16:
5981     case elfcpp::R_POWERPC_GOT16:
5982     case elfcpp::R_PPC64_GOT16_DS:
5983     case elfcpp::R_PPC64_TOC16:
5984     case elfcpp::R_PPC64_TOC16_DS:
5985       ppc_object->set_has_small_toc_reloc();
5986     default:
5987       break;
5988     }
5989 }
5990
5991 // Report an unsupported relocation against a global symbol.
5992
5993 template<int size, bool big_endian>
5994 void
5995 Target_powerpc<size, big_endian>::Scan::unsupported_reloc_global(
5996     Sized_relobj_file<size, big_endian>* object,
5997     unsigned int r_type,
5998     Symbol* gsym)
5999 {
6000   gold_error(_("%s: unsupported reloc %u against global symbol %s"),
6001              object->name().c_str(), r_type, gsym->demangled_name().c_str());
6002 }
6003
6004 // Scan a relocation for a global symbol.
6005
6006 template<int size, bool big_endian>
6007 inline void
6008 Target_powerpc<size, big_endian>::Scan::global(
6009     Symbol_table* symtab,
6010     Layout* layout,
6011     Target_powerpc<size, big_endian>* target,
6012     Sized_relobj_file<size, big_endian>* object,
6013     unsigned int data_shndx,
6014     Output_section* output_section,
6015     const elfcpp::Rela<size, big_endian>& reloc,
6016     unsigned int r_type,
6017     Symbol* gsym)
6018 {
6019   if (this->maybe_skip_tls_get_addr_call(r_type, gsym) == Track_tls::SKIP)
6020     return;
6021
6022   if ((size == 64 && r_type == elfcpp::R_PPC64_TLSGD)
6023       || (size == 32 && r_type == elfcpp::R_PPC_TLSGD))
6024     {
6025       this->expect_tls_get_addr_call();
6026       const bool final = gsym->final_value_is_known();
6027       const tls::Tls_optimization tls_type = target->optimize_tls_gd(final);
6028       if (tls_type != tls::TLSOPT_NONE)
6029         this->skip_next_tls_get_addr_call();
6030     }
6031   else if ((size == 64 && r_type == elfcpp::R_PPC64_TLSLD)
6032            || (size == 32 && r_type == elfcpp::R_PPC_TLSLD))
6033     {
6034       this->expect_tls_get_addr_call();
6035       const tls::Tls_optimization tls_type = target->optimize_tls_ld();
6036       if (tls_type != tls::TLSOPT_NONE)
6037         this->skip_next_tls_get_addr_call();
6038     }
6039
6040   Powerpc_relobj<size, big_endian>* ppc_object
6041     = static_cast<Powerpc_relobj<size, big_endian>*>(object);
6042
6043   // A STT_GNU_IFUNC symbol may require a PLT entry.
6044   bool is_ifunc = gsym->type() == elfcpp::STT_GNU_IFUNC;
6045   bool pushed_ifunc = false;
6046   if (is_ifunc && this->reloc_needs_plt_for_ifunc(target, object, r_type, true))
6047     {
6048       unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info());
6049       target->push_branch(ppc_object, data_shndx, reloc.get_r_offset(),
6050                           r_type, r_sym, reloc.get_r_addend());
6051       target->make_plt_entry(symtab, layout, gsym);
6052       pushed_ifunc = true;
6053     }
6054
6055   switch (r_type)
6056     {
6057     case elfcpp::R_POWERPC_NONE:
6058     case elfcpp::R_POWERPC_GNU_VTINHERIT:
6059     case elfcpp::R_POWERPC_GNU_VTENTRY:
6060     case elfcpp::R_PPC_LOCAL24PC:
6061     case elfcpp::R_POWERPC_TLS:
6062     case elfcpp::R_PPC64_ENTRY:
6063       break;
6064
6065     case elfcpp::R_PPC64_TOC:
6066       {
6067         Output_data_got_powerpc<size, big_endian>* got
6068           = target->got_section(symtab, layout);
6069         if (parameters->options().output_is_position_independent())
6070           {
6071             Address off = reloc.get_r_offset();
6072             if (size == 64
6073                 && data_shndx == ppc_object->opd_shndx()
6074                 && ppc_object->get_opd_discard(off - 8))
6075               break;
6076
6077             Reloc_section* rela_dyn = target->rela_dyn_section(layout);
6078             Powerpc_relobj<size, big_endian>* symobj = ppc_object;
6079             if (data_shndx != ppc_object->opd_shndx())
6080               symobj = static_cast
6081                 <Powerpc_relobj<size, big_endian>*>(gsym->object());
6082             rela_dyn->add_output_section_relative(got->output_section(),
6083                                                   elfcpp::R_POWERPC_RELATIVE,
6084                                                   output_section,
6085                                                   object, data_shndx, off,
6086                                                   symobj->toc_base_offset());
6087           }
6088       }
6089       break;
6090
6091     case elfcpp::R_PPC64_ADDR64:
6092       if (size == 64
6093           && target->abiversion() < 2
6094           && data_shndx == ppc_object->opd_shndx()
6095           && (gsym->is_defined_in_discarded_section()
6096               || gsym->object() != object))
6097         {
6098           ppc_object->set_opd_discard(reloc.get_r_offset());
6099           break;
6100         }
6101       // Fall through.
6102     case elfcpp::R_PPC64_UADDR64:
6103     case elfcpp::R_POWERPC_ADDR32:
6104     case elfcpp::R_POWERPC_UADDR32:
6105     case elfcpp::R_POWERPC_ADDR24:
6106     case elfcpp::R_POWERPC_ADDR16:
6107     case elfcpp::R_POWERPC_ADDR16_LO:
6108     case elfcpp::R_POWERPC_ADDR16_HI:
6109     case elfcpp::R_POWERPC_ADDR16_HA:
6110     case elfcpp::R_POWERPC_UADDR16:
6111     case elfcpp::R_PPC64_ADDR16_HIGH:
6112     case elfcpp::R_PPC64_ADDR16_HIGHA:
6113     case elfcpp::R_PPC64_ADDR16_HIGHER:
6114     case elfcpp::R_PPC64_ADDR16_HIGHERA:
6115     case elfcpp::R_PPC64_ADDR16_HIGHEST:
6116     case elfcpp::R_PPC64_ADDR16_HIGHESTA:
6117     case elfcpp::R_PPC64_ADDR16_DS:
6118     case elfcpp::R_PPC64_ADDR16_LO_DS:
6119     case elfcpp::R_POWERPC_ADDR14:
6120     case elfcpp::R_POWERPC_ADDR14_BRTAKEN:
6121     case elfcpp::R_POWERPC_ADDR14_BRNTAKEN:
6122       {
6123         // Make a PLT entry if necessary.
6124         if (gsym->needs_plt_entry())
6125           {
6126             // Since this is not a PC-relative relocation, we may be
6127             // taking the address of a function. In that case we need to
6128             // set the entry in the dynamic symbol table to the address of
6129             // the PLT call stub.
6130             bool need_ifunc_plt = false;
6131             if ((size == 32 || target->abiversion() >= 2)
6132                 && gsym->is_from_dynobj()
6133                 && !parameters->options().output_is_position_independent())
6134               {
6135                 gsym->set_needs_dynsym_value();
6136                 need_ifunc_plt = true;
6137               }
6138             if (!is_ifunc || (!pushed_ifunc && need_ifunc_plt))
6139               {
6140                 unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info());
6141                 target->push_branch(ppc_object, data_shndx,
6142                                     reloc.get_r_offset(), r_type, r_sym,
6143                                     reloc.get_r_addend());
6144                 target->make_plt_entry(symtab, layout, gsym);
6145               }
6146           }
6147         // Make a dynamic relocation if necessary.
6148         if (gsym->needs_dynamic_reloc(Scan::get_reference_flags(r_type, target))
6149             || (size == 64 && is_ifunc && target->abiversion() < 2))
6150           {
6151             if (!parameters->options().output_is_position_independent()
6152                 && gsym->may_need_copy_reloc())
6153               {
6154                 target->copy_reloc(symtab, layout, object,
6155                                    data_shndx, output_section, gsym, reloc);
6156               }
6157             else if ((((size == 32
6158                         && r_type == elfcpp::R_POWERPC_ADDR32)
6159                        || (size == 64
6160                            && r_type == elfcpp::R_PPC64_ADDR64
6161                            && target->abiversion() >= 2))
6162                       && gsym->can_use_relative_reloc(false)
6163                       && !(gsym->visibility() == elfcpp::STV_PROTECTED
6164                            && parameters->options().shared()))
6165                      || (size == 64
6166                          && r_type == elfcpp::R_PPC64_ADDR64
6167                          && target->abiversion() < 2
6168                          && (gsym->can_use_relative_reloc(false)
6169                              || data_shndx == ppc_object->opd_shndx())))
6170               {
6171                 Reloc_section* rela_dyn
6172                   = target->rela_dyn_section(symtab, layout, is_ifunc);
6173                 unsigned int dynrel = (is_ifunc ? elfcpp::R_POWERPC_IRELATIVE
6174                                        : elfcpp::R_POWERPC_RELATIVE);
6175                 rela_dyn->add_symbolless_global_addend(
6176                     gsym, dynrel, output_section, object, data_shndx,
6177                     reloc.get_r_offset(), reloc.get_r_addend());
6178               }
6179             else
6180               {
6181                 Reloc_section* rela_dyn
6182                   = target->rela_dyn_section(symtab, layout, is_ifunc);
6183                 check_non_pic(object, r_type);
6184                 rela_dyn->add_global(gsym, r_type, output_section,
6185                                      object, data_shndx,
6186                                      reloc.get_r_offset(),
6187                                      reloc.get_r_addend());
6188               }
6189           }
6190       }
6191       break;
6192
6193     case elfcpp::R_PPC_PLTREL24:
6194     case elfcpp::R_POWERPC_REL24:
6195       if (!is_ifunc)
6196         {
6197           unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info());
6198           target->push_branch(ppc_object, data_shndx, reloc.get_r_offset(),
6199                               r_type, r_sym, reloc.get_r_addend());
6200           if (gsym->needs_plt_entry()
6201               || (!gsym->final_value_is_known()
6202                   && (gsym->is_undefined()
6203                       || gsym->is_from_dynobj()
6204                       || gsym->is_preemptible())))
6205             target->make_plt_entry(symtab, layout, gsym);
6206         }
6207       // Fall through.
6208
6209     case elfcpp::R_PPC64_REL64:
6210     case elfcpp::R_POWERPC_REL32:
6211       // Make a dynamic relocation if necessary.
6212       if (gsym->needs_dynamic_reloc(Scan::get_reference_flags(r_type, target)))
6213         {
6214           if (!parameters->options().output_is_position_independent()
6215               && gsym->may_need_copy_reloc())
6216             {
6217               target->copy_reloc(symtab, layout, object,
6218                                  data_shndx, output_section, gsym,
6219                                  reloc);
6220             }
6221           else
6222             {
6223               Reloc_section* rela_dyn
6224                 = target->rela_dyn_section(symtab, layout, is_ifunc);
6225               check_non_pic(object, r_type);
6226               rela_dyn->add_global(gsym, r_type, output_section, object,
6227                                    data_shndx, reloc.get_r_offset(),
6228                                    reloc.get_r_addend());
6229             }
6230         }
6231       break;
6232
6233     case elfcpp::R_POWERPC_REL14:
6234     case elfcpp::R_POWERPC_REL14_BRTAKEN:
6235     case elfcpp::R_POWERPC_REL14_BRNTAKEN:
6236       if (!is_ifunc)
6237         {
6238           unsigned int r_sym = elfcpp::elf_r_sym<size>(reloc.get_r_info());
6239           target->push_branch(ppc_object, data_shndx, reloc.get_r_offset(),
6240                               r_type, r_sym, reloc.get_r_addend());
6241         }
6242       break;
6243
6244     case elfcpp::R_POWERPC_REL16:
6245     case elfcpp::R_POWERPC_REL16_LO:
6246     case elfcpp::R_POWERPC_REL16_HI:
6247     case elfcpp::R_POWERPC_REL16_HA:
6248     case elfcpp::R_POWERPC_REL16DX_HA:
6249     case elfcpp::R_POWERPC_SECTOFF:
6250     case elfcpp::R_POWERPC_SECTOFF_LO:
6251     case elfcpp::R_POWERPC_SECTOFF_HI:
6252     case elfcpp::R_POWERPC_SECTOFF_HA:
6253     case elfcpp::R_PPC64_SECTOFF_DS:
6254     case elfcpp::R_PPC64_SECTOFF_LO_DS:
6255     case elfcpp::R_POWERPC_TPREL16:
6256     case elfcpp::R_POWERPC_TPREL16_LO:
6257     case elfcpp::R_POWERPC_TPREL16_HI:
6258     case elfcpp::R_POWERPC_TPREL16_HA:
6259     case elfcpp::R_PPC64_TPREL16_DS:
6260     case elfcpp::R_PPC64_TPREL16_LO_DS:
6261     case elfcpp::R_PPC64_TPREL16_HIGH:
6262     case elfcpp::R_PPC64_TPREL16_HIGHA:
6263     case elfcpp::R_PPC64_TPREL16_HIGHER:
6264     case elfcpp::R_PPC64_TPREL16_HIGHERA:
6265     case elfcpp::R_PPC64_TPREL16_HIGHEST:
6266     case elfcpp::R_PPC64_TPREL16_HIGHESTA:
6267     case elfcpp::R_POWERPC_DTPREL16:
6268     case elfcpp::R_POWERPC_DTPREL16_LO:
6269     case elfcpp::R_POWERPC_DTPREL16_HI:
6270     case elfcpp::R_POWERPC_DTPREL16_HA:
6271     case elfcpp::R_PPC64_DTPREL16_DS:
6272     case elfcpp::R_PPC64_DTPREL16_LO_DS:
6273     case elfcpp::R_PPC64_DTPREL16_HIGH:
6274     case elfcpp::R_PPC64_DTPREL16_HIGHA:
6275     case elfcpp::R_PPC64_DTPREL16_HIGHER:
6276     case elfcpp::R_PPC64_DTPREL16_HIGHERA:
6277     case elfcpp::R_PPC64_DTPREL16_HIGHEST:
6278     case elfcpp::R_PPC64_DTPREL16_HIGHESTA:
6279     case elfcpp::R_PPC64_TLSGD:
6280     case elfcpp::R_PPC64_TLSLD:
6281     case elfcpp::R_PPC64_ADDR64_LOCAL:
6282       break;
6283
6284     case elfcpp::R_POWERPC_GOT16:
6285     case elfcpp::R_POWERPC_GOT16_LO:
6286     case elfcpp::R_POWERPC_GOT16_HI:
6287     case elfcpp::R_POWERPC_GOT16_HA:
6288     case elfcpp::R_PPC64_GOT16_DS:
6289     case elfcpp::R_PPC64_GOT16_LO_DS:
6290       {
6291         // The symbol requires a GOT entry.
6292         Output_data_got_powerpc<size, big_endian>* got;
6293
6294         got = target->got_section(symtab, layout);
6295         if (gsym->final_value_is_known())
6296           {
6297             if (is_ifunc
6298                 && (size == 32 || target->abiversion() >= 2))
6299               got->add_global_plt(gsym, GOT_TYPE_STANDARD);
6300             else
6301               got->add_global(gsym, GOT_TYPE_STANDARD);
6302           }
6303         else if (!gsym->has_got_offset(GOT_TYPE_STANDARD))
6304           {
6305             // If we are generating a shared object or a pie, this
6306             // symbol's GOT entry will be set by a dynamic relocation.
6307             unsigned int off = got->add_constant(0);
6308             gsym->set_got_offset(GOT_TYPE_STANDARD, off);
6309
6310             Reloc_section* rela_dyn
6311               = target->rela_dyn_section(symtab, layout, is_ifunc);
6312
6313             if (gsym->can_use_relative_reloc(false)
6314                 && !((size == 32
6315                       || target->abiversion() >= 2)
6316                      && gsym->visibility() == elfcpp::STV_PROTECTED
6317                      && parameters->options().shared()))
6318               {
6319                 unsigned int dynrel = (is_ifunc ? elfcpp::R_POWERPC_IRELATIVE
6320                                        : elfcpp::R_POWERPC_RELATIVE);
6321                 rela_dyn->add_global_relative(gsym, dynrel, got, off, 0, false);
6322               }
6323             else
6324               {
6325                 unsigned int dynrel = elfcpp::R_POWERPC_GLOB_DAT;
6326                 rela_dyn->add_global(gsym, dynrel, got, off, 0);
6327               }
6328           }
6329       }
6330       break;
6331
6332     case elfcpp::R_PPC64_TOC16:
6333     case elfcpp::R_PPC64_TOC16_LO:
6334     case elfcpp::R_PPC64_TOC16_HI:
6335     case elfcpp::R_PPC64_TOC16_HA:
6336     case elfcpp::R_PPC64_TOC16_DS:
6337     case elfcpp::R_PPC64_TOC16_LO_DS:
6338       // We need a GOT section.
6339       target->got_section(symtab, layout);
6340       break;
6341
6342     case elfcpp::R_POWERPC_GOT_TLSGD16:
6343     case elfcpp::R_POWERPC_GOT_TLSGD16_LO:
6344     case elfcpp::R_POWERPC_GOT_TLSGD16_HI:
6345     case elfcpp::R_POWERPC_GOT_TLSGD16_HA:
6346       {
6347         const bool final = gsym->final_value_is_known();
6348         const tls::Tls_optimization tls_type = target->optimize_tls_gd(final);
6349         if (tls_type == tls::TLSOPT_NONE)
6350           {
6351             Output_data_got_powerpc<size, big_endian>* got
6352               = target->got_section(symtab, layout);
6353             Reloc_section* rela_dyn = target->rela_dyn_section(layout);
6354             got->add_global_pair_with_rel(gsym, GOT_TYPE_TLSGD, rela_dyn,
6355                                           elfcpp::R_POWERPC_DTPMOD,
6356                                           elfcpp::R_POWERPC_DTPREL);
6357           }
6358         else if (tls_type == tls::TLSOPT_TO_IE)
6359           {
6360             if (!gsym->has_got_offset(GOT_TYPE_TPREL))
6361               {
6362                 Output_data_got_powerpc<size, big_endian>* got
6363                   = target->got_section(symtab, layout);
6364                 Reloc_section* rela_dyn = target->rela_dyn_section(layout);
6365                 if (gsym->is_undefined()
6366                     || gsym->is_from_dynobj())
6367                   {
6368                     got->add_global_with_rel(gsym, GOT_TYPE_TPREL, rela_dyn,
6369                                              elfcpp::R_POWERPC_TPREL);
6370                   }
6371                 else
6372                   {
6373                     unsigned int off = got->add_constant(0);
6374                     gsym->set_got_offset(GOT_TYPE_TPREL, off);
6375                     unsigned int dynrel = elfcpp::R_POWERPC_TPREL;
6376                     rela_dyn->add_symbolless_global_addend(gsym, dynrel,
6377                                                            got, off, 0);
6378                   }
6379               }
6380           }
6381         else if (tls_type == tls::TLSOPT_TO_LE)
6382           {
6383             // no GOT relocs needed for Local Exec.
6384           }
6385         else
6386           gold_unreachable();
6387       }
6388       break;
6389
6390     case elfcpp::R_POWERPC_GOT_TLSLD16:
6391     case elfcpp::R_POWERPC_GOT_TLSLD16_LO:
6392     case elfcpp::R_POWERPC_GOT_TLSLD16_HI:
6393     case elfcpp::R_POWERPC_GOT_TLSLD16_HA:
6394       {
6395         const tls::Tls_optimization tls_type = target->optimize_tls_ld();
6396         if (tls_type == tls::TLSOPT_NONE)
6397           target->tlsld_got_offset(symtab, layout, object);
6398         else if (tls_type == tls::TLSOPT_TO_LE)
6399           {
6400             // no GOT relocs needed for Local Exec.
6401             if (parameters->options().emit_relocs())
6402               {
6403                 Output_section* os = layout->tls_segment()->first_section();
6404                 gold_assert(os != NULL);
6405                 os->set_needs_symtab_index();
6406               }
6407           }
6408         else
6409           gold_unreachable();
6410       }
6411       break;
6412
6413     case elfcpp::R_POWERPC_GOT_DTPREL16:
6414     case elfcpp::R_POWERPC_GOT_DTPREL16_LO:
6415     case elfcpp::R_POWERPC_GOT_DTPREL16_HI:
6416     case elfcpp::R_POWERPC_GOT_DTPREL16_HA:
6417       {
6418         Output_data_got_powerpc<size, big_endian>* got
6419           = target->got_section(symtab, layout);
6420         if (!gsym->final_value_is_known()
6421             && (gsym->is_from_dynobj()
6422                 || gsym->is_undefined()
6423                 || gsym->is_preemptible()))
6424           got->add_global_with_rel(gsym, GOT_TYPE_DTPREL,
6425                                    target->rela_dyn_section(layout),
6426                                    elfcpp::R_POWERPC_DTPREL);
6427         else
6428           got->add_global_tls(gsym, GOT_TYPE_DTPREL);
6429       }
6430       break;
6431
6432     case elfcpp::R_POWERPC_GOT_TPREL16:
6433     case elfcpp::R_POWERPC_GOT_TPREL16_LO:
6434     case elfcpp::R_POWERPC_GOT_TPREL16_HI:
6435     case elfcpp::R_POWERPC_GOT_TPREL16_HA:
6436       {
6437         const bool final = gsym->final_value_is_known();
6438         const tls::Tls_optimization tls_type = target->optimize_tls_ie(final);
6439         if (tls_type == tls::TLSOPT_NONE)
6440           {
6441             if (!gsym->has_got_offset(GOT_TYPE_TPREL))
6442               {
6443                 Output_data_got_powerpc<size, big_endian>* got
6444                   = target->got_section(symtab, layout);
6445                 Reloc_section* rela_dyn = target->rela_dyn_section(layout);
6446                 if (gsym->is_undefined()
6447                     || gsym->is_from_dynobj())
6448                   {
6449                     got->add_global_with_rel(gsym, GOT_TYPE_TPREL, rela_dyn,
6450                                              elfcpp::R_POWERPC_TPREL);
6451                   }
6452                 else
6453                   {
6454                     unsigned int off = got->add_constant(0);
6455                     gsym->set_got_offset(GOT_TYPE_TPREL, off);
6456                     unsigned int dynrel = elfcpp::R_POWERPC_TPREL;
6457                     rela_dyn->add_symbolless_global_addend(gsym, dynrel,
6458                                                            got, off, 0);
6459                   }
6460               }
6461           }
6462         else if (tls_type == tls::TLSOPT_TO_LE)
6463           {
6464             // no GOT relocs needed for Local Exec.
6465           }
6466         else
6467           gold_unreachable();
6468       }
6469       break;
6470
6471     default:
6472       unsupported_reloc_global(object, r_type, gsym);
6473       break;
6474     }
6475
6476   switch (r_type)
6477     {
6478     case elfcpp::R_POWERPC_GOT_TLSLD16:
6479     case elfcpp::R_POWERPC_GOT_TLSGD16:
6480     case elfcpp::R_POWERPC_GOT_TPREL16:
6481     case elfcpp::R_POWERPC_GOT_DTPREL16:
6482     case elfcpp::R_POWERPC_GOT16:
6483     case elfcpp::R_PPC64_GOT16_DS:
6484     case elfcpp::R_PPC64_TOC16:
6485     case elfcpp::R_PPC64_TOC16_DS:
6486       ppc_object->set_has_small_toc_reloc();
6487     default:
6488       break;
6489     }
6490 }
6491
6492 // Process relocations for gc.
6493
6494 template<int size, bool big_endian>
6495 void
6496 Target_powerpc<size, big_endian>::gc_process_relocs(
6497     Symbol_table* symtab,
6498     Layout* layout,
6499     Sized_relobj_file<size, big_endian>* object,
6500     unsigned int data_shndx,
6501     unsigned int,
6502     const unsigned char* prelocs,
6503     size_t reloc_count,
6504     Output_section* output_section,
6505     bool needs_special_offset_handling,
6506     size_t local_symbol_count,
6507     const unsigned char* plocal_symbols)
6508 {
6509   typedef Target_powerpc<size, big_endian> Powerpc;
6510   typedef gold::Default_classify_reloc<elfcpp::SHT_RELA, size, big_endian>
6511       Classify_reloc;
6512
6513   Powerpc_relobj<size, big_endian>* ppc_object
6514     = static_cast<Powerpc_relobj<size, big_endian>*>(object);
6515   if (size == 64)
6516     ppc_object->set_opd_valid();
6517   if (size == 64 && data_shndx == ppc_object->opd_shndx())
6518     {
6519       typename Powerpc_relobj<size, big_endian>::Access_from::iterator p;
6520       for (p = ppc_object->access_from_map()->begin();
6521            p != ppc_object->access_from_map()->end();
6522            ++p)
6523         {
6524           Address dst_off = p->first;
6525           unsigned int dst_indx = ppc_object->get_opd_ent(dst_off);
6526           typename Powerpc_relobj<size, big_endian>::Section_refs::iterator s;
6527           for (s = p->second.begin(); s != p->second.end(); ++s)
6528             {
6529               Relobj* src_obj = s->first;
6530               unsigned int src_indx = s->second;
6531               symtab->gc()->add_reference(src_obj, src_indx,
6532                                           ppc_object, dst_indx);
6533             }
6534           p->second.clear();
6535         }
6536       ppc_object->access_from_map()->clear();
6537       ppc_object->process_gc_mark(symtab);
6538       // Don't look at .opd relocs as .opd will reference everything.
6539       return;
6540     }
6541
6542   gold::gc_process_relocs<size, big_endian, Powerpc, Scan, Classify_reloc>(
6543     symtab,
6544     layout,
6545     this,
6546     object,
6547     data_shndx,
6548     prelocs,
6549     reloc_count,
6550     output_section,
6551     needs_special_offset_handling,
6552     local_symbol_count,
6553     plocal_symbols);
6554 }
6555
6556 // Handle target specific gc actions when adding a gc reference from
6557 // SRC_OBJ, SRC_SHNDX to a location specified by DST_OBJ, DST_SHNDX
6558 // and DST_OFF.  For powerpc64, this adds a referenc to the code
6559 // section of a function descriptor.
6560
6561 template<int size, bool big_endian>
6562 void
6563 Target_powerpc<size, big_endian>::do_gc_add_reference(
6564     Symbol_table* symtab,
6565     Relobj* src_obj,
6566     unsigned int src_shndx,
6567     Relobj* dst_obj,
6568     unsigned int dst_shndx,
6569     Address dst_off) const
6570 {
6571   if (size != 64 || dst_obj->is_dynamic())
6572     return;
6573
6574   Powerpc_relobj<size, big_endian>* ppc_object
6575     = static_cast<Powerpc_relobj<size, big_endian>*>(dst_obj);
6576   if (dst_shndx != 0 && dst_shndx == ppc_object->opd_shndx())
6577     {
6578       if (ppc_object->opd_valid())
6579         {
6580           dst_shndx = ppc_object->get_opd_ent(dst_off);
6581           symtab->gc()->add_reference(src_obj, src_shndx, dst_obj, dst_shndx);
6582         }
6583       else
6584         {
6585           // If we haven't run scan_opd_relocs, we must delay
6586           // processing this function descriptor reference.
6587           ppc_object->add_reference(src_obj, src_shndx, dst_off);
6588         }
6589     }
6590 }
6591
6592 // Add any special sections for this symbol to the gc work list.
6593 // For powerpc64, this adds the code section of a function
6594 // descriptor.
6595
6596 template<int size, bool big_endian>
6597 void
6598 Target_powerpc<size, big_endian>::do_gc_mark_symbol(
6599     Symbol_table* symtab,
6600     Symbol* sym) const
6601 {
6602   if (size == 64)
6603     {
6604       Powerpc_relobj<size, big_endian>* ppc_object
6605         = static_cast<Powerpc_relobj<size, big_endian>*>(sym->object());
6606       bool is_ordinary;
6607       unsigned int shndx = sym->shndx(&is_ordinary);
6608       if (is_ordinary && shndx != 0 && shndx == ppc_object->opd_shndx())
6609         {
6610           Sized_symbol<size>* gsym = symtab->get_sized_symbol<size>(sym);
6611           Address dst_off = gsym->value();
6612           if (ppc_object->opd_valid())
6613             {
6614               unsigned int dst_indx = ppc_object->get_opd_ent(dst_off);
6615               symtab->gc()->worklist().push_back(Section_id(ppc_object,
6616                                                             dst_indx));
6617             }
6618           else
6619             ppc_object->add_gc_mark(dst_off);
6620         }
6621     }
6622 }
6623
6624 // For a symbol location in .opd, set LOC to the location of the
6625 // function entry.
6626
6627 template<int size, bool big_endian>
6628 void
6629 Target_powerpc<size, big_endian>::do_function_location(
6630     Symbol_location* loc) const
6631 {
6632   if (size == 64 && loc->shndx != 0)
6633     {
6634       if (loc->object->is_dynamic())
6635         {
6636           Powerpc_dynobj<size, big_endian>* ppc_object
6637             = static_cast<Powerpc_dynobj<size, big_endian>*>(loc->object);
6638           if (loc->shndx == ppc_object->opd_shndx())
6639             {
6640               Address dest_off;
6641               Address off = loc->offset - ppc_object->opd_address();
6642               loc->shndx = ppc_object->get_opd_ent(off, &dest_off);
6643               loc->offset = dest_off;
6644             }
6645         }
6646       else
6647         {
6648           const Powerpc_relobj<size, big_endian>* ppc_object
6649             = static_cast<const Powerpc_relobj<size, big_endian>*>(loc->object);
6650           if (loc->shndx == ppc_object->opd_shndx())
6651             {
6652               Address dest_off;
6653               loc->shndx = ppc_object->get_opd_ent(loc->offset, &dest_off);
6654               loc->offset = dest_off;
6655             }
6656         }
6657     }
6658 }
6659
6660 // FNOFFSET in section SHNDX in OBJECT is the start of a function
6661 // compiled with -fsplit-stack.  The function calls non-split-stack
6662 // code.  Change the function to ensure it has enough stack space to
6663 // call some random function.
6664
6665 template<int size, bool big_endian>
6666 void
6667 Target_powerpc<size, big_endian>::do_calls_non_split(
6668     Relobj* object,
6669     unsigned int shndx,
6670     section_offset_type fnoffset,
6671     section_size_type fnsize,
6672     const unsigned char* prelocs,
6673     size_t reloc_count,
6674     unsigned char* view,
6675     section_size_type view_size,
6676     std::string* from,
6677     std::string* to) const
6678 {
6679   // 32-bit not supported.
6680   if (size == 32)
6681     {
6682       // warn
6683       Target::do_calls_non_split(object, shndx, fnoffset, fnsize,
6684                                  prelocs, reloc_count, view, view_size,
6685                                  from, to);
6686       return;
6687     }
6688
6689   // The function always starts with
6690   //    ld %r0,-0x7000-64(%r13)  # tcbhead_t.__private_ss
6691   //    addis %r12,%r1,-allocate@ha
6692   //    addi %r12,%r12,-allocate@l
6693   //    cmpld %r12,%r0
6694   // but note that the addis or addi may be replaced with a nop
6695
6696   unsigned char *entry = view + fnoffset;
6697   uint32_t insn = elfcpp::Swap<32, big_endian>::readval(entry);
6698
6699   if ((insn & 0xffff0000) == addis_2_12)
6700     {
6701       /* Skip ELFv2 global entry code.  */
6702       entry += 8;
6703       insn = elfcpp::Swap<32, big_endian>::readval(entry);
6704     }
6705
6706   unsigned char *pinsn = entry;
6707   bool ok = false;
6708   const uint32_t ld_private_ss = 0xe80d8fc0;
6709   if (insn == ld_private_ss)
6710     {
6711       int32_t allocate = 0;
6712       while (1)
6713         {
6714           pinsn += 4;
6715           insn = elfcpp::Swap<32, big_endian>::readval(pinsn);
6716           if ((insn & 0xffff0000) == addis_12_1)
6717             allocate += (insn & 0xffff) << 16;
6718           else if ((insn & 0xffff0000) == addi_12_1
6719                    || (insn & 0xffff0000) == addi_12_12)
6720             allocate += ((insn & 0xffff) ^ 0x8000) - 0x8000;
6721           else if (insn != nop)
6722             break;
6723         }
6724       if (insn == cmpld_7_12_0 && pinsn == entry + 12)
6725         {
6726           int extra = parameters->options().split_stack_adjust_size();
6727           allocate -= extra;
6728           if (allocate >= 0 || extra < 0)
6729             {
6730               object->error(_("split-stack stack size overflow at "
6731                               "section %u offset %0zx"),
6732                             shndx, static_cast<size_t>(fnoffset));
6733               return;
6734             }
6735           pinsn = entry + 4;
6736           insn = addis_12_1 | (((allocate + 0x8000) >> 16) & 0xffff);
6737           if (insn != addis_12_1)
6738             {
6739               elfcpp::Swap<32, big_endian>::writeval(pinsn, insn);
6740               pinsn += 4;
6741               insn = addi_12_12 | (allocate & 0xffff);
6742               if (insn != addi_12_12)
6743                 {
6744                   elfcpp::Swap<32, big_endian>::writeval(pinsn, insn);
6745                   pinsn += 4;
6746                 }
6747             }
6748           else
6749             {
6750               insn = addi_12_1 | (allocate & 0xffff);
6751               elfcpp::Swap<32, big_endian>::writeval(pinsn, insn);
6752               pinsn += 4;
6753             }
6754           if (pinsn != entry + 12)
6755             elfcpp::Swap<32, big_endian>::writeval(pinsn, nop);
6756
6757           ok = true;
6758         }
6759     }
6760
6761   if (!ok)
6762     {
6763       if (!object->has_no_split_stack())
6764         object->error(_("failed to match split-stack sequence at "
6765                         "section %u offset %0zx"),
6766                       shndx, static_cast<size_t>(fnoffset));
6767     }
6768 }
6769
6770 // Scan relocations for a section.
6771
6772 template<int size, bool big_endian>
6773 void
6774 Target_powerpc<size, big_endian>::scan_relocs(
6775     Symbol_table* symtab,
6776     Layout* layout,
6777     Sized_relobj_file<size, big_endian>* object,
6778     unsigned int data_shndx,
6779     unsigned int sh_type,
6780     const unsigned char* prelocs,
6781     size_t reloc_count,
6782     Output_section* output_section,
6783     bool needs_special_offset_handling,
6784     size_t local_symbol_count,
6785     const unsigned char* plocal_symbols)
6786 {
6787   typedef Target_powerpc<size, big_endian> Powerpc;
6788   typedef gold::Default_classify_reloc<elfcpp::SHT_RELA, size, big_endian>
6789       Classify_reloc;
6790
6791   if (sh_type == elfcpp::SHT_REL)
6792     {
6793       gold_error(_("%s: unsupported REL reloc section"),
6794                  object->name().c_str());
6795       return;
6796     }
6797
6798   gold::scan_relocs<size, big_endian, Powerpc, Scan, Classify_reloc>(
6799     symtab,
6800     layout,
6801     this,
6802     object,
6803     data_shndx,
6804     prelocs,
6805     reloc_count,
6806     output_section,
6807     needs_special_offset_handling,
6808     local_symbol_count,
6809     plocal_symbols);
6810 }
6811
6812 // Functor class for processing the global symbol table.
6813 // Removes symbols defined on discarded opd entries.
6814
6815 template<bool big_endian>
6816 class Global_symbol_visitor_opd
6817 {
6818  public:
6819   Global_symbol_visitor_opd()
6820   { }
6821
6822   void
6823   operator()(Sized_symbol<64>* sym)
6824   {
6825     if (sym->has_symtab_index()
6826         || sym->source() != Symbol::FROM_OBJECT
6827         || !sym->in_real_elf())
6828       return;
6829
6830     if (sym->object()->is_dynamic())
6831       return;
6832
6833     Powerpc_relobj<64, big_endian>* symobj
6834       = static_cast<Powerpc_relobj<64, big_endian>*>(sym->object());
6835     if (symobj->opd_shndx() == 0)
6836       return;
6837
6838     bool is_ordinary;
6839     unsigned int shndx = sym->shndx(&is_ordinary);
6840     if (shndx == symobj->opd_shndx()
6841         && symobj->get_opd_discard(sym->value()))
6842       {
6843         sym->set_undefined();
6844         sym->set_visibility(elfcpp::STV_DEFAULT);
6845         sym->set_is_defined_in_discarded_section();
6846         sym->set_symtab_index(-1U);
6847       }
6848   }
6849 };
6850
6851 template<int size, bool big_endian>
6852 void
6853 Target_powerpc<size, big_endian>::define_save_restore_funcs(
6854     Layout* layout,
6855     Symbol_table* symtab)
6856 {
6857   if (size == 64)
6858     {
6859       Output_data_save_res<size, big_endian>* savres
6860         = new Output_data_save_res<size, big_endian>(symtab);
6861       this->savres_section_ = savres;
6862       layout->add_output_section_data(".text", elfcpp::SHT_PROGBITS,
6863                                       elfcpp::SHF_ALLOC | elfcpp::SHF_EXECINSTR,
6864                                       savres, ORDER_TEXT, false);
6865     }
6866 }
6867
6868 // Sort linker created .got section first (for the header), then input
6869 // sections belonging to files using small model code.
6870
6871 template<bool big_endian>
6872 class Sort_toc_sections
6873 {
6874  public:
6875   bool
6876   operator()(const Output_section::Input_section& is1,
6877              const Output_section::Input_section& is2) const
6878   {
6879     if (!is1.is_input_section() && is2.is_input_section())
6880       return true;
6881     bool small1
6882       = (is1.is_input_section()
6883          && (static_cast<const Powerpc_relobj<64, big_endian>*>(is1.relobj())
6884              ->has_small_toc_reloc()));
6885     bool small2
6886       = (is2.is_input_section()
6887          && (static_cast<const Powerpc_relobj<64, big_endian>*>(is2.relobj())
6888              ->has_small_toc_reloc()));
6889     return small1 && !small2;
6890   }
6891 };
6892
6893 // Finalize the sections.
6894
6895 template<int size, bool big_endian>
6896 void
6897 Target_powerpc<size, big_endian>::do_finalize_sections(
6898     Layout* layout,
6899     const Input_objects*,
6900     Symbol_table* symtab)
6901 {
6902   if (parameters->doing_static_link())
6903     {
6904       // At least some versions of glibc elf-init.o have a strong
6905       // reference to __rela_iplt marker syms.  A weak ref would be
6906       // better..
6907       if (this->iplt_ != NULL)
6908         {
6909           Reloc_section* rel = this->iplt_->rel_plt();
6910           symtab->define_in_output_data("__rela_iplt_start", NULL,
6911                                         Symbol_table::PREDEFINED, rel, 0, 0,
6912                                         elfcpp::STT_NOTYPE, elfcpp::STB_GLOBAL,
6913                                         elfcpp::STV_HIDDEN, 0, false, true);
6914           symtab->define_in_output_data("__rela_iplt_end", NULL,
6915                                         Symbol_table::PREDEFINED, rel, 0, 0,
6916                                         elfcpp::STT_NOTYPE, elfcpp::STB_GLOBAL,
6917                                         elfcpp::STV_HIDDEN, 0, true, true);
6918         }
6919       else
6920         {
6921           symtab->define_as_constant("__rela_iplt_start", NULL,
6922                                      Symbol_table::PREDEFINED, 0, 0,
6923                                      elfcpp::STT_NOTYPE, elfcpp::STB_GLOBAL,
6924                                      elfcpp::STV_HIDDEN, 0, true, false);
6925           symtab->define_as_constant("__rela_iplt_end", NULL,
6926                                      Symbol_table::PREDEFINED, 0, 0,
6927                                      elfcpp::STT_NOTYPE, elfcpp::STB_GLOBAL,
6928                                      elfcpp::STV_HIDDEN, 0, true, false);
6929         }
6930     }
6931
6932   if (size == 64)
6933     {
6934       typedef Global_symbol_visitor_opd<big_endian> Symbol_visitor;
6935       symtab->for_all_symbols<64, Symbol_visitor>(Symbol_visitor());
6936
6937       if (!parameters->options().relocatable())
6938         {
6939           this->define_save_restore_funcs(layout, symtab);
6940
6941           // Annoyingly, we need to make these sections now whether or
6942           // not we need them.  If we delay until do_relax then we
6943           // need to mess with the relaxation machinery checkpointing.
6944           this->got_section(symtab, layout);
6945           this->make_brlt_section(layout);
6946
6947           if (parameters->options().toc_sort())
6948             {
6949               Output_section* os = this->got_->output_section();
6950               if (os != NULL && os->input_sections().size() > 1)
6951                 std::stable_sort(os->input_sections().begin(),
6952                                  os->input_sections().end(),
6953                                  Sort_toc_sections<big_endian>());
6954             }
6955         }
6956     }
6957
6958   // Fill in some more dynamic tags.
6959   Output_data_dynamic* odyn = layout->dynamic_data();
6960   if (odyn != NULL)
6961     {
6962       const Reloc_section* rel_plt = (this->plt_ == NULL
6963                                       ? NULL
6964                                       : this->plt_->rel_plt());
6965       layout->add_target_dynamic_tags(false, this->plt_, rel_plt,
6966                                       this->rela_dyn_, true, size == 32);
6967
6968       if (size == 32)
6969         {
6970           if (this->got_ != NULL)
6971             {
6972               this->got_->finalize_data_size();
6973               odyn->add_section_plus_offset(elfcpp::DT_PPC_GOT,
6974                                             this->got_, this->got_->g_o_t());
6975             }
6976         }
6977       else
6978         {
6979           if (this->glink_ != NULL)
6980             {
6981               this->glink_->finalize_data_size();
6982               odyn->add_section_plus_offset(elfcpp::DT_PPC64_GLINK,
6983                                             this->glink_,
6984                                             (this->glink_->pltresolve_size
6985                                              - 32));
6986             }
6987         }
6988     }
6989
6990   // Emit any relocs we saved in an attempt to avoid generating COPY
6991   // relocs.
6992   if (this->copy_relocs_.any_saved_relocs())
6993     this->copy_relocs_.emit(this->rela_dyn_section(layout));
6994 }
6995
6996 // Return TRUE iff INSN is one we expect on a _LO variety toc/got
6997 // reloc.
6998
6999 static bool
7000 ok_lo_toc_insn(uint32_t insn)
7001 {
7002   return ((insn & (0x3f << 26)) == 14u << 26 /* addi */
7003           || (insn & (0x3f << 26)) == 32u << 26 /* lwz */
7004           || (insn & (0x3f << 26)) == 34u << 26 /* lbz */
7005           || (insn & (0x3f << 26)) == 36u << 26 /* stw */
7006           || (insn & (0x3f << 26)) == 38u << 26 /* stb */
7007           || (insn & (0x3f << 26)) == 40u << 26 /* lhz */
7008           || (insn & (0x3f << 26)) == 42u << 26 /* lha */
7009           || (insn & (0x3f << 26)) == 44u << 26 /* sth */
7010           || (insn & (0x3f << 26)) == 46u << 26 /* lmw */
7011           || (insn & (0x3f << 26)) == 47u << 26 /* stmw */
7012           || (insn & (0x3f << 26)) == 48u << 26 /* lfs */
7013           || (insn & (0x3f << 26)) == 50u << 26 /* lfd */
7014           || (insn & (0x3f << 26)) == 52u << 26 /* stfs */
7015           || (insn & (0x3f << 26)) == 54u << 26 /* stfd */
7016           || ((insn & (0x3f << 26)) == 58u << 26 /* lwa,ld,lmd */
7017               && (insn & 3) != 1)
7018           || ((insn & (0x3f << 26)) == 62u << 26 /* std, stmd */
7019               && ((insn & 3) == 0 || (insn & 3) == 3))
7020           || (insn & (0x3f << 26)) == 12u << 26 /* addic */);
7021 }
7022
7023 // Return the value to use for a branch relocation.
7024
7025 template<int size, bool big_endian>
7026 bool
7027 Target_powerpc<size, big_endian>::symval_for_branch(
7028     const Symbol_table* symtab,
7029     const Sized_symbol<size>* gsym,
7030     Powerpc_relobj<size, big_endian>* object,
7031     Address *value,
7032     unsigned int *dest_shndx)
7033 {
7034   if (size == 32 || this->abiversion() >= 2)
7035     gold_unreachable();
7036   *dest_shndx = 0;
7037
7038   // If the symbol is defined in an opd section, ie. is a function
7039   // descriptor, use the function descriptor code entry address
7040   Powerpc_relobj<size, big_endian>* symobj = object;
7041   if (gsym != NULL
7042       && (gsym->source() != Symbol::FROM_OBJECT
7043           || gsym->object()->is_dynamic()))
7044     return true;
7045   if (gsym != NULL)
7046     symobj = static_cast<Powerpc_relobj<size, big_endian>*>(gsym->object());
7047   unsigned int shndx = symobj->opd_shndx();
7048   if (shndx == 0)
7049     return true;
7050   Address opd_addr = symobj->get_output_section_offset(shndx);
7051   if (opd_addr == invalid_address)
7052     return true;
7053   opd_addr += symobj->output_section_address(shndx);
7054   if (*value >= opd_addr && *value < opd_addr + symobj->section_size(shndx))
7055     {
7056       Address sec_off;
7057       *dest_shndx = symobj->get_opd_ent(*value - opd_addr, &sec_off);
7058       if (symtab->is_section_folded(symobj, *dest_shndx))
7059         {
7060           Section_id folded
7061             = symtab->icf()->get_folded_section(symobj, *dest_shndx);
7062           symobj = static_cast<Powerpc_relobj<size, big_endian>*>(folded.first);
7063           *dest_shndx = folded.second;
7064         }
7065       Address sec_addr = symobj->get_output_section_offset(*dest_shndx);
7066       if (sec_addr == invalid_address)
7067         return false;
7068
7069       sec_addr += symobj->output_section(*dest_shndx)->address();
7070       *value = sec_addr + sec_off;
7071     }
7072   return true;
7073 }
7074
7075 // Perform a relocation.
7076
7077 template<int size, bool big_endian>
7078 inline bool
7079 Target_powerpc<size, big_endian>::Relocate::relocate(
7080     const Relocate_info<size, big_endian>* relinfo,
7081     unsigned int,
7082     Target_powerpc* target,
7083     Output_section* os,
7084     size_t relnum,
7085     const unsigned char* preloc,
7086     const Sized_symbol<size>* gsym,
7087     const Symbol_value<size>* psymval,
7088     unsigned char* view,
7089     Address address,
7090     section_size_type view_size)
7091 {
7092   if (view == NULL)
7093     return true;
7094
7095   const elfcpp::Rela<size, big_endian> rela(preloc);
7096   unsigned int r_type = elfcpp::elf_r_type<size>(rela.get_r_info());
7097   switch (this->maybe_skip_tls_get_addr_call(r_type, gsym))
7098     {
7099     case Track_tls::NOT_EXPECTED:
7100       gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
7101                              _("__tls_get_addr call lacks marker reloc"));
7102       break;
7103     case Track_tls::EXPECTED:
7104       // We have already complained.
7105       break;
7106     case Track_tls::SKIP:
7107       return true;
7108     case Track_tls::NORMAL:
7109       break;
7110     }
7111
7112   typedef Powerpc_relocate_functions<size, big_endian> Reloc;
7113   typedef typename elfcpp::Swap<32, big_endian>::Valtype Insn;
7114   typedef typename elfcpp::Rela<size, big_endian> Reltype;
7115   // Offset from start of insn to d-field reloc.
7116   const int d_offset = big_endian ? 2 : 0;
7117
7118   Powerpc_relobj<size, big_endian>* const object
7119     = static_cast<Powerpc_relobj<size, big_endian>*>(relinfo->object);
7120   Address value = 0;
7121   bool has_stub_value = false;
7122   unsigned int r_sym = elfcpp::elf_r_sym<size>(rela.get_r_info());
7123   if ((gsym != NULL
7124        ? gsym->use_plt_offset(Scan::get_reference_flags(r_type, target))
7125        : object->local_has_plt_offset(r_sym))
7126       && (!psymval->is_ifunc_symbol()
7127           || Scan::reloc_needs_plt_for_ifunc(target, object, r_type, false)))
7128     {
7129       if (size == 64
7130           && gsym != NULL
7131           && target->abiversion() >= 2
7132           && !parameters->options().output_is_position_independent()
7133           && !is_branch_reloc(r_type))
7134         {
7135           Address off = target->glink_section()->find_global_entry(gsym);
7136           if (off != invalid_address)
7137             {
7138               value = target->glink_section()->global_entry_address() + off;
7139               has_stub_value = true;
7140             }
7141         }
7142       else
7143         {
7144           Stub_table<size, big_endian>* stub_table
7145             = object->stub_table(relinfo->data_shndx);
7146           if (stub_table == NULL)
7147             {
7148               // This is a ref from a data section to an ifunc symbol.
7149               if (target->stub_tables().size() != 0)
7150                 stub_table = target->stub_tables()[0];
7151             }
7152           if (stub_table != NULL)
7153             {
7154               Address off;
7155               if (gsym != NULL)
7156                 off = stub_table->find_plt_call_entry(object, gsym, r_type,
7157                                                       rela.get_r_addend());
7158               else
7159                 off = stub_table->find_plt_call_entry(object, r_sym, r_type,
7160                                                       rela.get_r_addend());
7161               if (off != invalid_address)
7162                 {
7163                   value = stub_table->stub_address() + off;
7164                   has_stub_value = true;
7165                 }
7166             }
7167         }
7168       // We don't care too much about bogus debug references to
7169       // non-local functions, but otherwise there had better be a plt
7170       // call stub or global entry stub as appropriate.
7171       gold_assert(has_stub_value || !(os->flags() & elfcpp::SHF_ALLOC));
7172     }
7173
7174   if (r_type == elfcpp::R_POWERPC_GOT16
7175       || r_type == elfcpp::R_POWERPC_GOT16_LO
7176       || r_type == elfcpp::R_POWERPC_GOT16_HI
7177       || r_type == elfcpp::R_POWERPC_GOT16_HA
7178       || r_type == elfcpp::R_PPC64_GOT16_DS
7179       || r_type == elfcpp::R_PPC64_GOT16_LO_DS)
7180     {
7181       if (gsym != NULL)
7182         {
7183           gold_assert(gsym->has_got_offset(GOT_TYPE_STANDARD));
7184           value = gsym->got_offset(GOT_TYPE_STANDARD);
7185         }
7186       else
7187         {
7188           gold_assert(object->local_has_got_offset(r_sym, GOT_TYPE_STANDARD));
7189           value = object->local_got_offset(r_sym, GOT_TYPE_STANDARD);
7190         }
7191       value -= target->got_section()->got_base_offset(object);
7192     }
7193   else if (r_type == elfcpp::R_PPC64_TOC)
7194     {
7195       value = (target->got_section()->output_section()->address()
7196                + object->toc_base_offset());
7197     }
7198   else if (gsym != NULL
7199            && (r_type == elfcpp::R_POWERPC_REL24
7200                || r_type == elfcpp::R_PPC_PLTREL24)
7201            && has_stub_value)
7202     {
7203       if (size == 64)
7204         {
7205           typedef typename elfcpp::Swap<32, big_endian>::Valtype Valtype;
7206           Valtype* wv = reinterpret_cast<Valtype*>(view);
7207           bool can_plt_call = false;
7208           if (rela.get_r_offset() + 8 <= view_size)
7209             {
7210               Valtype insn = elfcpp::Swap<32, big_endian>::readval(wv);
7211               Valtype insn2 = elfcpp::Swap<32, big_endian>::readval(wv + 1);
7212               if ((insn & 1) != 0
7213                   && (insn2 == nop
7214                       || insn2 == cror_15_15_15 || insn2 == cror_31_31_31))
7215                 {
7216                   elfcpp::Swap<32, big_endian>::
7217                     writeval(wv + 1, ld_2_1 + target->stk_toc());
7218                   can_plt_call = true;
7219                 }
7220             }
7221           if (!can_plt_call)
7222             {
7223               // If we don't have a branch and link followed by a nop,
7224               // we can't go via the plt because there is no place to
7225               // put a toc restoring instruction.
7226               // Unless we know we won't be returning.
7227               if (strcmp(gsym->name(), "__libc_start_main") == 0)
7228                 can_plt_call = true;
7229             }
7230           if (!can_plt_call)
7231             {
7232               // g++ as of 20130507 emits self-calls without a
7233               // following nop.  This is arguably wrong since we have
7234               // conflicting information.  On the one hand a global
7235               // symbol and on the other a local call sequence, but
7236               // don't error for this special case.
7237               // It isn't possible to cheaply verify we have exactly
7238               // such a call.  Allow all calls to the same section.
7239               bool ok = false;
7240               Address code = value;
7241               if (gsym->source() == Symbol::FROM_OBJECT
7242                   && gsym->object() == object)
7243                 {
7244                   unsigned int dest_shndx = 0;
7245                   if (target->abiversion() < 2)
7246                     {
7247                       Address addend = rela.get_r_addend();
7248                       code = psymval->value(object, addend);
7249                       target->symval_for_branch(relinfo->symtab, gsym, object,
7250                                                 &code, &dest_shndx);
7251                     }
7252                   bool is_ordinary;
7253                   if (dest_shndx == 0)
7254                     dest_shndx = gsym->shndx(&is_ordinary);
7255                   ok = dest_shndx == relinfo->data_shndx;
7256                 }
7257               if (!ok)
7258                 {
7259                   gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
7260                                          _("call lacks nop, can't restore toc; "
7261                                            "recompile with -fPIC"));
7262                   value = code;
7263                 }
7264             }
7265         }
7266     }
7267   else if (r_type == elfcpp::R_POWERPC_GOT_TLSGD16
7268            || r_type == elfcpp::R_POWERPC_GOT_TLSGD16_LO
7269            || r_type == elfcpp::R_POWERPC_GOT_TLSGD16_HI
7270            || r_type == elfcpp::R_POWERPC_GOT_TLSGD16_HA)
7271     {
7272       // First instruction of a global dynamic sequence, arg setup insn.
7273       const bool final = gsym == NULL || gsym->final_value_is_known();
7274       const tls::Tls_optimization tls_type = target->optimize_tls_gd(final);
7275       enum Got_type got_type = GOT_TYPE_STANDARD;
7276       if (tls_type == tls::TLSOPT_NONE)
7277         got_type = GOT_TYPE_TLSGD;
7278       else if (tls_type == tls::TLSOPT_TO_IE)
7279         got_type = GOT_TYPE_TPREL;
7280       if (got_type != GOT_TYPE_STANDARD)
7281         {
7282           if (gsym != NULL)
7283             {
7284               gold_assert(gsym->has_got_offset(got_type));
7285               value = gsym->got_offset(got_type);
7286             }
7287           else
7288             {
7289               gold_assert(object->local_has_got_offset(r_sym, got_type));
7290               value = object->local_got_offset(r_sym, got_type);
7291             }
7292           value -= target->got_section()->got_base_offset(object);
7293         }
7294       if (tls_type == tls::TLSOPT_TO_IE)
7295         {
7296           if (r_type == elfcpp::R_POWERPC_GOT_TLSGD16
7297               || r_type == elfcpp::R_POWERPC_GOT_TLSGD16_LO)
7298             {
7299               Insn* iview = reinterpret_cast<Insn*>(view - d_offset);
7300               Insn insn = elfcpp::Swap<32, big_endian>::readval(iview);
7301               insn &= (1 << 26) - (1 << 16); // extract rt,ra from addi
7302               if (size == 32)
7303                 insn |= 32 << 26; // lwz
7304               else
7305                 insn |= 58 << 26; // ld
7306               elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7307             }
7308           r_type += (elfcpp::R_POWERPC_GOT_TPREL16
7309                      - elfcpp::R_POWERPC_GOT_TLSGD16);
7310         }
7311       else if (tls_type == tls::TLSOPT_TO_LE)
7312         {
7313           if (r_type == elfcpp::R_POWERPC_GOT_TLSGD16
7314               || r_type == elfcpp::R_POWERPC_GOT_TLSGD16_LO)
7315             {
7316               Insn* iview = reinterpret_cast<Insn*>(view - d_offset);
7317               Insn insn = elfcpp::Swap<32, big_endian>::readval(iview);
7318               insn &= (1 << 26) - (1 << 21); // extract rt
7319               if (size == 32)
7320                 insn |= addis_0_2;
7321               else
7322                 insn |= addis_0_13;
7323               elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7324               r_type = elfcpp::R_POWERPC_TPREL16_HA;
7325               value = psymval->value(object, rela.get_r_addend());
7326             }
7327           else
7328             {
7329               Insn* iview = reinterpret_cast<Insn*>(view - d_offset);
7330               Insn insn = nop;
7331               elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7332               r_type = elfcpp::R_POWERPC_NONE;
7333             }
7334         }
7335     }
7336   else if (r_type == elfcpp::R_POWERPC_GOT_TLSLD16
7337            || r_type == elfcpp::R_POWERPC_GOT_TLSLD16_LO
7338            || r_type == elfcpp::R_POWERPC_GOT_TLSLD16_HI
7339            || r_type == elfcpp::R_POWERPC_GOT_TLSLD16_HA)
7340     {
7341       // First instruction of a local dynamic sequence, arg setup insn.
7342       const tls::Tls_optimization tls_type = target->optimize_tls_ld();
7343       if (tls_type == tls::TLSOPT_NONE)
7344         {
7345           value = target->tlsld_got_offset();
7346           value -= target->got_section()->got_base_offset(object);
7347         }
7348       else
7349         {
7350           gold_assert(tls_type == tls::TLSOPT_TO_LE);
7351           if (r_type == elfcpp::R_POWERPC_GOT_TLSLD16
7352               || r_type == elfcpp::R_POWERPC_GOT_TLSLD16_LO)
7353             {
7354               Insn* iview = reinterpret_cast<Insn*>(view - d_offset);
7355               Insn insn = elfcpp::Swap<32, big_endian>::readval(iview);
7356               insn &= (1 << 26) - (1 << 21); // extract rt
7357               if (size == 32)
7358                 insn |= addis_0_2;
7359               else
7360                 insn |= addis_0_13;
7361               elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7362               r_type = elfcpp::R_POWERPC_TPREL16_HA;
7363               value = dtp_offset;
7364             }
7365           else
7366             {
7367               Insn* iview = reinterpret_cast<Insn*>(view - d_offset);
7368               Insn insn = nop;
7369               elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7370               r_type = elfcpp::R_POWERPC_NONE;
7371             }
7372         }
7373     }
7374   else if (r_type == elfcpp::R_POWERPC_GOT_DTPREL16
7375            || r_type == elfcpp::R_POWERPC_GOT_DTPREL16_LO
7376            || r_type == elfcpp::R_POWERPC_GOT_DTPREL16_HI
7377            || r_type == elfcpp::R_POWERPC_GOT_DTPREL16_HA)
7378     {
7379       // Accesses relative to a local dynamic sequence address,
7380       // no optimisation here.
7381       if (gsym != NULL)
7382         {
7383           gold_assert(gsym->has_got_offset(GOT_TYPE_DTPREL));
7384           value = gsym->got_offset(GOT_TYPE_DTPREL);
7385         }
7386       else
7387         {
7388           gold_assert(object->local_has_got_offset(r_sym, GOT_TYPE_DTPREL));
7389           value = object->local_got_offset(r_sym, GOT_TYPE_DTPREL);
7390         }
7391       value -= target->got_section()->got_base_offset(object);
7392     }
7393   else if (r_type == elfcpp::R_POWERPC_GOT_TPREL16
7394            || r_type == elfcpp::R_POWERPC_GOT_TPREL16_LO
7395            || r_type == elfcpp::R_POWERPC_GOT_TPREL16_HI
7396            || r_type == elfcpp::R_POWERPC_GOT_TPREL16_HA)
7397     {
7398       // First instruction of initial exec sequence.
7399       const bool final = gsym == NULL || gsym->final_value_is_known();
7400       const tls::Tls_optimization tls_type = target->optimize_tls_ie(final);
7401       if (tls_type == tls::TLSOPT_NONE)
7402         {
7403           if (gsym != NULL)
7404             {
7405               gold_assert(gsym->has_got_offset(GOT_TYPE_TPREL));
7406               value = gsym->got_offset(GOT_TYPE_TPREL);
7407             }
7408           else
7409             {
7410               gold_assert(object->local_has_got_offset(r_sym, GOT_TYPE_TPREL));
7411               value = object->local_got_offset(r_sym, GOT_TYPE_TPREL);
7412             }
7413           value -= target->got_section()->got_base_offset(object);
7414         }
7415       else
7416         {
7417           gold_assert(tls_type == tls::TLSOPT_TO_LE);
7418           if (r_type == elfcpp::R_POWERPC_GOT_TPREL16
7419               || r_type == elfcpp::R_POWERPC_GOT_TPREL16_LO)
7420             {
7421               Insn* iview = reinterpret_cast<Insn*>(view - d_offset);
7422               Insn insn = elfcpp::Swap<32, big_endian>::readval(iview);
7423               insn &= (1 << 26) - (1 << 21); // extract rt from ld
7424               if (size == 32)
7425                 insn |= addis_0_2;
7426               else
7427                 insn |= addis_0_13;
7428               elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7429               r_type = elfcpp::R_POWERPC_TPREL16_HA;
7430               value = psymval->value(object, rela.get_r_addend());
7431             }
7432           else
7433             {
7434               Insn* iview = reinterpret_cast<Insn*>(view - d_offset);
7435               Insn insn = nop;
7436               elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7437               r_type = elfcpp::R_POWERPC_NONE;
7438             }
7439         }
7440     }
7441   else if ((size == 64 && r_type == elfcpp::R_PPC64_TLSGD)
7442            || (size == 32 && r_type == elfcpp::R_PPC_TLSGD))
7443     {
7444       // Second instruction of a global dynamic sequence,
7445       // the __tls_get_addr call
7446       this->expect_tls_get_addr_call(relinfo, relnum, rela.get_r_offset());
7447       const bool final = gsym == NULL || gsym->final_value_is_known();
7448       const tls::Tls_optimization tls_type = target->optimize_tls_gd(final);
7449       if (tls_type != tls::TLSOPT_NONE)
7450         {
7451           if (tls_type == tls::TLSOPT_TO_IE)
7452             {
7453               Insn* iview = reinterpret_cast<Insn*>(view);
7454               Insn insn = add_3_3_13;
7455               if (size == 32)
7456                 insn = add_3_3_2;
7457               elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7458               r_type = elfcpp::R_POWERPC_NONE;
7459             }
7460           else
7461             {
7462               Insn* iview = reinterpret_cast<Insn*>(view);
7463               Insn insn = addi_3_3;
7464               elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7465               r_type = elfcpp::R_POWERPC_TPREL16_LO;
7466               view += d_offset;
7467               value = psymval->value(object, rela.get_r_addend());
7468             }
7469           this->skip_next_tls_get_addr_call();
7470         }
7471     }
7472   else if ((size == 64 && r_type == elfcpp::R_PPC64_TLSLD)
7473            || (size == 32 && r_type == elfcpp::R_PPC_TLSLD))
7474     {
7475       // Second instruction of a local dynamic sequence,
7476       // the __tls_get_addr call
7477       this->expect_tls_get_addr_call(relinfo, relnum, rela.get_r_offset());
7478       const tls::Tls_optimization tls_type = target->optimize_tls_ld();
7479       if (tls_type == tls::TLSOPT_TO_LE)
7480         {
7481           Insn* iview = reinterpret_cast<Insn*>(view);
7482           Insn insn = addi_3_3;
7483           elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7484           this->skip_next_tls_get_addr_call();
7485           r_type = elfcpp::R_POWERPC_TPREL16_LO;
7486           view += d_offset;
7487           value = dtp_offset;
7488         }
7489     }
7490   else if (r_type == elfcpp::R_POWERPC_TLS)
7491     {
7492       // Second instruction of an initial exec sequence
7493       const bool final = gsym == NULL || gsym->final_value_is_known();
7494       const tls::Tls_optimization tls_type = target->optimize_tls_ie(final);
7495       if (tls_type == tls::TLSOPT_TO_LE)
7496         {
7497           Insn* iview = reinterpret_cast<Insn*>(view);
7498           Insn insn = elfcpp::Swap<32, big_endian>::readval(iview);
7499           unsigned int reg = size == 32 ? 2 : 13;
7500           insn = at_tls_transform(insn, reg);
7501           gold_assert(insn != 0);
7502           elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7503           r_type = elfcpp::R_POWERPC_TPREL16_LO;
7504           view += d_offset;
7505           value = psymval->value(object, rela.get_r_addend());
7506         }
7507     }
7508   else if (!has_stub_value)
7509     {
7510       Address addend = 0;
7511       if (!(size == 32 && r_type == elfcpp::R_PPC_PLTREL24))
7512         addend = rela.get_r_addend();
7513       value = psymval->value(object, addend);
7514       if (size == 64 && is_branch_reloc(r_type))
7515         {
7516           if (target->abiversion() >= 2)
7517             {
7518               if (gsym != NULL)
7519                 value += object->ppc64_local_entry_offset(gsym);
7520               else
7521                 value += object->ppc64_local_entry_offset(r_sym);
7522             }
7523           else
7524             {
7525               unsigned int dest_shndx;
7526               target->symval_for_branch(relinfo->symtab, gsym, object,
7527                                         &value, &dest_shndx);
7528             }
7529         }
7530       Address max_branch_offset = max_branch_delta(r_type);
7531       if (max_branch_offset != 0
7532           && value - address + max_branch_offset >= 2 * max_branch_offset)
7533         {
7534           Stub_table<size, big_endian>* stub_table
7535             = object->stub_table(relinfo->data_shndx);
7536           if (stub_table != NULL)
7537             {
7538               Address off = stub_table->find_long_branch_entry(object, value);
7539               if (off != invalid_address)
7540                 {
7541                   value = (stub_table->stub_address() + stub_table->plt_size()
7542                            + off);
7543                   has_stub_value = true;
7544                 }
7545             }
7546         }
7547     }
7548
7549   switch (r_type)
7550     {
7551     case elfcpp::R_PPC64_REL64:
7552     case elfcpp::R_POWERPC_REL32:
7553     case elfcpp::R_POWERPC_REL24:
7554     case elfcpp::R_PPC_PLTREL24:
7555     case elfcpp::R_PPC_LOCAL24PC:
7556     case elfcpp::R_POWERPC_REL16:
7557     case elfcpp::R_POWERPC_REL16_LO:
7558     case elfcpp::R_POWERPC_REL16_HI:
7559     case elfcpp::R_POWERPC_REL16_HA:
7560     case elfcpp::R_POWERPC_REL16DX_HA:
7561     case elfcpp::R_POWERPC_REL14:
7562     case elfcpp::R_POWERPC_REL14_BRTAKEN:
7563     case elfcpp::R_POWERPC_REL14_BRNTAKEN:
7564       value -= address;
7565       break;
7566
7567     case elfcpp::R_PPC64_TOC16:
7568     case elfcpp::R_PPC64_TOC16_LO:
7569     case elfcpp::R_PPC64_TOC16_HI:
7570     case elfcpp::R_PPC64_TOC16_HA:
7571     case elfcpp::R_PPC64_TOC16_DS:
7572     case elfcpp::R_PPC64_TOC16_LO_DS:
7573       // Subtract the TOC base address.
7574       value -= (target->got_section()->output_section()->address()
7575                 + object->toc_base_offset());
7576       break;
7577
7578     case elfcpp::R_POWERPC_SECTOFF:
7579     case elfcpp::R_POWERPC_SECTOFF_LO:
7580     case elfcpp::R_POWERPC_SECTOFF_HI:
7581     case elfcpp::R_POWERPC_SECTOFF_HA:
7582     case elfcpp::R_PPC64_SECTOFF_DS:
7583     case elfcpp::R_PPC64_SECTOFF_LO_DS:
7584       if (os != NULL)
7585         value -= os->address();
7586       break;
7587
7588     case elfcpp::R_PPC64_TPREL16_DS:
7589     case elfcpp::R_PPC64_TPREL16_LO_DS:
7590     case elfcpp::R_PPC64_TPREL16_HIGH:
7591     case elfcpp::R_PPC64_TPREL16_HIGHA:
7592       if (size != 64)
7593         // R_PPC_TLSGD, R_PPC_TLSLD, R_PPC_EMB_RELST_LO, R_PPC_EMB_RELST_HI
7594         break;
7595       // Fall through.
7596     case elfcpp::R_POWERPC_TPREL16:
7597     case elfcpp::R_POWERPC_TPREL16_LO:
7598     case elfcpp::R_POWERPC_TPREL16_HI:
7599     case elfcpp::R_POWERPC_TPREL16_HA:
7600     case elfcpp::R_POWERPC_TPREL:
7601     case elfcpp::R_PPC64_TPREL16_HIGHER:
7602     case elfcpp::R_PPC64_TPREL16_HIGHERA:
7603     case elfcpp::R_PPC64_TPREL16_HIGHEST:
7604     case elfcpp::R_PPC64_TPREL16_HIGHESTA:
7605       // tls symbol values are relative to tls_segment()->vaddr()
7606       value -= tp_offset;
7607       break;
7608
7609     case elfcpp::R_PPC64_DTPREL16_DS:
7610     case elfcpp::R_PPC64_DTPREL16_LO_DS:
7611     case elfcpp::R_PPC64_DTPREL16_HIGHER:
7612     case elfcpp::R_PPC64_DTPREL16_HIGHERA:
7613     case elfcpp::R_PPC64_DTPREL16_HIGHEST:
7614     case elfcpp::R_PPC64_DTPREL16_HIGHESTA:
7615       if (size != 64)
7616         // R_PPC_EMB_NADDR32, R_PPC_EMB_NADDR16, R_PPC_EMB_NADDR16_LO
7617         // R_PPC_EMB_NADDR16_HI, R_PPC_EMB_NADDR16_HA, R_PPC_EMB_SDAI16
7618         break;
7619       // Fall through.
7620     case elfcpp::R_POWERPC_DTPREL16:
7621     case elfcpp::R_POWERPC_DTPREL16_LO:
7622     case elfcpp::R_POWERPC_DTPREL16_HI:
7623     case elfcpp::R_POWERPC_DTPREL16_HA:
7624     case elfcpp::R_POWERPC_DTPREL:
7625     case elfcpp::R_PPC64_DTPREL16_HIGH:
7626     case elfcpp::R_PPC64_DTPREL16_HIGHA:
7627       // tls symbol values are relative to tls_segment()->vaddr()
7628       value -= dtp_offset;
7629       break;
7630
7631     case elfcpp::R_PPC64_ADDR64_LOCAL:
7632       if (gsym != NULL)
7633         value += object->ppc64_local_entry_offset(gsym);
7634       else
7635         value += object->ppc64_local_entry_offset(r_sym);
7636       break;
7637
7638     default:
7639       break;
7640     }
7641
7642   Insn branch_bit = 0;
7643   switch (r_type)
7644     {
7645     case elfcpp::R_POWERPC_ADDR14_BRTAKEN:
7646     case elfcpp::R_POWERPC_REL14_BRTAKEN:
7647       branch_bit = 1 << 21;
7648       // Fall through.
7649     case elfcpp::R_POWERPC_ADDR14_BRNTAKEN:
7650     case elfcpp::R_POWERPC_REL14_BRNTAKEN:
7651       {
7652         Insn* iview = reinterpret_cast<Insn*>(view);
7653         Insn insn = elfcpp::Swap<32, big_endian>::readval(iview);
7654         insn &= ~(1 << 21);
7655         insn |= branch_bit;
7656         if (this->is_isa_v2)
7657           {
7658             // Set 'a' bit.  This is 0b00010 in BO field for branch
7659             // on CR(BI) insns (BO == 001at or 011at), and 0b01000
7660             // for branch on CTR insns (BO == 1a00t or 1a01t).
7661             if ((insn & (0x14 << 21)) == (0x04 << 21))
7662               insn |= 0x02 << 21;
7663             else if ((insn & (0x14 << 21)) == (0x10 << 21))
7664               insn |= 0x08 << 21;
7665             else
7666               break;
7667           }
7668         else
7669           {
7670             // Invert 'y' bit if not the default.
7671             if (static_cast<Signed_address>(value) < 0)
7672               insn ^= 1 << 21;
7673           }
7674         elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7675       }
7676       break;
7677
7678     default:
7679       break;
7680     }
7681
7682   if (size == 64)
7683     {
7684       // Multi-instruction sequences that access the TOC can be
7685       // optimized, eg. addis ra,r2,0; addi rb,ra,x;
7686       // to             nop;           addi rb,r2,x;
7687       switch (r_type)
7688         {
7689         default:
7690           break;
7691
7692         case elfcpp::R_POWERPC_GOT_TLSLD16_HA:
7693         case elfcpp::R_POWERPC_GOT_TLSGD16_HA:
7694         case elfcpp::R_POWERPC_GOT_TPREL16_HA:
7695         case elfcpp::R_POWERPC_GOT_DTPREL16_HA:
7696         case elfcpp::R_POWERPC_GOT16_HA:
7697         case elfcpp::R_PPC64_TOC16_HA:
7698           if (parameters->options().toc_optimize())
7699             {
7700               Insn* iview = reinterpret_cast<Insn*>(view - d_offset);
7701               Insn insn = elfcpp::Swap<32, big_endian>::readval(iview);
7702               if ((insn & ((0x3f << 26) | 0x1f << 16))
7703                   != ((15u << 26) | (2 << 16)) /* addis rt,2,imm */)
7704                 gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
7705                                        _("toc optimization is not supported "
7706                                          "for %#08x instruction"), insn);
7707               else if (value + 0x8000 < 0x10000)
7708                 {
7709                   elfcpp::Swap<32, big_endian>::writeval(iview, nop);
7710                   return true;
7711                 }
7712             }
7713           break;
7714
7715         case elfcpp::R_POWERPC_GOT_TLSLD16_LO:
7716         case elfcpp::R_POWERPC_GOT_TLSGD16_LO:
7717         case elfcpp::R_POWERPC_GOT_TPREL16_LO:
7718         case elfcpp::R_POWERPC_GOT_DTPREL16_LO:
7719         case elfcpp::R_POWERPC_GOT16_LO:
7720         case elfcpp::R_PPC64_GOT16_LO_DS:
7721         case elfcpp::R_PPC64_TOC16_LO:
7722         case elfcpp::R_PPC64_TOC16_LO_DS:
7723           if (parameters->options().toc_optimize())
7724             {
7725               Insn* iview = reinterpret_cast<Insn*>(view - d_offset);
7726               Insn insn = elfcpp::Swap<32, big_endian>::readval(iview);
7727               if (!ok_lo_toc_insn(insn))
7728                 gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
7729                                        _("toc optimization is not supported "
7730                                          "for %#08x instruction"), insn);
7731               else if (value + 0x8000 < 0x10000)
7732                 {
7733                   if ((insn & (0x3f << 26)) == 12u << 26 /* addic */)
7734                     {
7735                       // Transform addic to addi when we change reg.
7736                       insn &= ~((0x3f << 26) | (0x1f << 16));
7737                       insn |= (14u << 26) | (2 << 16);
7738                     }
7739                   else
7740                     {
7741                       insn &= ~(0x1f << 16);
7742                       insn |= 2 << 16;
7743                     }
7744                   elfcpp::Swap<32, big_endian>::writeval(iview, insn);
7745                 }
7746             }
7747           break;
7748
7749         case elfcpp::R_PPC64_ENTRY:
7750           value = (target->got_section()->output_section()->address()
7751                    + object->toc_base_offset());
7752           if (value + 0x80008000 <= 0xffffffff
7753               && !parameters->options().output_is_position_independent())
7754             {
7755               Insn* iview = reinterpret_cast<Insn*>(view);
7756               Insn insn1 = elfcpp::Swap<32, big_endian>::readval(iview);
7757               Insn insn2 = elfcpp::Swap<32, big_endian>::readval(iview + 1);
7758
7759               if ((insn1 & ~0xfffc) == ld_2_12
7760                   && insn2 == add_2_2_12)
7761                 {
7762                   insn1 = lis_2 + ha(value);
7763                   elfcpp::Swap<32, big_endian>::writeval(iview, insn1);
7764                   insn2 = addi_2_2 + l(value);
7765                   elfcpp::Swap<32, big_endian>::writeval(iview + 1, insn2);
7766                   return true;
7767                 }
7768             }
7769           else
7770             {
7771               value -= address;
7772               if (value + 0x80008000 <= 0xffffffff)
7773                 {
7774                   Insn* iview = reinterpret_cast<Insn*>(view);
7775                   Insn insn1 = elfcpp::Swap<32, big_endian>::readval(iview);
7776                   Insn insn2 = elfcpp::Swap<32, big_endian>::readval(iview + 1);
7777
7778                   if ((insn1 & ~0xfffc) == ld_2_12
7779                       && insn2 == add_2_2_12)
7780                     {
7781                       insn1 = addis_2_12 + ha(value);
7782                       elfcpp::Swap<32, big_endian>::writeval(iview, insn1);
7783                       insn2 = addi_2_2 + l(value);
7784                       elfcpp::Swap<32, big_endian>::writeval(iview + 1, insn2);
7785                       return true;
7786                     }
7787                 }
7788             }
7789           break;
7790
7791         case elfcpp::R_POWERPC_REL16_LO:
7792           // If we are generating a non-PIC executable, edit
7793           //    0:      addis 2,12,.TOC.-0b@ha
7794           //            addi 2,2,.TOC.-0b@l
7795           // used by ELFv2 global entry points to set up r2, to
7796           //            lis 2,.TOC.@ha
7797           //            addi 2,2,.TOC.@l
7798           // if .TOC. is in range.  */
7799           if (value + address - 4 + 0x80008000 <= 0xffffffff
7800               && relnum != 0
7801               && preloc != NULL
7802               && target->abiversion() >= 2
7803               && !parameters->options().output_is_position_independent()
7804               && rela.get_r_addend() == d_offset + 4
7805               && gsym != NULL
7806               && strcmp(gsym->name(), ".TOC.") == 0)
7807             {
7808               const int reloc_size = elfcpp::Elf_sizes<size>::rela_size;
7809               Reltype prev_rela(preloc - reloc_size);
7810               if ((prev_rela.get_r_info()
7811                    == elfcpp::elf_r_info<size>(r_sym,
7812                                                elfcpp::R_POWERPC_REL16_HA))
7813                   && prev_rela.get_r_offset() + 4 == rela.get_r_offset()
7814                   && prev_rela.get_r_addend() + 4 == rela.get_r_addend())
7815                 {
7816                   Insn* iview = reinterpret_cast<Insn*>(view - d_offset);
7817                   Insn insn1 = elfcpp::Swap<32, big_endian>::readval(iview - 1);
7818                   Insn insn2 = elfcpp::Swap<32, big_endian>::readval(iview);
7819
7820                   if ((insn1 & 0xffff0000) == addis_2_12
7821                       && (insn2 & 0xffff0000) == addi_2_2)
7822                     {
7823                       insn1 = lis_2 + ha(value + address - 4);
7824                       elfcpp::Swap<32, big_endian>::writeval(iview - 1, insn1);
7825                       insn2 = addi_2_2 + l(value + address - 4);
7826                       elfcpp::Swap<32, big_endian>::writeval(iview, insn2);
7827                       if (relinfo->rr)
7828                         {
7829                           relinfo->rr->set_strategy(relnum - 1,
7830                                                     Relocatable_relocs::RELOC_SPECIAL);
7831                           relinfo->rr->set_strategy(relnum,
7832                                                     Relocatable_relocs::RELOC_SPECIAL);
7833                         }
7834                       return true;
7835                     }
7836                 }
7837             }
7838           break;
7839         }
7840     }
7841
7842   typename Reloc::Overflow_check overflow = Reloc::CHECK_NONE;
7843   elfcpp::Shdr<size, big_endian> shdr(relinfo->data_shdr);
7844   switch (r_type)
7845     {
7846     case elfcpp::R_POWERPC_ADDR32:
7847     case elfcpp::R_POWERPC_UADDR32:
7848       if (size == 64)
7849         overflow = Reloc::CHECK_BITFIELD;
7850       break;
7851
7852     case elfcpp::R_POWERPC_REL32:
7853     case elfcpp::R_POWERPC_REL16DX_HA:
7854       if (size == 64)
7855         overflow = Reloc::CHECK_SIGNED;
7856       break;
7857
7858     case elfcpp::R_POWERPC_UADDR16:
7859       overflow = Reloc::CHECK_BITFIELD;
7860       break;
7861
7862     case elfcpp::R_POWERPC_ADDR16:
7863       // We really should have three separate relocations,
7864       // one for 16-bit data, one for insns with 16-bit signed fields,
7865       // and one for insns with 16-bit unsigned fields.
7866       overflow = Reloc::CHECK_BITFIELD;
7867       if ((shdr.get_sh_flags() & elfcpp::SHF_EXECINSTR) != 0)
7868         overflow = Reloc::CHECK_LOW_INSN;
7869       break;
7870
7871     case elfcpp::R_POWERPC_ADDR16_HI:
7872     case elfcpp::R_POWERPC_ADDR16_HA:
7873     case elfcpp::R_POWERPC_GOT16_HI:
7874     case elfcpp::R_POWERPC_GOT16_HA:
7875     case elfcpp::R_POWERPC_PLT16_HI:
7876     case elfcpp::R_POWERPC_PLT16_HA:
7877     case elfcpp::R_POWERPC_SECTOFF_HI:
7878     case elfcpp::R_POWERPC_SECTOFF_HA:
7879     case elfcpp::R_PPC64_TOC16_HI:
7880     case elfcpp::R_PPC64_TOC16_HA:
7881     case elfcpp::R_PPC64_PLTGOT16_HI:
7882     case elfcpp::R_PPC64_PLTGOT16_HA:
7883     case elfcpp::R_POWERPC_TPREL16_HI:
7884     case elfcpp::R_POWERPC_TPREL16_HA:
7885     case elfcpp::R_POWERPC_DTPREL16_HI:
7886     case elfcpp::R_POWERPC_DTPREL16_HA:
7887     case elfcpp::R_POWERPC_GOT_TLSGD16_HI:
7888     case elfcpp::R_POWERPC_GOT_TLSGD16_HA:
7889     case elfcpp::R_POWERPC_GOT_TLSLD16_HI:
7890     case elfcpp::R_POWERPC_GOT_TLSLD16_HA:
7891     case elfcpp::R_POWERPC_GOT_TPREL16_HI:
7892     case elfcpp::R_POWERPC_GOT_TPREL16_HA:
7893     case elfcpp::R_POWERPC_GOT_DTPREL16_HI:
7894     case elfcpp::R_POWERPC_GOT_DTPREL16_HA:
7895     case elfcpp::R_POWERPC_REL16_HI:
7896     case elfcpp::R_POWERPC_REL16_HA:
7897       if (size != 32)
7898         overflow = Reloc::CHECK_HIGH_INSN;
7899       break;
7900
7901     case elfcpp::R_POWERPC_REL16:
7902     case elfcpp::R_PPC64_TOC16:
7903     case elfcpp::R_POWERPC_GOT16:
7904     case elfcpp::R_POWERPC_SECTOFF:
7905     case elfcpp::R_POWERPC_TPREL16:
7906     case elfcpp::R_POWERPC_DTPREL16:
7907     case elfcpp::R_POWERPC_GOT_TLSGD16:
7908     case elfcpp::R_POWERPC_GOT_TLSLD16:
7909     case elfcpp::R_POWERPC_GOT_TPREL16:
7910     case elfcpp::R_POWERPC_GOT_DTPREL16:
7911       overflow = Reloc::CHECK_LOW_INSN;
7912       break;
7913
7914     case elfcpp::R_POWERPC_ADDR24:
7915     case elfcpp::R_POWERPC_ADDR14:
7916     case elfcpp::R_POWERPC_ADDR14_BRTAKEN:
7917     case elfcpp::R_POWERPC_ADDR14_BRNTAKEN:
7918     case elfcpp::R_PPC64_ADDR16_DS:
7919     case elfcpp::R_POWERPC_REL24:
7920     case elfcpp::R_PPC_PLTREL24:
7921     case elfcpp::R_PPC_LOCAL24PC:
7922     case elfcpp::R_PPC64_TPREL16_DS:
7923     case elfcpp::R_PPC64_DTPREL16_DS:
7924     case elfcpp::R_PPC64_TOC16_DS:
7925     case elfcpp::R_PPC64_GOT16_DS:
7926     case elfcpp::R_PPC64_SECTOFF_DS:
7927     case elfcpp::R_POWERPC_REL14:
7928     case elfcpp::R_POWERPC_REL14_BRTAKEN:
7929     case elfcpp::R_POWERPC_REL14_BRNTAKEN:
7930       overflow = Reloc::CHECK_SIGNED;
7931       break;
7932     }
7933
7934   Insn* iview = reinterpret_cast<Insn*>(view - d_offset);
7935   Insn insn = 0;
7936
7937   if (overflow == Reloc::CHECK_LOW_INSN
7938       || overflow == Reloc::CHECK_HIGH_INSN)
7939     {
7940       insn = elfcpp::Swap<32, big_endian>::readval(iview);
7941
7942       if ((insn & (0x3f << 26)) == 10u << 26 /* cmpli */)
7943         overflow = Reloc::CHECK_BITFIELD;
7944       else if (overflow == Reloc::CHECK_LOW_INSN
7945                ? ((insn & (0x3f << 26)) == 28u << 26 /* andi */
7946                   || (insn & (0x3f << 26)) == 24u << 26 /* ori */
7947                   || (insn & (0x3f << 26)) == 26u << 26 /* xori */)
7948                : ((insn & (0x3f << 26)) == 29u << 26 /* andis */
7949                   || (insn & (0x3f << 26)) == 25u << 26 /* oris */
7950                   || (insn & (0x3f << 26)) == 27u << 26 /* xoris */))
7951         overflow = Reloc::CHECK_UNSIGNED;
7952       else
7953         overflow = Reloc::CHECK_SIGNED;
7954     }
7955
7956   bool maybe_dq_reloc = false;
7957   typename Powerpc_relocate_functions<size, big_endian>::Status status
7958     = Powerpc_relocate_functions<size, big_endian>::STATUS_OK;
7959   switch (r_type)
7960     {
7961     case elfcpp::R_POWERPC_NONE:
7962     case elfcpp::R_POWERPC_TLS:
7963     case elfcpp::R_POWERPC_GNU_VTINHERIT:
7964     case elfcpp::R_POWERPC_GNU_VTENTRY:
7965       break;
7966
7967     case elfcpp::R_PPC64_ADDR64:
7968     case elfcpp::R_PPC64_REL64:
7969     case elfcpp::R_PPC64_TOC:
7970     case elfcpp::R_PPC64_ADDR64_LOCAL:
7971       Reloc::addr64(view, value);
7972       break;
7973
7974     case elfcpp::R_POWERPC_TPREL:
7975     case elfcpp::R_POWERPC_DTPREL:
7976       if (size == 64)
7977         Reloc::addr64(view, value);
7978       else
7979         status = Reloc::addr32(view, value, overflow);
7980       break;
7981
7982     case elfcpp::R_PPC64_UADDR64:
7983       Reloc::addr64_u(view, value);
7984       break;
7985
7986     case elfcpp::R_POWERPC_ADDR32:
7987       status = Reloc::addr32(view, value, overflow);
7988       break;
7989
7990     case elfcpp::R_POWERPC_REL32:
7991     case elfcpp::R_POWERPC_UADDR32:
7992       status = Reloc::addr32_u(view, value, overflow);
7993       break;
7994
7995     case elfcpp::R_POWERPC_ADDR24:
7996     case elfcpp::R_POWERPC_REL24:
7997     case elfcpp::R_PPC_PLTREL24:
7998     case elfcpp::R_PPC_LOCAL24PC:
7999       status = Reloc::addr24(view, value, overflow);
8000       break;
8001
8002     case elfcpp::R_POWERPC_GOT_DTPREL16:
8003     case elfcpp::R_POWERPC_GOT_DTPREL16_LO:
8004     case elfcpp::R_POWERPC_GOT_TPREL16:
8005     case elfcpp::R_POWERPC_GOT_TPREL16_LO:
8006       if (size == 64)
8007         {
8008           // On ppc64 these are all ds form
8009           maybe_dq_reloc = true;
8010           break;
8011         }
8012       // Fall through.
8013     case elfcpp::R_POWERPC_ADDR16:
8014     case elfcpp::R_POWERPC_REL16:
8015     case elfcpp::R_PPC64_TOC16:
8016     case elfcpp::R_POWERPC_GOT16:
8017     case elfcpp::R_POWERPC_SECTOFF:
8018     case elfcpp::R_POWERPC_TPREL16:
8019     case elfcpp::R_POWERPC_DTPREL16:
8020     case elfcpp::R_POWERPC_GOT_TLSGD16:
8021     case elfcpp::R_POWERPC_GOT_TLSLD16:
8022     case elfcpp::R_POWERPC_ADDR16_LO:
8023     case elfcpp::R_POWERPC_REL16_LO:
8024     case elfcpp::R_PPC64_TOC16_LO:
8025     case elfcpp::R_POWERPC_GOT16_LO:
8026     case elfcpp::R_POWERPC_SECTOFF_LO:
8027     case elfcpp::R_POWERPC_TPREL16_LO:
8028     case elfcpp::R_POWERPC_DTPREL16_LO:
8029     case elfcpp::R_POWERPC_GOT_TLSGD16_LO:
8030     case elfcpp::R_POWERPC_GOT_TLSLD16_LO:
8031       if (size == 64)
8032         status = Reloc::addr16(view, value, overflow);
8033       else
8034         maybe_dq_reloc = true;
8035       break;
8036
8037     case elfcpp::R_POWERPC_UADDR16:
8038       status = Reloc::addr16_u(view, value, overflow);
8039       break;
8040
8041     case elfcpp::R_PPC64_ADDR16_HIGH:
8042     case elfcpp::R_PPC64_TPREL16_HIGH:
8043     case elfcpp::R_PPC64_DTPREL16_HIGH:
8044       if (size == 32)
8045         // R_PPC_EMB_MRKREF, R_PPC_EMB_RELST_LO, R_PPC_EMB_RELST_HA
8046         goto unsupp;
8047       // Fall through.
8048     case elfcpp::R_POWERPC_ADDR16_HI:
8049     case elfcpp::R_POWERPC_REL16_HI:
8050     case elfcpp::R_PPC64_TOC16_HI:
8051     case elfcpp::R_POWERPC_GOT16_HI:
8052     case elfcpp::R_POWERPC_SECTOFF_HI:
8053     case elfcpp::R_POWERPC_TPREL16_HI:
8054     case elfcpp::R_POWERPC_DTPREL16_HI:
8055     case elfcpp::R_POWERPC_GOT_TLSGD16_HI:
8056     case elfcpp::R_POWERPC_GOT_TLSLD16_HI:
8057     case elfcpp::R_POWERPC_GOT_TPREL16_HI:
8058     case elfcpp::R_POWERPC_GOT_DTPREL16_HI:
8059       Reloc::addr16_hi(view, value);
8060       break;
8061
8062     case elfcpp::R_PPC64_ADDR16_HIGHA:
8063     case elfcpp::R_PPC64_TPREL16_HIGHA:
8064     case elfcpp::R_PPC64_DTPREL16_HIGHA:
8065       if (size == 32)
8066         // R_PPC_EMB_RELSEC16, R_PPC_EMB_RELST_HI, R_PPC_EMB_BIT_FLD
8067         goto unsupp;
8068       // Fall through.
8069     case elfcpp::R_POWERPC_ADDR16_HA:
8070     case elfcpp::R_POWERPC_REL16_HA:
8071     case elfcpp::R_PPC64_TOC16_HA:
8072     case elfcpp::R_POWERPC_GOT16_HA:
8073     case elfcpp::R_POWERPC_SECTOFF_HA:
8074     case elfcpp::R_POWERPC_TPREL16_HA:
8075     case elfcpp::R_POWERPC_DTPREL16_HA:
8076     case elfcpp::R_POWERPC_GOT_TLSGD16_HA:
8077     case elfcpp::R_POWERPC_GOT_TLSLD16_HA:
8078     case elfcpp::R_POWERPC_GOT_TPREL16_HA:
8079     case elfcpp::R_POWERPC_GOT_DTPREL16_HA:
8080       Reloc::addr16_ha(view, value);
8081       break;
8082
8083     case elfcpp::R_POWERPC_REL16DX_HA:
8084       status = Reloc::addr16dx_ha(view, value, overflow);
8085       break;
8086
8087     case elfcpp::R_PPC64_DTPREL16_HIGHER:
8088       if (size == 32)
8089         // R_PPC_EMB_NADDR16_LO
8090         goto unsupp;
8091       // Fall through.
8092     case elfcpp::R_PPC64_ADDR16_HIGHER:
8093     case elfcpp::R_PPC64_TPREL16_HIGHER:
8094       Reloc::addr16_hi2(view, value);
8095       break;
8096
8097     case elfcpp::R_PPC64_DTPREL16_HIGHERA:
8098       if (size == 32)
8099         // R_PPC_EMB_NADDR16_HI
8100         goto unsupp;
8101       // Fall through.
8102     case elfcpp::R_PPC64_ADDR16_HIGHERA:
8103     case elfcpp::R_PPC64_TPREL16_HIGHERA:
8104       Reloc::addr16_ha2(view, value);
8105       break;
8106
8107     case elfcpp::R_PPC64_DTPREL16_HIGHEST:
8108       if (size == 32)
8109         // R_PPC_EMB_NADDR16_HA
8110         goto unsupp;
8111       // Fall through.
8112     case elfcpp::R_PPC64_ADDR16_HIGHEST:
8113     case elfcpp::R_PPC64_TPREL16_HIGHEST:
8114       Reloc::addr16_hi3(view, value);
8115       break;
8116
8117     case elfcpp::R_PPC64_DTPREL16_HIGHESTA:
8118       if (size == 32)
8119         // R_PPC_EMB_SDAI16
8120         goto unsupp;
8121       // Fall through.
8122     case elfcpp::R_PPC64_ADDR16_HIGHESTA:
8123     case elfcpp::R_PPC64_TPREL16_HIGHESTA:
8124       Reloc::addr16_ha3(view, value);
8125       break;
8126
8127     case elfcpp::R_PPC64_DTPREL16_DS:
8128     case elfcpp::R_PPC64_DTPREL16_LO_DS:
8129       if (size == 32)
8130         // R_PPC_EMB_NADDR32, R_PPC_EMB_NADDR16
8131         goto unsupp;
8132       // Fall through.
8133     case elfcpp::R_PPC64_TPREL16_DS:
8134     case elfcpp::R_PPC64_TPREL16_LO_DS:
8135       if (size == 32)
8136         // R_PPC_TLSGD, R_PPC_TLSLD
8137         break;
8138       // Fall through.
8139     case elfcpp::R_PPC64_ADDR16_DS:
8140     case elfcpp::R_PPC64_ADDR16_LO_DS:
8141     case elfcpp::R_PPC64_TOC16_DS:
8142     case elfcpp::R_PPC64_TOC16_LO_DS:
8143     case elfcpp::R_PPC64_GOT16_DS:
8144     case elfcpp::R_PPC64_GOT16_LO_DS:
8145     case elfcpp::R_PPC64_SECTOFF_DS:
8146     case elfcpp::R_PPC64_SECTOFF_LO_DS:
8147       maybe_dq_reloc = true;
8148       break;
8149
8150     case elfcpp::R_POWERPC_ADDR14:
8151     case elfcpp::R_POWERPC_ADDR14_BRTAKEN:
8152     case elfcpp::R_POWERPC_ADDR14_BRNTAKEN:
8153     case elfcpp::R_POWERPC_REL14:
8154     case elfcpp::R_POWERPC_REL14_BRTAKEN:
8155     case elfcpp::R_POWERPC_REL14_BRNTAKEN:
8156       status = Reloc::addr14(view, value, overflow);
8157       break;
8158
8159     case elfcpp::R_POWERPC_COPY:
8160     case elfcpp::R_POWERPC_GLOB_DAT:
8161     case elfcpp::R_POWERPC_JMP_SLOT:
8162     case elfcpp::R_POWERPC_RELATIVE:
8163     case elfcpp::R_POWERPC_DTPMOD:
8164     case elfcpp::R_PPC64_JMP_IREL:
8165     case elfcpp::R_POWERPC_IRELATIVE:
8166       gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
8167                              _("unexpected reloc %u in object file"),
8168                              r_type);
8169       break;
8170
8171     case elfcpp::R_PPC_EMB_SDA21:
8172       if (size == 32)
8173         goto unsupp;
8174       else
8175         {
8176           // R_PPC64_TOCSAVE.  For the time being this can be ignored.
8177         }
8178       break;
8179
8180     case elfcpp::R_PPC_EMB_SDA2I16:
8181     case elfcpp::R_PPC_EMB_SDA2REL:
8182       if (size == 32)
8183         goto unsupp;
8184       // R_PPC64_TLSGD, R_PPC64_TLSLD
8185       break;
8186
8187     case elfcpp::R_POWERPC_PLT32:
8188     case elfcpp::R_POWERPC_PLTREL32:
8189     case elfcpp::R_POWERPC_PLT16_LO:
8190     case elfcpp::R_POWERPC_PLT16_HI:
8191     case elfcpp::R_POWERPC_PLT16_HA:
8192     case elfcpp::R_PPC_SDAREL16:
8193     case elfcpp::R_POWERPC_ADDR30:
8194     case elfcpp::R_PPC64_PLT64:
8195     case elfcpp::R_PPC64_PLTREL64:
8196     case elfcpp::R_PPC64_PLTGOT16:
8197     case elfcpp::R_PPC64_PLTGOT16_LO:
8198     case elfcpp::R_PPC64_PLTGOT16_HI:
8199     case elfcpp::R_PPC64_PLTGOT16_HA:
8200     case elfcpp::R_PPC64_PLT16_LO_DS:
8201     case elfcpp::R_PPC64_PLTGOT16_DS:
8202     case elfcpp::R_PPC64_PLTGOT16_LO_DS:
8203     case elfcpp::R_PPC_EMB_RELSDA:
8204     case elfcpp::R_PPC_TOC16:
8205     default:
8206     unsupp:
8207       gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
8208                              _("unsupported reloc %u"),
8209                              r_type);
8210       break;
8211     }
8212
8213   if (maybe_dq_reloc)
8214     {
8215       if (insn == 0)
8216         insn = elfcpp::Swap<32, big_endian>::readval(iview);
8217
8218       if ((insn & (0x3f << 26)) == 56u << 26 /* lq */
8219           || ((insn & (0x3f << 26)) == (61u << 26) /* lxv, stxv */
8220               && (insn & 3) == 1))
8221         status = Reloc::addr16_dq(view, value, overflow);
8222       else if (size == 64
8223                || (insn & (0x3f << 26)) == 58u << 26 /* ld,ldu,lwa */
8224                || (insn & (0x3f << 26)) == 62u << 26 /* std,stdu,stq */
8225                || (insn & (0x3f << 26)) == 57u << 26 /* lfdp */
8226                || (insn & (0x3f << 26)) == 61u << 26 /* stfdp */)
8227         status = Reloc::addr16_ds(view, value, overflow);
8228       else
8229         status = Reloc::addr16(view, value, overflow);
8230     }
8231
8232   if (status != Powerpc_relocate_functions<size, big_endian>::STATUS_OK
8233       && (has_stub_value
8234           || !(gsym != NULL
8235                && gsym->is_undefined()
8236                && is_branch_reloc(r_type))))
8237     {
8238       gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
8239                              _("relocation overflow"));
8240       if (has_stub_value)
8241         gold_info(_("try relinking with a smaller --stub-group-size"));
8242     }
8243
8244   return true;
8245 }
8246
8247 // Relocate section data.
8248
8249 template<int size, bool big_endian>
8250 void
8251 Target_powerpc<size, big_endian>::relocate_section(
8252     const Relocate_info<size, big_endian>* relinfo,
8253     unsigned int sh_type,
8254     const unsigned char* prelocs,
8255     size_t reloc_count,
8256     Output_section* output_section,
8257     bool needs_special_offset_handling,
8258     unsigned char* view,
8259     Address address,
8260     section_size_type view_size,
8261     const Reloc_symbol_changes* reloc_symbol_changes)
8262 {
8263   typedef Target_powerpc<size, big_endian> Powerpc;
8264   typedef typename Target_powerpc<size, big_endian>::Relocate Powerpc_relocate;
8265   typedef typename Target_powerpc<size, big_endian>::Relocate_comdat_behavior
8266     Powerpc_comdat_behavior;
8267   typedef gold::Default_classify_reloc<elfcpp::SHT_RELA, size, big_endian>
8268       Classify_reloc;
8269
8270   gold_assert(sh_type == elfcpp::SHT_RELA);
8271
8272   gold::relocate_section<size, big_endian, Powerpc, Powerpc_relocate,
8273                          Powerpc_comdat_behavior, Classify_reloc>(
8274     relinfo,
8275     this,
8276     prelocs,
8277     reloc_count,
8278     output_section,
8279     needs_special_offset_handling,
8280     view,
8281     address,
8282     view_size,
8283     reloc_symbol_changes);
8284 }
8285
8286 template<int size, bool big_endian>
8287 class Powerpc_scan_relocatable_reloc
8288 {
8289 public:
8290   typedef typename elfcpp::Rela<size, big_endian> Reltype;
8291   static const int reloc_size = elfcpp::Elf_sizes<size>::rela_size;
8292   static const int sh_type = elfcpp::SHT_RELA;
8293
8294   // Return the symbol referred to by the relocation.
8295   static inline unsigned int
8296   get_r_sym(const Reltype* reloc)
8297   { return elfcpp::elf_r_sym<size>(reloc->get_r_info()); }
8298
8299   // Return the type of the relocation.
8300   static inline unsigned int
8301   get_r_type(const Reltype* reloc)
8302   { return elfcpp::elf_r_type<size>(reloc->get_r_info()); }
8303
8304   // Return the strategy to use for a local symbol which is not a
8305   // section symbol, given the relocation type.
8306   inline Relocatable_relocs::Reloc_strategy
8307   local_non_section_strategy(unsigned int r_type, Relobj*, unsigned int r_sym)
8308   {
8309     if (r_type == 0 && r_sym == 0)
8310       return Relocatable_relocs::RELOC_DISCARD;
8311     return Relocatable_relocs::RELOC_COPY;
8312   }
8313
8314   // Return the strategy to use for a local symbol which is a section
8315   // symbol, given the relocation type.
8316   inline Relocatable_relocs::Reloc_strategy
8317   local_section_strategy(unsigned int, Relobj*)
8318   {
8319     return Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_RELA;
8320   }
8321
8322   // Return the strategy to use for a global symbol, given the
8323   // relocation type, the object, and the symbol index.
8324   inline Relocatable_relocs::Reloc_strategy
8325   global_strategy(unsigned int r_type, Relobj*, unsigned int)
8326   {
8327     if (r_type == elfcpp::R_PPC_PLTREL24)
8328       return Relocatable_relocs::RELOC_SPECIAL;
8329     return Relocatable_relocs::RELOC_COPY;
8330   }
8331 };
8332
8333 // Scan the relocs during a relocatable link.
8334
8335 template<int size, bool big_endian>
8336 void
8337 Target_powerpc<size, big_endian>::scan_relocatable_relocs(
8338     Symbol_table* symtab,
8339     Layout* layout,
8340     Sized_relobj_file<size, big_endian>* object,
8341     unsigned int data_shndx,
8342     unsigned int sh_type,
8343     const unsigned char* prelocs,
8344     size_t reloc_count,
8345     Output_section* output_section,
8346     bool needs_special_offset_handling,
8347     size_t local_symbol_count,
8348     const unsigned char* plocal_symbols,
8349     Relocatable_relocs* rr)
8350 {
8351   typedef Powerpc_scan_relocatable_reloc<size, big_endian> Scan_strategy;
8352
8353   gold_assert(sh_type == elfcpp::SHT_RELA);
8354
8355   gold::scan_relocatable_relocs<size, big_endian, Scan_strategy>(
8356     symtab,
8357     layout,
8358     object,
8359     data_shndx,
8360     prelocs,
8361     reloc_count,
8362     output_section,
8363     needs_special_offset_handling,
8364     local_symbol_count,
8365     plocal_symbols,
8366     rr);
8367 }
8368
8369 // Scan the relocs for --emit-relocs.
8370
8371 template<int size, bool big_endian>
8372 void
8373 Target_powerpc<size, big_endian>::emit_relocs_scan(
8374     Symbol_table* symtab,
8375     Layout* layout,
8376     Sized_relobj_file<size, big_endian>* object,
8377     unsigned int data_shndx,
8378     unsigned int sh_type,
8379     const unsigned char* prelocs,
8380     size_t reloc_count,
8381     Output_section* output_section,
8382     bool needs_special_offset_handling,
8383     size_t local_symbol_count,
8384     const unsigned char* plocal_syms,
8385     Relocatable_relocs* rr)
8386 {
8387   typedef gold::Default_classify_reloc<elfcpp::SHT_RELA, size, big_endian>
8388       Classify_reloc;
8389   typedef gold::Default_emit_relocs_strategy<Classify_reloc>
8390       Emit_relocs_strategy;
8391
8392   gold_assert(sh_type == elfcpp::SHT_RELA);
8393
8394   gold::scan_relocatable_relocs<size, big_endian, Emit_relocs_strategy>(
8395     symtab,
8396     layout,
8397     object,
8398     data_shndx,
8399     prelocs,
8400     reloc_count,
8401     output_section,
8402     needs_special_offset_handling,
8403     local_symbol_count,
8404     plocal_syms,
8405     rr);
8406 }
8407
8408 // Emit relocations for a section.
8409 // This is a modified version of the function by the same name in
8410 // target-reloc.h.  Using relocate_special_relocatable for
8411 // R_PPC_PLTREL24 would require duplication of the entire body of the
8412 // loop, so we may as well duplicate the whole thing.
8413
8414 template<int size, bool big_endian>
8415 void
8416 Target_powerpc<size, big_endian>::relocate_relocs(
8417     const Relocate_info<size, big_endian>* relinfo,
8418     unsigned int sh_type,
8419     const unsigned char* prelocs,
8420     size_t reloc_count,
8421     Output_section* output_section,
8422     typename elfcpp::Elf_types<size>::Elf_Off offset_in_output_section,
8423     unsigned char*,
8424     Address view_address,
8425     section_size_type,
8426     unsigned char* reloc_view,
8427     section_size_type reloc_view_size)
8428 {
8429   gold_assert(sh_type == elfcpp::SHT_RELA);
8430
8431   typedef typename elfcpp::Rela<size, big_endian> Reltype;
8432   typedef typename elfcpp::Rela_write<size, big_endian> Reltype_write;
8433   const int reloc_size = elfcpp::Elf_sizes<size>::rela_size;
8434   // Offset from start of insn to d-field reloc.
8435   const int d_offset = big_endian ? 2 : 0;
8436
8437   Powerpc_relobj<size, big_endian>* const object
8438     = static_cast<Powerpc_relobj<size, big_endian>*>(relinfo->object);
8439   const unsigned int local_count = object->local_symbol_count();
8440   unsigned int got2_shndx = object->got2_shndx();
8441   Address got2_addend = 0;
8442   if (got2_shndx != 0)
8443     {
8444       got2_addend = object->get_output_section_offset(got2_shndx);
8445       gold_assert(got2_addend != invalid_address);
8446     }
8447
8448   unsigned char* pwrite = reloc_view;
8449   bool zap_next = false;
8450   for (size_t i = 0; i < reloc_count; ++i, prelocs += reloc_size)
8451     {
8452       Relocatable_relocs::Reloc_strategy strategy = relinfo->rr->strategy(i);
8453       if (strategy == Relocatable_relocs::RELOC_DISCARD)
8454         continue;
8455
8456       Reltype reloc(prelocs);
8457       Reltype_write reloc_write(pwrite);
8458
8459       Address offset = reloc.get_r_offset();
8460       typename elfcpp::Elf_types<size>::Elf_WXword r_info = reloc.get_r_info();
8461       unsigned int r_sym = elfcpp::elf_r_sym<size>(r_info);
8462       unsigned int r_type = elfcpp::elf_r_type<size>(r_info);
8463       const unsigned int orig_r_sym = r_sym;
8464       typename elfcpp::Elf_types<size>::Elf_Swxword addend
8465         = reloc.get_r_addend();
8466       const Symbol* gsym = NULL;
8467
8468       if (zap_next)
8469         {
8470           // We could arrange to discard these and other relocs for
8471           // tls optimised sequences in the strategy methods, but for
8472           // now do as BFD ld does.
8473           r_type = elfcpp::R_POWERPC_NONE;
8474           zap_next = false;
8475         }
8476
8477       // Get the new symbol index.
8478       Output_section* os = NULL;
8479       if (r_sym < local_count)
8480         {
8481           switch (strategy)
8482             {
8483             case Relocatable_relocs::RELOC_COPY:
8484             case Relocatable_relocs::RELOC_SPECIAL:
8485               if (r_sym != 0)
8486                 {
8487                   r_sym = object->symtab_index(r_sym);
8488                   gold_assert(r_sym != -1U);
8489                 }
8490               break;
8491
8492             case Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_RELA:
8493               {
8494                 // We are adjusting a section symbol.  We need to find
8495                 // the symbol table index of the section symbol for
8496                 // the output section corresponding to input section
8497                 // in which this symbol is defined.
8498                 gold_assert(r_sym < local_count);
8499                 bool is_ordinary;
8500                 unsigned int shndx =
8501                   object->local_symbol_input_shndx(r_sym, &is_ordinary);
8502                 gold_assert(is_ordinary);
8503                 os = object->output_section(shndx);
8504                 gold_assert(os != NULL);
8505                 gold_assert(os->needs_symtab_index());
8506                 r_sym = os->symtab_index();
8507               }
8508               break;
8509
8510             default:
8511               gold_unreachable();
8512             }
8513         }
8514       else
8515         {
8516           gsym = object->global_symbol(r_sym);
8517           gold_assert(gsym != NULL);
8518           if (gsym->is_forwarder())
8519             gsym = relinfo->symtab->resolve_forwards(gsym);
8520
8521           gold_assert(gsym->has_symtab_index());
8522           r_sym = gsym->symtab_index();
8523         }
8524
8525       // Get the new offset--the location in the output section where
8526       // this relocation should be applied.
8527       if (static_cast<Address>(offset_in_output_section) != invalid_address)
8528         offset += offset_in_output_section;
8529       else
8530         {
8531           section_offset_type sot_offset =
8532             convert_types<section_offset_type, Address>(offset);
8533           section_offset_type new_sot_offset =
8534             output_section->output_offset(object, relinfo->data_shndx,
8535                                           sot_offset);
8536           gold_assert(new_sot_offset != -1);
8537           offset = new_sot_offset;
8538         }
8539
8540       // In an object file, r_offset is an offset within the section.
8541       // In an executable or dynamic object, generated by
8542       // --emit-relocs, r_offset is an absolute address.
8543       if (!parameters->options().relocatable())
8544         {
8545           offset += view_address;
8546           if (static_cast<Address>(offset_in_output_section) != invalid_address)
8547             offset -= offset_in_output_section;
8548         }
8549
8550       // Handle the reloc addend based on the strategy.
8551       if (strategy == Relocatable_relocs::RELOC_COPY)
8552         ;
8553       else if (strategy == Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_RELA)
8554         {
8555           const Symbol_value<size>* psymval = object->local_symbol(orig_r_sym);
8556           gold_assert(os != NULL);
8557           addend = psymval->value(object, addend) - os->address();
8558         }
8559       else if (strategy == Relocatable_relocs::RELOC_SPECIAL)
8560         {
8561           if (size == 32)
8562             {
8563               if (addend >= 32768)
8564                 addend += got2_addend;
8565             }
8566           else if (r_type == elfcpp::R_POWERPC_REL16_HA)
8567             {
8568               r_type = elfcpp::R_POWERPC_ADDR16_HA;
8569               addend -= d_offset;
8570             }
8571           else if (r_type == elfcpp::R_POWERPC_REL16_LO)
8572             {
8573               r_type = elfcpp::R_POWERPC_ADDR16_LO;
8574               addend -= d_offset + 4;
8575             }
8576         }
8577       else
8578         gold_unreachable();
8579
8580       if (!parameters->options().relocatable())
8581         {
8582           if (r_type == elfcpp::R_POWERPC_GOT_TLSGD16
8583               || r_type == elfcpp::R_POWERPC_GOT_TLSGD16_LO
8584               || r_type == elfcpp::R_POWERPC_GOT_TLSGD16_HI
8585               || r_type == elfcpp::R_POWERPC_GOT_TLSGD16_HA)
8586             {
8587               // First instruction of a global dynamic sequence,
8588               // arg setup insn.
8589               const bool final = gsym == NULL || gsym->final_value_is_known();
8590               switch (this->optimize_tls_gd(final))
8591                 {
8592                 case tls::TLSOPT_TO_IE:
8593                   r_type += (elfcpp::R_POWERPC_GOT_TPREL16
8594                              - elfcpp::R_POWERPC_GOT_TLSGD16);
8595                   break;
8596                 case tls::TLSOPT_TO_LE:
8597                   if (r_type == elfcpp::R_POWERPC_GOT_TLSGD16
8598                       || r_type == elfcpp::R_POWERPC_GOT_TLSGD16_LO)
8599                     r_type = elfcpp::R_POWERPC_TPREL16_HA;
8600                   else
8601                     {
8602                       r_type = elfcpp::R_POWERPC_NONE;
8603                       offset -= d_offset;
8604                     }
8605                   break;
8606                 default:
8607                   break;
8608                 }
8609             }
8610           else if (r_type == elfcpp::R_POWERPC_GOT_TLSLD16
8611                    || r_type == elfcpp::R_POWERPC_GOT_TLSLD16_LO
8612                    || r_type == elfcpp::R_POWERPC_GOT_TLSLD16_HI
8613                    || r_type == elfcpp::R_POWERPC_GOT_TLSLD16_HA)
8614             {
8615               // First instruction of a local dynamic sequence,
8616               // arg setup insn.
8617               if (this->optimize_tls_ld() == tls::TLSOPT_TO_LE)
8618                 {
8619                   if (r_type == elfcpp::R_POWERPC_GOT_TLSLD16
8620                       || r_type == elfcpp::R_POWERPC_GOT_TLSLD16_LO)
8621                     {
8622                       r_type = elfcpp::R_POWERPC_TPREL16_HA;
8623                       const Output_section* os = relinfo->layout->tls_segment()
8624                         ->first_section();
8625                       gold_assert(os != NULL);
8626                       gold_assert(os->needs_symtab_index());
8627                       r_sym = os->symtab_index();
8628                       addend = dtp_offset;
8629                     }
8630                   else
8631                     {
8632                       r_type = elfcpp::R_POWERPC_NONE;
8633                       offset -= d_offset;
8634                     }
8635                 }
8636             }
8637           else if (r_type == elfcpp::R_POWERPC_GOT_TPREL16
8638                    || r_type == elfcpp::R_POWERPC_GOT_TPREL16_LO
8639                    || r_type == elfcpp::R_POWERPC_GOT_TPREL16_HI
8640                    || r_type == elfcpp::R_POWERPC_GOT_TPREL16_HA)
8641             {
8642               // First instruction of initial exec sequence.
8643               const bool final = gsym == NULL || gsym->final_value_is_known();
8644               if (this->optimize_tls_ie(final) == tls::TLSOPT_TO_LE)
8645                 {
8646                   if (r_type == elfcpp::R_POWERPC_GOT_TPREL16
8647                       || r_type == elfcpp::R_POWERPC_GOT_TPREL16_LO)
8648                     r_type = elfcpp::R_POWERPC_TPREL16_HA;
8649                   else
8650                     {
8651                       r_type = elfcpp::R_POWERPC_NONE;
8652                       offset -= d_offset;
8653                     }
8654                 }
8655             }
8656           else if ((size == 64 && r_type == elfcpp::R_PPC64_TLSGD)
8657                    || (size == 32 && r_type == elfcpp::R_PPC_TLSGD))
8658             {
8659               // Second instruction of a global dynamic sequence,
8660               // the __tls_get_addr call
8661               const bool final = gsym == NULL || gsym->final_value_is_known();
8662               switch (this->optimize_tls_gd(final))
8663                 {
8664                 case tls::TLSOPT_TO_IE:
8665                   r_type = elfcpp::R_POWERPC_NONE;
8666                   zap_next = true;
8667                   break;
8668                 case tls::TLSOPT_TO_LE:
8669                   r_type = elfcpp::R_POWERPC_TPREL16_LO;
8670                   offset += d_offset;
8671                   zap_next = true;
8672                   break;
8673                 default:
8674                   break;
8675                 }
8676             }
8677           else if ((size == 64 && r_type == elfcpp::R_PPC64_TLSLD)
8678                    || (size == 32 && r_type == elfcpp::R_PPC_TLSLD))
8679             {
8680               // Second instruction of a local dynamic sequence,
8681               // the __tls_get_addr call
8682               if (this->optimize_tls_ld() == tls::TLSOPT_TO_LE)
8683                 {
8684                   const Output_section* os = relinfo->layout->tls_segment()
8685                     ->first_section();
8686                   gold_assert(os != NULL);
8687                   gold_assert(os->needs_symtab_index());
8688                   r_sym = os->symtab_index();
8689                   addend = dtp_offset;
8690                   r_type = elfcpp::R_POWERPC_TPREL16_LO;
8691                   offset += d_offset;
8692                   zap_next = true;
8693                 }
8694             }
8695           else if (r_type == elfcpp::R_POWERPC_TLS)
8696             {
8697               // Second instruction of an initial exec sequence
8698               const bool final = gsym == NULL || gsym->final_value_is_known();
8699               if (this->optimize_tls_ie(final) == tls::TLSOPT_TO_LE)
8700                 {
8701                   r_type = elfcpp::R_POWERPC_TPREL16_LO;
8702                   offset += d_offset;
8703                 }
8704             }
8705         }
8706
8707       reloc_write.put_r_offset(offset);
8708       reloc_write.put_r_info(elfcpp::elf_r_info<size>(r_sym, r_type));
8709       reloc_write.put_r_addend(addend);
8710
8711       pwrite += reloc_size;
8712     }
8713
8714   gold_assert(static_cast<section_size_type>(pwrite - reloc_view)
8715               == reloc_view_size);
8716 }
8717
8718 // Return the value to use for a dynamic symbol which requires special
8719 // treatment.  This is how we support equality comparisons of function
8720 // pointers across shared library boundaries, as described in the
8721 // processor specific ABI supplement.
8722
8723 template<int size, bool big_endian>
8724 uint64_t
8725 Target_powerpc<size, big_endian>::do_dynsym_value(const Symbol* gsym) const
8726 {
8727   if (size == 32)
8728     {
8729       gold_assert(gsym->is_from_dynobj() && gsym->has_plt_offset());
8730       for (typename Stub_tables::const_iterator p = this->stub_tables_.begin();
8731            p != this->stub_tables_.end();
8732            ++p)
8733         {
8734           Address off = (*p)->find_plt_call_entry(gsym);
8735           if (off != invalid_address)
8736             return (*p)->stub_address() + off;
8737         }
8738     }
8739   else if (this->abiversion() >= 2)
8740     {
8741       Address off = this->glink_section()->find_global_entry(gsym);
8742       if (off != invalid_address)
8743         return this->glink_section()->global_entry_address() + off;
8744     }
8745   gold_unreachable();
8746 }
8747
8748 // Return the PLT address to use for a local symbol.
8749 template<int size, bool big_endian>
8750 uint64_t
8751 Target_powerpc<size, big_endian>::do_plt_address_for_local(
8752     const Relobj* object,
8753     unsigned int symndx) const
8754 {
8755   if (size == 32)
8756     {
8757       const Sized_relobj<size, big_endian>* relobj
8758         = static_cast<const Sized_relobj<size, big_endian>*>(object);
8759       for (typename Stub_tables::const_iterator p = this->stub_tables_.begin();
8760            p != this->stub_tables_.end();
8761            ++p)
8762         {
8763           Address off = (*p)->find_plt_call_entry(relobj->sized_relobj(),
8764                                                   symndx);
8765           if (off != invalid_address)
8766             return (*p)->stub_address() + off;
8767         }
8768     }
8769   gold_unreachable();
8770 }
8771
8772 // Return the PLT address to use for a global symbol.
8773 template<int size, bool big_endian>
8774 uint64_t
8775 Target_powerpc<size, big_endian>::do_plt_address_for_global(
8776     const Symbol* gsym) const
8777 {
8778   if (size == 32)
8779     {
8780       for (typename Stub_tables::const_iterator p = this->stub_tables_.begin();
8781            p != this->stub_tables_.end();
8782            ++p)
8783         {
8784           Address off = (*p)->find_plt_call_entry(gsym);
8785           if (off != invalid_address)
8786             return (*p)->stub_address() + off;
8787         }
8788     }
8789   else if (this->abiversion() >= 2)
8790     {
8791       Address off = this->glink_section()->find_global_entry(gsym);
8792       if (off != invalid_address)
8793         return this->glink_section()->global_entry_address() + off;
8794     }
8795   gold_unreachable();
8796 }
8797
8798 // Return the offset to use for the GOT_INDX'th got entry which is
8799 // for a local tls symbol specified by OBJECT, SYMNDX.
8800 template<int size, bool big_endian>
8801 int64_t
8802 Target_powerpc<size, big_endian>::do_tls_offset_for_local(
8803     const Relobj* object,
8804     unsigned int symndx,
8805     unsigned int got_indx) const
8806 {
8807   const Powerpc_relobj<size, big_endian>* ppc_object
8808     = static_cast<const Powerpc_relobj<size, big_endian>*>(object);
8809   if (ppc_object->local_symbol(symndx)->is_tls_symbol())
8810     {
8811       for (Got_type got_type = GOT_TYPE_TLSGD;
8812            got_type <= GOT_TYPE_TPREL;
8813            got_type = Got_type(got_type + 1))
8814         if (ppc_object->local_has_got_offset(symndx, got_type))
8815           {
8816             unsigned int off = ppc_object->local_got_offset(symndx, got_type);
8817             if (got_type == GOT_TYPE_TLSGD)
8818               off += size / 8;
8819             if (off == got_indx * (size / 8))
8820               {
8821                 if (got_type == GOT_TYPE_TPREL)
8822                   return -tp_offset;
8823                 else
8824                   return -dtp_offset;
8825               }
8826           }
8827     }
8828   gold_unreachable();
8829 }
8830
8831 // Return the offset to use for the GOT_INDX'th got entry which is
8832 // for global tls symbol GSYM.
8833 template<int size, bool big_endian>
8834 int64_t
8835 Target_powerpc<size, big_endian>::do_tls_offset_for_global(
8836     Symbol* gsym,
8837     unsigned int got_indx) const
8838 {
8839   if (gsym->type() == elfcpp::STT_TLS)
8840     {
8841       for (Got_type got_type = GOT_TYPE_TLSGD;
8842            got_type <= GOT_TYPE_TPREL;
8843            got_type = Got_type(got_type + 1))
8844         if (gsym->has_got_offset(got_type))
8845           {
8846             unsigned int off = gsym->got_offset(got_type);
8847             if (got_type == GOT_TYPE_TLSGD)
8848               off += size / 8;
8849             if (off == got_indx * (size / 8))
8850               {
8851                 if (got_type == GOT_TYPE_TPREL)
8852                   return -tp_offset;
8853                 else
8854                   return -dtp_offset;
8855               }
8856           }
8857     }
8858   gold_unreachable();
8859 }
8860
8861 // The selector for powerpc object files.
8862
8863 template<int size, bool big_endian>
8864 class Target_selector_powerpc : public Target_selector
8865 {
8866 public:
8867   Target_selector_powerpc()
8868     : Target_selector(size == 64 ? elfcpp::EM_PPC64 : elfcpp::EM_PPC,
8869                       size, big_endian,
8870                       (size == 64
8871                        ? (big_endian ? "elf64-powerpc" : "elf64-powerpcle")
8872                        : (big_endian ? "elf32-powerpc" : "elf32-powerpcle")),
8873                       (size == 64
8874                        ? (big_endian ? "elf64ppc" : "elf64lppc")
8875                        : (big_endian ? "elf32ppc" : "elf32lppc")))
8876   { }
8877
8878   virtual Target*
8879   do_instantiate_target()
8880   { return new Target_powerpc<size, big_endian>(); }
8881 };
8882
8883 Target_selector_powerpc<32, true> target_selector_ppc32;
8884 Target_selector_powerpc<32, false> target_selector_ppc32le;
8885 Target_selector_powerpc<64, true> target_selector_ppc64;
8886 Target_selector_powerpc<64, false> target_selector_ppc64le;
8887
8888 // Instantiate these constants for -O0
8889 template<int size, bool big_endian>
8890 const int Output_data_glink<size, big_endian>::pltresolve_size;
8891 template<int size, bool big_endian>
8892 const typename Output_data_glink<size, big_endian>::Address
8893   Output_data_glink<size, big_endian>::invalid_address;
8894 template<int size, bool big_endian>
8895 const typename Stub_table<size, big_endian>::Address
8896   Stub_table<size, big_endian>::invalid_address;
8897 template<int size, bool big_endian>
8898 const typename Target_powerpc<size, big_endian>::Address
8899   Target_powerpc<size, big_endian>::invalid_address;
8900
8901 } // End anonymous namespace.