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