* i386.cc (Target_i386::Relocate::relocate): Recognize non-PIC calls
[platform/upstream/binutils.git] / gold / x86_64.cc
1 // x86_64.cc -- x86_64 target support for gold.
2
3 // Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
5
6 // This file is part of gold.
7
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
12
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
22
23 #include "gold.h"
24
25 #include <cstring>
26
27 #include "elfcpp.h"
28 #include "parameters.h"
29 #include "reloc.h"
30 #include "x86_64.h"
31 #include "object.h"
32 #include "symtab.h"
33 #include "layout.h"
34 #include "output.h"
35 #include "copy-relocs.h"
36 #include "target.h"
37 #include "target-reloc.h"
38 #include "target-select.h"
39 #include "tls.h"
40
41 namespace
42 {
43
44 using namespace gold;
45
46 class Output_data_plt_x86_64;
47
48 // The x86_64 target class.
49 // See the ABI at
50 //   http://www.x86-64.org/documentation/abi.pdf
51 // TLS info comes from
52 //   http://people.redhat.com/drepper/tls.pdf
53 //   http://www.lsd.ic.unicamp.br/~oliva/writeups/TLS/RFC-TLSDESC-x86.txt
54
55 class Target_x86_64 : public Sized_target<64, false>
56 {
57  public:
58   // In the x86_64 ABI (p 68), it says "The AMD64 ABI architectures
59   // uses only Elf64_Rela relocation entries with explicit addends."
60   typedef Output_data_reloc<elfcpp::SHT_RELA, true, 64, false> Reloc_section;
61
62   Target_x86_64()
63     : Sized_target<64, false>(&x86_64_info),
64       got_(NULL), plt_(NULL), got_plt_(NULL), rela_dyn_(NULL),
65       copy_relocs_(elfcpp::R_X86_64_COPY), dynbss_(NULL),
66       got_mod_index_offset_(-1U), tls_base_symbol_defined_(false)
67   { }
68
69   // Scan the relocations to look for symbol adjustments.
70   void
71   gc_process_relocs(const General_options& options,
72                     Symbol_table* symtab,
73                     Layout* layout,
74                     Sized_relobj<64, false>* object,
75                     unsigned int data_shndx,
76                     unsigned int sh_type,
77                     const unsigned char* prelocs,
78                     size_t reloc_count,
79                     Output_section* output_section,
80                     bool needs_special_offset_handling,
81                     size_t local_symbol_count,
82                     const unsigned char* plocal_symbols);
83
84   // Scan the relocations to look for symbol adjustments.
85   void
86   scan_relocs(const General_options& options,
87               Symbol_table* symtab,
88               Layout* layout,
89               Sized_relobj<64, false>* object,
90               unsigned int data_shndx,
91               unsigned int sh_type,
92               const unsigned char* prelocs,
93               size_t reloc_count,
94               Output_section* output_section,
95               bool needs_special_offset_handling,
96               size_t local_symbol_count,
97               const unsigned char* plocal_symbols);
98
99   // Finalize the sections.
100   void
101   do_finalize_sections(Layout*);
102
103   // Return the value to use for a dynamic which requires special
104   // treatment.
105   uint64_t
106   do_dynsym_value(const Symbol*) const;
107
108   // Relocate a section.
109   void
110   relocate_section(const Relocate_info<64, false>*,
111                    unsigned int sh_type,
112                    const unsigned char* prelocs,
113                    size_t reloc_count,
114                    Output_section* output_section,
115                    bool needs_special_offset_handling,
116                    unsigned char* view,
117                    elfcpp::Elf_types<64>::Elf_Addr view_address,
118                    section_size_type view_size);
119
120   // Scan the relocs during a relocatable link.
121   void
122   scan_relocatable_relocs(const General_options& options,
123                           Symbol_table* symtab,
124                           Layout* layout,
125                           Sized_relobj<64, false>* object,
126                           unsigned int data_shndx,
127                           unsigned int sh_type,
128                           const unsigned char* prelocs,
129                           size_t reloc_count,
130                           Output_section* output_section,
131                           bool needs_special_offset_handling,
132                           size_t local_symbol_count,
133                           const unsigned char* plocal_symbols,
134                           Relocatable_relocs*);
135
136   // Relocate a section during a relocatable link.
137   void
138   relocate_for_relocatable(const Relocate_info<64, false>*,
139                            unsigned int sh_type,
140                            const unsigned char* prelocs,
141                            size_t reloc_count,
142                            Output_section* output_section,
143                            off_t offset_in_output_section,
144                            const Relocatable_relocs*,
145                            unsigned char* view,
146                            elfcpp::Elf_types<64>::Elf_Addr view_address,
147                            section_size_type view_size,
148                            unsigned char* reloc_view,
149                            section_size_type reloc_view_size);
150
151   // Return a string used to fill a code section with nops.
152   std::string
153   do_code_fill(section_size_type length) const;
154
155   // Return whether SYM is defined by the ABI.
156   bool
157   do_is_defined_by_abi(const Symbol* sym) const
158   { return strcmp(sym->name(), "__tls_get_addr") == 0; }
159
160   // Return the size of the GOT section.
161   section_size_type
162   got_size()
163   {
164     gold_assert(this->got_ != NULL);
165     return this->got_->data_size();
166   }
167
168  private:
169   // The class which scans relocations.
170   class Scan
171   {
172   public:
173     Scan()
174       : issued_non_pic_error_(false)
175     { }
176
177     inline void
178     local(const General_options& options, Symbol_table* symtab,
179           Layout* layout, Target_x86_64* target,
180           Sized_relobj<64, false>* object,
181           unsigned int data_shndx,
182           Output_section* output_section,
183           const elfcpp::Rela<64, false>& reloc, unsigned int r_type,
184           const elfcpp::Sym<64, false>& lsym);
185
186     inline void
187     global(const General_options& options, Symbol_table* symtab,
188            Layout* layout, Target_x86_64* target,
189            Sized_relobj<64, false>* object,
190            unsigned int data_shndx,
191            Output_section* output_section,
192            const elfcpp::Rela<64, false>& reloc, unsigned int r_type,
193            Symbol* gsym);
194
195   private:
196     static void
197     unsupported_reloc_local(Sized_relobj<64, false>*, unsigned int r_type);
198
199     static void
200     unsupported_reloc_global(Sized_relobj<64, false>*, unsigned int r_type,
201                              Symbol*);
202
203     void
204     check_non_pic(Relobj*, unsigned int r_type);
205
206     // Whether we have issued an error about a non-PIC compilation.
207     bool issued_non_pic_error_;
208   };
209
210   // The class which implements relocation.
211   class Relocate
212   {
213    public:
214     Relocate()
215       : skip_call_tls_get_addr_(false), saw_tls_block_reloc_(false)
216     { }
217
218     ~Relocate()
219     {
220       if (this->skip_call_tls_get_addr_)
221         {
222           // FIXME: This needs to specify the location somehow.
223           gold_error(_("missing expected TLS relocation"));
224         }
225     }
226
227     // Do a relocation.  Return false if the caller should not issue
228     // any warnings about this relocation.
229     inline bool
230     relocate(const Relocate_info<64, false>*, Target_x86_64*, size_t relnum,
231              const elfcpp::Rela<64, false>&,
232              unsigned int r_type, const Sized_symbol<64>*,
233              const Symbol_value<64>*,
234              unsigned char*, elfcpp::Elf_types<64>::Elf_Addr,
235              section_size_type);
236
237    private:
238     // Do a TLS relocation.
239     inline void
240     relocate_tls(const Relocate_info<64, false>*, Target_x86_64*,
241                  size_t relnum, const elfcpp::Rela<64, false>&,
242                  unsigned int r_type, const Sized_symbol<64>*,
243                  const Symbol_value<64>*,
244                  unsigned char*, elfcpp::Elf_types<64>::Elf_Addr,
245                  section_size_type);
246
247     // Do a TLS General-Dynamic to Initial-Exec transition.
248     inline void
249     tls_gd_to_ie(const Relocate_info<64, false>*, size_t relnum,
250                  Output_segment* tls_segment,
251                  const elfcpp::Rela<64, false>&, unsigned int r_type,
252                  elfcpp::Elf_types<64>::Elf_Addr value,
253                  unsigned char* view,
254                  elfcpp::Elf_types<64>::Elf_Addr,
255                  section_size_type view_size);
256
257     // Do a TLS General-Dynamic to Local-Exec transition.
258     inline void
259     tls_gd_to_le(const Relocate_info<64, false>*, size_t relnum,
260                  Output_segment* tls_segment,
261                  const elfcpp::Rela<64, false>&, unsigned int r_type,
262                  elfcpp::Elf_types<64>::Elf_Addr value,
263                  unsigned char* view,
264                  section_size_type view_size);
265
266     // Do a TLSDESC-style General-Dynamic to Initial-Exec transition.
267     inline void
268     tls_desc_gd_to_ie(const Relocate_info<64, false>*, size_t relnum,
269                       Output_segment* tls_segment,
270                       const elfcpp::Rela<64, false>&, unsigned int r_type,
271                       elfcpp::Elf_types<64>::Elf_Addr value,
272                       unsigned char* view,
273                       elfcpp::Elf_types<64>::Elf_Addr,
274                       section_size_type view_size);
275
276     // Do a TLSDESC-style General-Dynamic to Local-Exec transition.
277     inline void
278     tls_desc_gd_to_le(const Relocate_info<64, false>*, size_t relnum,
279                       Output_segment* tls_segment,
280                       const elfcpp::Rela<64, false>&, unsigned int r_type,
281                       elfcpp::Elf_types<64>::Elf_Addr value,
282                       unsigned char* view,
283                       section_size_type view_size);
284
285     // Do a TLS Local-Dynamic to Local-Exec transition.
286     inline void
287     tls_ld_to_le(const Relocate_info<64, false>*, size_t relnum,
288                  Output_segment* tls_segment,
289                  const elfcpp::Rela<64, false>&, unsigned int r_type,
290                  elfcpp::Elf_types<64>::Elf_Addr value,
291                  unsigned char* view,
292                  section_size_type view_size);
293
294     // Do a TLS Initial-Exec to Local-Exec transition.
295     static inline void
296     tls_ie_to_le(const Relocate_info<64, false>*, size_t relnum,
297                  Output_segment* tls_segment,
298                  const elfcpp::Rela<64, false>&, unsigned int r_type,
299                  elfcpp::Elf_types<64>::Elf_Addr value,
300                  unsigned char* view,
301                  section_size_type view_size);
302
303     // This is set if we should skip the next reloc, which should be a
304     // PLT32 reloc against ___tls_get_addr.
305     bool skip_call_tls_get_addr_;
306
307     // This is set if we see a relocation which could load the address
308     // of the TLS block.  Whether we see such a relocation determines
309     // how we handle the R_X86_64_DTPOFF32 relocation, which is used
310     // in debugging sections.
311     bool saw_tls_block_reloc_;
312   };
313
314   // A class which returns the size required for a relocation type,
315   // used while scanning relocs during a relocatable link.
316   class Relocatable_size_for_reloc
317   {
318    public:
319     unsigned int
320     get_size_for_reloc(unsigned int, Relobj*);
321   };
322
323   // Adjust TLS relocation type based on the options and whether this
324   // is a local symbol.
325   static tls::Tls_optimization
326   optimize_tls_reloc(bool is_final, int r_type);
327
328   // Get the GOT section, creating it if necessary.
329   Output_data_got<64, false>*
330   got_section(Symbol_table*, Layout*);
331
332   // Get the GOT PLT section.
333   Output_data_space*
334   got_plt_section() const
335   {
336     gold_assert(this->got_plt_ != NULL);
337     return this->got_plt_;
338   }
339
340   // Create the PLT section.
341   void
342   make_plt_section(Symbol_table* symtab, Layout* layout);
343
344   // Create a PLT entry for a global symbol.
345   void
346   make_plt_entry(Symbol_table*, Layout*, Symbol*);
347
348   // Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
349   void
350   define_tls_base_symbol(Symbol_table*, Layout*);
351
352   // Create the reserved PLT and GOT entries for the TLS descriptor resolver.
353   void
354   reserve_tlsdesc_entries(Symbol_table* symtab, Layout* layout);
355
356   // Create a GOT entry for the TLS module index.
357   unsigned int
358   got_mod_index_entry(Symbol_table* symtab, Layout* layout,
359                       Sized_relobj<64, false>* object);
360
361   // Get the PLT section.
362   Output_data_plt_x86_64*
363   plt_section() const
364   {
365     gold_assert(this->plt_ != NULL);
366     return this->plt_;
367   }
368
369   // Get the dynamic reloc section, creating it if necessary.
370   Reloc_section*
371   rela_dyn_section(Layout*);
372
373   // Return true if the symbol may need a COPY relocation.
374   // References from an executable object to non-function symbols
375   // defined in a dynamic object may need a COPY relocation.
376   bool
377   may_need_copy_reloc(Symbol* gsym)
378   {
379     return (!parameters->options().shared()
380             && gsym->is_from_dynobj()
381             && gsym->type() != elfcpp::STT_FUNC);
382   }
383
384   // Add a potential copy relocation.
385   void
386   copy_reloc(Symbol_table* symtab, Layout* layout,
387              Sized_relobj<64, false>* object,
388              unsigned int shndx, Output_section* output_section,
389              Symbol* sym, const elfcpp::Rela<64, false>& reloc)
390   {
391     this->copy_relocs_.copy_reloc(symtab, layout,
392                                   symtab->get_sized_symbol<64>(sym),
393                                   object, shndx, output_section,
394                                   reloc, this->rela_dyn_section(layout));
395   }
396
397   // Information about this specific target which we pass to the
398   // general Target structure.
399   static const Target::Target_info x86_64_info;
400
401   enum Got_type
402   {
403     GOT_TYPE_STANDARD = 0,      // GOT entry for a regular symbol
404     GOT_TYPE_TLS_OFFSET = 1,    // GOT entry for TLS offset
405     GOT_TYPE_TLS_PAIR = 2,      // GOT entry for TLS module/offset pair
406     GOT_TYPE_TLS_DESC = 3       // GOT entry for TLS_DESC pair
407   };
408
409   // The GOT section.
410   Output_data_got<64, false>* got_;
411   // The PLT section.
412   Output_data_plt_x86_64* plt_;
413   // The GOT PLT section.
414   Output_data_space* got_plt_;
415   // The dynamic reloc section.
416   Reloc_section* rela_dyn_;
417   // Relocs saved to avoid a COPY reloc.
418   Copy_relocs<elfcpp::SHT_RELA, 64, false> copy_relocs_;
419   // Space for variables copied with a COPY reloc.
420   Output_data_space* dynbss_;
421   // Offset of the GOT entry for the TLS module index.
422   unsigned int got_mod_index_offset_;
423   // True if the _TLS_MODULE_BASE_ symbol has been defined.
424   bool tls_base_symbol_defined_;
425 };
426
427 const Target::Target_info Target_x86_64::x86_64_info =
428 {
429   64,                   // size
430   false,                // is_big_endian
431   elfcpp::EM_X86_64,    // machine_code
432   false,                // has_make_symbol
433   false,                // has_resolve
434   true,                 // has_code_fill
435   true,                 // is_default_stack_executable
436   '\0',                 // wrap_char
437   "/lib/ld64.so.1",     // program interpreter
438   0x400000,             // default_text_segment_address
439   0x1000,               // abi_pagesize (overridable by -z max-page-size)
440   0x1000                // common_pagesize (overridable by -z common-page-size)
441 };
442
443 // Get the GOT section, creating it if necessary.
444
445 Output_data_got<64, false>*
446 Target_x86_64::got_section(Symbol_table* symtab, Layout* layout)
447 {
448   if (this->got_ == NULL)
449     {
450       gold_assert(symtab != NULL && layout != NULL);
451
452       this->got_ = new Output_data_got<64, false>();
453
454       Output_section* os;
455       os = layout->add_output_section_data(".got", elfcpp::SHT_PROGBITS,
456                                            (elfcpp::SHF_ALLOC
457                                             | elfcpp::SHF_WRITE),
458                                            this->got_);
459       os->set_is_relro();
460
461       // The old GNU linker creates a .got.plt section.  We just
462       // create another set of data in the .got section.  Note that we
463       // always create a PLT if we create a GOT, although the PLT
464       // might be empty.
465       this->got_plt_ = new Output_data_space(8, "** GOT PLT");
466       os = layout->add_output_section_data(".got", elfcpp::SHT_PROGBITS,
467                                            (elfcpp::SHF_ALLOC
468                                             | elfcpp::SHF_WRITE),
469                                            this->got_plt_);
470       os->set_is_relro();
471
472       // The first three entries are reserved.
473       this->got_plt_->set_current_data_size(3 * 8);
474
475       // Define _GLOBAL_OFFSET_TABLE_ at the start of the PLT.
476       symtab->define_in_output_data("_GLOBAL_OFFSET_TABLE_", NULL,
477                                     this->got_plt_,
478                                     0, 0, elfcpp::STT_OBJECT,
479                                     elfcpp::STB_LOCAL,
480                                     elfcpp::STV_HIDDEN, 0,
481                                     false, false);
482     }
483
484   return this->got_;
485 }
486
487 // Get the dynamic reloc section, creating it if necessary.
488
489 Target_x86_64::Reloc_section*
490 Target_x86_64::rela_dyn_section(Layout* layout)
491 {
492   if (this->rela_dyn_ == NULL)
493     {
494       gold_assert(layout != NULL);
495       this->rela_dyn_ = new Reloc_section(parameters->options().combreloc());
496       layout->add_output_section_data(".rela.dyn", elfcpp::SHT_RELA,
497                                       elfcpp::SHF_ALLOC, this->rela_dyn_);
498     }
499   return this->rela_dyn_;
500 }
501
502 // A class to handle the PLT data.
503
504 class Output_data_plt_x86_64 : public Output_section_data
505 {
506  public:
507   typedef Output_data_reloc<elfcpp::SHT_RELA, true, 64, false> Reloc_section;
508
509   Output_data_plt_x86_64(Layout*, Output_data_got<64, false>*,
510                          Output_data_space*);
511
512   // Add an entry to the PLT.
513   void
514   add_entry(Symbol* gsym);
515
516   // Add the reserved TLSDESC_PLT entry to the PLT.
517   void
518   reserve_tlsdesc_entry(unsigned int got_offset)
519   { this->tlsdesc_got_offset_ = got_offset; }
520
521   // Return true if a TLSDESC_PLT entry has been reserved.
522   bool
523   has_tlsdesc_entry() const
524   { return this->tlsdesc_got_offset_ != -1U; }
525
526   // Return the GOT offset for the reserved TLSDESC_PLT entry.
527   unsigned int
528   get_tlsdesc_got_offset() const
529   { return this->tlsdesc_got_offset_; }
530
531   // Return the offset of the reserved TLSDESC_PLT entry.
532   unsigned int
533   get_tlsdesc_plt_offset() const
534   { return (this->count_ + 1) * plt_entry_size; }
535
536   // Return the .rel.plt section data.
537   const Reloc_section*
538   rel_plt() const
539   { return this->rel_; }
540
541  protected:
542   void
543   do_adjust_output_section(Output_section* os);
544
545   // Write to a map file.
546   void
547   do_print_to_mapfile(Mapfile* mapfile) const
548   { mapfile->print_output_data(this, _("** PLT")); }
549
550  private:
551   // The size of an entry in the PLT.
552   static const int plt_entry_size = 16;
553
554   // The first entry in the PLT.
555   // From the AMD64 ABI: "Unlike Intel386 ABI, this ABI uses the same
556   // procedure linkage table for both programs and shared objects."
557   static unsigned char first_plt_entry[plt_entry_size];
558
559   // Other entries in the PLT for an executable.
560   static unsigned char plt_entry[plt_entry_size];
561
562   // The reserved TLSDESC entry in the PLT for an executable.
563   static unsigned char tlsdesc_plt_entry[plt_entry_size];
564
565   // Set the final size.
566   void
567   set_final_data_size();
568
569   // Write out the PLT data.
570   void
571   do_write(Output_file*);
572
573   // The reloc section.
574   Reloc_section* rel_;
575   // The .got section.
576   Output_data_got<64, false>* got_;
577   // The .got.plt section.
578   Output_data_space* got_plt_;
579   // The number of PLT entries.
580   unsigned int count_;
581   // Offset of the reserved TLSDESC_GOT entry when needed.
582   unsigned int tlsdesc_got_offset_;
583 };
584
585 // Create the PLT section.  The ordinary .got section is an argument,
586 // since we need to refer to the start.  We also create our own .got
587 // section just for PLT entries.
588
589 Output_data_plt_x86_64::Output_data_plt_x86_64(Layout* layout,
590                                                Output_data_got<64, false>* got,
591                                                Output_data_space* got_plt)
592   : Output_section_data(8), got_(got), got_plt_(got_plt), count_(0),
593     tlsdesc_got_offset_(-1U)
594 {
595   this->rel_ = new Reloc_section(false);
596   layout->add_output_section_data(".rela.plt", elfcpp::SHT_RELA,
597                                   elfcpp::SHF_ALLOC, this->rel_);
598 }
599
600 void
601 Output_data_plt_x86_64::do_adjust_output_section(Output_section* os)
602 {
603   // UnixWare sets the entsize of .plt to 4, and so does the old GNU
604   // linker, and so do we.
605   os->set_entsize(4);
606 }
607
608 // Add an entry to the PLT.
609
610 void
611 Output_data_plt_x86_64::add_entry(Symbol* gsym)
612 {
613   gold_assert(!gsym->has_plt_offset());
614
615   // Note that when setting the PLT offset we skip the initial
616   // reserved PLT entry.
617   gsym->set_plt_offset((this->count_ + 1) * plt_entry_size);
618
619   ++this->count_;
620
621   section_offset_type got_offset = this->got_plt_->current_data_size();
622
623   // Every PLT entry needs a GOT entry which points back to the PLT
624   // entry (this will be changed by the dynamic linker, normally
625   // lazily when the function is called).
626   this->got_plt_->set_current_data_size(got_offset + 8);
627
628   // Every PLT entry needs a reloc.
629   gsym->set_needs_dynsym_entry();
630   this->rel_->add_global(gsym, elfcpp::R_X86_64_JUMP_SLOT, this->got_plt_,
631                          got_offset, 0);
632
633   // Note that we don't need to save the symbol.  The contents of the
634   // PLT are independent of which symbols are used.  The symbols only
635   // appear in the relocations.
636 }
637
638 // Set the final size.
639 void
640 Output_data_plt_x86_64::set_final_data_size()
641 {
642   unsigned int count = this->count_;
643   if (this->has_tlsdesc_entry())
644     ++count;
645   this->set_data_size((count + 1) * plt_entry_size);
646 }
647
648 // The first entry in the PLT for an executable.
649
650 unsigned char Output_data_plt_x86_64::first_plt_entry[plt_entry_size] =
651 {
652   // From AMD64 ABI Draft 0.98, page 76
653   0xff, 0x35,   // pushq contents of memory address
654   0, 0, 0, 0,   // replaced with address of .got + 8
655   0xff, 0x25,   // jmp indirect
656   0, 0, 0, 0,   // replaced with address of .got + 16
657   0x90, 0x90, 0x90, 0x90   // noop (x4)
658 };
659
660 // Subsequent entries in the PLT for an executable.
661
662 unsigned char Output_data_plt_x86_64::plt_entry[plt_entry_size] =
663 {
664   // From AMD64 ABI Draft 0.98, page 76
665   0xff, 0x25,   // jmpq indirect
666   0, 0, 0, 0,   // replaced with address of symbol in .got
667   0x68,         // pushq immediate
668   0, 0, 0, 0,   // replaced with offset into relocation table
669   0xe9,         // jmpq relative
670   0, 0, 0, 0    // replaced with offset to start of .plt
671 };
672
673 // The reserved TLSDESC entry in the PLT for an executable.
674
675 unsigned char Output_data_plt_x86_64::tlsdesc_plt_entry[plt_entry_size] =
676 {
677   // From Alexandre Oliva, "Thread-Local Storage Descriptors for IA32
678   // and AMD64/EM64T", Version 0.9.4 (2005-10-10).
679   0xff, 0x35,   // pushq x(%rip)
680   0, 0, 0, 0,   // replaced with address of linkmap GOT entry (at PLTGOT + 8)
681   0xff, 0x25,   // jmpq *y(%rip)
682   0, 0, 0, 0,   // replaced with offset of reserved TLSDESC_GOT entry
683   0x0f, 0x1f,   // nop
684   0x40, 0
685 };
686
687 // Write out the PLT.  This uses the hand-coded instructions above,
688 // and adjusts them as needed.  This is specified by the AMD64 ABI.
689
690 void
691 Output_data_plt_x86_64::do_write(Output_file* of)
692 {
693   const off_t offset = this->offset();
694   const section_size_type oview_size =
695     convert_to_section_size_type(this->data_size());
696   unsigned char* const oview = of->get_output_view(offset, oview_size);
697
698   const off_t got_file_offset = this->got_plt_->offset();
699   const section_size_type got_size =
700     convert_to_section_size_type(this->got_plt_->data_size());
701   unsigned char* const got_view = of->get_output_view(got_file_offset,
702                                                       got_size);
703
704   unsigned char* pov = oview;
705
706   // The base address of the .plt section.
707   elfcpp::Elf_types<64>::Elf_Addr plt_address = this->address();
708   // The base address of the .got section.
709   elfcpp::Elf_types<64>::Elf_Addr got_base = this->got_->address();
710   // The base address of the PLT portion of the .got section,
711   // which is where the GOT pointer will point, and where the
712   // three reserved GOT entries are located.
713   elfcpp::Elf_types<64>::Elf_Addr got_address = this->got_plt_->address();
714
715   memcpy(pov, first_plt_entry, plt_entry_size);
716   // We do a jmp relative to the PC at the end of this instruction.
717   elfcpp::Swap_unaligned<32, false>::writeval(pov + 2,
718                                               (got_address + 8
719                                                - (plt_address + 6)));
720   elfcpp::Swap<32, false>::writeval(pov + 8,
721                                     (got_address + 16
722                                      - (plt_address + 12)));
723   pov += plt_entry_size;
724
725   unsigned char* got_pov = got_view;
726
727   memset(got_pov, 0, 24);
728   got_pov += 24;
729
730   unsigned int plt_offset = plt_entry_size;
731   unsigned int got_offset = 24;
732   const unsigned int count = this->count_;
733   for (unsigned int plt_index = 0;
734        plt_index < count;
735        ++plt_index,
736          pov += plt_entry_size,
737          got_pov += 8,
738          plt_offset += plt_entry_size,
739          got_offset += 8)
740     {
741       // Set and adjust the PLT entry itself.
742       memcpy(pov, plt_entry, plt_entry_size);
743       elfcpp::Swap_unaligned<32, false>::writeval(pov + 2,
744                                                   (got_address + got_offset
745                                                    - (plt_address + plt_offset
746                                                       + 6)));
747
748       elfcpp::Swap_unaligned<32, false>::writeval(pov + 7, plt_index);
749       elfcpp::Swap<32, false>::writeval(pov + 12,
750                                         - (plt_offset + plt_entry_size));
751
752       // Set the entry in the GOT.
753       elfcpp::Swap<64, false>::writeval(got_pov, plt_address + plt_offset + 6);
754     }
755
756   if (this->has_tlsdesc_entry())
757     {
758       // Set and adjust the reserved TLSDESC PLT entry.
759       unsigned int tlsdesc_got_offset = this->get_tlsdesc_got_offset();
760       memcpy(pov, tlsdesc_plt_entry, plt_entry_size);
761       elfcpp::Swap_unaligned<32, false>::writeval(pov + 2,
762                                                   (got_address + 8
763                                                    - (plt_address + plt_offset
764                                                       + 6)));
765       elfcpp::Swap_unaligned<32, false>::writeval(pov + 8,
766                                                   (got_base
767                                                    + tlsdesc_got_offset
768                                                    - (plt_address + plt_offset
769                                                       + 12)));
770       pov += plt_entry_size;
771     }
772
773   gold_assert(static_cast<section_size_type>(pov - oview) == oview_size);
774   gold_assert(static_cast<section_size_type>(got_pov - got_view) == got_size);
775
776   of->write_output_view(offset, oview_size, oview);
777   of->write_output_view(got_file_offset, got_size, got_view);
778 }
779
780 // Create the PLT section.
781
782 void
783 Target_x86_64::make_plt_section(Symbol_table* symtab, Layout* layout)
784 {
785   if (this->plt_ == NULL)
786     {
787       // Create the GOT sections first.
788       this->got_section(symtab, layout);
789
790       this->plt_ = new Output_data_plt_x86_64(layout, this->got_,
791                                               this->got_plt_);
792       layout->add_output_section_data(".plt", elfcpp::SHT_PROGBITS,
793                                       (elfcpp::SHF_ALLOC
794                                        | elfcpp::SHF_EXECINSTR),
795                                       this->plt_);
796     }
797 }
798
799 // Create a PLT entry for a global symbol.
800
801 void
802 Target_x86_64::make_plt_entry(Symbol_table* symtab, Layout* layout,
803                               Symbol* gsym)
804 {
805   if (gsym->has_plt_offset())
806     return;
807
808   if (this->plt_ == NULL)
809     this->make_plt_section(symtab, layout);
810
811   this->plt_->add_entry(gsym);
812 }
813
814 // Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
815
816 void
817 Target_x86_64::define_tls_base_symbol(Symbol_table* symtab, Layout* layout)
818 {
819   if (this->tls_base_symbol_defined_)
820     return;
821
822   Output_segment* tls_segment = layout->tls_segment();
823   if (tls_segment != NULL)
824     {
825       bool is_exec = parameters->options().output_is_executable();
826       symtab->define_in_output_segment("_TLS_MODULE_BASE_", NULL,
827                                        tls_segment, 0, 0,
828                                        elfcpp::STT_TLS,
829                                        elfcpp::STB_LOCAL,
830                                        elfcpp::STV_HIDDEN, 0,
831                                        (is_exec
832                                         ? Symbol::SEGMENT_END
833                                         : Symbol::SEGMENT_START),
834                                        true);
835     }
836   this->tls_base_symbol_defined_ = true;
837 }
838
839 // Create the reserved PLT and GOT entries for the TLS descriptor resolver.
840
841 void
842 Target_x86_64::reserve_tlsdesc_entries(Symbol_table* symtab,
843                                              Layout* layout)
844 {
845   if (this->plt_ == NULL)
846     this->make_plt_section(symtab, layout);
847
848   if (!this->plt_->has_tlsdesc_entry())
849     {
850       // Allocate the TLSDESC_GOT entry.
851       Output_data_got<64, false>* got = this->got_section(symtab, layout);
852       unsigned int got_offset = got->add_constant(0);
853
854       // Allocate the TLSDESC_PLT entry.
855       this->plt_->reserve_tlsdesc_entry(got_offset);
856     }
857 }
858
859 // Create a GOT entry for the TLS module index.
860
861 unsigned int
862 Target_x86_64::got_mod_index_entry(Symbol_table* symtab, Layout* layout,
863                                    Sized_relobj<64, false>* object)
864 {
865   if (this->got_mod_index_offset_ == -1U)
866     {
867       gold_assert(symtab != NULL && layout != NULL && object != NULL);
868       Reloc_section* rela_dyn = this->rela_dyn_section(layout);
869       Output_data_got<64, false>* got = this->got_section(symtab, layout);
870       unsigned int got_offset = got->add_constant(0);
871       rela_dyn->add_local(object, 0, elfcpp::R_X86_64_DTPMOD64, got,
872                           got_offset, 0);
873       got->add_constant(0);
874       this->got_mod_index_offset_ = got_offset;
875     }
876   return this->got_mod_index_offset_;
877 }
878
879 // Optimize the TLS relocation type based on what we know about the
880 // symbol.  IS_FINAL is true if the final address of this symbol is
881 // known at link time.
882
883 tls::Tls_optimization
884 Target_x86_64::optimize_tls_reloc(bool is_final, int r_type)
885 {
886   // If we are generating a shared library, then we can't do anything
887   // in the linker.
888   if (parameters->options().shared())
889     return tls::TLSOPT_NONE;
890
891   switch (r_type)
892     {
893     case elfcpp::R_X86_64_TLSGD:
894     case elfcpp::R_X86_64_GOTPC32_TLSDESC:
895     case elfcpp::R_X86_64_TLSDESC_CALL:
896       // These are General-Dynamic which permits fully general TLS
897       // access.  Since we know that we are generating an executable,
898       // we can convert this to Initial-Exec.  If we also know that
899       // this is a local symbol, we can further switch to Local-Exec.
900       if (is_final)
901         return tls::TLSOPT_TO_LE;
902       return tls::TLSOPT_TO_IE;
903
904     case elfcpp::R_X86_64_TLSLD:
905       // This is Local-Dynamic, which refers to a local symbol in the
906       // dynamic TLS block.  Since we know that we generating an
907       // executable, we can switch to Local-Exec.
908       return tls::TLSOPT_TO_LE;
909
910     case elfcpp::R_X86_64_DTPOFF32:
911     case elfcpp::R_X86_64_DTPOFF64:
912       // Another Local-Dynamic reloc.
913       return tls::TLSOPT_TO_LE;
914
915     case elfcpp::R_X86_64_GOTTPOFF:
916       // These are Initial-Exec relocs which get the thread offset
917       // from the GOT.  If we know that we are linking against the
918       // local symbol, we can switch to Local-Exec, which links the
919       // thread offset into the instruction.
920       if (is_final)
921         return tls::TLSOPT_TO_LE;
922       return tls::TLSOPT_NONE;
923
924     case elfcpp::R_X86_64_TPOFF32:
925       // When we already have Local-Exec, there is nothing further we
926       // can do.
927       return tls::TLSOPT_NONE;
928
929     default:
930       gold_unreachable();
931     }
932 }
933
934 // Report an unsupported relocation against a local symbol.
935
936 void
937 Target_x86_64::Scan::unsupported_reloc_local(Sized_relobj<64, false>* object,
938                                              unsigned int r_type)
939 {
940   gold_error(_("%s: unsupported reloc %u against local symbol"),
941              object->name().c_str(), r_type);
942 }
943
944 // We are about to emit a dynamic relocation of type R_TYPE.  If the
945 // dynamic linker does not support it, issue an error.  The GNU linker
946 // only issues a non-PIC error for an allocated read-only section.
947 // Here we know the section is allocated, but we don't know that it is
948 // read-only.  But we check for all the relocation types which the
949 // glibc dynamic linker supports, so it seems appropriate to issue an
950 // error even if the section is not read-only.
951
952 void
953 Target_x86_64::Scan::check_non_pic(Relobj* object, unsigned int r_type)
954 {
955   switch (r_type)
956     {
957       // These are the relocation types supported by glibc for x86_64.
958     case elfcpp::R_X86_64_RELATIVE:
959     case elfcpp::R_X86_64_GLOB_DAT:
960     case elfcpp::R_X86_64_JUMP_SLOT:
961     case elfcpp::R_X86_64_DTPMOD64:
962     case elfcpp::R_X86_64_DTPOFF64:
963     case elfcpp::R_X86_64_TPOFF64:
964     case elfcpp::R_X86_64_64:
965     case elfcpp::R_X86_64_32:
966     case elfcpp::R_X86_64_PC32:
967     case elfcpp::R_X86_64_COPY:
968       return;
969
970     default:
971       // This prevents us from issuing more than one error per reloc
972       // section.  But we can still wind up issuing more than one
973       // error per object file.
974       if (this->issued_non_pic_error_)
975         return;
976       object->error(_("requires unsupported dynamic reloc; "
977                       "recompile with -fPIC"));
978       this->issued_non_pic_error_ = true;
979       return;
980
981     case elfcpp::R_X86_64_NONE:
982       gold_unreachable();
983     }
984 }
985
986 // Scan a relocation for a local symbol.
987
988 inline void
989 Target_x86_64::Scan::local(const General_options&,
990                            Symbol_table* symtab,
991                            Layout* layout,
992                            Target_x86_64* target,
993                            Sized_relobj<64, false>* object,
994                            unsigned int data_shndx,
995                            Output_section* output_section,
996                            const elfcpp::Rela<64, false>& reloc,
997                            unsigned int r_type,
998                            const elfcpp::Sym<64, false>& lsym)
999 {
1000   switch (r_type)
1001     {
1002     case elfcpp::R_X86_64_NONE:
1003     case elfcpp::R_386_GNU_VTINHERIT:
1004     case elfcpp::R_386_GNU_VTENTRY:
1005       break;
1006
1007     case elfcpp::R_X86_64_64:
1008       // If building a shared library (or a position-independent
1009       // executable), we need to create a dynamic relocation for this
1010       // location.  The relocation applied at link time will apply the
1011       // link-time value, so we flag the location with an
1012       // R_X86_64_RELATIVE relocation so the dynamic loader can
1013       // relocate it easily.
1014       if (parameters->options().output_is_position_independent())
1015         {
1016           unsigned int r_sym = elfcpp::elf_r_sym<64>(reloc.get_r_info());
1017           Reloc_section* rela_dyn = target->rela_dyn_section(layout);
1018           rela_dyn->add_local_relative(object, r_sym,
1019                                        elfcpp::R_X86_64_RELATIVE,
1020                                        output_section, data_shndx,
1021                                        reloc.get_r_offset(),
1022                                        reloc.get_r_addend());
1023         }
1024       break;
1025
1026     case elfcpp::R_X86_64_32:
1027     case elfcpp::R_X86_64_32S:
1028     case elfcpp::R_X86_64_16:
1029     case elfcpp::R_X86_64_8:
1030       // If building a shared library (or a position-independent
1031       // executable), we need to create a dynamic relocation for this
1032       // location.  We can't use an R_X86_64_RELATIVE relocation
1033       // because that is always a 64-bit relocation.
1034       if (parameters->options().output_is_position_independent())
1035         {
1036           this->check_non_pic(object, r_type);
1037
1038           Reloc_section* rela_dyn = target->rela_dyn_section(layout);
1039           unsigned int r_sym = elfcpp::elf_r_sym<64>(reloc.get_r_info());
1040           if (lsym.get_st_type() != elfcpp::STT_SECTION)
1041             rela_dyn->add_local(object, r_sym, r_type, output_section,
1042                                 data_shndx, reloc.get_r_offset(),
1043                                 reloc.get_r_addend());
1044           else
1045             {
1046               gold_assert(lsym.get_st_value() == 0);
1047               unsigned int shndx = lsym.get_st_shndx();
1048               bool is_ordinary;
1049               shndx = object->adjust_sym_shndx(r_sym, shndx,
1050                                                &is_ordinary);
1051               if (!is_ordinary)
1052                 object->error(_("section symbol %u has bad shndx %u"),
1053                               r_sym, shndx);
1054               else
1055                 rela_dyn->add_local_section(object, shndx,
1056                                             r_type, output_section,
1057                                             data_shndx, reloc.get_r_offset(),
1058                                             reloc.get_r_addend());
1059             }
1060         }
1061       break;
1062
1063     case elfcpp::R_X86_64_PC64:
1064     case elfcpp::R_X86_64_PC32:
1065     case elfcpp::R_X86_64_PC16:
1066     case elfcpp::R_X86_64_PC8:
1067       break;
1068
1069     case elfcpp::R_X86_64_PLT32:
1070       // Since we know this is a local symbol, we can handle this as a
1071       // PC32 reloc.
1072       break;
1073
1074     case elfcpp::R_X86_64_GOTPC32:
1075     case elfcpp::R_X86_64_GOTOFF64:
1076     case elfcpp::R_X86_64_GOTPC64:
1077     case elfcpp::R_X86_64_PLTOFF64:
1078       // We need a GOT section.
1079       target->got_section(symtab, layout);
1080       // For PLTOFF64, we'd normally want a PLT section, but since we
1081       // know this is a local symbol, no PLT is needed.
1082       break;
1083
1084     case elfcpp::R_X86_64_GOT64:
1085     case elfcpp::R_X86_64_GOT32:
1086     case elfcpp::R_X86_64_GOTPCREL64:
1087     case elfcpp::R_X86_64_GOTPCREL:
1088     case elfcpp::R_X86_64_GOTPLT64:
1089       {
1090         // The symbol requires a GOT entry.
1091         Output_data_got<64, false>* got = target->got_section(symtab, layout);
1092         unsigned int r_sym = elfcpp::elf_r_sym<64>(reloc.get_r_info());
1093         if (got->add_local(object, r_sym, GOT_TYPE_STANDARD))
1094           {
1095             // If we are generating a shared object, we need to add a
1096             // dynamic relocation for this symbol's GOT entry.
1097             if (parameters->options().output_is_position_independent())
1098               {
1099                 Reloc_section* rela_dyn = target->rela_dyn_section(layout);
1100                 // R_X86_64_RELATIVE assumes a 64-bit relocation.
1101                 if (r_type != elfcpp::R_X86_64_GOT32)
1102                   rela_dyn->add_local_relative(
1103                       object, r_sym, elfcpp::R_X86_64_RELATIVE, got,
1104                       object->local_got_offset(r_sym, GOT_TYPE_STANDARD), 0);
1105                 else
1106                   {
1107                     this->check_non_pic(object, r_type);
1108
1109                     gold_assert(lsym.get_st_type() != elfcpp::STT_SECTION);
1110                     rela_dyn->add_local(
1111                         object, r_sym, r_type, got,
1112                         object->local_got_offset(r_sym, GOT_TYPE_STANDARD), 0);
1113                   }
1114               }
1115           }
1116         // For GOTPLT64, we'd normally want a PLT section, but since
1117         // we know this is a local symbol, no PLT is needed.
1118       }
1119       break;
1120
1121     case elfcpp::R_X86_64_COPY:
1122     case elfcpp::R_X86_64_GLOB_DAT:
1123     case elfcpp::R_X86_64_JUMP_SLOT:
1124     case elfcpp::R_X86_64_RELATIVE:
1125       // These are outstanding tls relocs, which are unexpected when linking
1126     case elfcpp::R_X86_64_TPOFF64:
1127     case elfcpp::R_X86_64_DTPMOD64:
1128     case elfcpp::R_X86_64_TLSDESC:
1129       gold_error(_("%s: unexpected reloc %u in object file"),
1130                  object->name().c_str(), r_type);
1131       break;
1132
1133       // These are initial tls relocs, which are expected when linking
1134     case elfcpp::R_X86_64_TLSGD:            // Global-dynamic
1135     case elfcpp::R_X86_64_GOTPC32_TLSDESC:  // Global-dynamic (from ~oliva url)
1136     case elfcpp::R_X86_64_TLSDESC_CALL:
1137     case elfcpp::R_X86_64_TLSLD:            // Local-dynamic
1138     case elfcpp::R_X86_64_DTPOFF32:
1139     case elfcpp::R_X86_64_DTPOFF64:
1140     case elfcpp::R_X86_64_GOTTPOFF:         // Initial-exec
1141     case elfcpp::R_X86_64_TPOFF32:          // Local-exec
1142       {
1143         bool output_is_shared = parameters->options().shared();
1144         const tls::Tls_optimization optimized_type
1145             = Target_x86_64::optimize_tls_reloc(!output_is_shared, r_type);
1146         switch (r_type)
1147           {
1148           case elfcpp::R_X86_64_TLSGD:       // General-dynamic
1149             if (optimized_type == tls::TLSOPT_NONE)
1150               {
1151                 // Create a pair of GOT entries for the module index and
1152                 // dtv-relative offset.
1153                 Output_data_got<64, false>* got
1154                     = target->got_section(symtab, layout);
1155                 unsigned int r_sym = elfcpp::elf_r_sym<64>(reloc.get_r_info());
1156                 unsigned int shndx = lsym.get_st_shndx();
1157                 bool is_ordinary;
1158                 shndx = object->adjust_sym_shndx(r_sym, shndx, &is_ordinary);
1159                 if (!is_ordinary)
1160                   object->error(_("local symbol %u has bad shndx %u"),
1161                               r_sym, shndx);
1162                 else
1163                   got->add_local_pair_with_rela(object, r_sym,
1164                                                 shndx,
1165                                                 GOT_TYPE_TLS_PAIR,
1166                                                 target->rela_dyn_section(layout),
1167                                                 elfcpp::R_X86_64_DTPMOD64, 0);
1168               }
1169             else if (optimized_type != tls::TLSOPT_TO_LE)
1170               unsupported_reloc_local(object, r_type);
1171             break;
1172
1173           case elfcpp::R_X86_64_GOTPC32_TLSDESC:
1174             target->define_tls_base_symbol(symtab, layout);
1175             if (optimized_type == tls::TLSOPT_NONE)
1176               {
1177                 // Create reserved PLT and GOT entries for the resolver.
1178                 target->reserve_tlsdesc_entries(symtab, layout);
1179
1180                 // Generate a double GOT entry with an R_X86_64_TLSDESC reloc.
1181                 Output_data_got<64, false>* got
1182                     = target->got_section(symtab, layout);
1183                 unsigned int r_sym = elfcpp::elf_r_sym<64>(reloc.get_r_info());
1184                 unsigned int shndx = lsym.get_st_shndx();
1185                 bool is_ordinary;
1186                 shndx = object->adjust_sym_shndx(r_sym, shndx, &is_ordinary);
1187                 if (!is_ordinary)
1188                   object->error(_("local symbol %u has bad shndx %u"),
1189                               r_sym, shndx);
1190                 else
1191                   got->add_local_pair_with_rela(object, r_sym,
1192                                                 shndx,
1193                                                 GOT_TYPE_TLS_DESC,
1194                                                 target->rela_dyn_section(layout),
1195                                                 elfcpp::R_X86_64_TLSDESC, 0);
1196               }
1197             else if (optimized_type != tls::TLSOPT_TO_LE)
1198               unsupported_reloc_local(object, r_type);
1199             break;
1200
1201           case elfcpp::R_X86_64_TLSDESC_CALL:
1202             break;
1203
1204           case elfcpp::R_X86_64_TLSLD:       // Local-dynamic
1205             if (optimized_type == tls::TLSOPT_NONE)
1206               {
1207                 // Create a GOT entry for the module index.
1208                 target->got_mod_index_entry(symtab, layout, object);
1209               }
1210             else if (optimized_type != tls::TLSOPT_TO_LE)
1211               unsupported_reloc_local(object, r_type);
1212             break;
1213
1214           case elfcpp::R_X86_64_DTPOFF32:
1215           case elfcpp::R_X86_64_DTPOFF64:
1216             break;
1217
1218           case elfcpp::R_X86_64_GOTTPOFF:    // Initial-exec
1219             layout->set_has_static_tls();
1220             if (optimized_type == tls::TLSOPT_NONE)
1221               {
1222                 // Create a GOT entry for the tp-relative offset.
1223                 Output_data_got<64, false>* got
1224                     = target->got_section(symtab, layout);
1225                 unsigned int r_sym = elfcpp::elf_r_sym<64>(reloc.get_r_info());
1226                 got->add_local_with_rela(object, r_sym, GOT_TYPE_TLS_OFFSET,
1227                                          target->rela_dyn_section(layout),
1228                                          elfcpp::R_X86_64_TPOFF64);
1229               }
1230             else if (optimized_type != tls::TLSOPT_TO_LE)
1231               unsupported_reloc_local(object, r_type);
1232             break;
1233
1234           case elfcpp::R_X86_64_TPOFF32:     // Local-exec
1235             layout->set_has_static_tls();
1236             if (output_is_shared)
1237               unsupported_reloc_local(object, r_type);
1238             break;
1239
1240           default:
1241             gold_unreachable();
1242           }
1243       }
1244       break;
1245
1246     case elfcpp::R_X86_64_SIZE32:
1247     case elfcpp::R_X86_64_SIZE64:
1248     default:
1249       gold_error(_("%s: unsupported reloc %u against local symbol"),
1250                  object->name().c_str(), r_type);
1251       break;
1252     }
1253 }
1254
1255
1256 // Report an unsupported relocation against a global symbol.
1257
1258 void
1259 Target_x86_64::Scan::unsupported_reloc_global(Sized_relobj<64, false>* object,
1260                                               unsigned int r_type,
1261                                               Symbol* gsym)
1262 {
1263   gold_error(_("%s: unsupported reloc %u against global symbol %s"),
1264              object->name().c_str(), r_type, gsym->demangled_name().c_str());
1265 }
1266
1267 // Scan a relocation for a global symbol.
1268
1269 inline void
1270 Target_x86_64::Scan::global(const General_options&,
1271                             Symbol_table* symtab,
1272                             Layout* layout,
1273                             Target_x86_64* target,
1274                             Sized_relobj<64, false>* object,
1275                             unsigned int data_shndx,
1276                             Output_section* output_section,
1277                             const elfcpp::Rela<64, false>& reloc,
1278                             unsigned int r_type,
1279                             Symbol* gsym)
1280 {
1281   switch (r_type)
1282     {
1283     case elfcpp::R_X86_64_NONE:
1284     case elfcpp::R_386_GNU_VTINHERIT:
1285     case elfcpp::R_386_GNU_VTENTRY:
1286       break;
1287
1288     case elfcpp::R_X86_64_64:
1289     case elfcpp::R_X86_64_32:
1290     case elfcpp::R_X86_64_32S:
1291     case elfcpp::R_X86_64_16:
1292     case elfcpp::R_X86_64_8:
1293       {
1294         // Make a PLT entry if necessary.
1295         if (gsym->needs_plt_entry())
1296           {
1297             target->make_plt_entry(symtab, layout, gsym);
1298             // Since this is not a PC-relative relocation, we may be
1299             // taking the address of a function. In that case we need to
1300             // set the entry in the dynamic symbol table to the address of
1301             // the PLT entry.
1302             if (gsym->is_from_dynobj() && !parameters->options().shared())
1303               gsym->set_needs_dynsym_value();
1304           }
1305         // Make a dynamic relocation if necessary.
1306         if (gsym->needs_dynamic_reloc(Symbol::ABSOLUTE_REF))
1307           {
1308             if (target->may_need_copy_reloc(gsym))
1309               {
1310                 target->copy_reloc(symtab, layout, object,
1311                                    data_shndx, output_section, gsym, reloc);
1312               }
1313             else if (r_type == elfcpp::R_X86_64_64
1314                      && gsym->can_use_relative_reloc(false))
1315               {
1316                 Reloc_section* rela_dyn = target->rela_dyn_section(layout);
1317                 rela_dyn->add_global_relative(gsym, elfcpp::R_X86_64_RELATIVE,
1318                                               output_section, object,
1319                                               data_shndx, reloc.get_r_offset(),
1320                                               reloc.get_r_addend());
1321               }
1322             else
1323               {
1324                 this->check_non_pic(object, r_type);
1325                 Reloc_section* rela_dyn = target->rela_dyn_section(layout);
1326                 rela_dyn->add_global(gsym, r_type, output_section, object,
1327                                      data_shndx, reloc.get_r_offset(),
1328                                      reloc.get_r_addend());
1329               }
1330           }
1331       }
1332       break;
1333
1334     case elfcpp::R_X86_64_PC64:
1335     case elfcpp::R_X86_64_PC32:
1336     case elfcpp::R_X86_64_PC16:
1337     case elfcpp::R_X86_64_PC8:
1338       {
1339         // Make a PLT entry if necessary.
1340         if (gsym->needs_plt_entry())
1341           target->make_plt_entry(symtab, layout, gsym);
1342         // Make a dynamic relocation if necessary.
1343         int flags = Symbol::NON_PIC_REF;
1344         if (gsym->type() == elfcpp::STT_FUNC)
1345           flags |= Symbol::FUNCTION_CALL;
1346         if (gsym->needs_dynamic_reloc(flags))
1347           {
1348             if (target->may_need_copy_reloc(gsym))
1349               {
1350                 target->copy_reloc(symtab, layout, object,
1351                                    data_shndx, output_section, gsym, reloc);
1352               }
1353             else
1354               {
1355                 this->check_non_pic(object, r_type);
1356                 Reloc_section* rela_dyn = target->rela_dyn_section(layout);
1357                 rela_dyn->add_global(gsym, r_type, output_section, object,
1358                                      data_shndx, reloc.get_r_offset(),
1359                                      reloc.get_r_addend());
1360               }
1361           }
1362       }
1363       break;
1364
1365     case elfcpp::R_X86_64_GOT64:
1366     case elfcpp::R_X86_64_GOT32:
1367     case elfcpp::R_X86_64_GOTPCREL64:
1368     case elfcpp::R_X86_64_GOTPCREL:
1369     case elfcpp::R_X86_64_GOTPLT64:
1370       {
1371         // The symbol requires a GOT entry.
1372         Output_data_got<64, false>* got = target->got_section(symtab, layout);
1373         if (gsym->final_value_is_known())
1374           got->add_global(gsym, GOT_TYPE_STANDARD);
1375         else
1376           {
1377             // If this symbol is not fully resolved, we need to add a
1378             // dynamic relocation for it.
1379             Reloc_section* rela_dyn = target->rela_dyn_section(layout);
1380             if (gsym->is_from_dynobj()
1381                 || gsym->is_undefined()
1382                 || gsym->is_preemptible())
1383               got->add_global_with_rela(gsym, GOT_TYPE_STANDARD, rela_dyn,
1384                                         elfcpp::R_X86_64_GLOB_DAT);
1385             else
1386               {
1387                 if (got->add_global(gsym, GOT_TYPE_STANDARD))
1388                   rela_dyn->add_global_relative(
1389                       gsym, elfcpp::R_X86_64_RELATIVE, got,
1390                       gsym->got_offset(GOT_TYPE_STANDARD), 0);
1391               }
1392           }
1393         // For GOTPLT64, we also need a PLT entry (but only if the
1394         // symbol is not fully resolved).
1395         if (r_type == elfcpp::R_X86_64_GOTPLT64
1396             && !gsym->final_value_is_known())
1397           target->make_plt_entry(symtab, layout, gsym);
1398       }
1399       break;
1400
1401     case elfcpp::R_X86_64_PLT32:
1402       // If the symbol is fully resolved, this is just a PC32 reloc.
1403       // Otherwise we need a PLT entry.
1404       if (gsym->final_value_is_known())
1405         break;
1406       // If building a shared library, we can also skip the PLT entry
1407       // if the symbol is defined in the output file and is protected
1408       // or hidden.
1409       if (gsym->is_defined()
1410           && !gsym->is_from_dynobj()
1411           && !gsym->is_preemptible())
1412         break;
1413       target->make_plt_entry(symtab, layout, gsym);
1414       break;
1415
1416     case elfcpp::R_X86_64_GOTPC32:
1417     case elfcpp::R_X86_64_GOTOFF64:
1418     case elfcpp::R_X86_64_GOTPC64:
1419     case elfcpp::R_X86_64_PLTOFF64:
1420       // We need a GOT section.
1421       target->got_section(symtab, layout);
1422       // For PLTOFF64, we also need a PLT entry (but only if the
1423       // symbol is not fully resolved).
1424       if (r_type == elfcpp::R_X86_64_PLTOFF64
1425           && !gsym->final_value_is_known())
1426         target->make_plt_entry(symtab, layout, gsym);
1427       break;
1428
1429     case elfcpp::R_X86_64_COPY:
1430     case elfcpp::R_X86_64_GLOB_DAT:
1431     case elfcpp::R_X86_64_JUMP_SLOT:
1432     case elfcpp::R_X86_64_RELATIVE:
1433       // These are outstanding tls relocs, which are unexpected when linking
1434     case elfcpp::R_X86_64_TPOFF64:
1435     case elfcpp::R_X86_64_DTPMOD64:
1436     case elfcpp::R_X86_64_TLSDESC:
1437       gold_error(_("%s: unexpected reloc %u in object file"),
1438                  object->name().c_str(), r_type);
1439       break;
1440
1441       // These are initial tls relocs, which are expected for global()
1442     case elfcpp::R_X86_64_TLSGD:            // Global-dynamic
1443     case elfcpp::R_X86_64_GOTPC32_TLSDESC:  // Global-dynamic (from ~oliva url)
1444     case elfcpp::R_X86_64_TLSDESC_CALL:
1445     case elfcpp::R_X86_64_TLSLD:            // Local-dynamic
1446     case elfcpp::R_X86_64_DTPOFF32:
1447     case elfcpp::R_X86_64_DTPOFF64:
1448     case elfcpp::R_X86_64_GOTTPOFF:         // Initial-exec
1449     case elfcpp::R_X86_64_TPOFF32:          // Local-exec
1450       {
1451         const bool is_final = gsym->final_value_is_known();
1452         const tls::Tls_optimization optimized_type
1453             = Target_x86_64::optimize_tls_reloc(is_final, r_type);
1454         switch (r_type)
1455           {
1456           case elfcpp::R_X86_64_TLSGD:       // General-dynamic
1457             if (optimized_type == tls::TLSOPT_NONE)
1458               {
1459                 // Create a pair of GOT entries for the module index and
1460                 // dtv-relative offset.
1461                 Output_data_got<64, false>* got
1462                     = target->got_section(symtab, layout);
1463                 got->add_global_pair_with_rela(gsym, GOT_TYPE_TLS_PAIR,
1464                                                target->rela_dyn_section(layout),
1465                                                elfcpp::R_X86_64_DTPMOD64,
1466                                                elfcpp::R_X86_64_DTPOFF64);
1467               }
1468             else if (optimized_type == tls::TLSOPT_TO_IE)
1469               {
1470                 // Create a GOT entry for the tp-relative offset.
1471                 Output_data_got<64, false>* got
1472                     = target->got_section(symtab, layout);
1473                 got->add_global_with_rela(gsym, GOT_TYPE_TLS_OFFSET,
1474                                           target->rela_dyn_section(layout),
1475                                           elfcpp::R_X86_64_TPOFF64);
1476               }
1477             else if (optimized_type != tls::TLSOPT_TO_LE)
1478               unsupported_reloc_global(object, r_type, gsym);
1479             break;
1480
1481           case elfcpp::R_X86_64_GOTPC32_TLSDESC:
1482             target->define_tls_base_symbol(symtab, layout);
1483             if (optimized_type == tls::TLSOPT_NONE)
1484               {
1485                 // Create reserved PLT and GOT entries for the resolver.
1486                 target->reserve_tlsdesc_entries(symtab, layout);
1487
1488                 // Create a double GOT entry with an R_X86_64_TLSDESC reloc.
1489                 Output_data_got<64, false>* got
1490                     = target->got_section(symtab, layout);
1491                 got->add_global_pair_with_rela(gsym, GOT_TYPE_TLS_DESC,
1492                                                target->rela_dyn_section(layout),
1493                                                elfcpp::R_X86_64_TLSDESC, 0);
1494               }
1495             else if (optimized_type == tls::TLSOPT_TO_IE)
1496               {
1497                 // Create a GOT entry for the tp-relative offset.
1498                 Output_data_got<64, false>* got
1499                     = target->got_section(symtab, layout);
1500                 got->add_global_with_rela(gsym, GOT_TYPE_TLS_OFFSET,
1501                                           target->rela_dyn_section(layout),
1502                                           elfcpp::R_X86_64_TPOFF64);
1503               }
1504             else if (optimized_type != tls::TLSOPT_TO_LE)
1505               unsupported_reloc_global(object, r_type, gsym);
1506             break;
1507
1508           case elfcpp::R_X86_64_TLSDESC_CALL:
1509             break;
1510
1511           case elfcpp::R_X86_64_TLSLD:       // Local-dynamic
1512             if (optimized_type == tls::TLSOPT_NONE)
1513               {
1514                 // Create a GOT entry for the module index.
1515                 target->got_mod_index_entry(symtab, layout, object);
1516               }
1517             else if (optimized_type != tls::TLSOPT_TO_LE)
1518               unsupported_reloc_global(object, r_type, gsym);
1519             break;
1520
1521           case elfcpp::R_X86_64_DTPOFF32:
1522           case elfcpp::R_X86_64_DTPOFF64:
1523             break;
1524
1525           case elfcpp::R_X86_64_GOTTPOFF:    // Initial-exec
1526             layout->set_has_static_tls();
1527             if (optimized_type == tls::TLSOPT_NONE)
1528               {
1529                 // Create a GOT entry for the tp-relative offset.
1530                 Output_data_got<64, false>* got
1531                     = target->got_section(symtab, layout);
1532                 got->add_global_with_rela(gsym, GOT_TYPE_TLS_OFFSET,
1533                                           target->rela_dyn_section(layout),
1534                                           elfcpp::R_X86_64_TPOFF64);
1535               }
1536             else if (optimized_type != tls::TLSOPT_TO_LE)
1537               unsupported_reloc_global(object, r_type, gsym);
1538             break;
1539
1540           case elfcpp::R_X86_64_TPOFF32:     // Local-exec
1541             layout->set_has_static_tls();
1542             if (parameters->options().shared())
1543               unsupported_reloc_local(object, r_type);
1544             break;
1545
1546           default:
1547             gold_unreachable();
1548           }
1549       }
1550       break;
1551
1552     case elfcpp::R_X86_64_SIZE32:
1553     case elfcpp::R_X86_64_SIZE64:
1554     default:
1555       gold_error(_("%s: unsupported reloc %u against global symbol %s"),
1556                  object->name().c_str(), r_type,
1557                  gsym->demangled_name().c_str());
1558       break;
1559     }
1560 }
1561
1562 void
1563 Target_x86_64::gc_process_relocs(const General_options& options,
1564                                  Symbol_table* symtab,
1565                                  Layout* layout,
1566                                  Sized_relobj<64, false>* object,
1567                                  unsigned int data_shndx,
1568                                  unsigned int sh_type,
1569                                  const unsigned char* prelocs,
1570                                  size_t reloc_count,
1571                                  Output_section* output_section,
1572                                  bool needs_special_offset_handling,
1573                                  size_t local_symbol_count,
1574                                  const unsigned char* plocal_symbols)
1575 {
1576
1577   if (sh_type == elfcpp::SHT_REL)
1578     {
1579       return;
1580     }
1581
1582    gold::gc_process_relocs<64, false, Target_x86_64, elfcpp::SHT_RELA,
1583                            Target_x86_64::Scan>(
1584     options,
1585     symtab,
1586     layout,
1587     this,
1588     object,
1589     data_shndx,
1590     prelocs,
1591     reloc_count,
1592     output_section,
1593     needs_special_offset_handling,
1594     local_symbol_count,
1595     plocal_symbols);
1596  
1597 }
1598 // Scan relocations for a section.
1599
1600 void
1601 Target_x86_64::scan_relocs(const General_options& options,
1602                            Symbol_table* symtab,
1603                            Layout* layout,
1604                            Sized_relobj<64, false>* object,
1605                            unsigned int data_shndx,
1606                            unsigned int sh_type,
1607                            const unsigned char* prelocs,
1608                            size_t reloc_count,
1609                            Output_section* output_section,
1610                            bool needs_special_offset_handling,
1611                            size_t local_symbol_count,
1612                            const unsigned char* plocal_symbols)
1613 {
1614   if (sh_type == elfcpp::SHT_REL)
1615     {
1616       gold_error(_("%s: unsupported REL reloc section"),
1617                  object->name().c_str());
1618       return;
1619     }
1620
1621   gold::scan_relocs<64, false, Target_x86_64, elfcpp::SHT_RELA,
1622       Target_x86_64::Scan>(
1623     options,
1624     symtab,
1625     layout,
1626     this,
1627     object,
1628     data_shndx,
1629     prelocs,
1630     reloc_count,
1631     output_section,
1632     needs_special_offset_handling,
1633     local_symbol_count,
1634     plocal_symbols);
1635 }
1636
1637 // Finalize the sections.
1638
1639 void
1640 Target_x86_64::do_finalize_sections(Layout* layout)
1641 {
1642   // Fill in some more dynamic tags.
1643   Output_data_dynamic* const odyn = layout->dynamic_data();
1644   if (odyn != NULL)
1645     {
1646       if (this->got_plt_ != NULL)
1647         odyn->add_section_address(elfcpp::DT_PLTGOT, this->got_plt_);
1648
1649       if (this->plt_ != NULL)
1650         {
1651           const Output_data* od = this->plt_->rel_plt();
1652           odyn->add_section_size(elfcpp::DT_PLTRELSZ, od);
1653           odyn->add_section_address(elfcpp::DT_JMPREL, od);
1654           odyn->add_constant(elfcpp::DT_PLTREL, elfcpp::DT_RELA);
1655           if (this->plt_->has_tlsdesc_entry())
1656             {
1657               unsigned int plt_offset = this->plt_->get_tlsdesc_plt_offset();
1658               unsigned int got_offset = this->plt_->get_tlsdesc_got_offset();
1659               this->got_->finalize_data_size();
1660               odyn->add_section_plus_offset(elfcpp::DT_TLSDESC_PLT,
1661                                             this->plt_, plt_offset);
1662               odyn->add_section_plus_offset(elfcpp::DT_TLSDESC_GOT,
1663                                             this->got_, got_offset);
1664             }
1665         }
1666
1667       if (this->rela_dyn_ != NULL)
1668         {
1669           const Output_data* od = this->rela_dyn_;
1670           odyn->add_section_address(elfcpp::DT_RELA, od);
1671           odyn->add_section_size(elfcpp::DT_RELASZ, od);
1672           odyn->add_constant(elfcpp::DT_RELAENT,
1673                              elfcpp::Elf_sizes<64>::rela_size);
1674         }
1675
1676       if (!parameters->options().shared())
1677         {
1678           // The value of the DT_DEBUG tag is filled in by the dynamic
1679           // linker at run time, and used by the debugger.
1680           odyn->add_constant(elfcpp::DT_DEBUG, 0);
1681         }
1682     }
1683
1684   // Emit any relocs we saved in an attempt to avoid generating COPY
1685   // relocs.
1686   if (this->copy_relocs_.any_saved_relocs())
1687     this->copy_relocs_.emit(this->rela_dyn_section(layout));
1688 }
1689
1690 // Perform a relocation.
1691
1692 inline bool
1693 Target_x86_64::Relocate::relocate(const Relocate_info<64, false>* relinfo,
1694                                   Target_x86_64* target,
1695                                   size_t relnum,
1696                                   const elfcpp::Rela<64, false>& rela,
1697                                   unsigned int r_type,
1698                                   const Sized_symbol<64>* gsym,
1699                                   const Symbol_value<64>* psymval,
1700                                   unsigned char* view,
1701                                   elfcpp::Elf_types<64>::Elf_Addr address,
1702                                   section_size_type view_size)
1703 {
1704   if (this->skip_call_tls_get_addr_)
1705     {
1706       if ((r_type != elfcpp::R_X86_64_PLT32
1707            && r_type != elfcpp::R_X86_64_PC32)
1708           || gsym == NULL
1709           || strcmp(gsym->name(), "__tls_get_addr") != 0)
1710         {
1711           gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
1712                                  _("missing expected TLS relocation"));
1713         }
1714       else
1715         {
1716           this->skip_call_tls_get_addr_ = false;
1717           return false;
1718         }
1719     }
1720
1721   // Pick the value to use for symbols defined in shared objects.
1722   Symbol_value<64> symval;
1723   if (gsym != NULL
1724       && gsym->use_plt_offset(r_type == elfcpp::R_X86_64_PC64
1725                               || r_type == elfcpp::R_X86_64_PC32
1726                               || r_type == elfcpp::R_X86_64_PC16
1727                               || r_type == elfcpp::R_X86_64_PC8))
1728     {
1729       symval.set_output_value(target->plt_section()->address()
1730                               + gsym->plt_offset());
1731       psymval = &symval;
1732     }
1733
1734   const Sized_relobj<64, false>* object = relinfo->object;
1735   const elfcpp::Elf_Xword addend = rela.get_r_addend();
1736
1737   // Get the GOT offset if needed.
1738   // The GOT pointer points to the end of the GOT section.
1739   // We need to subtract the size of the GOT section to get
1740   // the actual offset to use in the relocation.
1741   bool have_got_offset = false;
1742   unsigned int got_offset = 0;
1743   switch (r_type)
1744     {
1745     case elfcpp::R_X86_64_GOT32:
1746     case elfcpp::R_X86_64_GOT64:
1747     case elfcpp::R_X86_64_GOTPLT64:
1748     case elfcpp::R_X86_64_GOTPCREL:
1749     case elfcpp::R_X86_64_GOTPCREL64:
1750       if (gsym != NULL)
1751         {
1752           gold_assert(gsym->has_got_offset(GOT_TYPE_STANDARD));
1753           got_offset = gsym->got_offset(GOT_TYPE_STANDARD) - target->got_size();
1754         }
1755       else
1756         {
1757           unsigned int r_sym = elfcpp::elf_r_sym<64>(rela.get_r_info());
1758           gold_assert(object->local_has_got_offset(r_sym, GOT_TYPE_STANDARD));
1759           got_offset = (object->local_got_offset(r_sym, GOT_TYPE_STANDARD)
1760                         - target->got_size());
1761         }
1762       have_got_offset = true;
1763       break;
1764
1765     default:
1766       break;
1767     }
1768
1769   switch (r_type)
1770     {
1771     case elfcpp::R_X86_64_NONE:
1772     case elfcpp::R_386_GNU_VTINHERIT:
1773     case elfcpp::R_386_GNU_VTENTRY:
1774       break;
1775
1776     case elfcpp::R_X86_64_64:
1777       Relocate_functions<64, false>::rela64(view, object, psymval, addend);
1778       break;
1779
1780     case elfcpp::R_X86_64_PC64:
1781       Relocate_functions<64, false>::pcrela64(view, object, psymval, addend,
1782                                               address);
1783       break;
1784
1785     case elfcpp::R_X86_64_32:
1786       // FIXME: we need to verify that value + addend fits into 32 bits:
1787       //    uint64_t x = value + addend;
1788       //    x == static_cast<uint64_t>(static_cast<uint32_t>(x))
1789       // Likewise for other <=32-bit relocations (but see R_X86_64_32S).
1790       Relocate_functions<64, false>::rela32(view, object, psymval, addend);
1791       break;
1792
1793     case elfcpp::R_X86_64_32S:
1794       // FIXME: we need to verify that value + addend fits into 32 bits:
1795       //    int64_t x = value + addend;   // note this quantity is signed!
1796       //    x == static_cast<int64_t>(static_cast<int32_t>(x))
1797       Relocate_functions<64, false>::rela32(view, object, psymval, addend);
1798       break;
1799
1800     case elfcpp::R_X86_64_PC32:
1801       Relocate_functions<64, false>::pcrela32(view, object, psymval, addend,
1802                                               address);
1803       break;
1804
1805     case elfcpp::R_X86_64_16:
1806       Relocate_functions<64, false>::rela16(view, object, psymval, addend);
1807       break;
1808
1809     case elfcpp::R_X86_64_PC16:
1810       Relocate_functions<64, false>::pcrela16(view, object, psymval, addend,
1811                                               address);
1812       break;
1813
1814     case elfcpp::R_X86_64_8:
1815       Relocate_functions<64, false>::rela8(view, object, psymval, addend);
1816       break;
1817
1818     case elfcpp::R_X86_64_PC8:
1819       Relocate_functions<64, false>::pcrela8(view, object, psymval, addend,
1820                                              address);
1821       break;
1822
1823     case elfcpp::R_X86_64_PLT32:
1824       gold_assert(gsym == NULL
1825                   || gsym->has_plt_offset()
1826                   || gsym->final_value_is_known()
1827                   || (gsym->is_defined()
1828                       && !gsym->is_from_dynobj()
1829                       && !gsym->is_preemptible()));
1830       // Note: while this code looks the same as for R_X86_64_PC32, it
1831       // behaves differently because psymval was set to point to
1832       // the PLT entry, rather than the symbol, in Scan::global().
1833       Relocate_functions<64, false>::pcrela32(view, object, psymval, addend,
1834                                               address);
1835       break;
1836
1837     case elfcpp::R_X86_64_PLTOFF64:
1838       {
1839         gold_assert(gsym);
1840         gold_assert(gsym->has_plt_offset()
1841                     || gsym->final_value_is_known());
1842         elfcpp::Elf_types<64>::Elf_Addr got_address;
1843         got_address = target->got_section(NULL, NULL)->address();
1844         Relocate_functions<64, false>::rela64(view, object, psymval,
1845                                               addend - got_address);
1846       }
1847
1848     case elfcpp::R_X86_64_GOT32:
1849       gold_assert(have_got_offset);
1850       Relocate_functions<64, false>::rela32(view, got_offset, addend);
1851       break;
1852
1853     case elfcpp::R_X86_64_GOTPC32:
1854       {
1855         gold_assert(gsym);
1856         elfcpp::Elf_types<64>::Elf_Addr value;
1857         value = target->got_plt_section()->address();
1858         Relocate_functions<64, false>::pcrela32(view, value, addend, address);
1859       }
1860       break;
1861
1862     case elfcpp::R_X86_64_GOT64:
1863       // The ABI doc says "Like GOT64, but indicates a PLT entry is needed."
1864       // Since we always add a PLT entry, this is equivalent.
1865     case elfcpp::R_X86_64_GOTPLT64:
1866       gold_assert(have_got_offset);
1867       Relocate_functions<64, false>::rela64(view, got_offset, addend);
1868       break;
1869
1870     case elfcpp::R_X86_64_GOTPC64:
1871       {
1872         gold_assert(gsym);
1873         elfcpp::Elf_types<64>::Elf_Addr value;
1874         value = target->got_plt_section()->address();
1875         Relocate_functions<64, false>::pcrela64(view, value, addend, address);
1876       }
1877       break;
1878
1879     case elfcpp::R_X86_64_GOTOFF64:
1880       {
1881         elfcpp::Elf_types<64>::Elf_Addr value;
1882         value = (psymval->value(object, 0)
1883                  - target->got_plt_section()->address());
1884         Relocate_functions<64, false>::rela64(view, value, addend);
1885       }
1886       break;
1887
1888     case elfcpp::R_X86_64_GOTPCREL:
1889       {
1890         gold_assert(have_got_offset);
1891         elfcpp::Elf_types<64>::Elf_Addr value;
1892         value = target->got_plt_section()->address() + got_offset;
1893         Relocate_functions<64, false>::pcrela32(view, value, addend, address);
1894       }
1895       break;
1896
1897     case elfcpp::R_X86_64_GOTPCREL64:
1898       {
1899         gold_assert(have_got_offset);
1900         elfcpp::Elf_types<64>::Elf_Addr value;
1901         value = target->got_plt_section()->address() + got_offset;
1902         Relocate_functions<64, false>::pcrela64(view, value, addend, address);
1903       }
1904       break;
1905
1906     case elfcpp::R_X86_64_COPY:
1907     case elfcpp::R_X86_64_GLOB_DAT:
1908     case elfcpp::R_X86_64_JUMP_SLOT:
1909     case elfcpp::R_X86_64_RELATIVE:
1910       // These are outstanding tls relocs, which are unexpected when linking
1911     case elfcpp::R_X86_64_TPOFF64:
1912     case elfcpp::R_X86_64_DTPMOD64:
1913     case elfcpp::R_X86_64_TLSDESC:
1914       gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
1915                              _("unexpected reloc %u in object file"),
1916                              r_type);
1917       break;
1918
1919       // These are initial tls relocs, which are expected when linking
1920     case elfcpp::R_X86_64_TLSGD:            // Global-dynamic
1921     case elfcpp::R_X86_64_GOTPC32_TLSDESC:  // Global-dynamic (from ~oliva url)
1922     case elfcpp::R_X86_64_TLSDESC_CALL:
1923     case elfcpp::R_X86_64_TLSLD:            // Local-dynamic
1924     case elfcpp::R_X86_64_DTPOFF32:
1925     case elfcpp::R_X86_64_DTPOFF64:
1926     case elfcpp::R_X86_64_GOTTPOFF:         // Initial-exec
1927     case elfcpp::R_X86_64_TPOFF32:          // Local-exec
1928       this->relocate_tls(relinfo, target, relnum, rela, r_type, gsym, psymval,
1929                          view, address, view_size);
1930       break;
1931
1932     case elfcpp::R_X86_64_SIZE32:
1933     case elfcpp::R_X86_64_SIZE64:
1934     default:
1935       gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
1936                              _("unsupported reloc %u"),
1937                              r_type);
1938       break;
1939     }
1940
1941   return true;
1942 }
1943
1944 // Perform a TLS relocation.
1945
1946 inline void
1947 Target_x86_64::Relocate::relocate_tls(const Relocate_info<64, false>* relinfo,
1948                                       Target_x86_64* target,
1949                                       size_t relnum,
1950                                       const elfcpp::Rela<64, false>& rela,
1951                                       unsigned int r_type,
1952                                       const Sized_symbol<64>* gsym,
1953                                       const Symbol_value<64>* psymval,
1954                                       unsigned char* view,
1955                                       elfcpp::Elf_types<64>::Elf_Addr address,
1956                                       section_size_type view_size)
1957 {
1958   Output_segment* tls_segment = relinfo->layout->tls_segment();
1959
1960   const Sized_relobj<64, false>* object = relinfo->object;
1961   const elfcpp::Elf_Xword addend = rela.get_r_addend();
1962
1963   elfcpp::Elf_types<64>::Elf_Addr value = psymval->value(relinfo->object, 0);
1964
1965   const bool is_final = (gsym == NULL
1966                          ? !parameters->options().output_is_position_independent()
1967                          : gsym->final_value_is_known());
1968   const tls::Tls_optimization optimized_type
1969       = Target_x86_64::optimize_tls_reloc(is_final, r_type);
1970   switch (r_type)
1971     {
1972     case elfcpp::R_X86_64_TLSGD:            // Global-dynamic
1973       this->saw_tls_block_reloc_ = true;
1974       if (optimized_type == tls::TLSOPT_TO_LE)
1975         {
1976           gold_assert(tls_segment != NULL);
1977           this->tls_gd_to_le(relinfo, relnum, tls_segment,
1978                              rela, r_type, value, view,
1979                              view_size);
1980           break;
1981         }
1982       else
1983         {
1984           unsigned int got_type = (optimized_type == tls::TLSOPT_TO_IE
1985                                    ? GOT_TYPE_TLS_OFFSET
1986                                    : GOT_TYPE_TLS_PAIR);
1987           unsigned int got_offset;
1988           if (gsym != NULL)
1989             {
1990               gold_assert(gsym->has_got_offset(got_type));
1991               got_offset = gsym->got_offset(got_type) - target->got_size();
1992             }
1993           else
1994             {
1995               unsigned int r_sym = elfcpp::elf_r_sym<64>(rela.get_r_info());
1996               gold_assert(object->local_has_got_offset(r_sym, got_type));
1997               got_offset = (object->local_got_offset(r_sym, got_type)
1998                             - target->got_size());
1999             }
2000           if (optimized_type == tls::TLSOPT_TO_IE)
2001             {
2002               gold_assert(tls_segment != NULL);
2003               value = target->got_plt_section()->address() + got_offset;
2004               this->tls_gd_to_ie(relinfo, relnum, tls_segment, rela, r_type,
2005                                  value, view, address, view_size);
2006               break;
2007             }
2008           else if (optimized_type == tls::TLSOPT_NONE)
2009             {
2010               // Relocate the field with the offset of the pair of GOT
2011               // entries.
2012               value = target->got_plt_section()->address() + got_offset;
2013               Relocate_functions<64, false>::pcrela32(view, value, addend,
2014                                                       address);
2015               break;
2016             }
2017         }
2018       gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
2019                              _("unsupported reloc %u"), r_type);
2020       break;
2021
2022     case elfcpp::R_X86_64_GOTPC32_TLSDESC:  // Global-dynamic (from ~oliva url)
2023     case elfcpp::R_X86_64_TLSDESC_CALL:
2024       this->saw_tls_block_reloc_ = true;
2025       if (optimized_type == tls::TLSOPT_TO_LE)
2026         {
2027           gold_assert(tls_segment != NULL);
2028           this->tls_desc_gd_to_le(relinfo, relnum, tls_segment,
2029                                   rela, r_type, value, view,
2030                                   view_size);
2031           break;
2032         }
2033       else
2034         {
2035           unsigned int got_type = (optimized_type == tls::TLSOPT_TO_IE
2036                                    ? GOT_TYPE_TLS_OFFSET
2037                                    : GOT_TYPE_TLS_DESC);
2038           unsigned int got_offset;
2039           if (gsym != NULL)
2040             {
2041               gold_assert(gsym->has_got_offset(got_type));
2042               got_offset = gsym->got_offset(got_type) - target->got_size();
2043             }
2044           else
2045             {
2046               unsigned int r_sym = elfcpp::elf_r_sym<64>(rela.get_r_info());
2047               gold_assert(object->local_has_got_offset(r_sym, got_type));
2048               got_offset = (object->local_got_offset(r_sym, got_type)
2049                             - target->got_size());
2050             }
2051           if (optimized_type == tls::TLSOPT_TO_IE)
2052             {
2053               gold_assert(tls_segment != NULL);
2054               value = target->got_plt_section()->address() + got_offset;
2055               this->tls_desc_gd_to_ie(relinfo, relnum, tls_segment,
2056                                       rela, r_type, value, view, address,
2057                                       view_size);
2058               break;
2059             }
2060           else if (optimized_type == tls::TLSOPT_NONE)
2061             {
2062               if (r_type == elfcpp::R_X86_64_GOTPC32_TLSDESC)
2063                 {
2064                   // Relocate the field with the offset of the pair of GOT
2065                   // entries.
2066                   value = target->got_plt_section()->address() + got_offset;
2067                   Relocate_functions<64, false>::pcrela32(view, value, addend,
2068                                                           address);
2069                 }
2070               break;
2071             }
2072         }
2073       gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
2074                              _("unsupported reloc %u"), r_type);
2075       break;
2076
2077     case elfcpp::R_X86_64_TLSLD:            // Local-dynamic
2078       this->saw_tls_block_reloc_ = true;
2079       if (optimized_type == tls::TLSOPT_TO_LE)
2080         {
2081           gold_assert(tls_segment != NULL);
2082           this->tls_ld_to_le(relinfo, relnum, tls_segment, rela, r_type,
2083                              value, view, view_size);
2084           break;
2085         }
2086       else if (optimized_type == tls::TLSOPT_NONE)
2087         {
2088           // Relocate the field with the offset of the GOT entry for
2089           // the module index.
2090           unsigned int got_offset;
2091           got_offset = (target->got_mod_index_entry(NULL, NULL, NULL)
2092                         - target->got_size());
2093           value = target->got_plt_section()->address() + got_offset;
2094           Relocate_functions<64, false>::pcrela32(view, value, addend,
2095                                                   address);
2096           break;
2097         }
2098       gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
2099                              _("unsupported reloc %u"), r_type);
2100       break;
2101
2102     case elfcpp::R_X86_64_DTPOFF32:
2103       gold_assert(tls_segment != NULL);
2104       if (optimized_type == tls::TLSOPT_TO_LE)
2105         {
2106           // This relocation type is used in debugging information.
2107           // In that case we need to not optimize the value.  If we
2108           // haven't seen a TLSLD reloc, then we assume we should not
2109           // optimize this reloc.
2110           if (this->saw_tls_block_reloc_)
2111             value -= tls_segment->memsz();
2112         }
2113       Relocate_functions<64, false>::rela32(view, value, addend);
2114       break;
2115
2116     case elfcpp::R_X86_64_DTPOFF64:
2117       gold_assert(tls_segment != NULL);
2118       if (optimized_type == tls::TLSOPT_TO_LE)
2119         {
2120           // See R_X86_64_DTPOFF32, just above, for why we test this.
2121           if (this->saw_tls_block_reloc_)
2122             value -= tls_segment->memsz();
2123         }
2124       Relocate_functions<64, false>::rela64(view, value, addend);
2125       break;
2126
2127     case elfcpp::R_X86_64_GOTTPOFF:         // Initial-exec
2128       if (optimized_type == tls::TLSOPT_TO_LE)
2129         {
2130           gold_assert(tls_segment != NULL);
2131           Target_x86_64::Relocate::tls_ie_to_le(relinfo, relnum, tls_segment,
2132                                                 rela, r_type, value, view,
2133                                                 view_size);
2134           break;
2135         }
2136       else if (optimized_type == tls::TLSOPT_NONE)
2137         {
2138           // Relocate the field with the offset of the GOT entry for
2139           // the tp-relative offset of the symbol.
2140           unsigned int got_offset;
2141           if (gsym != NULL)
2142             {
2143               gold_assert(gsym->has_got_offset(GOT_TYPE_TLS_OFFSET));
2144               got_offset = (gsym->got_offset(GOT_TYPE_TLS_OFFSET)
2145                             - target->got_size());
2146             }
2147           else
2148             {
2149               unsigned int r_sym = elfcpp::elf_r_sym<64>(rela.get_r_info());
2150               gold_assert(object->local_has_got_offset(r_sym,
2151                                                        GOT_TYPE_TLS_OFFSET));
2152               got_offset = (object->local_got_offset(r_sym, GOT_TYPE_TLS_OFFSET)
2153                             - target->got_size());
2154             }
2155           value = target->got_plt_section()->address() + got_offset;
2156           Relocate_functions<64, false>::pcrela32(view, value, addend, address);
2157           break;
2158         }
2159       gold_error_at_location(relinfo, relnum, rela.get_r_offset(),
2160                              _("unsupported reloc type %u"),
2161                              r_type);
2162       break;
2163
2164     case elfcpp::R_X86_64_TPOFF32:          // Local-exec
2165       value -= tls_segment->memsz();
2166       Relocate_functions<64, false>::rela32(view, value, addend);
2167       break;
2168     }
2169 }
2170
2171 // Do a relocation in which we convert a TLS General-Dynamic to an
2172 // Initial-Exec.
2173
2174 inline void
2175 Target_x86_64::Relocate::tls_gd_to_ie(const Relocate_info<64, false>* relinfo,
2176                                       size_t relnum,
2177                                       Output_segment*,
2178                                       const elfcpp::Rela<64, false>& rela,
2179                                       unsigned int,
2180                                       elfcpp::Elf_types<64>::Elf_Addr value,
2181                                       unsigned char* view,
2182                                       elfcpp::Elf_types<64>::Elf_Addr address,
2183                                       section_size_type view_size)
2184 {
2185   // .byte 0x66; leaq foo@tlsgd(%rip),%rdi;
2186   // .word 0x6666; rex64; call __tls_get_addr
2187   // ==> movq %fs:0,%rax; addq x@gottpoff(%rip),%rax
2188
2189   tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, -4);
2190   tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 12);
2191
2192   tls::check_tls(relinfo, relnum, rela.get_r_offset(),
2193                  (memcmp(view - 4, "\x66\x48\x8d\x3d", 4) == 0));
2194   tls::check_tls(relinfo, relnum, rela.get_r_offset(),
2195                  (memcmp(view + 4, "\x66\x66\x48\xe8", 4) == 0));
2196
2197   memcpy(view - 4, "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x03\x05\0\0\0\0", 16);
2198
2199   const elfcpp::Elf_Xword addend = rela.get_r_addend();
2200   Relocate_functions<64, false>::pcrela32(view + 8, value, addend - 8, address);
2201
2202   // The next reloc should be a PLT32 reloc against __tls_get_addr.
2203   // We can skip it.
2204   this->skip_call_tls_get_addr_ = true;
2205 }
2206
2207 // Do a relocation in which we convert a TLS General-Dynamic to a
2208 // Local-Exec.
2209
2210 inline void
2211 Target_x86_64::Relocate::tls_gd_to_le(const Relocate_info<64, false>* relinfo,
2212                                       size_t relnum,
2213                                       Output_segment* tls_segment,
2214                                       const elfcpp::Rela<64, false>& rela,
2215                                       unsigned int,
2216                                       elfcpp::Elf_types<64>::Elf_Addr value,
2217                                       unsigned char* view,
2218                                       section_size_type view_size)
2219 {
2220   // .byte 0x66; leaq foo@tlsgd(%rip),%rdi;
2221   // .word 0x6666; rex64; call __tls_get_addr
2222   // ==> movq %fs:0,%rax; leaq x@tpoff(%rax),%rax
2223
2224   tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, -4);
2225   tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 12);
2226
2227   tls::check_tls(relinfo, relnum, rela.get_r_offset(),
2228                  (memcmp(view - 4, "\x66\x48\x8d\x3d", 4) == 0));
2229   tls::check_tls(relinfo, relnum, rela.get_r_offset(),
2230                  (memcmp(view + 4, "\x66\x66\x48\xe8", 4) == 0));
2231
2232   memcpy(view - 4, "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x8d\x80\0\0\0\0", 16);
2233
2234   value -= tls_segment->memsz();
2235   Relocate_functions<64, false>::rela32(view + 8, value, 0);
2236
2237   // The next reloc should be a PLT32 reloc against __tls_get_addr.
2238   // We can skip it.
2239   this->skip_call_tls_get_addr_ = true;
2240 }
2241
2242 // Do a TLSDESC-style General-Dynamic to Initial-Exec transition.
2243
2244 inline void
2245 Target_x86_64::Relocate::tls_desc_gd_to_ie(
2246     const Relocate_info<64, false>* relinfo,
2247     size_t relnum,
2248     Output_segment*,
2249     const elfcpp::Rela<64, false>& rela,
2250     unsigned int r_type,
2251     elfcpp::Elf_types<64>::Elf_Addr value,
2252     unsigned char* view,
2253     elfcpp::Elf_types<64>::Elf_Addr address,
2254     section_size_type view_size)
2255 {
2256   if (r_type == elfcpp::R_X86_64_GOTPC32_TLSDESC)
2257     {
2258       // leaq foo@tlsdesc(%rip), %rax
2259       // ==> movq foo@gottpoff(%rip), %rax
2260       tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, -3);
2261       tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 4);
2262       tls::check_tls(relinfo, relnum, rela.get_r_offset(),
2263                      view[-3] == 0x48 && view[-2] == 0x8d && view[-1] == 0x05);
2264       view[-2] = 0x8b;
2265       const elfcpp::Elf_Xword addend = rela.get_r_addend();
2266       Relocate_functions<64, false>::pcrela32(view, value, addend, address);
2267     }
2268   else
2269     {
2270       // call *foo@tlscall(%rax)
2271       // ==> nop; nop
2272       gold_assert(r_type == elfcpp::R_X86_64_TLSDESC_CALL);
2273       tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 2);
2274       tls::check_tls(relinfo, relnum, rela.get_r_offset(),
2275                      view[0] == 0xff && view[1] == 0x10);
2276       view[0] = 0x66;
2277       view[1] = 0x90;
2278     }
2279 }
2280
2281 // Do a TLSDESC-style General-Dynamic to Local-Exec transition.
2282
2283 inline void
2284 Target_x86_64::Relocate::tls_desc_gd_to_le(
2285     const Relocate_info<64, false>* relinfo,
2286     size_t relnum,
2287     Output_segment* tls_segment,
2288     const elfcpp::Rela<64, false>& rela,
2289     unsigned int r_type,
2290     elfcpp::Elf_types<64>::Elf_Addr value,
2291     unsigned char* view,
2292     section_size_type view_size)
2293 {
2294   if (r_type == elfcpp::R_X86_64_GOTPC32_TLSDESC)
2295     {
2296       // leaq foo@tlsdesc(%rip), %rax
2297       // ==> movq foo@tpoff, %rax
2298       tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, -3);
2299       tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 4);
2300       tls::check_tls(relinfo, relnum, rela.get_r_offset(),
2301                      view[-3] == 0x48 && view[-2] == 0x8d && view[-1] == 0x05);
2302       view[-2] = 0xc7;
2303       view[-1] = 0xc0;
2304       value -= tls_segment->memsz();
2305       Relocate_functions<64, false>::rela32(view, value, 0);
2306     }
2307   else
2308     {
2309       // call *foo@tlscall(%rax)
2310       // ==> nop; nop
2311       gold_assert(r_type == elfcpp::R_X86_64_TLSDESC_CALL);
2312       tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 2);
2313       tls::check_tls(relinfo, relnum, rela.get_r_offset(),
2314                      view[0] == 0xff && view[1] == 0x10);
2315       view[0] = 0x66;
2316       view[1] = 0x90;
2317     }
2318 }
2319
2320 inline void
2321 Target_x86_64::Relocate::tls_ld_to_le(const Relocate_info<64, false>* relinfo,
2322                                       size_t relnum,
2323                                       Output_segment*,
2324                                       const elfcpp::Rela<64, false>& rela,
2325                                       unsigned int,
2326                                       elfcpp::Elf_types<64>::Elf_Addr,
2327                                       unsigned char* view,
2328                                       section_size_type view_size)
2329 {
2330   // leaq foo@tlsld(%rip),%rdi; call __tls_get_addr@plt;
2331   // ... leq foo@dtpoff(%rax),%reg
2332   // ==> .word 0x6666; .byte 0x66; movq %fs:0,%rax ... leaq x@tpoff(%rax),%rdx
2333
2334   tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, -3);
2335   tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 9);
2336
2337   tls::check_tls(relinfo, relnum, rela.get_r_offset(),
2338                  view[-3] == 0x48 && view[-2] == 0x8d && view[-1] == 0x3d);
2339
2340   tls::check_tls(relinfo, relnum, rela.get_r_offset(), view[4] == 0xe8);
2341
2342   memcpy(view - 3, "\x66\x66\x66\x64\x48\x8b\x04\x25\0\0\0\0", 12);
2343
2344   // The next reloc should be a PLT32 reloc against __tls_get_addr.
2345   // We can skip it.
2346   this->skip_call_tls_get_addr_ = true;
2347 }
2348
2349 // Do a relocation in which we convert a TLS Initial-Exec to a
2350 // Local-Exec.
2351
2352 inline void
2353 Target_x86_64::Relocate::tls_ie_to_le(const Relocate_info<64, false>* relinfo,
2354                                       size_t relnum,
2355                                       Output_segment* tls_segment,
2356                                       const elfcpp::Rela<64, false>& rela,
2357                                       unsigned int,
2358                                       elfcpp::Elf_types<64>::Elf_Addr value,
2359                                       unsigned char* view,
2360                                       section_size_type view_size)
2361 {
2362   // We need to examine the opcodes to figure out which instruction we
2363   // are looking at.
2364
2365   // movq foo@gottpoff(%rip),%reg  ==>  movq $YY,%reg
2366   // addq foo@gottpoff(%rip),%reg  ==>  addq $YY,%reg
2367
2368   tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, -3);
2369   tls::check_range(relinfo, relnum, rela.get_r_offset(), view_size, 4);
2370
2371   unsigned char op1 = view[-3];
2372   unsigned char op2 = view[-2];
2373   unsigned char op3 = view[-1];
2374   unsigned char reg = op3 >> 3;
2375
2376   if (op2 == 0x8b)
2377     {
2378       // movq
2379       if (op1 == 0x4c)
2380         view[-3] = 0x49;
2381       view[-2] = 0xc7;
2382       view[-1] = 0xc0 | reg;
2383     }
2384   else if (reg == 4)
2385     {
2386       // Special handling for %rsp.
2387       if (op1 == 0x4c)
2388         view[-3] = 0x49;
2389       view[-2] = 0x81;
2390       view[-1] = 0xc0 | reg;
2391     }
2392   else
2393     {
2394       // addq
2395       if (op1 == 0x4c)
2396         view[-3] = 0x4d;
2397       view[-2] = 0x8d;
2398       view[-1] = 0x80 | reg | (reg << 3);
2399     }
2400
2401   value -= tls_segment->memsz();
2402   Relocate_functions<64, false>::rela32(view, value, 0);
2403 }
2404
2405 // Relocate section data.
2406
2407 void
2408 Target_x86_64::relocate_section(const Relocate_info<64, false>* relinfo,
2409                                 unsigned int sh_type,
2410                                 const unsigned char* prelocs,
2411                                 size_t reloc_count,
2412                                 Output_section* output_section,
2413                                 bool needs_special_offset_handling,
2414                                 unsigned char* view,
2415                                 elfcpp::Elf_types<64>::Elf_Addr address,
2416                                 section_size_type view_size)
2417 {
2418   gold_assert(sh_type == elfcpp::SHT_RELA);
2419
2420   gold::relocate_section<64, false, Target_x86_64, elfcpp::SHT_RELA,
2421                          Target_x86_64::Relocate>(
2422     relinfo,
2423     this,
2424     prelocs,
2425     reloc_count,
2426     output_section,
2427     needs_special_offset_handling,
2428     view,
2429     address,
2430     view_size);
2431 }
2432
2433 // Return the size of a relocation while scanning during a relocatable
2434 // link.
2435
2436 unsigned int
2437 Target_x86_64::Relocatable_size_for_reloc::get_size_for_reloc(
2438     unsigned int r_type,
2439     Relobj* object)
2440 {
2441   switch (r_type)
2442     {
2443     case elfcpp::R_X86_64_NONE:
2444     case elfcpp::R_386_GNU_VTINHERIT:
2445     case elfcpp::R_386_GNU_VTENTRY:
2446     case elfcpp::R_X86_64_TLSGD:            // Global-dynamic
2447     case elfcpp::R_X86_64_GOTPC32_TLSDESC:  // Global-dynamic (from ~oliva url)
2448     case elfcpp::R_X86_64_TLSDESC_CALL:
2449     case elfcpp::R_X86_64_TLSLD:            // Local-dynamic
2450     case elfcpp::R_X86_64_DTPOFF32:
2451     case elfcpp::R_X86_64_DTPOFF64:
2452     case elfcpp::R_X86_64_GOTTPOFF:         // Initial-exec
2453     case elfcpp::R_X86_64_TPOFF32:          // Local-exec
2454       return 0;
2455
2456     case elfcpp::R_X86_64_64:
2457     case elfcpp::R_X86_64_PC64:
2458     case elfcpp::R_X86_64_GOTOFF64:
2459     case elfcpp::R_X86_64_GOTPC64:
2460     case elfcpp::R_X86_64_PLTOFF64:
2461     case elfcpp::R_X86_64_GOT64:
2462     case elfcpp::R_X86_64_GOTPCREL64:
2463     case elfcpp::R_X86_64_GOTPCREL:
2464     case elfcpp::R_X86_64_GOTPLT64:
2465       return 8;
2466
2467     case elfcpp::R_X86_64_32:
2468     case elfcpp::R_X86_64_32S:
2469     case elfcpp::R_X86_64_PC32:
2470     case elfcpp::R_X86_64_PLT32:
2471     case elfcpp::R_X86_64_GOTPC32:
2472     case elfcpp::R_X86_64_GOT32:
2473       return 4;
2474
2475     case elfcpp::R_X86_64_16:
2476     case elfcpp::R_X86_64_PC16:
2477       return 2;
2478
2479     case elfcpp::R_X86_64_8:
2480     case elfcpp::R_X86_64_PC8:
2481       return 1;
2482
2483     case elfcpp::R_X86_64_COPY:
2484     case elfcpp::R_X86_64_GLOB_DAT:
2485     case elfcpp::R_X86_64_JUMP_SLOT:
2486     case elfcpp::R_X86_64_RELATIVE:
2487       // These are outstanding tls relocs, which are unexpected when linking
2488     case elfcpp::R_X86_64_TPOFF64:
2489     case elfcpp::R_X86_64_DTPMOD64:
2490     case elfcpp::R_X86_64_TLSDESC:
2491       object->error(_("unexpected reloc %u in object file"), r_type);
2492       return 0;
2493
2494     case elfcpp::R_X86_64_SIZE32:
2495     case elfcpp::R_X86_64_SIZE64:
2496     default:
2497       object->error(_("unsupported reloc %u against local symbol"), r_type);
2498       return 0;
2499     }
2500 }
2501
2502 // Scan the relocs during a relocatable link.
2503
2504 void
2505 Target_x86_64::scan_relocatable_relocs(const General_options& options,
2506                                        Symbol_table* symtab,
2507                                        Layout* layout,
2508                                        Sized_relobj<64, false>* object,
2509                                        unsigned int data_shndx,
2510                                        unsigned int sh_type,
2511                                        const unsigned char* prelocs,
2512                                        size_t reloc_count,
2513                                        Output_section* output_section,
2514                                        bool needs_special_offset_handling,
2515                                        size_t local_symbol_count,
2516                                        const unsigned char* plocal_symbols,
2517                                        Relocatable_relocs* rr)
2518 {
2519   gold_assert(sh_type == elfcpp::SHT_RELA);
2520
2521   typedef gold::Default_scan_relocatable_relocs<elfcpp::SHT_RELA,
2522     Relocatable_size_for_reloc> Scan_relocatable_relocs;
2523
2524   gold::scan_relocatable_relocs<64, false, elfcpp::SHT_RELA,
2525       Scan_relocatable_relocs>(
2526     options,
2527     symtab,
2528     layout,
2529     object,
2530     data_shndx,
2531     prelocs,
2532     reloc_count,
2533     output_section,
2534     needs_special_offset_handling,
2535     local_symbol_count,
2536     plocal_symbols,
2537     rr);
2538 }
2539
2540 // Relocate a section during a relocatable link.
2541
2542 void
2543 Target_x86_64::relocate_for_relocatable(
2544     const Relocate_info<64, false>* relinfo,
2545     unsigned int sh_type,
2546     const unsigned char* prelocs,
2547     size_t reloc_count,
2548     Output_section* output_section,
2549     off_t offset_in_output_section,
2550     const Relocatable_relocs* rr,
2551     unsigned char* view,
2552     elfcpp::Elf_types<64>::Elf_Addr view_address,
2553     section_size_type view_size,
2554     unsigned char* reloc_view,
2555     section_size_type reloc_view_size)
2556 {
2557   gold_assert(sh_type == elfcpp::SHT_RELA);
2558
2559   gold::relocate_for_relocatable<64, false, elfcpp::SHT_RELA>(
2560     relinfo,
2561     prelocs,
2562     reloc_count,
2563     output_section,
2564     offset_in_output_section,
2565     rr,
2566     view,
2567     view_address,
2568     view_size,
2569     reloc_view,
2570     reloc_view_size);
2571 }
2572
2573 // Return the value to use for a dynamic which requires special
2574 // treatment.  This is how we support equality comparisons of function
2575 // pointers across shared library boundaries, as described in the
2576 // processor specific ABI supplement.
2577
2578 uint64_t
2579 Target_x86_64::do_dynsym_value(const Symbol* gsym) const
2580 {
2581   gold_assert(gsym->is_from_dynobj() && gsym->has_plt_offset());
2582   return this->plt_section()->address() + gsym->plt_offset();
2583 }
2584
2585 // Return a string used to fill a code section with nops to take up
2586 // the specified length.
2587
2588 std::string
2589 Target_x86_64::do_code_fill(section_size_type length) const
2590 {
2591   if (length >= 16)
2592     {
2593       // Build a jmpq instruction to skip over the bytes.
2594       unsigned char jmp[5];
2595       jmp[0] = 0xe9;
2596       elfcpp::Swap_unaligned<32, false>::writeval(jmp + 1, length - 5);
2597       return (std::string(reinterpret_cast<char*>(&jmp[0]), 5)
2598               + std::string(length - 5, '\0'));
2599     }
2600
2601   // Nop sequences of various lengths.
2602   const char nop1[1] = { 0x90 };                   // nop
2603   const char nop2[2] = { 0x66, 0x90 };             // xchg %ax %ax
2604   const char nop3[3] = { 0x8d, 0x76, 0x00 };       // leal 0(%esi),%esi
2605   const char nop4[4] = { 0x8d, 0x74, 0x26, 0x00};  // leal 0(%esi,1),%esi
2606   const char nop5[5] = { 0x90, 0x8d, 0x74, 0x26,   // nop
2607                          0x00 };                   // leal 0(%esi,1),%esi
2608   const char nop6[6] = { 0x8d, 0xb6, 0x00, 0x00,   // leal 0L(%esi),%esi
2609                          0x00, 0x00 };
2610   const char nop7[7] = { 0x8d, 0xb4, 0x26, 0x00,   // leal 0L(%esi,1),%esi
2611                          0x00, 0x00, 0x00 };
2612   const char nop8[8] = { 0x90, 0x8d, 0xb4, 0x26,   // nop
2613                          0x00, 0x00, 0x00, 0x00 }; // leal 0L(%esi,1),%esi
2614   const char nop9[9] = { 0x89, 0xf6, 0x8d, 0xbc,   // movl %esi,%esi
2615                          0x27, 0x00, 0x00, 0x00,   // leal 0L(%edi,1),%edi
2616                          0x00 };
2617   const char nop10[10] = { 0x8d, 0x76, 0x00, 0x8d, // leal 0(%esi),%esi
2618                            0xbc, 0x27, 0x00, 0x00, // leal 0L(%edi,1),%edi
2619                            0x00, 0x00 };
2620   const char nop11[11] = { 0x8d, 0x74, 0x26, 0x00, // leal 0(%esi,1),%esi
2621                            0x8d, 0xbc, 0x27, 0x00, // leal 0L(%edi,1),%edi
2622                            0x00, 0x00, 0x00 };
2623   const char nop12[12] = { 0x8d, 0xb6, 0x00, 0x00, // leal 0L(%esi),%esi
2624                            0x00, 0x00, 0x8d, 0xbf, // leal 0L(%edi),%edi
2625                            0x00, 0x00, 0x00, 0x00 };
2626   const char nop13[13] = { 0x8d, 0xb6, 0x00, 0x00, // leal 0L(%esi),%esi
2627                            0x00, 0x00, 0x8d, 0xbc, // leal 0L(%edi,1),%edi
2628                            0x27, 0x00, 0x00, 0x00,
2629                            0x00 };
2630   const char nop14[14] = { 0x8d, 0xb4, 0x26, 0x00, // leal 0L(%esi,1),%esi
2631                            0x00, 0x00, 0x00, 0x8d, // leal 0L(%edi,1),%edi
2632                            0xbc, 0x27, 0x00, 0x00,
2633                            0x00, 0x00 };
2634   const char nop15[15] = { 0xeb, 0x0d, 0x90, 0x90, // jmp .+15
2635                            0x90, 0x90, 0x90, 0x90, // nop,nop,nop,...
2636                            0x90, 0x90, 0x90, 0x90,
2637                            0x90, 0x90, 0x90 };
2638
2639   const char* nops[16] = {
2640     NULL,
2641     nop1, nop2, nop3, nop4, nop5, nop6, nop7,
2642     nop8, nop9, nop10, nop11, nop12, nop13, nop14, nop15
2643   };
2644
2645   return std::string(nops[length], length);
2646 }
2647
2648 // The selector for x86_64 object files.
2649
2650 class Target_selector_x86_64 : public Target_selector
2651 {
2652 public:
2653   Target_selector_x86_64()
2654     : Target_selector(elfcpp::EM_X86_64, 64, false, "elf64-x86-64")
2655   { }
2656
2657   Target*
2658   do_instantiate_target()
2659   { return new Target_x86_64(); }
2660 };
2661
2662 Target_selector_x86_64 target_selector_x86_64;
2663
2664 } // End anonymous namespace.