1*fae548d3Szrj // i386.cc -- i386 target support for gold.
2*fae548d3Szrj 
3*fae548d3Szrj // Copyright (C) 2006-2020 Free Software Foundation, Inc.
4*fae548d3Szrj // Written by Ian Lance Taylor <iant@google.com>.
5*fae548d3Szrj 
6*fae548d3Szrj // This file is part of gold.
7*fae548d3Szrj 
8*fae548d3Szrj // This program is free software; you can redistribute it and/or modify
9*fae548d3Szrj // it under the terms of the GNU General Public License as published by
10*fae548d3Szrj // the Free Software Foundation; either version 3 of the License, or
11*fae548d3Szrj // (at your option) any later version.
12*fae548d3Szrj 
13*fae548d3Szrj // This program is distributed in the hope that it will be useful,
14*fae548d3Szrj // but WITHOUT ANY WARRANTY; without even the implied warranty of
15*fae548d3Szrj // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16*fae548d3Szrj // GNU General Public License for more details.
17*fae548d3Szrj 
18*fae548d3Szrj // You should have received a copy of the GNU General Public License
19*fae548d3Szrj // along with this program; if not, write to the Free Software
20*fae548d3Szrj // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21*fae548d3Szrj // MA 02110-1301, USA.
22*fae548d3Szrj 
23*fae548d3Szrj #include "gold.h"
24*fae548d3Szrj 
25*fae548d3Szrj #include <cstring>
26*fae548d3Szrj 
27*fae548d3Szrj #include "elfcpp.h"
28*fae548d3Szrj #include "dwarf.h"
29*fae548d3Szrj #include "parameters.h"
30*fae548d3Szrj #include "reloc.h"
31*fae548d3Szrj #include "i386.h"
32*fae548d3Szrj #include "object.h"
33*fae548d3Szrj #include "symtab.h"
34*fae548d3Szrj #include "layout.h"
35*fae548d3Szrj #include "output.h"
36*fae548d3Szrj #include "copy-relocs.h"
37*fae548d3Szrj #include "target.h"
38*fae548d3Szrj #include "target-reloc.h"
39*fae548d3Szrj #include "target-select.h"
40*fae548d3Szrj #include "tls.h"
41*fae548d3Szrj #include "freebsd.h"
42*fae548d3Szrj #include "nacl.h"
43*fae548d3Szrj #include "gc.h"
44*fae548d3Szrj 
45*fae548d3Szrj namespace
46*fae548d3Szrj {
47*fae548d3Szrj 
48*fae548d3Szrj using namespace gold;
49*fae548d3Szrj 
50*fae548d3Szrj // A class to handle the .got.plt section.
51*fae548d3Szrj 
52*fae548d3Szrj class Output_data_got_plt_i386 : public Output_section_data_build
53*fae548d3Szrj {
54*fae548d3Szrj  public:
Output_data_got_plt_i386(Layout * layout)55*fae548d3Szrj   Output_data_got_plt_i386(Layout* layout)
56*fae548d3Szrj     : Output_section_data_build(4),
57*fae548d3Szrj       layout_(layout)
58*fae548d3Szrj   { }
59*fae548d3Szrj 
60*fae548d3Szrj  protected:
61*fae548d3Szrj   // Write out the PLT data.
62*fae548d3Szrj   void
63*fae548d3Szrj   do_write(Output_file*);
64*fae548d3Szrj 
65*fae548d3Szrj   // Write to a map file.
66*fae548d3Szrj   void
do_print_to_mapfile(Mapfile * mapfile) const67*fae548d3Szrj   do_print_to_mapfile(Mapfile* mapfile) const
68*fae548d3Szrj   { mapfile->print_output_data(this, "** GOT PLT"); }
69*fae548d3Szrj 
70*fae548d3Szrj  private:
71*fae548d3Szrj   // A pointer to the Layout class, so that we can find the .dynamic
72*fae548d3Szrj   // section when we write out the GOT PLT section.
73*fae548d3Szrj   Layout* layout_;
74*fae548d3Szrj };
75*fae548d3Szrj 
76*fae548d3Szrj // A class to handle the PLT data.
77*fae548d3Szrj // This is an abstract base class that handles most of the linker details
78*fae548d3Szrj // but does not know the actual contents of PLT entries.  The derived
79*fae548d3Szrj // classes below fill in those details.
80*fae548d3Szrj 
81*fae548d3Szrj class Output_data_plt_i386 : public Output_section_data
82*fae548d3Szrj {
83*fae548d3Szrj  public:
84*fae548d3Szrj   typedef Output_data_reloc<elfcpp::SHT_REL, true, 32, false> Reloc_section;
85*fae548d3Szrj 
86*fae548d3Szrj   Output_data_plt_i386(Layout*, uint64_t addralign,
87*fae548d3Szrj 		       Output_data_got_plt_i386*, Output_data_space*);
88*fae548d3Szrj 
89*fae548d3Szrj   // Add an entry to the PLT.
90*fae548d3Szrj   void
91*fae548d3Szrj   add_entry(Symbol_table*, Layout*, Symbol* gsym);
92*fae548d3Szrj 
93*fae548d3Szrj   // Add an entry to the PLT for a local STT_GNU_IFUNC symbol.
94*fae548d3Szrj   unsigned int
95*fae548d3Szrj   add_local_ifunc_entry(Symbol_table*, Layout*,
96*fae548d3Szrj 			Sized_relobj_file<32, false>* relobj,
97*fae548d3Szrj 			unsigned int local_sym_index);
98*fae548d3Szrj 
99*fae548d3Szrj   // Return the .rel.plt section data.
100*fae548d3Szrj   Reloc_section*
rel_plt() const101*fae548d3Szrj   rel_plt() const
102*fae548d3Szrj   { return this->rel_; }
103*fae548d3Szrj 
104*fae548d3Szrj   // Return where the TLS_DESC relocations should go.
105*fae548d3Szrj   Reloc_section*
106*fae548d3Szrj   rel_tls_desc(Layout*);
107*fae548d3Szrj 
108*fae548d3Szrj   // Return where the IRELATIVE relocations should go.
109*fae548d3Szrj   Reloc_section*
110*fae548d3Szrj   rel_irelative(Symbol_table*, Layout*);
111*fae548d3Szrj 
112*fae548d3Szrj   // Return whether we created a section for IRELATIVE relocations.
113*fae548d3Szrj   bool
has_irelative_section() const114*fae548d3Szrj   has_irelative_section() const
115*fae548d3Szrj   { return this->irelative_rel_ != NULL; }
116*fae548d3Szrj 
117*fae548d3Szrj   // Return the number of PLT entries.
118*fae548d3Szrj   unsigned int
entry_count() const119*fae548d3Szrj   entry_count() const
120*fae548d3Szrj   { return this->count_ + this->irelative_count_; }
121*fae548d3Szrj 
122*fae548d3Szrj   // Return the offset of the first non-reserved PLT entry.
123*fae548d3Szrj   unsigned int
first_plt_entry_offset()124*fae548d3Szrj   first_plt_entry_offset()
125*fae548d3Szrj   { return this->get_plt_entry_size(); }
126*fae548d3Szrj 
127*fae548d3Szrj   // Return the size of a PLT entry.
128*fae548d3Szrj   unsigned int
get_plt_entry_size() const129*fae548d3Szrj   get_plt_entry_size() const
130*fae548d3Szrj   { return this->do_get_plt_entry_size(); }
131*fae548d3Szrj 
132*fae548d3Szrj   // Return the PLT address to use for a global symbol.
133*fae548d3Szrj   uint64_t
134*fae548d3Szrj   address_for_global(const Symbol*);
135*fae548d3Szrj 
136*fae548d3Szrj   // Return the PLT address to use for a local symbol.
137*fae548d3Szrj   uint64_t
138*fae548d3Szrj   address_for_local(const Relobj*, unsigned int symndx);
139*fae548d3Szrj 
140*fae548d3Szrj   // Add .eh_frame information for the PLT.
141*fae548d3Szrj   void
add_eh_frame(Layout * layout)142*fae548d3Szrj   add_eh_frame(Layout* layout)
143*fae548d3Szrj   { this->do_add_eh_frame(layout); }
144*fae548d3Szrj 
145*fae548d3Szrj  protected:
146*fae548d3Szrj   // Fill the first PLT entry, given the pointer to the PLT section data
147*fae548d3Szrj   // and the runtime address of the GOT.
148*fae548d3Szrj   void
fill_first_plt_entry(unsigned char * pov,elfcpp::Elf_types<32>::Elf_Addr got_address)149*fae548d3Szrj   fill_first_plt_entry(unsigned char* pov,
150*fae548d3Szrj 		       elfcpp::Elf_types<32>::Elf_Addr got_address)
151*fae548d3Szrj   { this->do_fill_first_plt_entry(pov, got_address); }
152*fae548d3Szrj 
153*fae548d3Szrj   // Fill a normal PLT entry, given the pointer to the entry's data in the
154*fae548d3Szrj   // section, the runtime address of the GOT, the offset into the GOT of
155*fae548d3Szrj   // the corresponding slot, the offset into the relocation section of the
156*fae548d3Szrj   // corresponding reloc, and the offset of this entry within the whole
157*fae548d3Szrj   // PLT.  Return the offset from this PLT entry's runtime address that
158*fae548d3Szrj   // should be used to compute the initial value of the GOT slot.
159*fae548d3Szrj   unsigned int
fill_plt_entry(unsigned char * pov,elfcpp::Elf_types<32>::Elf_Addr got_address,unsigned int got_offset,unsigned int plt_offset,unsigned int plt_rel_offset)160*fae548d3Szrj   fill_plt_entry(unsigned char* pov,
161*fae548d3Szrj 		 elfcpp::Elf_types<32>::Elf_Addr got_address,
162*fae548d3Szrj 		 unsigned int got_offset,
163*fae548d3Szrj 		 unsigned int plt_offset,
164*fae548d3Szrj 		 unsigned int plt_rel_offset)
165*fae548d3Szrj   {
166*fae548d3Szrj     return this->do_fill_plt_entry(pov, got_address, got_offset,
167*fae548d3Szrj 				   plt_offset, plt_rel_offset);
168*fae548d3Szrj   }
169*fae548d3Szrj 
170*fae548d3Szrj   virtual unsigned int
171*fae548d3Szrj   do_get_plt_entry_size() const = 0;
172*fae548d3Szrj 
173*fae548d3Szrj   virtual void
174*fae548d3Szrj   do_fill_first_plt_entry(unsigned char* pov,
175*fae548d3Szrj 			  elfcpp::Elf_types<32>::Elf_Addr got_address) = 0;
176*fae548d3Szrj 
177*fae548d3Szrj   virtual unsigned int
178*fae548d3Szrj   do_fill_plt_entry(unsigned char* pov,
179*fae548d3Szrj 		    elfcpp::Elf_types<32>::Elf_Addr got_address,
180*fae548d3Szrj 		    unsigned int got_offset,
181*fae548d3Szrj 		    unsigned int plt_offset,
182*fae548d3Szrj 		    unsigned int plt_rel_offset) = 0;
183*fae548d3Szrj 
184*fae548d3Szrj   virtual void
185*fae548d3Szrj   do_add_eh_frame(Layout*) = 0;
186*fae548d3Szrj 
187*fae548d3Szrj   void
188*fae548d3Szrj   do_adjust_output_section(Output_section* os);
189*fae548d3Szrj 
190*fae548d3Szrj   // Write to a map file.
191*fae548d3Szrj   void
do_print_to_mapfile(Mapfile * mapfile) const192*fae548d3Szrj   do_print_to_mapfile(Mapfile* mapfile) const
193*fae548d3Szrj   { mapfile->print_output_data(this, _("** PLT")); }
194*fae548d3Szrj 
195*fae548d3Szrj   // The .eh_frame unwind information for the PLT.
196*fae548d3Szrj   // The CIE is common across variants of the PLT format.
197*fae548d3Szrj   static const int plt_eh_frame_cie_size = 16;
198*fae548d3Szrj   static const unsigned char plt_eh_frame_cie[plt_eh_frame_cie_size];
199*fae548d3Szrj 
200*fae548d3Szrj  private:
201*fae548d3Szrj   // Set the final size.
202*fae548d3Szrj   void
set_final_data_size()203*fae548d3Szrj   set_final_data_size()
204*fae548d3Szrj   {
205*fae548d3Szrj     this->set_data_size((this->count_ + this->irelative_count_ + 1)
206*fae548d3Szrj 			* this->get_plt_entry_size());
207*fae548d3Szrj   }
208*fae548d3Szrj 
209*fae548d3Szrj   // Write out the PLT data.
210*fae548d3Szrj   void
211*fae548d3Szrj   do_write(Output_file*);
212*fae548d3Szrj 
213*fae548d3Szrj   // We keep a list of global STT_GNU_IFUNC symbols, each with its
214*fae548d3Szrj   // offset in the GOT.
215*fae548d3Szrj   struct Global_ifunc
216*fae548d3Szrj   {
217*fae548d3Szrj     Symbol* sym;
218*fae548d3Szrj     unsigned int got_offset;
219*fae548d3Szrj   };
220*fae548d3Szrj 
221*fae548d3Szrj   // We keep a list of local STT_GNU_IFUNC symbols, each with its
222*fae548d3Szrj   // offset in the GOT.
223*fae548d3Szrj   struct Local_ifunc
224*fae548d3Szrj   {
225*fae548d3Szrj     Sized_relobj_file<32, false>* object;
226*fae548d3Szrj     unsigned int local_sym_index;
227*fae548d3Szrj     unsigned int got_offset;
228*fae548d3Szrj   };
229*fae548d3Szrj 
230*fae548d3Szrj   // The reloc section.
231*fae548d3Szrj   Reloc_section* rel_;
232*fae548d3Szrj   // The TLS_DESC relocations, if necessary.  These must follow the
233*fae548d3Szrj   // regular PLT relocs.
234*fae548d3Szrj   Reloc_section* tls_desc_rel_;
235*fae548d3Szrj   // The IRELATIVE relocations, if necessary.  These must follow the
236*fae548d3Szrj   // regular relocatoins and the TLS_DESC relocations.
237*fae548d3Szrj   Reloc_section* irelative_rel_;
238*fae548d3Szrj   // The .got.plt section.
239*fae548d3Szrj   Output_data_got_plt_i386* got_plt_;
240*fae548d3Szrj   // The part of the .got.plt section used for IRELATIVE relocs.
241*fae548d3Szrj   Output_data_space* got_irelative_;
242*fae548d3Szrj   // The number of PLT entries.
243*fae548d3Szrj   unsigned int count_;
244*fae548d3Szrj   // Number of PLT entries with R_386_IRELATIVE relocs.  These follow
245*fae548d3Szrj   // the regular PLT entries.
246*fae548d3Szrj   unsigned int irelative_count_;
247*fae548d3Szrj   // Global STT_GNU_IFUNC symbols.
248*fae548d3Szrj   std::vector<Global_ifunc> global_ifuncs_;
249*fae548d3Szrj   // Local STT_GNU_IFUNC symbols.
250*fae548d3Szrj   std::vector<Local_ifunc> local_ifuncs_;
251*fae548d3Szrj };
252*fae548d3Szrj 
253*fae548d3Szrj // This is an abstract class for the standard PLT layout.
254*fae548d3Szrj // The derived classes below handle the actual PLT contents
255*fae548d3Szrj // for the executable (non-PIC) and shared-library (PIC) cases.
256*fae548d3Szrj // The unwind information is uniform across those two, so it's here.
257*fae548d3Szrj 
258*fae548d3Szrj class Output_data_plt_i386_standard : public Output_data_plt_i386
259*fae548d3Szrj {
260*fae548d3Szrj  public:
Output_data_plt_i386_standard(Layout * layout,Output_data_got_plt_i386 * got_plt,Output_data_space * got_irelative)261*fae548d3Szrj   Output_data_plt_i386_standard(Layout* layout,
262*fae548d3Szrj 				Output_data_got_plt_i386* got_plt,
263*fae548d3Szrj 				Output_data_space* got_irelative)
264*fae548d3Szrj     : Output_data_plt_i386(layout, plt_entry_size, got_plt, got_irelative)
265*fae548d3Szrj   { }
266*fae548d3Szrj 
267*fae548d3Szrj  protected:
268*fae548d3Szrj   virtual unsigned int
do_get_plt_entry_size() const269*fae548d3Szrj   do_get_plt_entry_size() const
270*fae548d3Szrj   { return plt_entry_size; }
271*fae548d3Szrj 
272*fae548d3Szrj   virtual void
do_add_eh_frame(Layout * layout)273*fae548d3Szrj   do_add_eh_frame(Layout* layout)
274*fae548d3Szrj   {
275*fae548d3Szrj     layout->add_eh_frame_for_plt(this, plt_eh_frame_cie, plt_eh_frame_cie_size,
276*fae548d3Szrj 				 plt_eh_frame_fde, plt_eh_frame_fde_size);
277*fae548d3Szrj   }
278*fae548d3Szrj 
279*fae548d3Szrj   // The size of an entry in the PLT.
280*fae548d3Szrj   static const int plt_entry_size = 16;
281*fae548d3Szrj 
282*fae548d3Szrj   // The .eh_frame unwind information for the PLT.
283*fae548d3Szrj   static const int plt_eh_frame_fde_size = 32;
284*fae548d3Szrj   static const unsigned char plt_eh_frame_fde[plt_eh_frame_fde_size];
285*fae548d3Szrj };
286*fae548d3Szrj 
287*fae548d3Szrj // Actually fill the PLT contents for an executable (non-PIC).
288*fae548d3Szrj 
289*fae548d3Szrj class Output_data_plt_i386_exec : public Output_data_plt_i386_standard
290*fae548d3Szrj {
291*fae548d3Szrj public:
Output_data_plt_i386_exec(Layout * layout,Output_data_got_plt_i386 * got_plt,Output_data_space * got_irelative)292*fae548d3Szrj   Output_data_plt_i386_exec(Layout* layout,
293*fae548d3Szrj 			    Output_data_got_plt_i386* got_plt,
294*fae548d3Szrj 			    Output_data_space* got_irelative)
295*fae548d3Szrj     : Output_data_plt_i386_standard(layout, got_plt, got_irelative)
296*fae548d3Szrj   { }
297*fae548d3Szrj 
298*fae548d3Szrj  protected:
299*fae548d3Szrj   virtual void
300*fae548d3Szrj   do_fill_first_plt_entry(unsigned char* pov,
301*fae548d3Szrj 			  elfcpp::Elf_types<32>::Elf_Addr got_address);
302*fae548d3Szrj 
303*fae548d3Szrj   virtual unsigned int
304*fae548d3Szrj   do_fill_plt_entry(unsigned char* pov,
305*fae548d3Szrj 		    elfcpp::Elf_types<32>::Elf_Addr got_address,
306*fae548d3Szrj 		    unsigned int got_offset,
307*fae548d3Szrj 		    unsigned int plt_offset,
308*fae548d3Szrj 		    unsigned int plt_rel_offset);
309*fae548d3Szrj 
310*fae548d3Szrj  private:
311*fae548d3Szrj   // The first entry in the PLT for an executable.
312*fae548d3Szrj   static const unsigned char first_plt_entry[plt_entry_size];
313*fae548d3Szrj 
314*fae548d3Szrj   // Other entries in the PLT for an executable.
315*fae548d3Szrj   static const unsigned char plt_entry[plt_entry_size];
316*fae548d3Szrj };
317*fae548d3Szrj 
318*fae548d3Szrj // Actually fill the PLT contents for a shared library (PIC).
319*fae548d3Szrj 
320*fae548d3Szrj class Output_data_plt_i386_dyn : public Output_data_plt_i386_standard
321*fae548d3Szrj {
322*fae548d3Szrj  public:
Output_data_plt_i386_dyn(Layout * layout,Output_data_got_plt_i386 * got_plt,Output_data_space * got_irelative)323*fae548d3Szrj   Output_data_plt_i386_dyn(Layout* layout,
324*fae548d3Szrj 			   Output_data_got_plt_i386* got_plt,
325*fae548d3Szrj 			   Output_data_space* got_irelative)
326*fae548d3Szrj     : Output_data_plt_i386_standard(layout, got_plt, got_irelative)
327*fae548d3Szrj   { }
328*fae548d3Szrj 
329*fae548d3Szrj  protected:
330*fae548d3Szrj   virtual void
331*fae548d3Szrj   do_fill_first_plt_entry(unsigned char* pov, elfcpp::Elf_types<32>::Elf_Addr);
332*fae548d3Szrj 
333*fae548d3Szrj   virtual unsigned int
334*fae548d3Szrj   do_fill_plt_entry(unsigned char* pov,
335*fae548d3Szrj 		    elfcpp::Elf_types<32>::Elf_Addr,
336*fae548d3Szrj 		    unsigned int got_offset,
337*fae548d3Szrj 		    unsigned int plt_offset,
338*fae548d3Szrj 		    unsigned int plt_rel_offset);
339*fae548d3Szrj 
340*fae548d3Szrj  private:
341*fae548d3Szrj   // The first entry in the PLT for a shared object.
342*fae548d3Szrj   static const unsigned char first_plt_entry[plt_entry_size];
343*fae548d3Szrj 
344*fae548d3Szrj   // Other entries in the PLT for a shared object.
345*fae548d3Szrj   static const unsigned char plt_entry[plt_entry_size];
346*fae548d3Szrj };
347*fae548d3Szrj 
348*fae548d3Szrj // The i386 target class.
349*fae548d3Szrj // TLS info comes from
350*fae548d3Szrj //   http://people.redhat.com/drepper/tls.pdf
351*fae548d3Szrj //   http://www.lsd.ic.unicamp.br/~oliva/writeups/TLS/RFC-TLSDESC-x86.txt
352*fae548d3Szrj 
353*fae548d3Szrj class Target_i386 : public Sized_target<32, false>
354*fae548d3Szrj {
355*fae548d3Szrj  public:
356*fae548d3Szrj   typedef Output_data_reloc<elfcpp::SHT_REL, true, 32, false> Reloc_section;
357*fae548d3Szrj 
Target_i386(const Target::Target_info * info=& i386_info)358*fae548d3Szrj   Target_i386(const Target::Target_info* info = &i386_info)
359*fae548d3Szrj     : Sized_target<32, false>(info),
360*fae548d3Szrj       got_(NULL), plt_(NULL), got_plt_(NULL), got_irelative_(NULL),
361*fae548d3Szrj       got_tlsdesc_(NULL), global_offset_table_(NULL), rel_dyn_(NULL),
362*fae548d3Szrj       rel_irelative_(NULL), copy_relocs_(elfcpp::R_386_COPY),
363*fae548d3Szrj       got_mod_index_offset_(-1U), tls_base_symbol_defined_(false)
364*fae548d3Szrj   { }
365*fae548d3Szrj 
366*fae548d3Szrj   // Process the relocations to determine unreferenced sections for
367*fae548d3Szrj   // garbage collection.
368*fae548d3Szrj   void
369*fae548d3Szrj   gc_process_relocs(Symbol_table* symtab,
370*fae548d3Szrj 		    Layout* layout,
371*fae548d3Szrj 		    Sized_relobj_file<32, false>* object,
372*fae548d3Szrj 		    unsigned int data_shndx,
373*fae548d3Szrj 		    unsigned int sh_type,
374*fae548d3Szrj 		    const unsigned char* prelocs,
375*fae548d3Szrj 		    size_t reloc_count,
376*fae548d3Szrj 		    Output_section* output_section,
377*fae548d3Szrj 		    bool needs_special_offset_handling,
378*fae548d3Szrj 		    size_t local_symbol_count,
379*fae548d3Szrj 		    const unsigned char* plocal_symbols);
380*fae548d3Szrj 
381*fae548d3Szrj   // Scan the relocations to look for symbol adjustments.
382*fae548d3Szrj   void
383*fae548d3Szrj   scan_relocs(Symbol_table* symtab,
384*fae548d3Szrj 	      Layout* layout,
385*fae548d3Szrj 	      Sized_relobj_file<32, false>* object,
386*fae548d3Szrj 	      unsigned int data_shndx,
387*fae548d3Szrj 	      unsigned int sh_type,
388*fae548d3Szrj 	      const unsigned char* prelocs,
389*fae548d3Szrj 	      size_t reloc_count,
390*fae548d3Szrj 	      Output_section* output_section,
391*fae548d3Szrj 	      bool needs_special_offset_handling,
392*fae548d3Szrj 	      size_t local_symbol_count,
393*fae548d3Szrj 	      const unsigned char* plocal_symbols);
394*fae548d3Szrj 
395*fae548d3Szrj   // Finalize the sections.
396*fae548d3Szrj   void
397*fae548d3Szrj   do_finalize_sections(Layout*, const Input_objects*, Symbol_table*);
398*fae548d3Szrj 
399*fae548d3Szrj   // Return the value to use for a dynamic which requires special
400*fae548d3Szrj   // treatment.
401*fae548d3Szrj   uint64_t
402*fae548d3Szrj   do_dynsym_value(const Symbol*) const;
403*fae548d3Szrj 
404*fae548d3Szrj   // Relocate a section.
405*fae548d3Szrj   void
406*fae548d3Szrj   relocate_section(const Relocate_info<32, false>*,
407*fae548d3Szrj 		   unsigned int sh_type,
408*fae548d3Szrj 		   const unsigned char* prelocs,
409*fae548d3Szrj 		   size_t reloc_count,
410*fae548d3Szrj 		   Output_section* output_section,
411*fae548d3Szrj 		   bool needs_special_offset_handling,
412*fae548d3Szrj 		   unsigned char* view,
413*fae548d3Szrj 		   elfcpp::Elf_types<32>::Elf_Addr view_address,
414*fae548d3Szrj 		   section_size_type view_size,
415*fae548d3Szrj 		   const Reloc_symbol_changes*);
416*fae548d3Szrj 
417*fae548d3Szrj   // Scan the relocs during a relocatable link.
418*fae548d3Szrj   void
419*fae548d3Szrj   scan_relocatable_relocs(Symbol_table* symtab,
420*fae548d3Szrj 			  Layout* layout,
421*fae548d3Szrj 			  Sized_relobj_file<32, false>* object,
422*fae548d3Szrj 			  unsigned int data_shndx,
423*fae548d3Szrj 			  unsigned int sh_type,
424*fae548d3Szrj 			  const unsigned char* prelocs,
425*fae548d3Szrj 			  size_t reloc_count,
426*fae548d3Szrj 			  Output_section* output_section,
427*fae548d3Szrj 			  bool needs_special_offset_handling,
428*fae548d3Szrj 			  size_t local_symbol_count,
429*fae548d3Szrj 			  const unsigned char* plocal_symbols,
430*fae548d3Szrj 			  Relocatable_relocs*);
431*fae548d3Szrj 
432*fae548d3Szrj   // Scan the relocs for --emit-relocs.
433*fae548d3Szrj   void
434*fae548d3Szrj   emit_relocs_scan(Symbol_table* symtab,
435*fae548d3Szrj 		   Layout* layout,
436*fae548d3Szrj 		   Sized_relobj_file<32, false>* object,
437*fae548d3Szrj 		   unsigned int data_shndx,
438*fae548d3Szrj 		   unsigned int sh_type,
439*fae548d3Szrj 		   const unsigned char* prelocs,
440*fae548d3Szrj 		   size_t reloc_count,
441*fae548d3Szrj 		   Output_section* output_section,
442*fae548d3Szrj 		   bool needs_special_offset_handling,
443*fae548d3Szrj 		   size_t local_symbol_count,
444*fae548d3Szrj 		   const unsigned char* plocal_syms,
445*fae548d3Szrj 		   Relocatable_relocs* rr);
446*fae548d3Szrj 
447*fae548d3Szrj   // Emit relocations for a section.
448*fae548d3Szrj   void
449*fae548d3Szrj   relocate_relocs(const Relocate_info<32, false>*,
450*fae548d3Szrj 		  unsigned int sh_type,
451*fae548d3Szrj 		  const unsigned char* prelocs,
452*fae548d3Szrj 		  size_t reloc_count,
453*fae548d3Szrj 		  Output_section* output_section,
454*fae548d3Szrj 		  elfcpp::Elf_types<32>::Elf_Off offset_in_output_section,
455*fae548d3Szrj 		  unsigned char* view,
456*fae548d3Szrj 		  elfcpp::Elf_types<32>::Elf_Addr view_address,
457*fae548d3Szrj 		  section_size_type view_size,
458*fae548d3Szrj 		  unsigned char* reloc_view,
459*fae548d3Szrj 		  section_size_type reloc_view_size);
460*fae548d3Szrj 
461*fae548d3Szrj   // Return a string used to fill a code section with nops.
462*fae548d3Szrj   std::string
463*fae548d3Szrj   do_code_fill(section_size_type length) const;
464*fae548d3Szrj 
465*fae548d3Szrj   // Return whether SYM is defined by the ABI.
466*fae548d3Szrj   bool
do_is_defined_by_abi(const Symbol * sym) const467*fae548d3Szrj   do_is_defined_by_abi(const Symbol* sym) const
468*fae548d3Szrj   { return strcmp(sym->name(), "___tls_get_addr") == 0; }
469*fae548d3Szrj 
470*fae548d3Szrj   // Return whether a symbol name implies a local label.  The UnixWare
471*fae548d3Szrj   // 2.1 cc generates temporary symbols that start with .X, so we
472*fae548d3Szrj   // recognize them here.  FIXME: do other SVR4 compilers also use .X?.
473*fae548d3Szrj   // If so, we should move the .X recognition into
474*fae548d3Szrj   // Target::do_is_local_label_name.
475*fae548d3Szrj   bool
do_is_local_label_name(const char * name) const476*fae548d3Szrj   do_is_local_label_name(const char* name) const
477*fae548d3Szrj   {
478*fae548d3Szrj     if (name[0] == '.' && name[1] == 'X')
479*fae548d3Szrj       return true;
480*fae548d3Szrj     return Target::do_is_local_label_name(name);
481*fae548d3Szrj   }
482*fae548d3Szrj 
483*fae548d3Szrj   // Return the PLT address to use for a global symbol.
484*fae548d3Szrj   uint64_t
do_plt_address_for_global(const Symbol * gsym) const485*fae548d3Szrj   do_plt_address_for_global(const Symbol* gsym) const
486*fae548d3Szrj   { return this->plt_section()->address_for_global(gsym); }
487*fae548d3Szrj 
488*fae548d3Szrj   uint64_t
do_plt_address_for_local(const Relobj * relobj,unsigned int symndx) const489*fae548d3Szrj   do_plt_address_for_local(const Relobj* relobj, unsigned int symndx) const
490*fae548d3Szrj   { return this->plt_section()->address_for_local(relobj, symndx); }
491*fae548d3Szrj 
492*fae548d3Szrj   // We can tell whether we take the address of a function.
493*fae548d3Szrj   inline bool
do_can_check_for_function_pointers() const494*fae548d3Szrj   do_can_check_for_function_pointers() const
495*fae548d3Szrj   { return true; }
496*fae548d3Szrj 
497*fae548d3Szrj   // Return the base for a DW_EH_PE_datarel encoding.
498*fae548d3Szrj   uint64_t
499*fae548d3Szrj   do_ehframe_datarel_base() const;
500*fae548d3Szrj 
501*fae548d3Szrj   // Return whether SYM is call to a non-split function.
502*fae548d3Szrj   bool
503*fae548d3Szrj   do_is_call_to_non_split(const Symbol* sym, const unsigned char*,
504*fae548d3Szrj 			  const unsigned char*, section_size_type) const;
505*fae548d3Szrj 
506*fae548d3Szrj   // Adjust -fsplit-stack code which calls non-split-stack code.
507*fae548d3Szrj   void
508*fae548d3Szrj   do_calls_non_split(Relobj* object, unsigned int shndx,
509*fae548d3Szrj 		     section_offset_type fnoffset, section_size_type fnsize,
510*fae548d3Szrj 		     const unsigned char* prelocs, size_t reloc_count,
511*fae548d3Szrj 		     unsigned char* view, section_size_type view_size,
512*fae548d3Szrj 		     std::string* from, std::string* to) const;
513*fae548d3Szrj 
514*fae548d3Szrj   // Return the size of the GOT section.
515*fae548d3Szrj   section_size_type
got_size() const516*fae548d3Szrj   got_size() const
517*fae548d3Szrj   {
518*fae548d3Szrj     gold_assert(this->got_ != NULL);
519*fae548d3Szrj     return this->got_->data_size();
520*fae548d3Szrj   }
521*fae548d3Szrj 
522*fae548d3Szrj   // Return the number of entries in the GOT.
523*fae548d3Szrj   unsigned int
got_entry_count() const524*fae548d3Szrj   got_entry_count() const
525*fae548d3Szrj   {
526*fae548d3Szrj     if (this->got_ == NULL)
527*fae548d3Szrj       return 0;
528*fae548d3Szrj     return this->got_size() / 4;
529*fae548d3Szrj   }
530*fae548d3Szrj 
531*fae548d3Szrj   // Return the number of entries in the PLT.
532*fae548d3Szrj   unsigned int
533*fae548d3Szrj   plt_entry_count() const;
534*fae548d3Szrj 
535*fae548d3Szrj   // Return the offset of the first non-reserved PLT entry.
536*fae548d3Szrj   unsigned int
537*fae548d3Szrj   first_plt_entry_offset() const;
538*fae548d3Szrj 
539*fae548d3Szrj   // Return the size of each PLT entry.
540*fae548d3Szrj   unsigned int
541*fae548d3Szrj   plt_entry_size() const;
542*fae548d3Szrj 
543*fae548d3Szrj  protected:
544*fae548d3Szrj   // Instantiate the plt_ member.
545*fae548d3Szrj   // This chooses the right PLT flavor for an executable or a shared object.
546*fae548d3Szrj   Output_data_plt_i386*
make_data_plt(Layout * layout,Output_data_got_plt_i386 * got_plt,Output_data_space * got_irelative,bool dyn)547*fae548d3Szrj   make_data_plt(Layout* layout,
548*fae548d3Szrj 		Output_data_got_plt_i386* got_plt,
549*fae548d3Szrj 		Output_data_space* got_irelative,
550*fae548d3Szrj 		bool dyn)
551*fae548d3Szrj   { return this->do_make_data_plt(layout, got_plt, got_irelative, dyn); }
552*fae548d3Szrj 
553*fae548d3Szrj   virtual Output_data_plt_i386*
do_make_data_plt(Layout * layout,Output_data_got_plt_i386 * got_plt,Output_data_space * got_irelative,bool dyn)554*fae548d3Szrj   do_make_data_plt(Layout* layout,
555*fae548d3Szrj 		   Output_data_got_plt_i386* got_plt,
556*fae548d3Szrj 		   Output_data_space* got_irelative,
557*fae548d3Szrj 		   bool dyn)
558*fae548d3Szrj   {
559*fae548d3Szrj     if (dyn)
560*fae548d3Szrj       return new Output_data_plt_i386_dyn(layout, got_plt, got_irelative);
561*fae548d3Szrj     else
562*fae548d3Szrj       return new Output_data_plt_i386_exec(layout, got_plt, got_irelative);
563*fae548d3Szrj   }
564*fae548d3Szrj 
565*fae548d3Szrj  private:
566*fae548d3Szrj   // The class which scans relocations.
567*fae548d3Szrj   struct Scan
568*fae548d3Szrj   {
569*fae548d3Szrj     static inline int
570*fae548d3Szrj 
571*fae548d3Szrj     get_reference_flags(unsigned int r_type);
572*fae548d3Szrj 
573*fae548d3Szrj     inline void
574*fae548d3Szrj     local(Symbol_table* symtab, Layout* layout, Target_i386* target,
575*fae548d3Szrj 	  Sized_relobj_file<32, false>* object,
576*fae548d3Szrj 	  unsigned int data_shndx,
577*fae548d3Szrj 	  Output_section* output_section,
578*fae548d3Szrj 	  const elfcpp::Rel<32, false>& reloc, unsigned int r_type,
579*fae548d3Szrj 	  const elfcpp::Sym<32, false>& lsym,
580*fae548d3Szrj 	  bool is_discarded);
581*fae548d3Szrj 
582*fae548d3Szrj     inline void
583*fae548d3Szrj     global(Symbol_table* symtab, Layout* layout, Target_i386* target,
584*fae548d3Szrj 	   Sized_relobj_file<32, false>* object,
585*fae548d3Szrj 	   unsigned int data_shndx,
586*fae548d3Szrj 	   Output_section* output_section,
587*fae548d3Szrj 	   const elfcpp::Rel<32, false>& reloc, unsigned int r_type,
588*fae548d3Szrj 	   Symbol* gsym);
589*fae548d3Szrj 
590*fae548d3Szrj     inline bool
591*fae548d3Szrj     local_reloc_may_be_function_pointer(Symbol_table* symtab, Layout* layout,
592*fae548d3Szrj 					Target_i386* target,
593*fae548d3Szrj 					Sized_relobj_file<32, false>* object,
594*fae548d3Szrj 					unsigned int data_shndx,
595*fae548d3Szrj 					Output_section* output_section,
596*fae548d3Szrj 					const elfcpp::Rel<32, false>& reloc,
597*fae548d3Szrj 					unsigned int r_type,
598*fae548d3Szrj 					const elfcpp::Sym<32, false>& lsym);
599*fae548d3Szrj 
600*fae548d3Szrj     inline bool
601*fae548d3Szrj     global_reloc_may_be_function_pointer(Symbol_table* symtab, Layout* layout,
602*fae548d3Szrj 					 Target_i386* target,
603*fae548d3Szrj 					 Sized_relobj_file<32, false>* object,
604*fae548d3Szrj 					 unsigned int data_shndx,
605*fae548d3Szrj 					 Output_section* output_section,
606*fae548d3Szrj 					 const elfcpp::Rel<32, false>& reloc,
607*fae548d3Szrj 					 unsigned int r_type,
608*fae548d3Szrj 					 Symbol* gsym);
609*fae548d3Szrj 
610*fae548d3Szrj     inline bool
611*fae548d3Szrj     possible_function_pointer_reloc(unsigned int r_type);
612*fae548d3Szrj 
613*fae548d3Szrj     bool
614*fae548d3Szrj     reloc_needs_plt_for_ifunc(Sized_relobj_file<32, false>*,
615*fae548d3Szrj 			      unsigned int r_type);
616*fae548d3Szrj 
617*fae548d3Szrj     static void
618*fae548d3Szrj     unsupported_reloc_local(Sized_relobj_file<32, false>*, unsigned int r_type);
619*fae548d3Szrj 
620*fae548d3Szrj     static void
621*fae548d3Szrj     unsupported_reloc_global(Sized_relobj_file<32, false>*, unsigned int r_type,
622*fae548d3Szrj 			     Symbol*);
623*fae548d3Szrj   };
624*fae548d3Szrj 
625*fae548d3Szrj   // The class which implements relocation.
626*fae548d3Szrj   class Relocate
627*fae548d3Szrj   {
628*fae548d3Szrj    public:
Relocate()629*fae548d3Szrj     Relocate()
630*fae548d3Szrj       : skip_call_tls_get_addr_(false),
631*fae548d3Szrj 	local_dynamic_type_(LOCAL_DYNAMIC_NONE)
632*fae548d3Szrj     { }
633*fae548d3Szrj 
~Relocate()634*fae548d3Szrj     ~Relocate()
635*fae548d3Szrj     {
636*fae548d3Szrj       if (this->skip_call_tls_get_addr_)
637*fae548d3Szrj 	{
638*fae548d3Szrj 	  // FIXME: This needs to specify the location somehow.
639*fae548d3Szrj 	  gold_error(_("missing expected TLS relocation"));
640*fae548d3Szrj 	}
641*fae548d3Szrj     }
642*fae548d3Szrj 
643*fae548d3Szrj     // Return whether the static relocation needs to be applied.
644*fae548d3Szrj     inline bool
645*fae548d3Szrj     should_apply_static_reloc(const Sized_symbol<32>* gsym,
646*fae548d3Szrj 			      unsigned int r_type,
647*fae548d3Szrj 			      bool is_32bit,
648*fae548d3Szrj 			      Output_section* output_section);
649*fae548d3Szrj 
650*fae548d3Szrj     // Do a relocation.  Return false if the caller should not issue
651*fae548d3Szrj     // any warnings about this relocation.
652*fae548d3Szrj     inline bool
653*fae548d3Szrj     relocate(const Relocate_info<32, false>*, unsigned int,
654*fae548d3Szrj 	     Target_i386*, Output_section*, size_t, const unsigned char*,
655*fae548d3Szrj 	     const Sized_symbol<32>*, const Symbol_value<32>*,
656*fae548d3Szrj 	     unsigned char*, elfcpp::Elf_types<32>::Elf_Addr,
657*fae548d3Szrj 	     section_size_type);
658*fae548d3Szrj 
659*fae548d3Szrj    private:
660*fae548d3Szrj     // Do a TLS relocation.
661*fae548d3Szrj     inline void
662*fae548d3Szrj     relocate_tls(const Relocate_info<32, false>*, Target_i386* target,
663*fae548d3Szrj 		 size_t relnum, const elfcpp::Rel<32, false>&,
664*fae548d3Szrj 		 unsigned int r_type, const Sized_symbol<32>*,
665*fae548d3Szrj 		 const Symbol_value<32>*,
666*fae548d3Szrj 		 unsigned char*, elfcpp::Elf_types<32>::Elf_Addr,
667*fae548d3Szrj 		 section_size_type);
668*fae548d3Szrj 
669*fae548d3Szrj     // Do a TLS General-Dynamic to Initial-Exec transition.
670*fae548d3Szrj     inline void
671*fae548d3Szrj     tls_gd_to_ie(const Relocate_info<32, false>*, size_t relnum,
672*fae548d3Szrj 		 const elfcpp::Rel<32, false>&, unsigned int r_type,
673*fae548d3Szrj 		 elfcpp::Elf_types<32>::Elf_Addr value,
674*fae548d3Szrj 		 unsigned char* view,
675*fae548d3Szrj 		 section_size_type view_size);
676*fae548d3Szrj 
677*fae548d3Szrj     // Do a TLS General-Dynamic to Local-Exec transition.
678*fae548d3Szrj     inline void
679*fae548d3Szrj     tls_gd_to_le(const Relocate_info<32, false>*, size_t relnum,
680*fae548d3Szrj 		 Output_segment* tls_segment,
681*fae548d3Szrj 		 const elfcpp::Rel<32, false>&, unsigned int r_type,
682*fae548d3Szrj 		 elfcpp::Elf_types<32>::Elf_Addr value,
683*fae548d3Szrj 		 unsigned char* view,
684*fae548d3Szrj 		 section_size_type view_size);
685*fae548d3Szrj 
686*fae548d3Szrj     // Do a TLS_GOTDESC or TLS_DESC_CALL General-Dynamic to Initial-Exec
687*fae548d3Szrj     // transition.
688*fae548d3Szrj     inline void
689*fae548d3Szrj     tls_desc_gd_to_ie(const Relocate_info<32, false>*, size_t relnum,
690*fae548d3Szrj 		      const elfcpp::Rel<32, false>&, unsigned int r_type,
691*fae548d3Szrj 		      elfcpp::Elf_types<32>::Elf_Addr value,
692*fae548d3Szrj 		      unsigned char* view,
693*fae548d3Szrj 		      section_size_type view_size);
694*fae548d3Szrj 
695*fae548d3Szrj     // Do a TLS_GOTDESC or TLS_DESC_CALL General-Dynamic to Local-Exec
696*fae548d3Szrj     // transition.
697*fae548d3Szrj     inline void
698*fae548d3Szrj     tls_desc_gd_to_le(const Relocate_info<32, false>*, size_t relnum,
699*fae548d3Szrj 		      Output_segment* tls_segment,
700*fae548d3Szrj 		      const elfcpp::Rel<32, false>&, unsigned int r_type,
701*fae548d3Szrj 		      elfcpp::Elf_types<32>::Elf_Addr value,
702*fae548d3Szrj 		      unsigned char* view,
703*fae548d3Szrj 		      section_size_type view_size);
704*fae548d3Szrj 
705*fae548d3Szrj     // Do a TLS Local-Dynamic to Local-Exec transition.
706*fae548d3Szrj     inline void
707*fae548d3Szrj     tls_ld_to_le(const Relocate_info<32, false>*, size_t relnum,
708*fae548d3Szrj 		 Output_segment* tls_segment,
709*fae548d3Szrj 		 const elfcpp::Rel<32, false>&, unsigned int r_type,
710*fae548d3Szrj 		 elfcpp::Elf_types<32>::Elf_Addr value,
711*fae548d3Szrj 		 unsigned char* view,
712*fae548d3Szrj 		 section_size_type view_size);
713*fae548d3Szrj 
714*fae548d3Szrj     // Do a TLS Initial-Exec to Local-Exec transition.
715*fae548d3Szrj     static inline void
716*fae548d3Szrj     tls_ie_to_le(const Relocate_info<32, false>*, size_t relnum,
717*fae548d3Szrj 		 Output_segment* tls_segment,
718*fae548d3Szrj 		 const elfcpp::Rel<32, false>&, unsigned int r_type,
719*fae548d3Szrj 		 elfcpp::Elf_types<32>::Elf_Addr value,
720*fae548d3Szrj 		 unsigned char* view,
721*fae548d3Szrj 		 section_size_type view_size);
722*fae548d3Szrj 
723*fae548d3Szrj     // We need to keep track of which type of local dynamic relocation
724*fae548d3Szrj     // we have seen, so that we can optimize R_386_TLS_LDO_32 correctly.
725*fae548d3Szrj     enum Local_dynamic_type
726*fae548d3Szrj     {
727*fae548d3Szrj       LOCAL_DYNAMIC_NONE,
728*fae548d3Szrj       LOCAL_DYNAMIC_SUN,
729*fae548d3Szrj       LOCAL_DYNAMIC_GNU
730*fae548d3Szrj     };
731*fae548d3Szrj 
732*fae548d3Szrj     // This is set if we should skip the next reloc, which should be a
733*fae548d3Szrj     // PLT32 reloc against ___tls_get_addr.
734*fae548d3Szrj     bool skip_call_tls_get_addr_;
735*fae548d3Szrj     // The type of local dynamic relocation we have seen in the section
736*fae548d3Szrj     // being relocated, if any.
737*fae548d3Szrj     Local_dynamic_type local_dynamic_type_;
738*fae548d3Szrj   };
739*fae548d3Szrj 
740*fae548d3Szrj   // A class for inquiring about properties of a relocation,
741*fae548d3Szrj   // used while scanning relocs during a relocatable link and
742*fae548d3Szrj   // garbage collection.
743*fae548d3Szrj   class Classify_reloc :
744*fae548d3Szrj       public gold::Default_classify_reloc<elfcpp::SHT_REL, 32, false>
745*fae548d3Szrj   {
746*fae548d3Szrj    public:
747*fae548d3Szrj     typedef Reloc_types<elfcpp::SHT_REL, 32, false>::Reloc Reltype;
748*fae548d3Szrj 
749*fae548d3Szrj     // Return the explicit addend of the relocation (return 0 for SHT_REL).
750*fae548d3Szrj     static elfcpp::Elf_types<32>::Elf_Swxword
get_r_addend(const Reltype *)751*fae548d3Szrj     get_r_addend(const Reltype*)
752*fae548d3Szrj     { return 0; }
753*fae548d3Szrj 
754*fae548d3Szrj     // Return the size of the addend of the relocation (only used for SHT_REL).
755*fae548d3Szrj     static unsigned int
756*fae548d3Szrj     get_size_for_reloc(unsigned int, Relobj*);
757*fae548d3Szrj   };
758*fae548d3Szrj 
759*fae548d3Szrj   // Adjust TLS relocation type based on the options and whether this
760*fae548d3Szrj   // is a local symbol.
761*fae548d3Szrj   static tls::Tls_optimization
762*fae548d3Szrj   optimize_tls_reloc(bool is_final, int r_type);
763*fae548d3Szrj 
764*fae548d3Szrj   // Check if relocation against this symbol is a candidate for
765*fae548d3Szrj   // conversion from
766*fae548d3Szrj   // mov foo@GOT(%reg), %reg
767*fae548d3Szrj   // to
768*fae548d3Szrj   // lea foo@GOTOFF(%reg), %reg.
769*fae548d3Szrj   static bool
can_convert_mov_to_lea(const Symbol * gsym)770*fae548d3Szrj   can_convert_mov_to_lea(const Symbol* gsym)
771*fae548d3Szrj   {
772*fae548d3Szrj     gold_assert(gsym != NULL);
773*fae548d3Szrj     return (gsym->type() != elfcpp::STT_GNU_IFUNC
774*fae548d3Szrj 	    && !gsym->is_undefined ()
775*fae548d3Szrj 	    && !gsym->is_from_dynobj()
776*fae548d3Szrj 	    && !gsym->is_preemptible()
777*fae548d3Szrj 	    && (!parameters->options().shared()
778*fae548d3Szrj 		|| (gsym->visibility() != elfcpp::STV_DEFAULT
779*fae548d3Szrj 		    && gsym->visibility() != elfcpp::STV_PROTECTED)
780*fae548d3Szrj 		|| parameters->options().Bsymbolic())
781*fae548d3Szrj 	    && strcmp(gsym->name(), "_DYNAMIC") != 0);
782*fae548d3Szrj   }
783*fae548d3Szrj 
784*fae548d3Szrj   // Get the GOT section, creating it if necessary.
785*fae548d3Szrj   Output_data_got<32, false>*
786*fae548d3Szrj   got_section(Symbol_table*, Layout*);
787*fae548d3Szrj 
788*fae548d3Szrj   // Get the GOT PLT section.
789*fae548d3Szrj   Output_data_got_plt_i386*
got_plt_section() const790*fae548d3Szrj   got_plt_section() const
791*fae548d3Szrj   {
792*fae548d3Szrj     gold_assert(this->got_plt_ != NULL);
793*fae548d3Szrj     return this->got_plt_;
794*fae548d3Szrj   }
795*fae548d3Szrj 
796*fae548d3Szrj   // Get the GOT section for TLSDESC entries.
797*fae548d3Szrj   Output_data_got<32, false>*
got_tlsdesc_section() const798*fae548d3Szrj   got_tlsdesc_section() const
799*fae548d3Szrj   {
800*fae548d3Szrj     gold_assert(this->got_tlsdesc_ != NULL);
801*fae548d3Szrj     return this->got_tlsdesc_;
802*fae548d3Szrj   }
803*fae548d3Szrj 
804*fae548d3Szrj   // Create the PLT section.
805*fae548d3Szrj   void
806*fae548d3Szrj   make_plt_section(Symbol_table* symtab, Layout* layout);
807*fae548d3Szrj 
808*fae548d3Szrj   // Create a PLT entry for a global symbol.
809*fae548d3Szrj   void
810*fae548d3Szrj   make_plt_entry(Symbol_table*, Layout*, Symbol*);
811*fae548d3Szrj 
812*fae548d3Szrj   // Create a PLT entry for a local STT_GNU_IFUNC symbol.
813*fae548d3Szrj   void
814*fae548d3Szrj   make_local_ifunc_plt_entry(Symbol_table*, Layout*,
815*fae548d3Szrj 			     Sized_relobj_file<32, false>* relobj,
816*fae548d3Szrj 			     unsigned int local_sym_index);
817*fae548d3Szrj 
818*fae548d3Szrj   // Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
819*fae548d3Szrj   void
820*fae548d3Szrj   define_tls_base_symbol(Symbol_table*, Layout*);
821*fae548d3Szrj 
822*fae548d3Szrj   // Create a GOT entry for the TLS module index.
823*fae548d3Szrj   unsigned int
824*fae548d3Szrj   got_mod_index_entry(Symbol_table* symtab, Layout* layout,
825*fae548d3Szrj 		      Sized_relobj_file<32, false>* object);
826*fae548d3Szrj 
827*fae548d3Szrj   // Get the PLT section.
828*fae548d3Szrj   Output_data_plt_i386*
plt_section() const829*fae548d3Szrj   plt_section() const
830*fae548d3Szrj   {
831*fae548d3Szrj     gold_assert(this->plt_ != NULL);
832*fae548d3Szrj     return this->plt_;
833*fae548d3Szrj   }
834*fae548d3Szrj 
835*fae548d3Szrj   // Get the dynamic reloc section, creating it if necessary.
836*fae548d3Szrj   Reloc_section*
837*fae548d3Szrj   rel_dyn_section(Layout*);
838*fae548d3Szrj 
839*fae548d3Szrj   // Get the section to use for TLS_DESC relocations.
840*fae548d3Szrj   Reloc_section*
841*fae548d3Szrj   rel_tls_desc_section(Layout*) const;
842*fae548d3Szrj 
843*fae548d3Szrj   // Get the section to use for IRELATIVE relocations.
844*fae548d3Szrj   Reloc_section*
845*fae548d3Szrj   rel_irelative_section(Layout*);
846*fae548d3Szrj 
847*fae548d3Szrj   // Add a potential copy relocation.
848*fae548d3Szrj   void
copy_reloc(Symbol_table * symtab,Layout * layout,Sized_relobj_file<32,false> * object,unsigned int shndx,Output_section * output_section,Symbol * sym,const elfcpp::Rel<32,false> & reloc)849*fae548d3Szrj   copy_reloc(Symbol_table* symtab, Layout* layout,
850*fae548d3Szrj 	     Sized_relobj_file<32, false>* object,
851*fae548d3Szrj 	     unsigned int shndx, Output_section* output_section,
852*fae548d3Szrj 	     Symbol* sym, const elfcpp::Rel<32, false>& reloc)
853*fae548d3Szrj   {
854*fae548d3Szrj     unsigned int r_type = elfcpp::elf_r_type<32>(reloc.get_r_info());
855*fae548d3Szrj     this->copy_relocs_.copy_reloc(symtab, layout,
856*fae548d3Szrj 				  symtab->get_sized_symbol<32>(sym),
857*fae548d3Szrj 				  object, shndx, output_section,
858*fae548d3Szrj 				  r_type, reloc.get_r_offset(), 0,
859*fae548d3Szrj 				  this->rel_dyn_section(layout));
860*fae548d3Szrj   }
861*fae548d3Szrj 
862*fae548d3Szrj   // Information about this specific target which we pass to the
863*fae548d3Szrj   // general Target structure.
864*fae548d3Szrj   static const Target::Target_info i386_info;
865*fae548d3Szrj 
866*fae548d3Szrj   // The types of GOT entries needed for this platform.
867*fae548d3Szrj   // These values are exposed to the ABI in an incremental link.
868*fae548d3Szrj   // Do not renumber existing values without changing the version
869*fae548d3Szrj   // number of the .gnu_incremental_inputs section.
870*fae548d3Szrj   enum Got_type
871*fae548d3Szrj   {
872*fae548d3Szrj     GOT_TYPE_STANDARD = 0,      // GOT entry for a regular symbol
873*fae548d3Szrj     GOT_TYPE_TLS_NOFFSET = 1,   // GOT entry for negative TLS offset
874*fae548d3Szrj     GOT_TYPE_TLS_OFFSET = 2,    // GOT entry for positive TLS offset
875*fae548d3Szrj     GOT_TYPE_TLS_PAIR = 3,      // GOT entry for TLS module/offset pair
876*fae548d3Szrj     GOT_TYPE_TLS_DESC = 4       // GOT entry for TLS_DESC pair
877*fae548d3Szrj   };
878*fae548d3Szrj 
879*fae548d3Szrj   // The GOT section.
880*fae548d3Szrj   Output_data_got<32, false>* got_;
881*fae548d3Szrj   // The PLT section.
882*fae548d3Szrj   Output_data_plt_i386* plt_;
883*fae548d3Szrj   // The GOT PLT section.
884*fae548d3Szrj   Output_data_got_plt_i386* got_plt_;
885*fae548d3Szrj   // The GOT section for IRELATIVE relocations.
886*fae548d3Szrj   Output_data_space* got_irelative_;
887*fae548d3Szrj   // The GOT section for TLSDESC relocations.
888*fae548d3Szrj   Output_data_got<32, false>* got_tlsdesc_;
889*fae548d3Szrj   // The _GLOBAL_OFFSET_TABLE_ symbol.
890*fae548d3Szrj   Symbol* global_offset_table_;
891*fae548d3Szrj   // The dynamic reloc section.
892*fae548d3Szrj   Reloc_section* rel_dyn_;
893*fae548d3Szrj   // The section to use for IRELATIVE relocs.
894*fae548d3Szrj   Reloc_section* rel_irelative_;
895*fae548d3Szrj   // Relocs saved to avoid a COPY reloc.
896*fae548d3Szrj   Copy_relocs<elfcpp::SHT_REL, 32, false> copy_relocs_;
897*fae548d3Szrj   // Offset of the GOT entry for the TLS module index.
898*fae548d3Szrj   unsigned int got_mod_index_offset_;
899*fae548d3Szrj   // True if the _TLS_MODULE_BASE_ symbol has been defined.
900*fae548d3Szrj   bool tls_base_symbol_defined_;
901*fae548d3Szrj };
902*fae548d3Szrj 
903*fae548d3Szrj const Target::Target_info Target_i386::i386_info =
904*fae548d3Szrj {
905*fae548d3Szrj   32,			// size
906*fae548d3Szrj   false,		// is_big_endian
907*fae548d3Szrj   elfcpp::EM_386,	// machine_code
908*fae548d3Szrj   false,		// has_make_symbol
909*fae548d3Szrj   false,		// has_resolve
910*fae548d3Szrj   true,			// has_code_fill
911*fae548d3Szrj   true,			// is_default_stack_executable
912*fae548d3Szrj   true,			// can_icf_inline_merge_sections
913*fae548d3Szrj   '\0',			// wrap_char
914*fae548d3Szrj   "/usr/lib/libc.so.1",	// dynamic_linker
915*fae548d3Szrj   0x08048000,		// default_text_segment_address
916*fae548d3Szrj   0x1000,		// abi_pagesize (overridable by -z max-page-size)
917*fae548d3Szrj   0x1000,		// common_pagesize (overridable by -z common-page-size)
918*fae548d3Szrj   false,                // isolate_execinstr
919*fae548d3Szrj   0,                    // rosegment_gap
920*fae548d3Szrj   elfcpp::SHN_UNDEF,	// small_common_shndx
921*fae548d3Szrj   elfcpp::SHN_UNDEF,	// large_common_shndx
922*fae548d3Szrj   0,			// small_common_section_flags
923*fae548d3Szrj   0,			// large_common_section_flags
924*fae548d3Szrj   NULL,			// attributes_section
925*fae548d3Szrj   NULL,			// attributes_vendor
926*fae548d3Szrj   "_start",		// entry_symbol_name
927*fae548d3Szrj   32,			// hash_entry_size
928*fae548d3Szrj   elfcpp::SHT_PROGBITS,	// unwind_section_type
929*fae548d3Szrj };
930*fae548d3Szrj 
931*fae548d3Szrj // Get the GOT section, creating it if necessary.
932*fae548d3Szrj 
933*fae548d3Szrj Output_data_got<32, false>*
got_section(Symbol_table * symtab,Layout * layout)934*fae548d3Szrj Target_i386::got_section(Symbol_table* symtab, Layout* layout)
935*fae548d3Szrj {
936*fae548d3Szrj   if (this->got_ == NULL)
937*fae548d3Szrj     {
938*fae548d3Szrj       gold_assert(symtab != NULL && layout != NULL);
939*fae548d3Szrj 
940*fae548d3Szrj       this->got_ = new Output_data_got<32, false>();
941*fae548d3Szrj 
942*fae548d3Szrj       // When using -z now, we can treat .got.plt as a relro section.
943*fae548d3Szrj       // Without -z now, it is modified after program startup by lazy
944*fae548d3Szrj       // PLT relocations.
945*fae548d3Szrj       bool is_got_plt_relro = parameters->options().now();
946*fae548d3Szrj       Output_section_order got_order = (is_got_plt_relro
947*fae548d3Szrj 					? ORDER_RELRO
948*fae548d3Szrj 					: ORDER_RELRO_LAST);
949*fae548d3Szrj       Output_section_order got_plt_order = (is_got_plt_relro
950*fae548d3Szrj 					    ? ORDER_RELRO
951*fae548d3Szrj 					    : ORDER_NON_RELRO_FIRST);
952*fae548d3Szrj 
953*fae548d3Szrj       layout->add_output_section_data(".got", elfcpp::SHT_PROGBITS,
954*fae548d3Szrj 				      (elfcpp::SHF_ALLOC
955*fae548d3Szrj 				       | elfcpp::SHF_WRITE),
956*fae548d3Szrj 				      this->got_, got_order, true);
957*fae548d3Szrj 
958*fae548d3Szrj       this->got_plt_ = new Output_data_got_plt_i386(layout);
959*fae548d3Szrj       layout->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS,
960*fae548d3Szrj 				      (elfcpp::SHF_ALLOC
961*fae548d3Szrj 				       | elfcpp::SHF_WRITE),
962*fae548d3Szrj 				      this->got_plt_, got_plt_order,
963*fae548d3Szrj 				      is_got_plt_relro);
964*fae548d3Szrj 
965*fae548d3Szrj       // The first three entries are reserved.
966*fae548d3Szrj       this->got_plt_->set_current_data_size(3 * 4);
967*fae548d3Szrj 
968*fae548d3Szrj       if (!is_got_plt_relro)
969*fae548d3Szrj 	{
970*fae548d3Szrj 	  // Those bytes can go into the relro segment.
971*fae548d3Szrj 	  layout->increase_relro(3 * 4);
972*fae548d3Szrj 	}
973*fae548d3Szrj 
974*fae548d3Szrj       // Define _GLOBAL_OFFSET_TABLE_ at the start of the PLT.
975*fae548d3Szrj       this->global_offset_table_ =
976*fae548d3Szrj 	symtab->define_in_output_data("_GLOBAL_OFFSET_TABLE_", NULL,
977*fae548d3Szrj 				      Symbol_table::PREDEFINED,
978*fae548d3Szrj 				      this->got_plt_,
979*fae548d3Szrj 				      0, 0, elfcpp::STT_OBJECT,
980*fae548d3Szrj 				      elfcpp::STB_LOCAL,
981*fae548d3Szrj 				      elfcpp::STV_HIDDEN, 0,
982*fae548d3Szrj 				      false, false);
983*fae548d3Szrj 
984*fae548d3Szrj       // If there are any IRELATIVE relocations, they get GOT entries
985*fae548d3Szrj       // in .got.plt after the jump slot relocations.
986*fae548d3Szrj       this->got_irelative_ = new Output_data_space(4, "** GOT IRELATIVE PLT");
987*fae548d3Szrj       layout->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS,
988*fae548d3Szrj 				      (elfcpp::SHF_ALLOC
989*fae548d3Szrj 				       | elfcpp::SHF_WRITE),
990*fae548d3Szrj 				      this->got_irelative_,
991*fae548d3Szrj 				      got_plt_order, is_got_plt_relro);
992*fae548d3Szrj 
993*fae548d3Szrj       // If there are any TLSDESC relocations, they get GOT entries in
994*fae548d3Szrj       // .got.plt after the jump slot entries.
995*fae548d3Szrj       this->got_tlsdesc_ = new Output_data_got<32, false>();
996*fae548d3Szrj       layout->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS,
997*fae548d3Szrj 				      (elfcpp::SHF_ALLOC
998*fae548d3Szrj 				       | elfcpp::SHF_WRITE),
999*fae548d3Szrj 				      this->got_tlsdesc_,
1000*fae548d3Szrj 				      got_plt_order, is_got_plt_relro);
1001*fae548d3Szrj     }
1002*fae548d3Szrj 
1003*fae548d3Szrj   return this->got_;
1004*fae548d3Szrj }
1005*fae548d3Szrj 
1006*fae548d3Szrj // Get the dynamic reloc section, creating it if necessary.
1007*fae548d3Szrj 
1008*fae548d3Szrj Target_i386::Reloc_section*
rel_dyn_section(Layout * layout)1009*fae548d3Szrj Target_i386::rel_dyn_section(Layout* layout)
1010*fae548d3Szrj {
1011*fae548d3Szrj   if (this->rel_dyn_ == NULL)
1012*fae548d3Szrj     {
1013*fae548d3Szrj       gold_assert(layout != NULL);
1014*fae548d3Szrj       this->rel_dyn_ = new Reloc_section(parameters->options().combreloc());
1015*fae548d3Szrj       layout->add_output_section_data(".rel.dyn", elfcpp::SHT_REL,
1016*fae548d3Szrj 				      elfcpp::SHF_ALLOC, this->rel_dyn_,
1017*fae548d3Szrj 				      ORDER_DYNAMIC_RELOCS, false);
1018*fae548d3Szrj     }
1019*fae548d3Szrj   return this->rel_dyn_;
1020*fae548d3Szrj }
1021*fae548d3Szrj 
1022*fae548d3Szrj // Get the section to use for IRELATIVE relocs, creating it if
1023*fae548d3Szrj // necessary.  These go in .rel.dyn, but only after all other dynamic
1024*fae548d3Szrj // relocations.  They need to follow the other dynamic relocations so
1025*fae548d3Szrj // that they can refer to global variables initialized by those
1026*fae548d3Szrj // relocs.
1027*fae548d3Szrj 
1028*fae548d3Szrj Target_i386::Reloc_section*
rel_irelative_section(Layout * layout)1029*fae548d3Szrj Target_i386::rel_irelative_section(Layout* layout)
1030*fae548d3Szrj {
1031*fae548d3Szrj   if (this->rel_irelative_ == NULL)
1032*fae548d3Szrj     {
1033*fae548d3Szrj       // Make sure we have already create the dynamic reloc section.
1034*fae548d3Szrj       this->rel_dyn_section(layout);
1035*fae548d3Szrj       this->rel_irelative_ = new Reloc_section(false);
1036*fae548d3Szrj       layout->add_output_section_data(".rel.dyn", elfcpp::SHT_REL,
1037*fae548d3Szrj 				      elfcpp::SHF_ALLOC, this->rel_irelative_,
1038*fae548d3Szrj 				      ORDER_DYNAMIC_RELOCS, false);
1039*fae548d3Szrj       gold_assert(this->rel_dyn_->output_section()
1040*fae548d3Szrj 		  == this->rel_irelative_->output_section());
1041*fae548d3Szrj     }
1042*fae548d3Szrj   return this->rel_irelative_;
1043*fae548d3Szrj }
1044*fae548d3Szrj 
1045*fae548d3Szrj // Write the first three reserved words of the .got.plt section.
1046*fae548d3Szrj // The remainder of the section is written while writing the PLT
1047*fae548d3Szrj // in Output_data_plt_i386::do_write.
1048*fae548d3Szrj 
1049*fae548d3Szrj void
do_write(Output_file * of)1050*fae548d3Szrj Output_data_got_plt_i386::do_write(Output_file* of)
1051*fae548d3Szrj {
1052*fae548d3Szrj   // The first entry in the GOT is the address of the .dynamic section
1053*fae548d3Szrj   // aka the PT_DYNAMIC segment.  The next two entries are reserved.
1054*fae548d3Szrj   // We saved space for them when we created the section in
1055*fae548d3Szrj   // Target_i386::got_section.
1056*fae548d3Szrj   const off_t got_file_offset = this->offset();
1057*fae548d3Szrj   gold_assert(this->data_size() >= 12);
1058*fae548d3Szrj   unsigned char* const got_view = of->get_output_view(got_file_offset, 12);
1059*fae548d3Szrj   Output_section* dynamic = this->layout_->dynamic_section();
1060*fae548d3Szrj   uint32_t dynamic_addr = dynamic == NULL ? 0 : dynamic->address();
1061*fae548d3Szrj   elfcpp::Swap<32, false>::writeval(got_view, dynamic_addr);
1062*fae548d3Szrj   memset(got_view + 4, 0, 8);
1063*fae548d3Szrj   of->write_output_view(got_file_offset, 12, got_view);
1064*fae548d3Szrj }
1065*fae548d3Szrj 
1066*fae548d3Szrj // Create the PLT section.  The ordinary .got section is an argument,
1067*fae548d3Szrj // since we need to refer to the start.  We also create our own .got
1068*fae548d3Szrj // section just for PLT entries.
1069*fae548d3Szrj 
Output_data_plt_i386(Layout * layout,uint64_t addralign,Output_data_got_plt_i386 * got_plt,Output_data_space * got_irelative)1070*fae548d3Szrj Output_data_plt_i386::Output_data_plt_i386(Layout* layout,
1071*fae548d3Szrj 					   uint64_t addralign,
1072*fae548d3Szrj 					   Output_data_got_plt_i386* got_plt,
1073*fae548d3Szrj 					   Output_data_space* got_irelative)
1074*fae548d3Szrj   : Output_section_data(addralign),
1075*fae548d3Szrj     tls_desc_rel_(NULL), irelative_rel_(NULL), got_plt_(got_plt),
1076*fae548d3Szrj     got_irelative_(got_irelative), count_(0), irelative_count_(0),
1077*fae548d3Szrj     global_ifuncs_(), local_ifuncs_()
1078*fae548d3Szrj {
1079*fae548d3Szrj   this->rel_ = new Reloc_section(false);
1080*fae548d3Szrj   layout->add_output_section_data(".rel.plt", elfcpp::SHT_REL,
1081*fae548d3Szrj 				  elfcpp::SHF_ALLOC, this->rel_,
1082*fae548d3Szrj 				  ORDER_DYNAMIC_PLT_RELOCS, false);
1083*fae548d3Szrj }
1084*fae548d3Szrj 
1085*fae548d3Szrj void
do_adjust_output_section(Output_section * os)1086*fae548d3Szrj Output_data_plt_i386::do_adjust_output_section(Output_section* os)
1087*fae548d3Szrj {
1088*fae548d3Szrj   // UnixWare sets the entsize of .plt to 4, and so does the old GNU
1089*fae548d3Szrj   // linker, and so do we.
1090*fae548d3Szrj   os->set_entsize(4);
1091*fae548d3Szrj }
1092*fae548d3Szrj 
1093*fae548d3Szrj // Add an entry to the PLT.
1094*fae548d3Szrj 
1095*fae548d3Szrj void
add_entry(Symbol_table * symtab,Layout * layout,Symbol * gsym)1096*fae548d3Szrj Output_data_plt_i386::add_entry(Symbol_table* symtab, Layout* layout,
1097*fae548d3Szrj 				Symbol* gsym)
1098*fae548d3Szrj {
1099*fae548d3Szrj   gold_assert(!gsym->has_plt_offset());
1100*fae548d3Szrj 
1101*fae548d3Szrj   // Every PLT entry needs a reloc.
1102*fae548d3Szrj   if (gsym->type() == elfcpp::STT_GNU_IFUNC
1103*fae548d3Szrj       && gsym->can_use_relative_reloc(false))
1104*fae548d3Szrj     {
1105*fae548d3Szrj       gsym->set_plt_offset(this->irelative_count_ * this->get_plt_entry_size());
1106*fae548d3Szrj       ++this->irelative_count_;
1107*fae548d3Szrj       section_offset_type got_offset =
1108*fae548d3Szrj 	this->got_irelative_->current_data_size();
1109*fae548d3Szrj       this->got_irelative_->set_current_data_size(got_offset + 4);
1110*fae548d3Szrj       Reloc_section* rel = this->rel_irelative(symtab, layout);
1111*fae548d3Szrj       rel->add_symbolless_global_addend(gsym, elfcpp::R_386_IRELATIVE,
1112*fae548d3Szrj 					this->got_irelative_, got_offset);
1113*fae548d3Szrj       struct Global_ifunc gi;
1114*fae548d3Szrj       gi.sym = gsym;
1115*fae548d3Szrj       gi.got_offset = got_offset;
1116*fae548d3Szrj       this->global_ifuncs_.push_back(gi);
1117*fae548d3Szrj     }
1118*fae548d3Szrj   else
1119*fae548d3Szrj     {
1120*fae548d3Szrj       // When setting the PLT offset we skip the initial reserved PLT
1121*fae548d3Szrj       // entry.
1122*fae548d3Szrj       gsym->set_plt_offset((this->count_ + 1) * this->get_plt_entry_size());
1123*fae548d3Szrj 
1124*fae548d3Szrj       ++this->count_;
1125*fae548d3Szrj 
1126*fae548d3Szrj       section_offset_type got_offset = this->got_plt_->current_data_size();
1127*fae548d3Szrj 
1128*fae548d3Szrj       // Every PLT entry needs a GOT entry which points back to the
1129*fae548d3Szrj       // PLT entry (this will be changed by the dynamic linker,
1130*fae548d3Szrj       // normally lazily when the function is called).
1131*fae548d3Szrj       this->got_plt_->set_current_data_size(got_offset + 4);
1132*fae548d3Szrj 
1133*fae548d3Szrj       gsym->set_needs_dynsym_entry();
1134*fae548d3Szrj       this->rel_->add_global(gsym, elfcpp::R_386_JUMP_SLOT, this->got_plt_,
1135*fae548d3Szrj 			     got_offset);
1136*fae548d3Szrj     }
1137*fae548d3Szrj 
1138*fae548d3Szrj   // Note that we don't need to save the symbol.  The contents of the
1139*fae548d3Szrj   // PLT are independent of which symbols are used.  The symbols only
1140*fae548d3Szrj   // appear in the relocations.
1141*fae548d3Szrj }
1142*fae548d3Szrj 
1143*fae548d3Szrj // Add an entry to the PLT for a local STT_GNU_IFUNC symbol.  Return
1144*fae548d3Szrj // the PLT offset.
1145*fae548d3Szrj 
1146*fae548d3Szrj unsigned int
add_local_ifunc_entry(Symbol_table * symtab,Layout * layout,Sized_relobj_file<32,false> * relobj,unsigned int local_sym_index)1147*fae548d3Szrj Output_data_plt_i386::add_local_ifunc_entry(
1148*fae548d3Szrj     Symbol_table* symtab,
1149*fae548d3Szrj     Layout* layout,
1150*fae548d3Szrj     Sized_relobj_file<32, false>* relobj,
1151*fae548d3Szrj     unsigned int local_sym_index)
1152*fae548d3Szrj {
1153*fae548d3Szrj   unsigned int plt_offset = this->irelative_count_ * this->get_plt_entry_size();
1154*fae548d3Szrj   ++this->irelative_count_;
1155*fae548d3Szrj 
1156*fae548d3Szrj   section_offset_type got_offset = this->got_irelative_->current_data_size();
1157*fae548d3Szrj 
1158*fae548d3Szrj   // Every PLT entry needs a GOT entry which points back to the PLT
1159*fae548d3Szrj   // entry.
1160*fae548d3Szrj   this->got_irelative_->set_current_data_size(got_offset + 4);
1161*fae548d3Szrj 
1162*fae548d3Szrj   // Every PLT entry needs a reloc.
1163*fae548d3Szrj   Reloc_section* rel = this->rel_irelative(symtab, layout);
1164*fae548d3Szrj   rel->add_symbolless_local_addend(relobj, local_sym_index,
1165*fae548d3Szrj 				   elfcpp::R_386_IRELATIVE,
1166*fae548d3Szrj 				   this->got_irelative_, got_offset);
1167*fae548d3Szrj 
1168*fae548d3Szrj   struct Local_ifunc li;
1169*fae548d3Szrj   li.object = relobj;
1170*fae548d3Szrj   li.local_sym_index = local_sym_index;
1171*fae548d3Szrj   li.got_offset = got_offset;
1172*fae548d3Szrj   this->local_ifuncs_.push_back(li);
1173*fae548d3Szrj 
1174*fae548d3Szrj   return plt_offset;
1175*fae548d3Szrj }
1176*fae548d3Szrj 
1177*fae548d3Szrj // Return where the TLS_DESC relocations should go, creating it if
1178*fae548d3Szrj // necessary. These follow the JUMP_SLOT relocations.
1179*fae548d3Szrj 
1180*fae548d3Szrj Output_data_plt_i386::Reloc_section*
rel_tls_desc(Layout * layout)1181*fae548d3Szrj Output_data_plt_i386::rel_tls_desc(Layout* layout)
1182*fae548d3Szrj {
1183*fae548d3Szrj   if (this->tls_desc_rel_ == NULL)
1184*fae548d3Szrj     {
1185*fae548d3Szrj       this->tls_desc_rel_ = new Reloc_section(false);
1186*fae548d3Szrj       layout->add_output_section_data(".rel.plt", elfcpp::SHT_REL,
1187*fae548d3Szrj 				      elfcpp::SHF_ALLOC, this->tls_desc_rel_,
1188*fae548d3Szrj 				      ORDER_DYNAMIC_PLT_RELOCS, false);
1189*fae548d3Szrj       gold_assert(this->tls_desc_rel_->output_section()
1190*fae548d3Szrj 		  == this->rel_->output_section());
1191*fae548d3Szrj     }
1192*fae548d3Szrj   return this->tls_desc_rel_;
1193*fae548d3Szrj }
1194*fae548d3Szrj 
1195*fae548d3Szrj // Return where the IRELATIVE relocations should go in the PLT.  These
1196*fae548d3Szrj // follow the JUMP_SLOT and TLS_DESC relocations.
1197*fae548d3Szrj 
1198*fae548d3Szrj Output_data_plt_i386::Reloc_section*
rel_irelative(Symbol_table * symtab,Layout * layout)1199*fae548d3Szrj Output_data_plt_i386::rel_irelative(Symbol_table* symtab, Layout* layout)
1200*fae548d3Szrj {
1201*fae548d3Szrj   if (this->irelative_rel_ == NULL)
1202*fae548d3Szrj     {
1203*fae548d3Szrj       // Make sure we have a place for the TLS_DESC relocations, in
1204*fae548d3Szrj       // case we see any later on.
1205*fae548d3Szrj       this->rel_tls_desc(layout);
1206*fae548d3Szrj       this->irelative_rel_ = new Reloc_section(false);
1207*fae548d3Szrj       layout->add_output_section_data(".rel.plt", elfcpp::SHT_REL,
1208*fae548d3Szrj 				      elfcpp::SHF_ALLOC, this->irelative_rel_,
1209*fae548d3Szrj 				      ORDER_DYNAMIC_PLT_RELOCS, false);
1210*fae548d3Szrj       gold_assert(this->irelative_rel_->output_section()
1211*fae548d3Szrj 		  == this->rel_->output_section());
1212*fae548d3Szrj 
1213*fae548d3Szrj       if (parameters->doing_static_link())
1214*fae548d3Szrj 	{
1215*fae548d3Szrj 	  // A statically linked executable will only have a .rel.plt
1216*fae548d3Szrj 	  // section to hold R_386_IRELATIVE relocs for STT_GNU_IFUNC
1217*fae548d3Szrj 	  // symbols.  The library will use these symbols to locate
1218*fae548d3Szrj 	  // the IRELATIVE relocs at program startup time.
1219*fae548d3Szrj 	  symtab->define_in_output_data("__rel_iplt_start", NULL,
1220*fae548d3Szrj 					Symbol_table::PREDEFINED,
1221*fae548d3Szrj 					this->irelative_rel_, 0, 0,
1222*fae548d3Szrj 					elfcpp::STT_NOTYPE, elfcpp::STB_GLOBAL,
1223*fae548d3Szrj 					elfcpp::STV_HIDDEN, 0, false, true);
1224*fae548d3Szrj 	  symtab->define_in_output_data("__rel_iplt_end", NULL,
1225*fae548d3Szrj 					Symbol_table::PREDEFINED,
1226*fae548d3Szrj 					this->irelative_rel_, 0, 0,
1227*fae548d3Szrj 					elfcpp::STT_NOTYPE, elfcpp::STB_GLOBAL,
1228*fae548d3Szrj 					elfcpp::STV_HIDDEN, 0, true, true);
1229*fae548d3Szrj 	}
1230*fae548d3Szrj     }
1231*fae548d3Szrj   return this->irelative_rel_;
1232*fae548d3Szrj }
1233*fae548d3Szrj 
1234*fae548d3Szrj // Return the PLT address to use for a global symbol.
1235*fae548d3Szrj 
1236*fae548d3Szrj uint64_t
address_for_global(const Symbol * gsym)1237*fae548d3Szrj Output_data_plt_i386::address_for_global(const Symbol* gsym)
1238*fae548d3Szrj {
1239*fae548d3Szrj   uint64_t offset = 0;
1240*fae548d3Szrj   if (gsym->type() == elfcpp::STT_GNU_IFUNC
1241*fae548d3Szrj       && gsym->can_use_relative_reloc(false))
1242*fae548d3Szrj     offset = (this->count_ + 1) * this->get_plt_entry_size();
1243*fae548d3Szrj   return this->address() + offset + gsym->plt_offset();
1244*fae548d3Szrj }
1245*fae548d3Szrj 
1246*fae548d3Szrj // Return the PLT address to use for a local symbol.  These are always
1247*fae548d3Szrj // IRELATIVE relocs.
1248*fae548d3Szrj 
1249*fae548d3Szrj uint64_t
address_for_local(const Relobj * object,unsigned int r_sym)1250*fae548d3Szrj Output_data_plt_i386::address_for_local(const Relobj* object,
1251*fae548d3Szrj 					unsigned int r_sym)
1252*fae548d3Szrj {
1253*fae548d3Szrj   return (this->address()
1254*fae548d3Szrj 	  + (this->count_ + 1) * this->get_plt_entry_size()
1255*fae548d3Szrj 	  + object->local_plt_offset(r_sym));
1256*fae548d3Szrj }
1257*fae548d3Szrj 
1258*fae548d3Szrj // The first entry in the PLT for an executable.
1259*fae548d3Szrj 
1260*fae548d3Szrj const unsigned char Output_data_plt_i386_exec::first_plt_entry[plt_entry_size] =
1261*fae548d3Szrj {
1262*fae548d3Szrj   0xff, 0x35,	// pushl contents of memory address
1263*fae548d3Szrj   0, 0, 0, 0,	// replaced with address of .got + 4
1264*fae548d3Szrj   0xff, 0x25,	// jmp indirect
1265*fae548d3Szrj   0, 0, 0, 0,	// replaced with address of .got + 8
1266*fae548d3Szrj   0, 0, 0, 0	// unused
1267*fae548d3Szrj };
1268*fae548d3Szrj 
1269*fae548d3Szrj void
do_fill_first_plt_entry(unsigned char * pov,elfcpp::Elf_types<32>::Elf_Addr got_address)1270*fae548d3Szrj Output_data_plt_i386_exec::do_fill_first_plt_entry(
1271*fae548d3Szrj     unsigned char* pov,
1272*fae548d3Szrj     elfcpp::Elf_types<32>::Elf_Addr got_address)
1273*fae548d3Szrj {
1274*fae548d3Szrj   memcpy(pov, first_plt_entry, plt_entry_size);
1275*fae548d3Szrj   elfcpp::Swap_unaligned<32, false>::writeval(pov + 2, got_address + 4);
1276*fae548d3Szrj   elfcpp::Swap<32, false>::writeval(pov + 8, got_address + 8);
1277*fae548d3Szrj }
1278*fae548d3Szrj 
1279*fae548d3Szrj // The first entry in the PLT for a shared object.
1280*fae548d3Szrj 
1281*fae548d3Szrj const unsigned char Output_data_plt_i386_dyn::first_plt_entry[plt_entry_size] =
1282*fae548d3Szrj {
1283*fae548d3Szrj   0xff, 0xb3, 4, 0, 0, 0,	// pushl 4(%ebx)
1284*fae548d3Szrj   0xff, 0xa3, 8, 0, 0, 0,	// jmp *8(%ebx)
1285*fae548d3Szrj   0, 0, 0, 0			// unused
1286*fae548d3Szrj };
1287*fae548d3Szrj 
1288*fae548d3Szrj void
do_fill_first_plt_entry(unsigned char * pov,elfcpp::Elf_types<32>::Elf_Addr)1289*fae548d3Szrj Output_data_plt_i386_dyn::do_fill_first_plt_entry(
1290*fae548d3Szrj     unsigned char* pov,
1291*fae548d3Szrj     elfcpp::Elf_types<32>::Elf_Addr)
1292*fae548d3Szrj {
1293*fae548d3Szrj   memcpy(pov, first_plt_entry, plt_entry_size);
1294*fae548d3Szrj }
1295*fae548d3Szrj 
1296*fae548d3Szrj // Subsequent entries in the PLT for an executable.
1297*fae548d3Szrj 
1298*fae548d3Szrj const unsigned char Output_data_plt_i386_exec::plt_entry[plt_entry_size] =
1299*fae548d3Szrj {
1300*fae548d3Szrj   0xff, 0x25,	// jmp indirect
1301*fae548d3Szrj   0, 0, 0, 0,	// replaced with address of symbol in .got
1302*fae548d3Szrj   0x68,		// pushl immediate
1303*fae548d3Szrj   0, 0, 0, 0,	// replaced with offset into relocation table
1304*fae548d3Szrj   0xe9,		// jmp relative
1305*fae548d3Szrj   0, 0, 0, 0	// replaced with offset to start of .plt
1306*fae548d3Szrj };
1307*fae548d3Szrj 
1308*fae548d3Szrj unsigned int
do_fill_plt_entry(unsigned char * pov,elfcpp::Elf_types<32>::Elf_Addr got_address,unsigned int got_offset,unsigned int plt_offset,unsigned int plt_rel_offset)1309*fae548d3Szrj Output_data_plt_i386_exec::do_fill_plt_entry(
1310*fae548d3Szrj     unsigned char* pov,
1311*fae548d3Szrj     elfcpp::Elf_types<32>::Elf_Addr got_address,
1312*fae548d3Szrj     unsigned int got_offset,
1313*fae548d3Szrj     unsigned int plt_offset,
1314*fae548d3Szrj     unsigned int plt_rel_offset)
1315*fae548d3Szrj {
1316*fae548d3Szrj   memcpy(pov, plt_entry, plt_entry_size);
1317*fae548d3Szrj   elfcpp::Swap_unaligned<32, false>::writeval(pov + 2,
1318*fae548d3Szrj 					      got_address + got_offset);
1319*fae548d3Szrj   elfcpp::Swap_unaligned<32, false>::writeval(pov + 7, plt_rel_offset);
1320*fae548d3Szrj   elfcpp::Swap<32, false>::writeval(pov + 12, - (plt_offset + 12 + 4));
1321*fae548d3Szrj   return 6;
1322*fae548d3Szrj }
1323*fae548d3Szrj 
1324*fae548d3Szrj // Subsequent entries in the PLT for a shared object.
1325*fae548d3Szrj 
1326*fae548d3Szrj const unsigned char Output_data_plt_i386_dyn::plt_entry[plt_entry_size] =
1327*fae548d3Szrj {
1328*fae548d3Szrj   0xff, 0xa3,	// jmp *offset(%ebx)
1329*fae548d3Szrj   0, 0, 0, 0,	// replaced with offset of symbol in .got
1330*fae548d3Szrj   0x68,		// pushl immediate
1331*fae548d3Szrj   0, 0, 0, 0,	// replaced with offset into relocation table
1332*fae548d3Szrj   0xe9,		// jmp relative
1333*fae548d3Szrj   0, 0, 0, 0	// replaced with offset to start of .plt
1334*fae548d3Szrj };
1335*fae548d3Szrj 
1336*fae548d3Szrj unsigned int
do_fill_plt_entry(unsigned char * pov,elfcpp::Elf_types<32>::Elf_Addr,unsigned int got_offset,unsigned int plt_offset,unsigned int plt_rel_offset)1337*fae548d3Szrj Output_data_plt_i386_dyn::do_fill_plt_entry(unsigned char* pov,
1338*fae548d3Szrj 					    elfcpp::Elf_types<32>::Elf_Addr,
1339*fae548d3Szrj 					    unsigned int got_offset,
1340*fae548d3Szrj 					    unsigned int plt_offset,
1341*fae548d3Szrj 					    unsigned int plt_rel_offset)
1342*fae548d3Szrj {
1343*fae548d3Szrj   memcpy(pov, plt_entry, plt_entry_size);
1344*fae548d3Szrj   elfcpp::Swap_unaligned<32, false>::writeval(pov + 2, got_offset);
1345*fae548d3Szrj   elfcpp::Swap_unaligned<32, false>::writeval(pov + 7, plt_rel_offset);
1346*fae548d3Szrj   elfcpp::Swap<32, false>::writeval(pov + 12, - (plt_offset + 12 + 4));
1347*fae548d3Szrj   return 6;
1348*fae548d3Szrj }
1349*fae548d3Szrj 
1350*fae548d3Szrj // The .eh_frame unwind information for the PLT.
1351*fae548d3Szrj 
1352*fae548d3Szrj const unsigned char
1353*fae548d3Szrj Output_data_plt_i386::plt_eh_frame_cie[plt_eh_frame_cie_size] =
1354*fae548d3Szrj {
1355*fae548d3Szrj   1,				// CIE version.
1356*fae548d3Szrj   'z',				// Augmentation: augmentation size included.
1357*fae548d3Szrj   'R',				// Augmentation: FDE encoding included.
1358*fae548d3Szrj   '\0',				// End of augmentation string.
1359*fae548d3Szrj   1,				// Code alignment factor.
1360*fae548d3Szrj   0x7c,				// Data alignment factor.
1361*fae548d3Szrj   8,				// Return address column.
1362*fae548d3Szrj   1,				// Augmentation size.
1363*fae548d3Szrj   (elfcpp::DW_EH_PE_pcrel	// FDE encoding.
1364*fae548d3Szrj    | elfcpp::DW_EH_PE_sdata4),
1365*fae548d3Szrj   elfcpp::DW_CFA_def_cfa, 4, 4,	// DW_CFA_def_cfa: r4 (esp) ofs 4.
1366*fae548d3Szrj   elfcpp::DW_CFA_offset + 8, 1,	// DW_CFA_offset: r8 (eip) at cfa-4.
1367*fae548d3Szrj   elfcpp::DW_CFA_nop,		// Align to 16 bytes.
1368*fae548d3Szrj   elfcpp::DW_CFA_nop
1369*fae548d3Szrj };
1370*fae548d3Szrj 
1371*fae548d3Szrj const unsigned char
1372*fae548d3Szrj Output_data_plt_i386_standard::plt_eh_frame_fde[plt_eh_frame_fde_size] =
1373*fae548d3Szrj {
1374*fae548d3Szrj   0, 0, 0, 0,				// Replaced with offset to .plt.
1375*fae548d3Szrj   0, 0, 0, 0,				// Replaced with size of .plt.
1376*fae548d3Szrj   0,					// Augmentation size.
1377*fae548d3Szrj   elfcpp::DW_CFA_def_cfa_offset, 8,	// DW_CFA_def_cfa_offset: 8.
1378*fae548d3Szrj   elfcpp::DW_CFA_advance_loc + 6,	// Advance 6 to __PLT__ + 6.
1379*fae548d3Szrj   elfcpp::DW_CFA_def_cfa_offset, 12,	// DW_CFA_def_cfa_offset: 12.
1380*fae548d3Szrj   elfcpp::DW_CFA_advance_loc + 10,	// Advance 10 to __PLT__ + 16.
1381*fae548d3Szrj   elfcpp::DW_CFA_def_cfa_expression,	// DW_CFA_def_cfa_expression.
1382*fae548d3Szrj   11,					// Block length.
1383*fae548d3Szrj   elfcpp::DW_OP_breg4, 4,		// Push %esp + 4.
1384*fae548d3Szrj   elfcpp::DW_OP_breg8, 0,		// Push %eip.
1385*fae548d3Szrj   elfcpp::DW_OP_lit15,			// Push 0xf.
1386*fae548d3Szrj   elfcpp::DW_OP_and,			// & (%eip & 0xf).
1387*fae548d3Szrj   elfcpp::DW_OP_lit11,			// Push 0xb.
1388*fae548d3Szrj   elfcpp::DW_OP_ge,			// >= ((%eip & 0xf) >= 0xb)
1389*fae548d3Szrj   elfcpp::DW_OP_lit2,			// Push 2.
1390*fae548d3Szrj   elfcpp::DW_OP_shl,			// << (((%eip & 0xf) >= 0xb) << 2)
1391*fae548d3Szrj   elfcpp::DW_OP_plus,			// + ((((%eip&0xf)>=0xb)<<2)+%esp+4
1392*fae548d3Szrj   elfcpp::DW_CFA_nop,			// Align to 32 bytes.
1393*fae548d3Szrj   elfcpp::DW_CFA_nop,
1394*fae548d3Szrj   elfcpp::DW_CFA_nop,
1395*fae548d3Szrj   elfcpp::DW_CFA_nop
1396*fae548d3Szrj };
1397*fae548d3Szrj 
1398*fae548d3Szrj // Write out the PLT.  This uses the hand-coded instructions above,
1399*fae548d3Szrj // and adjusts them as needed.  This is all specified by the i386 ELF
1400*fae548d3Szrj // Processor Supplement.
1401*fae548d3Szrj 
1402*fae548d3Szrj void
do_write(Output_file * of)1403*fae548d3Szrj Output_data_plt_i386::do_write(Output_file* of)
1404*fae548d3Szrj {
1405*fae548d3Szrj   const off_t offset = this->offset();
1406*fae548d3Szrj   const section_size_type oview_size =
1407*fae548d3Szrj     convert_to_section_size_type(this->data_size());
1408*fae548d3Szrj   unsigned char* const oview = of->get_output_view(offset, oview_size);
1409*fae548d3Szrj 
1410*fae548d3Szrj   const off_t got_file_offset = this->got_plt_->offset();
1411*fae548d3Szrj   gold_assert(parameters->incremental_update()
1412*fae548d3Szrj 	      || (got_file_offset + this->got_plt_->data_size()
1413*fae548d3Szrj 		  == this->got_irelative_->offset()));
1414*fae548d3Szrj   const section_size_type got_size =
1415*fae548d3Szrj     convert_to_section_size_type(this->got_plt_->data_size()
1416*fae548d3Szrj 				 + this->got_irelative_->data_size());
1417*fae548d3Szrj 
1418*fae548d3Szrj   unsigned char* const got_view = of->get_output_view(got_file_offset,
1419*fae548d3Szrj 						      got_size);
1420*fae548d3Szrj 
1421*fae548d3Szrj   unsigned char* pov = oview;
1422*fae548d3Szrj 
1423*fae548d3Szrj   elfcpp::Elf_types<32>::Elf_Addr plt_address = this->address();
1424*fae548d3Szrj   elfcpp::Elf_types<32>::Elf_Addr got_address = this->got_plt_->address();
1425*fae548d3Szrj 
1426*fae548d3Szrj   this->fill_first_plt_entry(pov, got_address);
1427*fae548d3Szrj   pov += this->get_plt_entry_size();
1428*fae548d3Szrj 
1429*fae548d3Szrj   // The first three entries in the GOT are reserved, and are written
1430*fae548d3Szrj   // by Output_data_got_plt_i386::do_write.
1431*fae548d3Szrj   unsigned char* got_pov = got_view + 12;
1432*fae548d3Szrj 
1433*fae548d3Szrj   const int rel_size = elfcpp::Elf_sizes<32>::rel_size;
1434*fae548d3Szrj 
1435*fae548d3Szrj   unsigned int plt_offset = this->get_plt_entry_size();
1436*fae548d3Szrj   unsigned int plt_rel_offset = 0;
1437*fae548d3Szrj   unsigned int got_offset = 12;
1438*fae548d3Szrj   const unsigned int count = this->count_ + this->irelative_count_;
1439*fae548d3Szrj   for (unsigned int i = 0;
1440*fae548d3Szrj        i < count;
1441*fae548d3Szrj        ++i,
1442*fae548d3Szrj 	 pov += this->get_plt_entry_size(),
1443*fae548d3Szrj 	 got_pov += 4,
1444*fae548d3Szrj 	 plt_offset += this->get_plt_entry_size(),
1445*fae548d3Szrj 	 plt_rel_offset += rel_size,
1446*fae548d3Szrj 	 got_offset += 4)
1447*fae548d3Szrj     {
1448*fae548d3Szrj       // Set and adjust the PLT entry itself.
1449*fae548d3Szrj       unsigned int lazy_offset = this->fill_plt_entry(pov,
1450*fae548d3Szrj 						      got_address,
1451*fae548d3Szrj 						      got_offset,
1452*fae548d3Szrj 						      plt_offset,
1453*fae548d3Szrj 						      plt_rel_offset);
1454*fae548d3Szrj 
1455*fae548d3Szrj       // Set the entry in the GOT.
1456*fae548d3Szrj       elfcpp::Swap<32, false>::writeval(got_pov,
1457*fae548d3Szrj 					plt_address + plt_offset + lazy_offset);
1458*fae548d3Szrj     }
1459*fae548d3Szrj 
1460*fae548d3Szrj   // If any STT_GNU_IFUNC symbols have PLT entries, we need to change
1461*fae548d3Szrj   // the GOT to point to the actual symbol value, rather than point to
1462*fae548d3Szrj   // the PLT entry.  That will let the dynamic linker call the right
1463*fae548d3Szrj   // function when resolving IRELATIVE relocations.
1464*fae548d3Szrj   unsigned char* got_irelative_view = got_view + this->got_plt_->data_size();
1465*fae548d3Szrj   for (std::vector<Global_ifunc>::const_iterator p =
1466*fae548d3Szrj 	 this->global_ifuncs_.begin();
1467*fae548d3Szrj        p != this->global_ifuncs_.end();
1468*fae548d3Szrj        ++p)
1469*fae548d3Szrj     {
1470*fae548d3Szrj       const Sized_symbol<32>* ssym =
1471*fae548d3Szrj 	static_cast<const Sized_symbol<32>*>(p->sym);
1472*fae548d3Szrj       elfcpp::Swap<32, false>::writeval(got_irelative_view + p->got_offset,
1473*fae548d3Szrj 					ssym->value());
1474*fae548d3Szrj     }
1475*fae548d3Szrj 
1476*fae548d3Szrj   for (std::vector<Local_ifunc>::const_iterator p =
1477*fae548d3Szrj 	 this->local_ifuncs_.begin();
1478*fae548d3Szrj        p != this->local_ifuncs_.end();
1479*fae548d3Szrj        ++p)
1480*fae548d3Szrj     {
1481*fae548d3Szrj       const Symbol_value<32>* psymval =
1482*fae548d3Szrj 	p->object->local_symbol(p->local_sym_index);
1483*fae548d3Szrj       elfcpp::Swap<32, false>::writeval(got_irelative_view + p->got_offset,
1484*fae548d3Szrj 					psymval->value(p->object, 0));
1485*fae548d3Szrj     }
1486*fae548d3Szrj 
1487*fae548d3Szrj   gold_assert(static_cast<section_size_type>(pov - oview) == oview_size);
1488*fae548d3Szrj   gold_assert(static_cast<section_size_type>(got_pov - got_view) == got_size);
1489*fae548d3Szrj 
1490*fae548d3Szrj   of->write_output_view(offset, oview_size, oview);
1491*fae548d3Szrj   of->write_output_view(got_file_offset, got_size, got_view);
1492*fae548d3Szrj }
1493*fae548d3Szrj 
1494*fae548d3Szrj // Create the PLT section.
1495*fae548d3Szrj 
1496*fae548d3Szrj void
make_plt_section(Symbol_table * symtab,Layout * layout)1497*fae548d3Szrj Target_i386::make_plt_section(Symbol_table* symtab, Layout* layout)
1498*fae548d3Szrj {
1499*fae548d3Szrj   if (this->plt_ == NULL)
1500*fae548d3Szrj     {
1501*fae548d3Szrj       // Create the GOT sections first.
1502*fae548d3Szrj       this->got_section(symtab, layout);
1503*fae548d3Szrj 
1504*fae548d3Szrj       const bool dyn = parameters->options().output_is_position_independent();
1505*fae548d3Szrj       this->plt_ = this->make_data_plt(layout,
1506*fae548d3Szrj 				       this->got_plt_,
1507*fae548d3Szrj 				       this->got_irelative_,
1508*fae548d3Szrj 				       dyn);
1509*fae548d3Szrj 
1510*fae548d3Szrj       // Add unwind information if requested.
1511*fae548d3Szrj       if (parameters->options().ld_generated_unwind_info())
1512*fae548d3Szrj 	this->plt_->add_eh_frame(layout);
1513*fae548d3Szrj 
1514*fae548d3Szrj       layout->add_output_section_data(".plt", elfcpp::SHT_PROGBITS,
1515*fae548d3Szrj 				      (elfcpp::SHF_ALLOC
1516*fae548d3Szrj 				       | elfcpp::SHF_EXECINSTR),
1517*fae548d3Szrj 				      this->plt_, ORDER_PLT, false);
1518*fae548d3Szrj 
1519*fae548d3Szrj       // Make the sh_info field of .rel.plt point to .plt.
1520*fae548d3Szrj       Output_section* rel_plt_os = this->plt_->rel_plt()->output_section();
1521*fae548d3Szrj       rel_plt_os->set_info_section(this->plt_->output_section());
1522*fae548d3Szrj     }
1523*fae548d3Szrj }
1524*fae548d3Szrj 
1525*fae548d3Szrj // Create a PLT entry for a global symbol.
1526*fae548d3Szrj 
1527*fae548d3Szrj void
make_plt_entry(Symbol_table * symtab,Layout * layout,Symbol * gsym)1528*fae548d3Szrj Target_i386::make_plt_entry(Symbol_table* symtab, Layout* layout, Symbol* gsym)
1529*fae548d3Szrj {
1530*fae548d3Szrj   if (gsym->has_plt_offset())
1531*fae548d3Szrj     return;
1532*fae548d3Szrj   if (this->plt_ == NULL)
1533*fae548d3Szrj     this->make_plt_section(symtab, layout);
1534*fae548d3Szrj   this->plt_->add_entry(symtab, layout, gsym);
1535*fae548d3Szrj }
1536*fae548d3Szrj 
1537*fae548d3Szrj // Make a PLT entry for a local STT_GNU_IFUNC symbol.
1538*fae548d3Szrj 
1539*fae548d3Szrj void
make_local_ifunc_plt_entry(Symbol_table * symtab,Layout * layout,Sized_relobj_file<32,false> * relobj,unsigned int local_sym_index)1540*fae548d3Szrj Target_i386::make_local_ifunc_plt_entry(Symbol_table* symtab, Layout* layout,
1541*fae548d3Szrj 					Sized_relobj_file<32, false>* relobj,
1542*fae548d3Szrj 					unsigned int local_sym_index)
1543*fae548d3Szrj {
1544*fae548d3Szrj   if (relobj->local_has_plt_offset(local_sym_index))
1545*fae548d3Szrj     return;
1546*fae548d3Szrj   if (this->plt_ == NULL)
1547*fae548d3Szrj     this->make_plt_section(symtab, layout);
1548*fae548d3Szrj   unsigned int plt_offset = this->plt_->add_local_ifunc_entry(symtab, layout,
1549*fae548d3Szrj 							      relobj,
1550*fae548d3Szrj 							      local_sym_index);
1551*fae548d3Szrj   relobj->set_local_plt_offset(local_sym_index, plt_offset);
1552*fae548d3Szrj }
1553*fae548d3Szrj 
1554*fae548d3Szrj // Return the number of entries in the PLT.
1555*fae548d3Szrj 
1556*fae548d3Szrj unsigned int
plt_entry_count() const1557*fae548d3Szrj Target_i386::plt_entry_count() const
1558*fae548d3Szrj {
1559*fae548d3Szrj   if (this->plt_ == NULL)
1560*fae548d3Szrj     return 0;
1561*fae548d3Szrj   return this->plt_->entry_count();
1562*fae548d3Szrj }
1563*fae548d3Szrj 
1564*fae548d3Szrj // Return the offset of the first non-reserved PLT entry.
1565*fae548d3Szrj 
1566*fae548d3Szrj unsigned int
first_plt_entry_offset() const1567*fae548d3Szrj Target_i386::first_plt_entry_offset() const
1568*fae548d3Szrj {
1569*fae548d3Szrj   if (this->plt_ == NULL)
1570*fae548d3Szrj     return 0;
1571*fae548d3Szrj   return this->plt_->first_plt_entry_offset();
1572*fae548d3Szrj }
1573*fae548d3Szrj 
1574*fae548d3Szrj // Return the size of each PLT entry.
1575*fae548d3Szrj 
1576*fae548d3Szrj unsigned int
plt_entry_size() const1577*fae548d3Szrj Target_i386::plt_entry_size() const
1578*fae548d3Szrj {
1579*fae548d3Szrj   if (this->plt_ == NULL)
1580*fae548d3Szrj     return 0;
1581*fae548d3Szrj   return this->plt_->get_plt_entry_size();
1582*fae548d3Szrj }
1583*fae548d3Szrj 
1584*fae548d3Szrj // Get the section to use for TLS_DESC relocations.
1585*fae548d3Szrj 
1586*fae548d3Szrj Target_i386::Reloc_section*
rel_tls_desc_section(Layout * layout) const1587*fae548d3Szrj Target_i386::rel_tls_desc_section(Layout* layout) const
1588*fae548d3Szrj {
1589*fae548d3Szrj   return this->plt_section()->rel_tls_desc(layout);
1590*fae548d3Szrj }
1591*fae548d3Szrj 
1592*fae548d3Szrj // Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
1593*fae548d3Szrj 
1594*fae548d3Szrj void
define_tls_base_symbol(Symbol_table * symtab,Layout * layout)1595*fae548d3Szrj Target_i386::define_tls_base_symbol(Symbol_table* symtab, Layout* layout)
1596*fae548d3Szrj {
1597*fae548d3Szrj   if (this->tls_base_symbol_defined_)
1598*fae548d3Szrj     return;
1599*fae548d3Szrj 
1600*fae548d3Szrj   Output_segment* tls_segment = layout->tls_segment();
1601*fae548d3Szrj   if (tls_segment != NULL)
1602*fae548d3Szrj     {
1603*fae548d3Szrj       bool is_exec = parameters->options().output_is_executable();
1604*fae548d3Szrj       symtab->define_in_output_segment("_TLS_MODULE_BASE_", NULL,
1605*fae548d3Szrj 				       Symbol_table::PREDEFINED,
1606*fae548d3Szrj 				       tls_segment, 0, 0,
1607*fae548d3Szrj 				       elfcpp::STT_TLS,
1608*fae548d3Szrj 				       elfcpp::STB_LOCAL,
1609*fae548d3Szrj 				       elfcpp::STV_HIDDEN, 0,
1610*fae548d3Szrj 				       (is_exec
1611*fae548d3Szrj 					? Symbol::SEGMENT_END
1612*fae548d3Szrj 					: Symbol::SEGMENT_START),
1613*fae548d3Szrj 				       true);
1614*fae548d3Szrj     }
1615*fae548d3Szrj   this->tls_base_symbol_defined_ = true;
1616*fae548d3Szrj }
1617*fae548d3Szrj 
1618*fae548d3Szrj // Create a GOT entry for the TLS module index.
1619*fae548d3Szrj 
1620*fae548d3Szrj unsigned int
got_mod_index_entry(Symbol_table * symtab,Layout * layout,Sized_relobj_file<32,false> * object)1621*fae548d3Szrj Target_i386::got_mod_index_entry(Symbol_table* symtab, Layout* layout,
1622*fae548d3Szrj 				 Sized_relobj_file<32, false>* object)
1623*fae548d3Szrj {
1624*fae548d3Szrj   if (this->got_mod_index_offset_ == -1U)
1625*fae548d3Szrj     {
1626*fae548d3Szrj       gold_assert(symtab != NULL && layout != NULL && object != NULL);
1627*fae548d3Szrj       Reloc_section* rel_dyn = this->rel_dyn_section(layout);
1628*fae548d3Szrj       Output_data_got<32, false>* got = this->got_section(symtab, layout);
1629*fae548d3Szrj       unsigned int got_offset = got->add_constant(0);
1630*fae548d3Szrj       rel_dyn->add_local(object, 0, elfcpp::R_386_TLS_DTPMOD32, got,
1631*fae548d3Szrj 			 got_offset);
1632*fae548d3Szrj       got->add_constant(0);
1633*fae548d3Szrj       this->got_mod_index_offset_ = got_offset;
1634*fae548d3Szrj     }
1635*fae548d3Szrj   return this->got_mod_index_offset_;
1636*fae548d3Szrj }
1637*fae548d3Szrj 
1638*fae548d3Szrj // Optimize the TLS relocation type based on what we know about the
1639*fae548d3Szrj // symbol.  IS_FINAL is true if the final address of this symbol is
1640*fae548d3Szrj // known at link time.
1641*fae548d3Szrj 
1642*fae548d3Szrj tls::Tls_optimization
optimize_tls_reloc(bool is_final,int r_type)1643*fae548d3Szrj Target_i386::optimize_tls_reloc(bool is_final, int r_type)
1644*fae548d3Szrj {
1645*fae548d3Szrj   // If we are generating a shared library, then we can't do anything
1646*fae548d3Szrj   // in the linker.
1647*fae548d3Szrj   if (parameters->options().shared())
1648*fae548d3Szrj     return tls::TLSOPT_NONE;
1649*fae548d3Szrj 
1650*fae548d3Szrj   switch (r_type)
1651*fae548d3Szrj     {
1652*fae548d3Szrj     case elfcpp::R_386_TLS_GD:
1653*fae548d3Szrj     case elfcpp::R_386_TLS_GOTDESC:
1654*fae548d3Szrj     case elfcpp::R_386_TLS_DESC_CALL:
1655*fae548d3Szrj       // These are General-Dynamic which permits fully general TLS
1656*fae548d3Szrj       // access.  Since we know that we are generating an executable,
1657*fae548d3Szrj       // we can convert this to Initial-Exec.  If we also know that
1658*fae548d3Szrj       // this is a local symbol, we can further switch to Local-Exec.
1659*fae548d3Szrj       if (is_final)
1660*fae548d3Szrj 	return tls::TLSOPT_TO_LE;
1661*fae548d3Szrj       return tls::TLSOPT_TO_IE;
1662*fae548d3Szrj 
1663*fae548d3Szrj     case elfcpp::R_386_TLS_LDM:
1664*fae548d3Szrj       // This is Local-Dynamic, which refers to a local symbol in the
1665*fae548d3Szrj       // dynamic TLS block.  Since we know that we generating an
1666*fae548d3Szrj       // executable, we can switch to Local-Exec.
1667*fae548d3Szrj       return tls::TLSOPT_TO_LE;
1668*fae548d3Szrj 
1669*fae548d3Szrj     case elfcpp::R_386_TLS_LDO_32:
1670*fae548d3Szrj       // Another type of Local-Dynamic relocation.
1671*fae548d3Szrj       return tls::TLSOPT_TO_LE;
1672*fae548d3Szrj 
1673*fae548d3Szrj     case elfcpp::R_386_TLS_IE:
1674*fae548d3Szrj     case elfcpp::R_386_TLS_GOTIE:
1675*fae548d3Szrj     case elfcpp::R_386_TLS_IE_32:
1676*fae548d3Szrj       // These are Initial-Exec relocs which get the thread offset
1677*fae548d3Szrj       // from the GOT.  If we know that we are linking against the
1678*fae548d3Szrj       // local symbol, we can switch to Local-Exec, which links the
1679*fae548d3Szrj       // thread offset into the instruction.
1680*fae548d3Szrj       if (is_final)
1681*fae548d3Szrj 	return tls::TLSOPT_TO_LE;
1682*fae548d3Szrj       return tls::TLSOPT_NONE;
1683*fae548d3Szrj 
1684*fae548d3Szrj     case elfcpp::R_386_TLS_LE:
1685*fae548d3Szrj     case elfcpp::R_386_TLS_LE_32:
1686*fae548d3Szrj       // When we already have Local-Exec, there is nothing further we
1687*fae548d3Szrj       // can do.
1688*fae548d3Szrj       return tls::TLSOPT_NONE;
1689*fae548d3Szrj 
1690*fae548d3Szrj     default:
1691*fae548d3Szrj       gold_unreachable();
1692*fae548d3Szrj     }
1693*fae548d3Szrj }
1694*fae548d3Szrj 
1695*fae548d3Szrj // Get the Reference_flags for a particular relocation.
1696*fae548d3Szrj 
1697*fae548d3Szrj int
get_reference_flags(unsigned int r_type)1698*fae548d3Szrj Target_i386::Scan::get_reference_flags(unsigned int r_type)
1699*fae548d3Szrj {
1700*fae548d3Szrj   switch (r_type)
1701*fae548d3Szrj     {
1702*fae548d3Szrj     case elfcpp::R_386_NONE:
1703*fae548d3Szrj     case elfcpp::R_386_GNU_VTINHERIT:
1704*fae548d3Szrj     case elfcpp::R_386_GNU_VTENTRY:
1705*fae548d3Szrj     case elfcpp::R_386_GOTPC:
1706*fae548d3Szrj       // No symbol reference.
1707*fae548d3Szrj       return 0;
1708*fae548d3Szrj 
1709*fae548d3Szrj     case elfcpp::R_386_32:
1710*fae548d3Szrj     case elfcpp::R_386_16:
1711*fae548d3Szrj     case elfcpp::R_386_8:
1712*fae548d3Szrj       return Symbol::ABSOLUTE_REF;
1713*fae548d3Szrj 
1714*fae548d3Szrj     case elfcpp::R_386_PC32:
1715*fae548d3Szrj     case elfcpp::R_386_PC16:
1716*fae548d3Szrj     case elfcpp::R_386_PC8:
1717*fae548d3Szrj     case elfcpp::R_386_GOTOFF:
1718*fae548d3Szrj       return Symbol::RELATIVE_REF;
1719*fae548d3Szrj 
1720*fae548d3Szrj     case elfcpp::R_386_PLT32:
1721*fae548d3Szrj       return Symbol::FUNCTION_CALL | Symbol::RELATIVE_REF;
1722*fae548d3Szrj 
1723*fae548d3Szrj     case elfcpp::R_386_GOT32:
1724*fae548d3Szrj     case elfcpp::R_386_GOT32X:
1725*fae548d3Szrj       // Absolute in GOT.
1726*fae548d3Szrj       return Symbol::ABSOLUTE_REF;
1727*fae548d3Szrj 
1728*fae548d3Szrj     case elfcpp::R_386_TLS_GD:            // Global-dynamic
1729*fae548d3Szrj     case elfcpp::R_386_TLS_GOTDESC:       // Global-dynamic (from ~oliva url)
1730*fae548d3Szrj     case elfcpp::R_386_TLS_DESC_CALL:
1731*fae548d3Szrj     case elfcpp::R_386_TLS_LDM:           // Local-dynamic
1732*fae548d3Szrj     case elfcpp::R_386_TLS_LDO_32:        // Alternate local-dynamic
1733*fae548d3Szrj     case elfcpp::R_386_TLS_IE:            // Initial-exec
1734*fae548d3Szrj     case elfcpp::R_386_TLS_IE_32:
1735*fae548d3Szrj     case elfcpp::R_386_TLS_GOTIE:
1736*fae548d3Szrj     case elfcpp::R_386_TLS_LE:            // Local-exec
1737*fae548d3Szrj     case elfcpp::R_386_TLS_LE_32:
1738*fae548d3Szrj       return Symbol::TLS_REF;
1739*fae548d3Szrj 
1740*fae548d3Szrj     case elfcpp::R_386_COPY:
1741*fae548d3Szrj     case elfcpp::R_386_GLOB_DAT:
1742*fae548d3Szrj     case elfcpp::R_386_JUMP_SLOT:
1743*fae548d3Szrj     case elfcpp::R_386_RELATIVE:
1744*fae548d3Szrj     case elfcpp::R_386_IRELATIVE:
1745*fae548d3Szrj     case elfcpp::R_386_TLS_TPOFF:
1746*fae548d3Szrj     case elfcpp::R_386_TLS_DTPMOD32:
1747*fae548d3Szrj     case elfcpp::R_386_TLS_DTPOFF32:
1748*fae548d3Szrj     case elfcpp::R_386_TLS_TPOFF32:
1749*fae548d3Szrj     case elfcpp::R_386_TLS_DESC:
1750*fae548d3Szrj     case elfcpp::R_386_32PLT:
1751*fae548d3Szrj     case elfcpp::R_386_TLS_GD_32:
1752*fae548d3Szrj     case elfcpp::R_386_TLS_GD_PUSH:
1753*fae548d3Szrj     case elfcpp::R_386_TLS_GD_CALL:
1754*fae548d3Szrj     case elfcpp::R_386_TLS_GD_POP:
1755*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_32:
1756*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_PUSH:
1757*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_CALL:
1758*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_POP:
1759*fae548d3Szrj     case elfcpp::R_386_USED_BY_INTEL_200:
1760*fae548d3Szrj     default:
1761*fae548d3Szrj       // Not expected.  We will give an error later.
1762*fae548d3Szrj       return 0;
1763*fae548d3Szrj     }
1764*fae548d3Szrj }
1765*fae548d3Szrj 
1766*fae548d3Szrj // Report an unsupported relocation against a local symbol.
1767*fae548d3Szrj 
1768*fae548d3Szrj void
unsupported_reloc_local(Sized_relobj_file<32,false> * object,unsigned int r_type)1769*fae548d3Szrj Target_i386::Scan::unsupported_reloc_local(Sized_relobj_file<32, false>* object,
1770*fae548d3Szrj 					   unsigned int r_type)
1771*fae548d3Szrj {
1772*fae548d3Szrj   gold_error(_("%s: unsupported reloc %u against local symbol"),
1773*fae548d3Szrj 	     object->name().c_str(), r_type);
1774*fae548d3Szrj }
1775*fae548d3Szrj 
1776*fae548d3Szrj // Return whether we need to make a PLT entry for a relocation of a
1777*fae548d3Szrj // given type against a STT_GNU_IFUNC symbol.
1778*fae548d3Szrj 
1779*fae548d3Szrj bool
reloc_needs_plt_for_ifunc(Sized_relobj_file<32,false> * object,unsigned int r_type)1780*fae548d3Szrj Target_i386::Scan::reloc_needs_plt_for_ifunc(
1781*fae548d3Szrj     Sized_relobj_file<32, false>* object,
1782*fae548d3Szrj     unsigned int r_type)
1783*fae548d3Szrj {
1784*fae548d3Szrj   int flags = Scan::get_reference_flags(r_type);
1785*fae548d3Szrj   if (flags & Symbol::TLS_REF)
1786*fae548d3Szrj     gold_error(_("%s: unsupported TLS reloc %u for IFUNC symbol"),
1787*fae548d3Szrj 	       object->name().c_str(), r_type);
1788*fae548d3Szrj   return flags != 0;
1789*fae548d3Szrj }
1790*fae548d3Szrj 
1791*fae548d3Szrj // Scan a relocation for a local symbol.
1792*fae548d3Szrj 
1793*fae548d3Szrj inline void
local(Symbol_table * symtab,Layout * layout,Target_i386 * target,Sized_relobj_file<32,false> * object,unsigned int data_shndx,Output_section * output_section,const elfcpp::Rel<32,false> & reloc,unsigned int r_type,const elfcpp::Sym<32,false> & lsym,bool is_discarded)1794*fae548d3Szrj Target_i386::Scan::local(Symbol_table* symtab,
1795*fae548d3Szrj 			 Layout* layout,
1796*fae548d3Szrj 			 Target_i386* target,
1797*fae548d3Szrj 			 Sized_relobj_file<32, false>* object,
1798*fae548d3Szrj 			 unsigned int data_shndx,
1799*fae548d3Szrj 			 Output_section* output_section,
1800*fae548d3Szrj 			 const elfcpp::Rel<32, false>& reloc,
1801*fae548d3Szrj 			 unsigned int r_type,
1802*fae548d3Szrj 			 const elfcpp::Sym<32, false>& lsym,
1803*fae548d3Szrj 			 bool is_discarded)
1804*fae548d3Szrj {
1805*fae548d3Szrj   if (is_discarded)
1806*fae548d3Szrj     return;
1807*fae548d3Szrj 
1808*fae548d3Szrj   // A local STT_GNU_IFUNC symbol may require a PLT entry.
1809*fae548d3Szrj   if (lsym.get_st_type() == elfcpp::STT_GNU_IFUNC
1810*fae548d3Szrj       && this->reloc_needs_plt_for_ifunc(object, r_type))
1811*fae548d3Szrj     {
1812*fae548d3Szrj       unsigned int r_sym = elfcpp::elf_r_sym<32>(reloc.get_r_info());
1813*fae548d3Szrj       target->make_local_ifunc_plt_entry(symtab, layout, object, r_sym);
1814*fae548d3Szrj     }
1815*fae548d3Szrj 
1816*fae548d3Szrj   switch (r_type)
1817*fae548d3Szrj     {
1818*fae548d3Szrj     case elfcpp::R_386_NONE:
1819*fae548d3Szrj     case elfcpp::R_386_GNU_VTINHERIT:
1820*fae548d3Szrj     case elfcpp::R_386_GNU_VTENTRY:
1821*fae548d3Szrj       break;
1822*fae548d3Szrj 
1823*fae548d3Szrj     case elfcpp::R_386_32:
1824*fae548d3Szrj       // If building a shared library (or a position-independent
1825*fae548d3Szrj       // executable), we need to create a dynamic relocation for
1826*fae548d3Szrj       // this location. The relocation applied at link time will
1827*fae548d3Szrj       // apply the link-time value, so we flag the location with
1828*fae548d3Szrj       // an R_386_RELATIVE relocation so the dynamic loader can
1829*fae548d3Szrj       // relocate it easily.
1830*fae548d3Szrj       if (parameters->options().output_is_position_independent())
1831*fae548d3Szrj 	{
1832*fae548d3Szrj 	  Reloc_section* rel_dyn = target->rel_dyn_section(layout);
1833*fae548d3Szrj 	  unsigned int r_sym = elfcpp::elf_r_sym<32>(reloc.get_r_info());
1834*fae548d3Szrj 	  rel_dyn->add_local_relative(object, r_sym, elfcpp::R_386_RELATIVE,
1835*fae548d3Szrj 				      output_section, data_shndx,
1836*fae548d3Szrj 				      reloc.get_r_offset());
1837*fae548d3Szrj 	}
1838*fae548d3Szrj       break;
1839*fae548d3Szrj 
1840*fae548d3Szrj     case elfcpp::R_386_16:
1841*fae548d3Szrj     case elfcpp::R_386_8:
1842*fae548d3Szrj       // If building a shared library (or a position-independent
1843*fae548d3Szrj       // executable), we need to create a dynamic relocation for
1844*fae548d3Szrj       // this location. Because the addend needs to remain in the
1845*fae548d3Szrj       // data section, we need to be careful not to apply this
1846*fae548d3Szrj       // relocation statically.
1847*fae548d3Szrj       if (parameters->options().output_is_position_independent())
1848*fae548d3Szrj 	{
1849*fae548d3Szrj 	  Reloc_section* rel_dyn = target->rel_dyn_section(layout);
1850*fae548d3Szrj 	  unsigned int r_sym = elfcpp::elf_r_sym<32>(reloc.get_r_info());
1851*fae548d3Szrj 	  if (lsym.get_st_type() != elfcpp::STT_SECTION)
1852*fae548d3Szrj 	    rel_dyn->add_local(object, r_sym, r_type, output_section,
1853*fae548d3Szrj 			       data_shndx, reloc.get_r_offset());
1854*fae548d3Szrj 	  else
1855*fae548d3Szrj 	    {
1856*fae548d3Szrj 	      gold_assert(lsym.get_st_value() == 0);
1857*fae548d3Szrj 	      unsigned int shndx = lsym.get_st_shndx();
1858*fae548d3Szrj 	      bool is_ordinary;
1859*fae548d3Szrj 	      shndx = object->adjust_sym_shndx(r_sym, shndx,
1860*fae548d3Szrj 					       &is_ordinary);
1861*fae548d3Szrj 	      if (!is_ordinary)
1862*fae548d3Szrj 		object->error(_("section symbol %u has bad shndx %u"),
1863*fae548d3Szrj 			      r_sym, shndx);
1864*fae548d3Szrj 	      else
1865*fae548d3Szrj 		rel_dyn->add_local_section(object, shndx,
1866*fae548d3Szrj 					   r_type, output_section,
1867*fae548d3Szrj 					   data_shndx, reloc.get_r_offset());
1868*fae548d3Szrj 	    }
1869*fae548d3Szrj 	}
1870*fae548d3Szrj       break;
1871*fae548d3Szrj 
1872*fae548d3Szrj     case elfcpp::R_386_PC32:
1873*fae548d3Szrj     case elfcpp::R_386_PC16:
1874*fae548d3Szrj     case elfcpp::R_386_PC8:
1875*fae548d3Szrj       break;
1876*fae548d3Szrj 
1877*fae548d3Szrj     case elfcpp::R_386_PLT32:
1878*fae548d3Szrj       // Since we know this is a local symbol, we can handle this as a
1879*fae548d3Szrj       // PC32 reloc.
1880*fae548d3Szrj       break;
1881*fae548d3Szrj 
1882*fae548d3Szrj     case elfcpp::R_386_GOTOFF:
1883*fae548d3Szrj     case elfcpp::R_386_GOTPC:
1884*fae548d3Szrj       // We need a GOT section.
1885*fae548d3Szrj       target->got_section(symtab, layout);
1886*fae548d3Szrj       break;
1887*fae548d3Szrj 
1888*fae548d3Szrj     case elfcpp::R_386_GOT32:
1889*fae548d3Szrj     case elfcpp::R_386_GOT32X:
1890*fae548d3Szrj       {
1891*fae548d3Szrj 	// We need GOT section.
1892*fae548d3Szrj 	Output_data_got<32, false>* got = target->got_section(symtab, layout);
1893*fae548d3Szrj 
1894*fae548d3Szrj 	// If the relocation symbol isn't IFUNC,
1895*fae548d3Szrj 	// and is local, then we will convert
1896*fae548d3Szrj 	// mov foo@GOT(%reg), %reg
1897*fae548d3Szrj 	// to
1898*fae548d3Szrj 	// lea foo@GOTOFF(%reg), %reg
1899*fae548d3Szrj 	// in Relocate::relocate.
1900*fae548d3Szrj 	if (reloc.get_r_offset() >= 2
1901*fae548d3Szrj 	    && lsym.get_st_type() != elfcpp::STT_GNU_IFUNC)
1902*fae548d3Szrj 	  {
1903*fae548d3Szrj 	    section_size_type stype;
1904*fae548d3Szrj 	    const unsigned char* view = object->section_contents(data_shndx,
1905*fae548d3Szrj 								 &stype, true);
1906*fae548d3Szrj 	    if (view[reloc.get_r_offset() - 2] == 0x8b)
1907*fae548d3Szrj 	      break;
1908*fae548d3Szrj 	  }
1909*fae548d3Szrj 
1910*fae548d3Szrj 	// Otherwise, the symbol requires a GOT entry.
1911*fae548d3Szrj 	unsigned int r_sym = elfcpp::elf_r_sym<32>(reloc.get_r_info());
1912*fae548d3Szrj 
1913*fae548d3Szrj 	// For a STT_GNU_IFUNC symbol we want the PLT offset.  That
1914*fae548d3Szrj 	// lets function pointers compare correctly with shared
1915*fae548d3Szrj 	// libraries.  Otherwise we would need an IRELATIVE reloc.
1916*fae548d3Szrj 	bool is_new;
1917*fae548d3Szrj 	if (lsym.get_st_type() == elfcpp::STT_GNU_IFUNC)
1918*fae548d3Szrj 	  is_new = got->add_local_plt(object, r_sym, GOT_TYPE_STANDARD);
1919*fae548d3Szrj 	else
1920*fae548d3Szrj 	  is_new = got->add_local(object, r_sym, GOT_TYPE_STANDARD);
1921*fae548d3Szrj 	if (is_new)
1922*fae548d3Szrj 	  {
1923*fae548d3Szrj 	    // If we are generating a shared object, we need to add a
1924*fae548d3Szrj 	    // dynamic RELATIVE relocation for this symbol's GOT entry.
1925*fae548d3Szrj 	    if (parameters->options().output_is_position_independent())
1926*fae548d3Szrj 	      {
1927*fae548d3Szrj 		Reloc_section* rel_dyn = target->rel_dyn_section(layout);
1928*fae548d3Szrj 		unsigned int got_offset =
1929*fae548d3Szrj 		  object->local_got_offset(r_sym, GOT_TYPE_STANDARD);
1930*fae548d3Szrj 		rel_dyn->add_local_relative(object, r_sym,
1931*fae548d3Szrj 					    elfcpp::R_386_RELATIVE,
1932*fae548d3Szrj 					    got, got_offset);
1933*fae548d3Szrj 	      }
1934*fae548d3Szrj 	  }
1935*fae548d3Szrj       }
1936*fae548d3Szrj       break;
1937*fae548d3Szrj 
1938*fae548d3Szrj       // These are relocations which should only be seen by the
1939*fae548d3Szrj       // dynamic linker, and should never be seen here.
1940*fae548d3Szrj     case elfcpp::R_386_COPY:
1941*fae548d3Szrj     case elfcpp::R_386_GLOB_DAT:
1942*fae548d3Szrj     case elfcpp::R_386_JUMP_SLOT:
1943*fae548d3Szrj     case elfcpp::R_386_RELATIVE:
1944*fae548d3Szrj     case elfcpp::R_386_IRELATIVE:
1945*fae548d3Szrj     case elfcpp::R_386_TLS_TPOFF:
1946*fae548d3Szrj     case elfcpp::R_386_TLS_DTPMOD32:
1947*fae548d3Szrj     case elfcpp::R_386_TLS_DTPOFF32:
1948*fae548d3Szrj     case elfcpp::R_386_TLS_TPOFF32:
1949*fae548d3Szrj     case elfcpp::R_386_TLS_DESC:
1950*fae548d3Szrj       gold_error(_("%s: unexpected reloc %u in object file"),
1951*fae548d3Szrj 		 object->name().c_str(), r_type);
1952*fae548d3Szrj       break;
1953*fae548d3Szrj 
1954*fae548d3Szrj       // These are initial TLS relocs, which are expected when
1955*fae548d3Szrj       // linking.
1956*fae548d3Szrj     case elfcpp::R_386_TLS_GD:            // Global-dynamic
1957*fae548d3Szrj     case elfcpp::R_386_TLS_GOTDESC:       // Global-dynamic (from ~oliva url)
1958*fae548d3Szrj     case elfcpp::R_386_TLS_DESC_CALL:
1959*fae548d3Szrj     case elfcpp::R_386_TLS_LDM:           // Local-dynamic
1960*fae548d3Szrj     case elfcpp::R_386_TLS_LDO_32:        // Alternate local-dynamic
1961*fae548d3Szrj     case elfcpp::R_386_TLS_IE:            // Initial-exec
1962*fae548d3Szrj     case elfcpp::R_386_TLS_IE_32:
1963*fae548d3Szrj     case elfcpp::R_386_TLS_GOTIE:
1964*fae548d3Szrj     case elfcpp::R_386_TLS_LE:            // Local-exec
1965*fae548d3Szrj     case elfcpp::R_386_TLS_LE_32:
1966*fae548d3Szrj       {
1967*fae548d3Szrj 	bool output_is_shared = parameters->options().shared();
1968*fae548d3Szrj 	const tls::Tls_optimization optimized_type
1969*fae548d3Szrj 	    = Target_i386::optimize_tls_reloc(!output_is_shared, r_type);
1970*fae548d3Szrj 	switch (r_type)
1971*fae548d3Szrj 	  {
1972*fae548d3Szrj 	  case elfcpp::R_386_TLS_GD:          // Global-dynamic
1973*fae548d3Szrj 	    if (optimized_type == tls::TLSOPT_NONE)
1974*fae548d3Szrj 	      {
1975*fae548d3Szrj 		// Create a pair of GOT entries for the module index and
1976*fae548d3Szrj 		// dtv-relative offset.
1977*fae548d3Szrj 		Output_data_got<32, false>* got
1978*fae548d3Szrj 		    = target->got_section(symtab, layout);
1979*fae548d3Szrj 		unsigned int r_sym = elfcpp::elf_r_sym<32>(reloc.get_r_info());
1980*fae548d3Szrj 		unsigned int shndx = lsym.get_st_shndx();
1981*fae548d3Szrj 		bool is_ordinary;
1982*fae548d3Szrj 		shndx = object->adjust_sym_shndx(r_sym, shndx, &is_ordinary);
1983*fae548d3Szrj 		if (!is_ordinary)
1984*fae548d3Szrj 		  object->error(_("local symbol %u has bad shndx %u"),
1985*fae548d3Szrj 			      r_sym, shndx);
1986*fae548d3Szrj 		else
1987*fae548d3Szrj 		  got->add_local_pair_with_rel(object, r_sym, shndx,
1988*fae548d3Szrj 					       GOT_TYPE_TLS_PAIR,
1989*fae548d3Szrj 					       target->rel_dyn_section(layout),
1990*fae548d3Szrj 					       elfcpp::R_386_TLS_DTPMOD32);
1991*fae548d3Szrj 	      }
1992*fae548d3Szrj 	    else if (optimized_type != tls::TLSOPT_TO_LE)
1993*fae548d3Szrj 	      unsupported_reloc_local(object, r_type);
1994*fae548d3Szrj 	    break;
1995*fae548d3Szrj 
1996*fae548d3Szrj 	  case elfcpp::R_386_TLS_GOTDESC:     // Global-dynamic (from ~oliva)
1997*fae548d3Szrj 	    target->define_tls_base_symbol(symtab, layout);
1998*fae548d3Szrj 	    if (optimized_type == tls::TLSOPT_NONE)
1999*fae548d3Szrj 	      {
2000*fae548d3Szrj 		// Create a double GOT entry with an R_386_TLS_DESC
2001*fae548d3Szrj 		// reloc.  The R_386_TLS_DESC reloc is resolved
2002*fae548d3Szrj 		// lazily, so the GOT entry needs to be in an area in
2003*fae548d3Szrj 		// .got.plt, not .got.  Call got_section to make sure
2004*fae548d3Szrj 		// the section has been created.
2005*fae548d3Szrj 		target->got_section(symtab, layout);
2006*fae548d3Szrj 		Output_data_got<32, false>* got = target->got_tlsdesc_section();
2007*fae548d3Szrj 		unsigned int r_sym = elfcpp::elf_r_sym<32>(reloc.get_r_info());
2008*fae548d3Szrj 		if (!object->local_has_got_offset(r_sym, GOT_TYPE_TLS_DESC))
2009*fae548d3Szrj 		  {
2010*fae548d3Szrj 		    unsigned int got_offset = got->add_constant(0);
2011*fae548d3Szrj 		    // The local symbol value is stored in the second
2012*fae548d3Szrj 		    // GOT entry.
2013*fae548d3Szrj 		    got->add_local(object, r_sym, GOT_TYPE_TLS_DESC);
2014*fae548d3Szrj 		    // That set the GOT offset of the local symbol to
2015*fae548d3Szrj 		    // point to the second entry, but we want it to
2016*fae548d3Szrj 		    // point to the first.
2017*fae548d3Szrj 		    object->set_local_got_offset(r_sym, GOT_TYPE_TLS_DESC,
2018*fae548d3Szrj 						 got_offset);
2019*fae548d3Szrj 		    Reloc_section* rt = target->rel_tls_desc_section(layout);
2020*fae548d3Szrj 		    rt->add_absolute(elfcpp::R_386_TLS_DESC, got, got_offset);
2021*fae548d3Szrj 		  }
2022*fae548d3Szrj 	      }
2023*fae548d3Szrj 	    else if (optimized_type != tls::TLSOPT_TO_LE)
2024*fae548d3Szrj 	      unsupported_reloc_local(object, r_type);
2025*fae548d3Szrj 	    break;
2026*fae548d3Szrj 
2027*fae548d3Szrj 	  case elfcpp::R_386_TLS_DESC_CALL:
2028*fae548d3Szrj 	    break;
2029*fae548d3Szrj 
2030*fae548d3Szrj 	  case elfcpp::R_386_TLS_LDM:         // Local-dynamic
2031*fae548d3Szrj 	    if (optimized_type == tls::TLSOPT_NONE)
2032*fae548d3Szrj 	      {
2033*fae548d3Szrj 		// Create a GOT entry for the module index.
2034*fae548d3Szrj 		target->got_mod_index_entry(symtab, layout, object);
2035*fae548d3Szrj 	      }
2036*fae548d3Szrj 	    else if (optimized_type != tls::TLSOPT_TO_LE)
2037*fae548d3Szrj 	      unsupported_reloc_local(object, r_type);
2038*fae548d3Szrj 	    break;
2039*fae548d3Szrj 
2040*fae548d3Szrj 	  case elfcpp::R_386_TLS_LDO_32:      // Alternate local-dynamic
2041*fae548d3Szrj 	    break;
2042*fae548d3Szrj 
2043*fae548d3Szrj 	  case elfcpp::R_386_TLS_IE:          // Initial-exec
2044*fae548d3Szrj 	  case elfcpp::R_386_TLS_IE_32:
2045*fae548d3Szrj 	  case elfcpp::R_386_TLS_GOTIE:
2046*fae548d3Szrj 	    layout->set_has_static_tls();
2047*fae548d3Szrj 	    if (optimized_type == tls::TLSOPT_NONE)
2048*fae548d3Szrj 	      {
2049*fae548d3Szrj 		// For the R_386_TLS_IE relocation, we need to create a
2050*fae548d3Szrj 		// dynamic relocation when building a shared library.
2051*fae548d3Szrj 		if (r_type == elfcpp::R_386_TLS_IE
2052*fae548d3Szrj 		    && parameters->options().shared())
2053*fae548d3Szrj 		  {
2054*fae548d3Szrj 		    Reloc_section* rel_dyn = target->rel_dyn_section(layout);
2055*fae548d3Szrj 		    unsigned int r_sym
2056*fae548d3Szrj 			= elfcpp::elf_r_sym<32>(reloc.get_r_info());
2057*fae548d3Szrj 		    rel_dyn->add_local_relative(object, r_sym,
2058*fae548d3Szrj 						elfcpp::R_386_RELATIVE,
2059*fae548d3Szrj 						output_section, data_shndx,
2060*fae548d3Szrj 						reloc.get_r_offset());
2061*fae548d3Szrj 		  }
2062*fae548d3Szrj 		// Create a GOT entry for the tp-relative offset.
2063*fae548d3Szrj 		Output_data_got<32, false>* got
2064*fae548d3Szrj 		    = target->got_section(symtab, layout);
2065*fae548d3Szrj 		unsigned int r_sym = elfcpp::elf_r_sym<32>(reloc.get_r_info());
2066*fae548d3Szrj 		unsigned int dyn_r_type = (r_type == elfcpp::R_386_TLS_IE_32
2067*fae548d3Szrj 					   ? elfcpp::R_386_TLS_TPOFF32
2068*fae548d3Szrj 					   : elfcpp::R_386_TLS_TPOFF);
2069*fae548d3Szrj 		unsigned int got_type = (r_type == elfcpp::R_386_TLS_IE_32
2070*fae548d3Szrj 					 ? GOT_TYPE_TLS_OFFSET
2071*fae548d3Szrj 					 : GOT_TYPE_TLS_NOFFSET);
2072*fae548d3Szrj 		got->add_local_with_rel(object, r_sym, got_type,
2073*fae548d3Szrj 					target->rel_dyn_section(layout),
2074*fae548d3Szrj 					dyn_r_type);
2075*fae548d3Szrj 	      }
2076*fae548d3Szrj 	    else if (optimized_type != tls::TLSOPT_TO_LE)
2077*fae548d3Szrj 	      unsupported_reloc_local(object, r_type);
2078*fae548d3Szrj 	    break;
2079*fae548d3Szrj 
2080*fae548d3Szrj 	  case elfcpp::R_386_TLS_LE:          // Local-exec
2081*fae548d3Szrj 	  case elfcpp::R_386_TLS_LE_32:
2082*fae548d3Szrj 	    layout->set_has_static_tls();
2083*fae548d3Szrj 	    if (output_is_shared)
2084*fae548d3Szrj 	      {
2085*fae548d3Szrj 		// We need to create a dynamic relocation.
2086*fae548d3Szrj 		gold_assert(lsym.get_st_type() != elfcpp::STT_SECTION);
2087*fae548d3Szrj 		unsigned int r_sym = elfcpp::elf_r_sym<32>(reloc.get_r_info());
2088*fae548d3Szrj 		unsigned int dyn_r_type = (r_type == elfcpp::R_386_TLS_LE_32
2089*fae548d3Szrj 					   ? elfcpp::R_386_TLS_TPOFF32
2090*fae548d3Szrj 					   : elfcpp::R_386_TLS_TPOFF);
2091*fae548d3Szrj 		Reloc_section* rel_dyn = target->rel_dyn_section(layout);
2092*fae548d3Szrj 		rel_dyn->add_local(object, r_sym, dyn_r_type, output_section,
2093*fae548d3Szrj 				   data_shndx, reloc.get_r_offset());
2094*fae548d3Szrj 	      }
2095*fae548d3Szrj 	    break;
2096*fae548d3Szrj 
2097*fae548d3Szrj 	  default:
2098*fae548d3Szrj 	    gold_unreachable();
2099*fae548d3Szrj 	  }
2100*fae548d3Szrj       }
2101*fae548d3Szrj       break;
2102*fae548d3Szrj 
2103*fae548d3Szrj     case elfcpp::R_386_32PLT:
2104*fae548d3Szrj     case elfcpp::R_386_TLS_GD_32:
2105*fae548d3Szrj     case elfcpp::R_386_TLS_GD_PUSH:
2106*fae548d3Szrj     case elfcpp::R_386_TLS_GD_CALL:
2107*fae548d3Szrj     case elfcpp::R_386_TLS_GD_POP:
2108*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_32:
2109*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_PUSH:
2110*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_CALL:
2111*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_POP:
2112*fae548d3Szrj     case elfcpp::R_386_USED_BY_INTEL_200:
2113*fae548d3Szrj     default:
2114*fae548d3Szrj       unsupported_reloc_local(object, r_type);
2115*fae548d3Szrj       break;
2116*fae548d3Szrj     }
2117*fae548d3Szrj }
2118*fae548d3Szrj 
2119*fae548d3Szrj // Report an unsupported relocation against a global symbol.
2120*fae548d3Szrj 
2121*fae548d3Szrj void
unsupported_reloc_global(Sized_relobj_file<32,false> * object,unsigned int r_type,Symbol * gsym)2122*fae548d3Szrj Target_i386::Scan::unsupported_reloc_global(
2123*fae548d3Szrj     Sized_relobj_file<32, false>* object,
2124*fae548d3Szrj     unsigned int r_type,
2125*fae548d3Szrj     Symbol* gsym)
2126*fae548d3Szrj {
2127*fae548d3Szrj   gold_error(_("%s: unsupported reloc %u against global symbol %s"),
2128*fae548d3Szrj 	     object->name().c_str(), r_type, gsym->demangled_name().c_str());
2129*fae548d3Szrj }
2130*fae548d3Szrj 
2131*fae548d3Szrj inline bool
possible_function_pointer_reloc(unsigned int r_type)2132*fae548d3Szrj Target_i386::Scan::possible_function_pointer_reloc(unsigned int r_type)
2133*fae548d3Szrj {
2134*fae548d3Szrj   switch (r_type)
2135*fae548d3Szrj     {
2136*fae548d3Szrj     case elfcpp::R_386_32:
2137*fae548d3Szrj     case elfcpp::R_386_16:
2138*fae548d3Szrj     case elfcpp::R_386_8:
2139*fae548d3Szrj     case elfcpp::R_386_GOTOFF:
2140*fae548d3Szrj     case elfcpp::R_386_GOT32:
2141*fae548d3Szrj     case elfcpp::R_386_GOT32X:
2142*fae548d3Szrj       {
2143*fae548d3Szrj 	return true;
2144*fae548d3Szrj       }
2145*fae548d3Szrj     default:
2146*fae548d3Szrj       return false;
2147*fae548d3Szrj     }
2148*fae548d3Szrj   return false;
2149*fae548d3Szrj }
2150*fae548d3Szrj 
2151*fae548d3Szrj inline bool
local_reloc_may_be_function_pointer(Symbol_table *,Layout *,Target_i386 *,Sized_relobj_file<32,false> *,unsigned int,Output_section *,const elfcpp::Rel<32,false> &,unsigned int r_type,const elfcpp::Sym<32,false> &)2152*fae548d3Szrj Target_i386::Scan::local_reloc_may_be_function_pointer(
2153*fae548d3Szrj   Symbol_table* ,
2154*fae548d3Szrj   Layout* ,
2155*fae548d3Szrj   Target_i386* ,
2156*fae548d3Szrj   Sized_relobj_file<32, false>* ,
2157*fae548d3Szrj   unsigned int ,
2158*fae548d3Szrj   Output_section* ,
2159*fae548d3Szrj   const elfcpp::Rel<32, false>& ,
2160*fae548d3Szrj   unsigned int r_type,
2161*fae548d3Szrj   const elfcpp::Sym<32, false>&)
2162*fae548d3Szrj {
2163*fae548d3Szrj   return possible_function_pointer_reloc(r_type);
2164*fae548d3Szrj }
2165*fae548d3Szrj 
2166*fae548d3Szrj inline bool
global_reloc_may_be_function_pointer(Symbol_table *,Layout *,Target_i386 *,Sized_relobj_file<32,false> *,unsigned int,Output_section *,const elfcpp::Rel<32,false> &,unsigned int r_type,Symbol *)2167*fae548d3Szrj Target_i386::Scan::global_reloc_may_be_function_pointer(
2168*fae548d3Szrj   Symbol_table* ,
2169*fae548d3Szrj   Layout* ,
2170*fae548d3Szrj   Target_i386* ,
2171*fae548d3Szrj   Sized_relobj_file<32, false>* ,
2172*fae548d3Szrj   unsigned int ,
2173*fae548d3Szrj   Output_section* ,
2174*fae548d3Szrj   const elfcpp::Rel<32, false>& ,
2175*fae548d3Szrj   unsigned int r_type,
2176*fae548d3Szrj   Symbol*)
2177*fae548d3Szrj {
2178*fae548d3Szrj   return possible_function_pointer_reloc(r_type);
2179*fae548d3Szrj }
2180*fae548d3Szrj 
2181*fae548d3Szrj // Scan a relocation for a global symbol.
2182*fae548d3Szrj 
2183*fae548d3Szrj inline void
global(Symbol_table * symtab,Layout * layout,Target_i386 * target,Sized_relobj_file<32,false> * object,unsigned int data_shndx,Output_section * output_section,const elfcpp::Rel<32,false> & reloc,unsigned int r_type,Symbol * gsym)2184*fae548d3Szrj Target_i386::Scan::global(Symbol_table* symtab,
2185*fae548d3Szrj 				 Layout* layout,
2186*fae548d3Szrj 				 Target_i386* target,
2187*fae548d3Szrj 				 Sized_relobj_file<32, false>* object,
2188*fae548d3Szrj 				 unsigned int data_shndx,
2189*fae548d3Szrj 				 Output_section* output_section,
2190*fae548d3Szrj 				 const elfcpp::Rel<32, false>& reloc,
2191*fae548d3Szrj 				 unsigned int r_type,
2192*fae548d3Szrj 				 Symbol* gsym)
2193*fae548d3Szrj {
2194*fae548d3Szrj   // A STT_GNU_IFUNC symbol may require a PLT entry.
2195*fae548d3Szrj   if (gsym->type() == elfcpp::STT_GNU_IFUNC
2196*fae548d3Szrj       && this->reloc_needs_plt_for_ifunc(object, r_type))
2197*fae548d3Szrj     target->make_plt_entry(symtab, layout, gsym);
2198*fae548d3Szrj 
2199*fae548d3Szrj   switch (r_type)
2200*fae548d3Szrj     {
2201*fae548d3Szrj     case elfcpp::R_386_NONE:
2202*fae548d3Szrj     case elfcpp::R_386_GNU_VTINHERIT:
2203*fae548d3Szrj     case elfcpp::R_386_GNU_VTENTRY:
2204*fae548d3Szrj       break;
2205*fae548d3Szrj 
2206*fae548d3Szrj     case elfcpp::R_386_32:
2207*fae548d3Szrj     case elfcpp::R_386_16:
2208*fae548d3Szrj     case elfcpp::R_386_8:
2209*fae548d3Szrj       {
2210*fae548d3Szrj 	// Make a PLT entry if necessary.
2211*fae548d3Szrj 	if (gsym->needs_plt_entry())
2212*fae548d3Szrj 	  {
2213*fae548d3Szrj 	    target->make_plt_entry(symtab, layout, gsym);
2214*fae548d3Szrj 	    // Since this is not a PC-relative relocation, we may be
2215*fae548d3Szrj 	    // taking the address of a function. In that case we need to
2216*fae548d3Szrj 	    // set the entry in the dynamic symbol table to the address of
2217*fae548d3Szrj 	    // the PLT entry.
2218*fae548d3Szrj 	    if (gsym->is_from_dynobj() && !parameters->options().shared())
2219*fae548d3Szrj 	      gsym->set_needs_dynsym_value();
2220*fae548d3Szrj 	  }
2221*fae548d3Szrj 	// Make a dynamic relocation if necessary.
2222*fae548d3Szrj 	if (gsym->needs_dynamic_reloc(Scan::get_reference_flags(r_type)))
2223*fae548d3Szrj 	  {
2224*fae548d3Szrj 	    if (!parameters->options().output_is_position_independent()
2225*fae548d3Szrj 		&& gsym->may_need_copy_reloc())
2226*fae548d3Szrj 	      {
2227*fae548d3Szrj 		target->copy_reloc(symtab, layout, object,
2228*fae548d3Szrj 				   data_shndx, output_section, gsym, reloc);
2229*fae548d3Szrj 	      }
2230*fae548d3Szrj 	    else if (r_type == elfcpp::R_386_32
2231*fae548d3Szrj 		     && gsym->type() == elfcpp::STT_GNU_IFUNC
2232*fae548d3Szrj 		     && gsym->can_use_relative_reloc(false)
2233*fae548d3Szrj 		     && !gsym->is_from_dynobj()
2234*fae548d3Szrj 		     && !gsym->is_undefined()
2235*fae548d3Szrj 		     && !gsym->is_preemptible())
2236*fae548d3Szrj 	      {
2237*fae548d3Szrj 		// Use an IRELATIVE reloc for a locally defined
2238*fae548d3Szrj 		// STT_GNU_IFUNC symbol.  This makes a function
2239*fae548d3Szrj 		// address in a PIE executable match the address in a
2240*fae548d3Szrj 		// shared library that it links against.
2241*fae548d3Szrj 		Reloc_section* rel_dyn = target->rel_irelative_section(layout);
2242*fae548d3Szrj 		rel_dyn->add_symbolless_global_addend(gsym,
2243*fae548d3Szrj 						      elfcpp::R_386_IRELATIVE,
2244*fae548d3Szrj 						      output_section,
2245*fae548d3Szrj 						      object, data_shndx,
2246*fae548d3Szrj 						      reloc.get_r_offset());
2247*fae548d3Szrj 	      }
2248*fae548d3Szrj 	    else if (r_type == elfcpp::R_386_32
2249*fae548d3Szrj 		     && gsym->can_use_relative_reloc(false))
2250*fae548d3Szrj 	      {
2251*fae548d3Szrj 		Reloc_section* rel_dyn = target->rel_dyn_section(layout);
2252*fae548d3Szrj 		rel_dyn->add_global_relative(gsym, elfcpp::R_386_RELATIVE,
2253*fae548d3Szrj 					     output_section, object,
2254*fae548d3Szrj 					     data_shndx, reloc.get_r_offset());
2255*fae548d3Szrj 	      }
2256*fae548d3Szrj 	    else
2257*fae548d3Szrj 	      {
2258*fae548d3Szrj 		Reloc_section* rel_dyn = target->rel_dyn_section(layout);
2259*fae548d3Szrj 		rel_dyn->add_global(gsym, r_type, output_section, object,
2260*fae548d3Szrj 				    data_shndx, reloc.get_r_offset());
2261*fae548d3Szrj 	      }
2262*fae548d3Szrj 	  }
2263*fae548d3Szrj       }
2264*fae548d3Szrj       break;
2265*fae548d3Szrj 
2266*fae548d3Szrj     case elfcpp::R_386_PC32:
2267*fae548d3Szrj     case elfcpp::R_386_PC16:
2268*fae548d3Szrj     case elfcpp::R_386_PC8:
2269*fae548d3Szrj       {
2270*fae548d3Szrj 	// Make a PLT entry if necessary.
2271*fae548d3Szrj 	if (gsym->needs_plt_entry())
2272*fae548d3Szrj 	  {
2273*fae548d3Szrj 	    // These relocations are used for function calls only in
2274*fae548d3Szrj 	    // non-PIC code.  For a 32-bit relocation in a shared library,
2275*fae548d3Szrj 	    // we'll need a text relocation anyway, so we can skip the
2276*fae548d3Szrj 	    // PLT entry and let the dynamic linker bind the call directly
2277*fae548d3Szrj 	    // to the target.  For smaller relocations, we should use a
2278*fae548d3Szrj 	    // PLT entry to ensure that the call can reach.
2279*fae548d3Szrj 	    if (!parameters->options().shared()
2280*fae548d3Szrj 		|| r_type != elfcpp::R_386_PC32)
2281*fae548d3Szrj 	      target->make_plt_entry(symtab, layout, gsym);
2282*fae548d3Szrj 	  }
2283*fae548d3Szrj 	// Make a dynamic relocation if necessary.
2284*fae548d3Szrj 	if (gsym->needs_dynamic_reloc(Scan::get_reference_flags(r_type)))
2285*fae548d3Szrj 	  {
2286*fae548d3Szrj 	    if (parameters->options().output_is_executable()
2287*fae548d3Szrj 		&& gsym->may_need_copy_reloc())
2288*fae548d3Szrj 	      {
2289*fae548d3Szrj 		target->copy_reloc(symtab, layout, object,
2290*fae548d3Szrj 				   data_shndx, output_section, gsym, reloc);
2291*fae548d3Szrj 	      }
2292*fae548d3Szrj 	    else
2293*fae548d3Szrj 	      {
2294*fae548d3Szrj 		Reloc_section* rel_dyn = target->rel_dyn_section(layout);
2295*fae548d3Szrj 		rel_dyn->add_global(gsym, r_type, output_section, object,
2296*fae548d3Szrj 				    data_shndx, reloc.get_r_offset());
2297*fae548d3Szrj 	      }
2298*fae548d3Szrj 	  }
2299*fae548d3Szrj       }
2300*fae548d3Szrj       break;
2301*fae548d3Szrj 
2302*fae548d3Szrj     case elfcpp::R_386_GOT32:
2303*fae548d3Szrj     case elfcpp::R_386_GOT32X:
2304*fae548d3Szrj       {
2305*fae548d3Szrj 	// The symbol requires a GOT section.
2306*fae548d3Szrj 	Output_data_got<32, false>* got = target->got_section(symtab, layout);
2307*fae548d3Szrj 
2308*fae548d3Szrj 	// If we convert this from
2309*fae548d3Szrj 	// mov foo@GOT(%reg), %reg
2310*fae548d3Szrj 	// to
2311*fae548d3Szrj 	// lea foo@GOTOFF(%reg), %reg
2312*fae548d3Szrj 	// in Relocate::relocate, then there is nothing to do here.
2313*fae548d3Szrj 	if (reloc.get_r_offset() >= 2
2314*fae548d3Szrj 	    && Target_i386::can_convert_mov_to_lea(gsym))
2315*fae548d3Szrj 	  {
2316*fae548d3Szrj 	    section_size_type stype;
2317*fae548d3Szrj 	    const unsigned char* view = object->section_contents(data_shndx,
2318*fae548d3Szrj 								 &stype, true);
2319*fae548d3Szrj 	    if (view[reloc.get_r_offset() - 2] == 0x8b)
2320*fae548d3Szrj 	      break;
2321*fae548d3Szrj 	  }
2322*fae548d3Szrj 
2323*fae548d3Szrj 	if (gsym->final_value_is_known())
2324*fae548d3Szrj 	  {
2325*fae548d3Szrj 	    // For a STT_GNU_IFUNC symbol we want the PLT address.
2326*fae548d3Szrj 	    if (gsym->type() == elfcpp::STT_GNU_IFUNC)
2327*fae548d3Szrj 	      got->add_global_plt(gsym, GOT_TYPE_STANDARD);
2328*fae548d3Szrj 	    else
2329*fae548d3Szrj 	      got->add_global(gsym, GOT_TYPE_STANDARD);
2330*fae548d3Szrj 	  }
2331*fae548d3Szrj 	else
2332*fae548d3Szrj 	  {
2333*fae548d3Szrj 	    // If this symbol is not fully resolved, we need to add a
2334*fae548d3Szrj 	    // GOT entry with a dynamic relocation.
2335*fae548d3Szrj 	    Reloc_section* rel_dyn = target->rel_dyn_section(layout);
2336*fae548d3Szrj 
2337*fae548d3Szrj 	    // Use a GLOB_DAT rather than a RELATIVE reloc if:
2338*fae548d3Szrj 	    //
2339*fae548d3Szrj 	    // 1) The symbol may be defined in some other module.
2340*fae548d3Szrj 	    //
2341*fae548d3Szrj 	    // 2) We are building a shared library and this is a
2342*fae548d3Szrj 	    // protected symbol; using GLOB_DAT means that the dynamic
2343*fae548d3Szrj 	    // linker can use the address of the PLT in the main
2344*fae548d3Szrj 	    // executable when appropriate so that function address
2345*fae548d3Szrj 	    // comparisons work.
2346*fae548d3Szrj 	    //
2347*fae548d3Szrj 	    // 3) This is a STT_GNU_IFUNC symbol in position dependent
2348*fae548d3Szrj 	    // code, again so that function address comparisons work.
2349*fae548d3Szrj 	    if (gsym->is_from_dynobj()
2350*fae548d3Szrj 		|| gsym->is_undefined()
2351*fae548d3Szrj 		|| gsym->is_preemptible()
2352*fae548d3Szrj 		|| (gsym->visibility() == elfcpp::STV_PROTECTED
2353*fae548d3Szrj 		    && parameters->options().shared())
2354*fae548d3Szrj 		|| (gsym->type() == elfcpp::STT_GNU_IFUNC
2355*fae548d3Szrj 		    && parameters->options().output_is_position_independent()))
2356*fae548d3Szrj 	      got->add_global_with_rel(gsym, GOT_TYPE_STANDARD,
2357*fae548d3Szrj 				       rel_dyn, elfcpp::R_386_GLOB_DAT);
2358*fae548d3Szrj 	    else
2359*fae548d3Szrj 	      {
2360*fae548d3Szrj 		// For a STT_GNU_IFUNC symbol we want to write the PLT
2361*fae548d3Szrj 		// offset into the GOT, so that function pointer
2362*fae548d3Szrj 		// comparisons work correctly.
2363*fae548d3Szrj 		bool is_new;
2364*fae548d3Szrj 		if (gsym->type() != elfcpp::STT_GNU_IFUNC)
2365*fae548d3Szrj 		  is_new = got->add_global(gsym, GOT_TYPE_STANDARD);
2366*fae548d3Szrj 		else
2367*fae548d3Szrj 		  {
2368*fae548d3Szrj 		    is_new = got->add_global_plt(gsym, GOT_TYPE_STANDARD);
2369*fae548d3Szrj 		    // Tell the dynamic linker to use the PLT address
2370*fae548d3Szrj 		    // when resolving relocations.
2371*fae548d3Szrj 		    if (gsym->is_from_dynobj()
2372*fae548d3Szrj 			&& !parameters->options().shared())
2373*fae548d3Szrj 		      gsym->set_needs_dynsym_value();
2374*fae548d3Szrj 		  }
2375*fae548d3Szrj 		if (is_new)
2376*fae548d3Szrj 		  {
2377*fae548d3Szrj 		    unsigned int got_off = gsym->got_offset(GOT_TYPE_STANDARD);
2378*fae548d3Szrj 		    rel_dyn->add_global_relative(gsym, elfcpp::R_386_RELATIVE,
2379*fae548d3Szrj 						 got, got_off);
2380*fae548d3Szrj 		  }
2381*fae548d3Szrj 	      }
2382*fae548d3Szrj 	  }
2383*fae548d3Szrj       }
2384*fae548d3Szrj       break;
2385*fae548d3Szrj 
2386*fae548d3Szrj     case elfcpp::R_386_PLT32:
2387*fae548d3Szrj       // If the symbol is fully resolved, this is just a PC32 reloc.
2388*fae548d3Szrj       // Otherwise we need a PLT entry.
2389*fae548d3Szrj       if (gsym->final_value_is_known())
2390*fae548d3Szrj 	break;
2391*fae548d3Szrj       // If building a shared library, we can also skip the PLT entry
2392*fae548d3Szrj       // if the symbol is defined in the output file and is protected
2393*fae548d3Szrj       // or hidden.
2394*fae548d3Szrj       if (gsym->is_defined()
2395*fae548d3Szrj 	  && !gsym->is_from_dynobj()
2396*fae548d3Szrj 	  && !gsym->is_preemptible())
2397*fae548d3Szrj 	break;
2398*fae548d3Szrj       target->make_plt_entry(symtab, layout, gsym);
2399*fae548d3Szrj       break;
2400*fae548d3Szrj 
2401*fae548d3Szrj     case elfcpp::R_386_GOTOFF:
2402*fae548d3Szrj       // A GOT-relative reference must resolve locally.
2403*fae548d3Szrj       if (!gsym->is_defined())
2404*fae548d3Szrj         gold_error(_("%s: relocation R_386_GOTOFF against undefined symbol %s"
2405*fae548d3Szrj 		     " cannot be used when making a shared object"),
2406*fae548d3Szrj 		   object->name().c_str(), gsym->name());
2407*fae548d3Szrj       else if (gsym->is_from_dynobj())
2408*fae548d3Szrj         gold_error(_("%s: relocation R_386_GOTOFF against external symbol %s"
2409*fae548d3Szrj 		     " cannot be used when making a shared object"),
2410*fae548d3Szrj 		   object->name().c_str(), gsym->name());
2411*fae548d3Szrj       else if (gsym->is_preemptible())
2412*fae548d3Szrj         gold_error(_("%s: relocation R_386_GOTOFF against preemptible symbol %s"
2413*fae548d3Szrj 		     " cannot be used when making a shared object"),
2414*fae548d3Szrj 		   object->name().c_str(), gsym->name());
2415*fae548d3Szrj       // We need a GOT section.
2416*fae548d3Szrj       target->got_section(symtab, layout);
2417*fae548d3Szrj       break;
2418*fae548d3Szrj 
2419*fae548d3Szrj     case elfcpp::R_386_GOTPC:
2420*fae548d3Szrj       // We need a GOT section.
2421*fae548d3Szrj       target->got_section(symtab, layout);
2422*fae548d3Szrj       break;
2423*fae548d3Szrj 
2424*fae548d3Szrj       // These are relocations which should only be seen by the
2425*fae548d3Szrj       // dynamic linker, and should never be seen here.
2426*fae548d3Szrj     case elfcpp::R_386_COPY:
2427*fae548d3Szrj     case elfcpp::R_386_GLOB_DAT:
2428*fae548d3Szrj     case elfcpp::R_386_JUMP_SLOT:
2429*fae548d3Szrj     case elfcpp::R_386_RELATIVE:
2430*fae548d3Szrj     case elfcpp::R_386_IRELATIVE:
2431*fae548d3Szrj     case elfcpp::R_386_TLS_TPOFF:
2432*fae548d3Szrj     case elfcpp::R_386_TLS_DTPMOD32:
2433*fae548d3Szrj     case elfcpp::R_386_TLS_DTPOFF32:
2434*fae548d3Szrj     case elfcpp::R_386_TLS_TPOFF32:
2435*fae548d3Szrj     case elfcpp::R_386_TLS_DESC:
2436*fae548d3Szrj       gold_error(_("%s: unexpected reloc %u in object file"),
2437*fae548d3Szrj 		 object->name().c_str(), r_type);
2438*fae548d3Szrj       break;
2439*fae548d3Szrj 
2440*fae548d3Szrj       // These are initial tls relocs, which are expected when
2441*fae548d3Szrj       // linking.
2442*fae548d3Szrj     case elfcpp::R_386_TLS_GD:            // Global-dynamic
2443*fae548d3Szrj     case elfcpp::R_386_TLS_GOTDESC:       // Global-dynamic (from ~oliva url)
2444*fae548d3Szrj     case elfcpp::R_386_TLS_DESC_CALL:
2445*fae548d3Szrj     case elfcpp::R_386_TLS_LDM:           // Local-dynamic
2446*fae548d3Szrj     case elfcpp::R_386_TLS_LDO_32:        // Alternate local-dynamic
2447*fae548d3Szrj     case elfcpp::R_386_TLS_IE:            // Initial-exec
2448*fae548d3Szrj     case elfcpp::R_386_TLS_IE_32:
2449*fae548d3Szrj     case elfcpp::R_386_TLS_GOTIE:
2450*fae548d3Szrj     case elfcpp::R_386_TLS_LE:            // Local-exec
2451*fae548d3Szrj     case elfcpp::R_386_TLS_LE_32:
2452*fae548d3Szrj       {
2453*fae548d3Szrj 	const bool is_final = gsym->final_value_is_known();
2454*fae548d3Szrj 	const tls::Tls_optimization optimized_type
2455*fae548d3Szrj 	    = Target_i386::optimize_tls_reloc(is_final, r_type);
2456*fae548d3Szrj 	switch (r_type)
2457*fae548d3Szrj 	  {
2458*fae548d3Szrj 	  case elfcpp::R_386_TLS_GD:          // Global-dynamic
2459*fae548d3Szrj 	    if (optimized_type == tls::TLSOPT_NONE)
2460*fae548d3Szrj 	      {
2461*fae548d3Szrj 		// Create a pair of GOT entries for the module index and
2462*fae548d3Szrj 		// dtv-relative offset.
2463*fae548d3Szrj 		Output_data_got<32, false>* got
2464*fae548d3Szrj 		    = target->got_section(symtab, layout);
2465*fae548d3Szrj 		got->add_global_pair_with_rel(gsym, GOT_TYPE_TLS_PAIR,
2466*fae548d3Szrj 					     target->rel_dyn_section(layout),
2467*fae548d3Szrj 					     elfcpp::R_386_TLS_DTPMOD32,
2468*fae548d3Szrj 					     elfcpp::R_386_TLS_DTPOFF32);
2469*fae548d3Szrj 	      }
2470*fae548d3Szrj 	    else if (optimized_type == tls::TLSOPT_TO_IE)
2471*fae548d3Szrj 	      {
2472*fae548d3Szrj 		// Create a GOT entry for the tp-relative offset.
2473*fae548d3Szrj 		Output_data_got<32, false>* got
2474*fae548d3Szrj 		    = target->got_section(symtab, layout);
2475*fae548d3Szrj 		got->add_global_with_rel(gsym, GOT_TYPE_TLS_NOFFSET,
2476*fae548d3Szrj 					 target->rel_dyn_section(layout),
2477*fae548d3Szrj 					 elfcpp::R_386_TLS_TPOFF);
2478*fae548d3Szrj 	      }
2479*fae548d3Szrj 	    else if (optimized_type != tls::TLSOPT_TO_LE)
2480*fae548d3Szrj 	      unsupported_reloc_global(object, r_type, gsym);
2481*fae548d3Szrj 	    break;
2482*fae548d3Szrj 
2483*fae548d3Szrj 	  case elfcpp::R_386_TLS_GOTDESC:     // Global-dynamic (~oliva url)
2484*fae548d3Szrj 	    target->define_tls_base_symbol(symtab, layout);
2485*fae548d3Szrj 	    if (optimized_type == tls::TLSOPT_NONE)
2486*fae548d3Szrj 	      {
2487*fae548d3Szrj 		// Create a double GOT entry with an R_386_TLS_DESC
2488*fae548d3Szrj 		// reloc.  The R_386_TLS_DESC reloc is resolved
2489*fae548d3Szrj 		// lazily, so the GOT entry needs to be in an area in
2490*fae548d3Szrj 		// .got.plt, not .got.  Call got_section to make sure
2491*fae548d3Szrj 		// the section has been created.
2492*fae548d3Szrj 		target->got_section(symtab, layout);
2493*fae548d3Szrj 		Output_data_got<32, false>* got = target->got_tlsdesc_section();
2494*fae548d3Szrj 		Reloc_section* rt = target->rel_tls_desc_section(layout);
2495*fae548d3Szrj 		got->add_global_pair_with_rel(gsym, GOT_TYPE_TLS_DESC, rt,
2496*fae548d3Szrj 					     elfcpp::R_386_TLS_DESC, 0);
2497*fae548d3Szrj 	      }
2498*fae548d3Szrj 	    else if (optimized_type == tls::TLSOPT_TO_IE)
2499*fae548d3Szrj 	      {
2500*fae548d3Szrj 		// Create a GOT entry for the tp-relative offset.
2501*fae548d3Szrj 		Output_data_got<32, false>* got
2502*fae548d3Szrj 		    = target->got_section(symtab, layout);
2503*fae548d3Szrj 		got->add_global_with_rel(gsym, GOT_TYPE_TLS_NOFFSET,
2504*fae548d3Szrj 					 target->rel_dyn_section(layout),
2505*fae548d3Szrj 					 elfcpp::R_386_TLS_TPOFF);
2506*fae548d3Szrj 	      }
2507*fae548d3Szrj 	    else if (optimized_type != tls::TLSOPT_TO_LE)
2508*fae548d3Szrj 	      unsupported_reloc_global(object, r_type, gsym);
2509*fae548d3Szrj 	    break;
2510*fae548d3Szrj 
2511*fae548d3Szrj 	  case elfcpp::R_386_TLS_DESC_CALL:
2512*fae548d3Szrj 	    break;
2513*fae548d3Szrj 
2514*fae548d3Szrj 	  case elfcpp::R_386_TLS_LDM:         // Local-dynamic
2515*fae548d3Szrj 	    if (optimized_type == tls::TLSOPT_NONE)
2516*fae548d3Szrj 	      {
2517*fae548d3Szrj 		// Create a GOT entry for the module index.
2518*fae548d3Szrj 		target->got_mod_index_entry(symtab, layout, object);
2519*fae548d3Szrj 	      }
2520*fae548d3Szrj 	    else if (optimized_type != tls::TLSOPT_TO_LE)
2521*fae548d3Szrj 	      unsupported_reloc_global(object, r_type, gsym);
2522*fae548d3Szrj 	    break;
2523*fae548d3Szrj 
2524*fae548d3Szrj 	  case elfcpp::R_386_TLS_LDO_32:      // Alternate local-dynamic
2525*fae548d3Szrj 	    break;
2526*fae548d3Szrj 
2527*fae548d3Szrj 	  case elfcpp::R_386_TLS_IE:          // Initial-exec
2528*fae548d3Szrj 	  case elfcpp::R_386_TLS_IE_32:
2529*fae548d3Szrj 	  case elfcpp::R_386_TLS_GOTIE:
2530*fae548d3Szrj 	    layout->set_has_static_tls();
2531*fae548d3Szrj 	    if (optimized_type == tls::TLSOPT_NONE)
2532*fae548d3Szrj 	      {
2533*fae548d3Szrj 		// For the R_386_TLS_IE relocation, we need to create a
2534*fae548d3Szrj 		// dynamic relocation when building a shared library.
2535*fae548d3Szrj 		if (r_type == elfcpp::R_386_TLS_IE
2536*fae548d3Szrj 		    && parameters->options().shared())
2537*fae548d3Szrj 		  {
2538*fae548d3Szrj 		    Reloc_section* rel_dyn = target->rel_dyn_section(layout);
2539*fae548d3Szrj 		    rel_dyn->add_global_relative(gsym, elfcpp::R_386_RELATIVE,
2540*fae548d3Szrj 						 output_section, object,
2541*fae548d3Szrj 						 data_shndx,
2542*fae548d3Szrj 						 reloc.get_r_offset());
2543*fae548d3Szrj 		  }
2544*fae548d3Szrj 		// Create a GOT entry for the tp-relative offset.
2545*fae548d3Szrj 		Output_data_got<32, false>* got
2546*fae548d3Szrj 		    = target->got_section(symtab, layout);
2547*fae548d3Szrj 		unsigned int dyn_r_type = (r_type == elfcpp::R_386_TLS_IE_32
2548*fae548d3Szrj 					   ? elfcpp::R_386_TLS_TPOFF32
2549*fae548d3Szrj 					   : elfcpp::R_386_TLS_TPOFF);
2550*fae548d3Szrj 		unsigned int got_type = (r_type == elfcpp::R_386_TLS_IE_32
2551*fae548d3Szrj 					 ? GOT_TYPE_TLS_OFFSET
2552*fae548d3Szrj 					 : GOT_TYPE_TLS_NOFFSET);
2553*fae548d3Szrj 		got->add_global_with_rel(gsym, got_type,
2554*fae548d3Szrj 					 target->rel_dyn_section(layout),
2555*fae548d3Szrj 					 dyn_r_type);
2556*fae548d3Szrj 	      }
2557*fae548d3Szrj 	    else if (optimized_type != tls::TLSOPT_TO_LE)
2558*fae548d3Szrj 	      unsupported_reloc_global(object, r_type, gsym);
2559*fae548d3Szrj 	    break;
2560*fae548d3Szrj 
2561*fae548d3Szrj 	  case elfcpp::R_386_TLS_LE:          // Local-exec
2562*fae548d3Szrj 	  case elfcpp::R_386_TLS_LE_32:
2563*fae548d3Szrj 	    layout->set_has_static_tls();
2564*fae548d3Szrj 	    if (parameters->options().shared())
2565*fae548d3Szrj 	      {
2566*fae548d3Szrj 		// We need to create a dynamic relocation.
2567*fae548d3Szrj 		unsigned int dyn_r_type = (r_type == elfcpp::R_386_TLS_LE_32
2568*fae548d3Szrj 					   ? elfcpp::R_386_TLS_TPOFF32
2569*fae548d3Szrj 					   : elfcpp::R_386_TLS_TPOFF);
2570*fae548d3Szrj 		Reloc_section* rel_dyn = target->rel_dyn_section(layout);
2571*fae548d3Szrj 		rel_dyn->add_global(gsym, dyn_r_type, output_section, object,
2572*fae548d3Szrj 				    data_shndx, reloc.get_r_offset());
2573*fae548d3Szrj 	      }
2574*fae548d3Szrj 	    break;
2575*fae548d3Szrj 
2576*fae548d3Szrj 	  default:
2577*fae548d3Szrj 	    gold_unreachable();
2578*fae548d3Szrj 	  }
2579*fae548d3Szrj       }
2580*fae548d3Szrj       break;
2581*fae548d3Szrj 
2582*fae548d3Szrj     case elfcpp::R_386_32PLT:
2583*fae548d3Szrj     case elfcpp::R_386_TLS_GD_32:
2584*fae548d3Szrj     case elfcpp::R_386_TLS_GD_PUSH:
2585*fae548d3Szrj     case elfcpp::R_386_TLS_GD_CALL:
2586*fae548d3Szrj     case elfcpp::R_386_TLS_GD_POP:
2587*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_32:
2588*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_PUSH:
2589*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_CALL:
2590*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_POP:
2591*fae548d3Szrj     case elfcpp::R_386_USED_BY_INTEL_200:
2592*fae548d3Szrj     default:
2593*fae548d3Szrj       unsupported_reloc_global(object, r_type, gsym);
2594*fae548d3Szrj       break;
2595*fae548d3Szrj     }
2596*fae548d3Szrj }
2597*fae548d3Szrj 
2598*fae548d3Szrj // Process relocations for gc.
2599*fae548d3Szrj 
2600*fae548d3Szrj void
gc_process_relocs(Symbol_table * symtab,Layout * layout,Sized_relobj_file<32,false> * object,unsigned int data_shndx,unsigned int,const unsigned char * prelocs,size_t reloc_count,Output_section * output_section,bool needs_special_offset_handling,size_t local_symbol_count,const unsigned char * plocal_symbols)2601*fae548d3Szrj Target_i386::gc_process_relocs(Symbol_table* symtab,
2602*fae548d3Szrj 				      Layout* layout,
2603*fae548d3Szrj 				      Sized_relobj_file<32, false>* object,
2604*fae548d3Szrj 				      unsigned int data_shndx,
2605*fae548d3Szrj 				      unsigned int,
2606*fae548d3Szrj 				      const unsigned char* prelocs,
2607*fae548d3Szrj 				      size_t reloc_count,
2608*fae548d3Szrj 				      Output_section* output_section,
2609*fae548d3Szrj 				      bool needs_special_offset_handling,
2610*fae548d3Szrj 				      size_t local_symbol_count,
2611*fae548d3Szrj 				      const unsigned char* plocal_symbols)
2612*fae548d3Szrj {
2613*fae548d3Szrj   gold::gc_process_relocs<32, false, Target_i386, Scan, Classify_reloc>(
2614*fae548d3Szrj     symtab,
2615*fae548d3Szrj     layout,
2616*fae548d3Szrj     this,
2617*fae548d3Szrj     object,
2618*fae548d3Szrj     data_shndx,
2619*fae548d3Szrj     prelocs,
2620*fae548d3Szrj     reloc_count,
2621*fae548d3Szrj     output_section,
2622*fae548d3Szrj     needs_special_offset_handling,
2623*fae548d3Szrj     local_symbol_count,
2624*fae548d3Szrj     plocal_symbols);
2625*fae548d3Szrj }
2626*fae548d3Szrj 
2627*fae548d3Szrj // Scan relocations for a section.
2628*fae548d3Szrj 
2629*fae548d3Szrj void
scan_relocs(Symbol_table * symtab,Layout * layout,Sized_relobj_file<32,false> * object,unsigned int data_shndx,unsigned int sh_type,const unsigned char * prelocs,size_t reloc_count,Output_section * output_section,bool needs_special_offset_handling,size_t local_symbol_count,const unsigned char * plocal_symbols)2630*fae548d3Szrj Target_i386::scan_relocs(Symbol_table* symtab,
2631*fae548d3Szrj 				Layout* layout,
2632*fae548d3Szrj 				Sized_relobj_file<32, false>* object,
2633*fae548d3Szrj 				unsigned int data_shndx,
2634*fae548d3Szrj 				unsigned int sh_type,
2635*fae548d3Szrj 				const unsigned char* prelocs,
2636*fae548d3Szrj 				size_t reloc_count,
2637*fae548d3Szrj 				Output_section* output_section,
2638*fae548d3Szrj 				bool needs_special_offset_handling,
2639*fae548d3Szrj 				size_t local_symbol_count,
2640*fae548d3Szrj 				const unsigned char* plocal_symbols)
2641*fae548d3Szrj {
2642*fae548d3Szrj   if (sh_type == elfcpp::SHT_RELA)
2643*fae548d3Szrj     {
2644*fae548d3Szrj       gold_error(_("%s: unsupported RELA reloc section"),
2645*fae548d3Szrj 		 object->name().c_str());
2646*fae548d3Szrj       return;
2647*fae548d3Szrj     }
2648*fae548d3Szrj 
2649*fae548d3Szrj   gold::scan_relocs<32, false, Target_i386, Scan, Classify_reloc>(
2650*fae548d3Szrj     symtab,
2651*fae548d3Szrj     layout,
2652*fae548d3Szrj     this,
2653*fae548d3Szrj     object,
2654*fae548d3Szrj     data_shndx,
2655*fae548d3Szrj     prelocs,
2656*fae548d3Szrj     reloc_count,
2657*fae548d3Szrj     output_section,
2658*fae548d3Szrj     needs_special_offset_handling,
2659*fae548d3Szrj     local_symbol_count,
2660*fae548d3Szrj     plocal_symbols);
2661*fae548d3Szrj }
2662*fae548d3Szrj 
2663*fae548d3Szrj // Finalize the sections.
2664*fae548d3Szrj 
2665*fae548d3Szrj void
do_finalize_sections(Layout * layout,const Input_objects *,Symbol_table * symtab)2666*fae548d3Szrj Target_i386::do_finalize_sections(
2667*fae548d3Szrj     Layout* layout,
2668*fae548d3Szrj     const Input_objects*,
2669*fae548d3Szrj     Symbol_table* symtab)
2670*fae548d3Szrj {
2671*fae548d3Szrj   const Reloc_section* rel_plt = (this->plt_ == NULL
2672*fae548d3Szrj 				  ? NULL
2673*fae548d3Szrj 				  : this->plt_->rel_plt());
2674*fae548d3Szrj   layout->add_target_dynamic_tags(true, this->got_plt_, rel_plt,
2675*fae548d3Szrj 				  this->rel_dyn_, true, false);
2676*fae548d3Szrj 
2677*fae548d3Szrj   // Emit any relocs we saved in an attempt to avoid generating COPY
2678*fae548d3Szrj   // relocs.
2679*fae548d3Szrj   if (this->copy_relocs_.any_saved_relocs())
2680*fae548d3Szrj     this->copy_relocs_.emit(this->rel_dyn_section(layout));
2681*fae548d3Szrj 
2682*fae548d3Szrj   // Set the size of the _GLOBAL_OFFSET_TABLE_ symbol to the size of
2683*fae548d3Szrj   // the .got.plt section.
2684*fae548d3Szrj   Symbol* sym = this->global_offset_table_;
2685*fae548d3Szrj   if (sym != NULL)
2686*fae548d3Szrj     {
2687*fae548d3Szrj       uint32_t data_size = this->got_plt_->current_data_size();
2688*fae548d3Szrj       symtab->get_sized_symbol<32>(sym)->set_symsize(data_size);
2689*fae548d3Szrj     }
2690*fae548d3Szrj 
2691*fae548d3Szrj   if (parameters->doing_static_link()
2692*fae548d3Szrj       && (this->plt_ == NULL || !this->plt_->has_irelative_section()))
2693*fae548d3Szrj     {
2694*fae548d3Szrj       // If linking statically, make sure that the __rel_iplt symbols
2695*fae548d3Szrj       // were defined if necessary, even if we didn't create a PLT.
2696*fae548d3Szrj       static const Define_symbol_in_segment syms[] =
2697*fae548d3Szrj 	{
2698*fae548d3Szrj 	  {
2699*fae548d3Szrj 	    "__rel_iplt_start",		// name
2700*fae548d3Szrj 	    elfcpp::PT_LOAD,		// segment_type
2701*fae548d3Szrj 	    elfcpp::PF_W,		// segment_flags_set
2702*fae548d3Szrj 	    elfcpp::PF(0),		// segment_flags_clear
2703*fae548d3Szrj 	    0,				// value
2704*fae548d3Szrj 	    0,				// size
2705*fae548d3Szrj 	    elfcpp::STT_NOTYPE,		// type
2706*fae548d3Szrj 	    elfcpp::STB_GLOBAL,		// binding
2707*fae548d3Szrj 	    elfcpp::STV_HIDDEN,		// visibility
2708*fae548d3Szrj 	    0,				// nonvis
2709*fae548d3Szrj 	    Symbol::SEGMENT_START,	// offset_from_base
2710*fae548d3Szrj 	    true			// only_if_ref
2711*fae548d3Szrj 	  },
2712*fae548d3Szrj 	  {
2713*fae548d3Szrj 	    "__rel_iplt_end",		// name
2714*fae548d3Szrj 	    elfcpp::PT_LOAD,		// segment_type
2715*fae548d3Szrj 	    elfcpp::PF_W,		// segment_flags_set
2716*fae548d3Szrj 	    elfcpp::PF(0),		// segment_flags_clear
2717*fae548d3Szrj 	    0,				// value
2718*fae548d3Szrj 	    0,				// size
2719*fae548d3Szrj 	    elfcpp::STT_NOTYPE,		// type
2720*fae548d3Szrj 	    elfcpp::STB_GLOBAL,		// binding
2721*fae548d3Szrj 	    elfcpp::STV_HIDDEN,		// visibility
2722*fae548d3Szrj 	    0,				// nonvis
2723*fae548d3Szrj 	    Symbol::SEGMENT_START,	// offset_from_base
2724*fae548d3Szrj 	    true			// only_if_ref
2725*fae548d3Szrj 	  }
2726*fae548d3Szrj 	};
2727*fae548d3Szrj 
2728*fae548d3Szrj       symtab->define_symbols(layout, 2, syms,
2729*fae548d3Szrj 			     layout->script_options()->saw_sections_clause());
2730*fae548d3Szrj     }
2731*fae548d3Szrj }
2732*fae548d3Szrj 
2733*fae548d3Szrj // Return whether a direct absolute static relocation needs to be applied.
2734*fae548d3Szrj // In cases where Scan::local() or Scan::global() has created
2735*fae548d3Szrj // a dynamic relocation other than R_386_RELATIVE, the addend
2736*fae548d3Szrj // of the relocation is carried in the data, and we must not
2737*fae548d3Szrj // apply the static relocation.
2738*fae548d3Szrj 
2739*fae548d3Szrj inline bool
should_apply_static_reloc(const Sized_symbol<32> * gsym,unsigned int r_type,bool is_32bit,Output_section * output_section)2740*fae548d3Szrj Target_i386::Relocate::should_apply_static_reloc(const Sized_symbol<32>* gsym,
2741*fae548d3Szrj 						 unsigned int r_type,
2742*fae548d3Szrj 						 bool is_32bit,
2743*fae548d3Szrj 						 Output_section* output_section)
2744*fae548d3Szrj {
2745*fae548d3Szrj   // If the output section is not allocated, then we didn't call
2746*fae548d3Szrj   // scan_relocs, we didn't create a dynamic reloc, and we must apply
2747*fae548d3Szrj   // the reloc here.
2748*fae548d3Szrj   if ((output_section->flags() & elfcpp::SHF_ALLOC) == 0)
2749*fae548d3Szrj     return true;
2750*fae548d3Szrj 
2751*fae548d3Szrj   int ref_flags = Scan::get_reference_flags(r_type);
2752*fae548d3Szrj 
2753*fae548d3Szrj   // For local symbols, we will have created a non-RELATIVE dynamic
2754*fae548d3Szrj   // relocation only if (a) the output is position independent,
2755*fae548d3Szrj   // (b) the relocation is absolute (not pc- or segment-relative), and
2756*fae548d3Szrj   // (c) the relocation is not 32 bits wide.
2757*fae548d3Szrj   if (gsym == NULL)
2758*fae548d3Szrj     return !(parameters->options().output_is_position_independent()
2759*fae548d3Szrj 	     && (ref_flags & Symbol::ABSOLUTE_REF)
2760*fae548d3Szrj 	     && !is_32bit);
2761*fae548d3Szrj 
2762*fae548d3Szrj   // For global symbols, we use the same helper routines used in the
2763*fae548d3Szrj   // scan pass.  If we did not create a dynamic relocation, or if we
2764*fae548d3Szrj   // created a RELATIVE dynamic relocation, we should apply the static
2765*fae548d3Szrj   // relocation.
2766*fae548d3Szrj   bool has_dyn = gsym->needs_dynamic_reloc(ref_flags);
2767*fae548d3Szrj   bool is_rel = (ref_flags & Symbol::ABSOLUTE_REF)
2768*fae548d3Szrj 		&& gsym->can_use_relative_reloc(ref_flags
2769*fae548d3Szrj 						& Symbol::FUNCTION_CALL);
2770*fae548d3Szrj   return !has_dyn || is_rel;
2771*fae548d3Szrj }
2772*fae548d3Szrj 
2773*fae548d3Szrj // Perform a relocation.
2774*fae548d3Szrj 
2775*fae548d3Szrj inline bool
relocate(const Relocate_info<32,false> * relinfo,unsigned int,Target_i386 * target,Output_section * output_section,size_t relnum,const unsigned char * preloc,const Sized_symbol<32> * gsym,const Symbol_value<32> * psymval,unsigned char * view,elfcpp::Elf_types<32>::Elf_Addr address,section_size_type view_size)2776*fae548d3Szrj Target_i386::Relocate::relocate(const Relocate_info<32, false>* relinfo,
2777*fae548d3Szrj 				unsigned int,
2778*fae548d3Szrj 				Target_i386* target,
2779*fae548d3Szrj 				Output_section* output_section,
2780*fae548d3Szrj 				size_t relnum,
2781*fae548d3Szrj 				const unsigned char* preloc,
2782*fae548d3Szrj 				const Sized_symbol<32>* gsym,
2783*fae548d3Szrj 				const Symbol_value<32>* psymval,
2784*fae548d3Szrj 				unsigned char* view,
2785*fae548d3Szrj 				elfcpp::Elf_types<32>::Elf_Addr address,
2786*fae548d3Szrj 				section_size_type view_size)
2787*fae548d3Szrj {
2788*fae548d3Szrj   const elfcpp::Rel<32, false> rel(preloc);
2789*fae548d3Szrj   unsigned int r_type = elfcpp::elf_r_type<32>(rel.get_r_info());
2790*fae548d3Szrj 
2791*fae548d3Szrj   if (this->skip_call_tls_get_addr_)
2792*fae548d3Szrj     {
2793*fae548d3Szrj       if ((r_type != elfcpp::R_386_PLT32
2794*fae548d3Szrj 	   && r_type != elfcpp::R_386_GOT32X
2795*fae548d3Szrj 	   && r_type != elfcpp::R_386_PC32)
2796*fae548d3Szrj 	  || gsym == NULL
2797*fae548d3Szrj 	  || strcmp(gsym->name(), "___tls_get_addr") != 0)
2798*fae548d3Szrj 	{
2799*fae548d3Szrj 	  gold_error_at_location(relinfo, relnum, rel.get_r_offset(),
2800*fae548d3Szrj 				 _("missing expected TLS relocation"));
2801*fae548d3Szrj 	  this->skip_call_tls_get_addr_ = false;
2802*fae548d3Szrj 	}
2803*fae548d3Szrj       else
2804*fae548d3Szrj 	{
2805*fae548d3Szrj 	  this->skip_call_tls_get_addr_ = false;
2806*fae548d3Szrj 	  return false;
2807*fae548d3Szrj 	}
2808*fae548d3Szrj     }
2809*fae548d3Szrj 
2810*fae548d3Szrj   if (view == NULL)
2811*fae548d3Szrj     return true;
2812*fae548d3Szrj 
2813*fae548d3Szrj   const Sized_relobj_file<32, false>* object = relinfo->object;
2814*fae548d3Szrj 
2815*fae548d3Szrj   // Pick the value to use for symbols defined in shared objects.
2816*fae548d3Szrj   Symbol_value<32> symval;
2817*fae548d3Szrj   if (gsym != NULL
2818*fae548d3Szrj       && gsym->type() == elfcpp::STT_GNU_IFUNC
2819*fae548d3Szrj       && r_type == elfcpp::R_386_32
2820*fae548d3Szrj       && gsym->needs_dynamic_reloc(Scan::get_reference_flags(r_type))
2821*fae548d3Szrj       && gsym->can_use_relative_reloc(false)
2822*fae548d3Szrj       && !gsym->is_from_dynobj()
2823*fae548d3Szrj       && !gsym->is_undefined()
2824*fae548d3Szrj       && !gsym->is_preemptible())
2825*fae548d3Szrj     {
2826*fae548d3Szrj       // In this case we are generating a R_386_IRELATIVE reloc.  We
2827*fae548d3Szrj       // want to use the real value of the symbol, not the PLT offset.
2828*fae548d3Szrj     }
2829*fae548d3Szrj   else if (gsym != NULL
2830*fae548d3Szrj 	   && gsym->use_plt_offset(Scan::get_reference_flags(r_type)))
2831*fae548d3Szrj     {
2832*fae548d3Szrj       symval.set_output_value(target->plt_address_for_global(gsym));
2833*fae548d3Szrj       psymval = &symval;
2834*fae548d3Szrj     }
2835*fae548d3Szrj   else if (gsym == NULL && psymval->is_ifunc_symbol())
2836*fae548d3Szrj     {
2837*fae548d3Szrj       unsigned int r_sym = elfcpp::elf_r_sym<32>(rel.get_r_info());
2838*fae548d3Szrj       if (object->local_has_plt_offset(r_sym))
2839*fae548d3Szrj 	{
2840*fae548d3Szrj 	  symval.set_output_value(target->plt_address_for_local(object, r_sym));
2841*fae548d3Szrj 	  psymval = &symval;
2842*fae548d3Szrj 	}
2843*fae548d3Szrj     }
2844*fae548d3Szrj 
2845*fae548d3Szrj   bool baseless;
2846*fae548d3Szrj 
2847*fae548d3Szrj   switch (r_type)
2848*fae548d3Szrj     {
2849*fae548d3Szrj     case elfcpp::R_386_NONE:
2850*fae548d3Szrj     case elfcpp::R_386_GNU_VTINHERIT:
2851*fae548d3Szrj     case elfcpp::R_386_GNU_VTENTRY:
2852*fae548d3Szrj       break;
2853*fae548d3Szrj 
2854*fae548d3Szrj     case elfcpp::R_386_32:
2855*fae548d3Szrj       if (should_apply_static_reloc(gsym, r_type, true, output_section))
2856*fae548d3Szrj 	Relocate_functions<32, false>::rel32(view, object, psymval);
2857*fae548d3Szrj       break;
2858*fae548d3Szrj 
2859*fae548d3Szrj     case elfcpp::R_386_PC32:
2860*fae548d3Szrj       if (should_apply_static_reloc(gsym, r_type, true, output_section))
2861*fae548d3Szrj 	Relocate_functions<32, false>::pcrel32(view, object, psymval, address);
2862*fae548d3Szrj       break;
2863*fae548d3Szrj 
2864*fae548d3Szrj     case elfcpp::R_386_16:
2865*fae548d3Szrj       if (should_apply_static_reloc(gsym, r_type, false, output_section))
2866*fae548d3Szrj 	Relocate_functions<32, false>::rel16(view, object, psymval);
2867*fae548d3Szrj       break;
2868*fae548d3Szrj 
2869*fae548d3Szrj     case elfcpp::R_386_PC16:
2870*fae548d3Szrj       if (should_apply_static_reloc(gsym, r_type, false, output_section))
2871*fae548d3Szrj 	Relocate_functions<32, false>::pcrel16(view, object, psymval, address);
2872*fae548d3Szrj       break;
2873*fae548d3Szrj 
2874*fae548d3Szrj     case elfcpp::R_386_8:
2875*fae548d3Szrj       if (should_apply_static_reloc(gsym, r_type, false, output_section))
2876*fae548d3Szrj 	Relocate_functions<32, false>::rel8(view, object, psymval);
2877*fae548d3Szrj       break;
2878*fae548d3Szrj 
2879*fae548d3Szrj     case elfcpp::R_386_PC8:
2880*fae548d3Szrj       if (should_apply_static_reloc(gsym, r_type, false, output_section))
2881*fae548d3Szrj 	Relocate_functions<32, false>::pcrel8(view, object, psymval, address);
2882*fae548d3Szrj       break;
2883*fae548d3Szrj 
2884*fae548d3Szrj     case elfcpp::R_386_PLT32:
2885*fae548d3Szrj       gold_assert(gsym == NULL
2886*fae548d3Szrj 		  || gsym->has_plt_offset()
2887*fae548d3Szrj 		  || gsym->final_value_is_known()
2888*fae548d3Szrj 		  || (gsym->is_defined()
2889*fae548d3Szrj 		      && !gsym->is_from_dynobj()
2890*fae548d3Szrj 		      && !gsym->is_preemptible()));
2891*fae548d3Szrj       Relocate_functions<32, false>::pcrel32(view, object, psymval, address);
2892*fae548d3Szrj       break;
2893*fae548d3Szrj 
2894*fae548d3Szrj     case elfcpp::R_386_GOT32:
2895*fae548d3Szrj     case elfcpp::R_386_GOT32X:
2896*fae548d3Szrj       baseless = (view[-1] & 0xc7) == 0x5;
2897*fae548d3Szrj       // R_386_GOT32 and R_386_GOT32X don't work without base register
2898*fae548d3Szrj       // when generating a position-independent output file.
2899*fae548d3Szrj       if (baseless
2900*fae548d3Szrj 	  && parameters->options().output_is_position_independent())
2901*fae548d3Szrj 	{
2902*fae548d3Szrj 	  if(gsym)
2903*fae548d3Szrj 	    gold_error_at_location(relinfo, relnum, rel.get_r_offset(),
2904*fae548d3Szrj 				   _("unexpected reloc %u against global symbol %s without base register in object file when generating a position-independent output file"),
2905*fae548d3Szrj 				   r_type, gsym->demangled_name().c_str());
2906*fae548d3Szrj 	  else
2907*fae548d3Szrj 	    gold_error_at_location(relinfo, relnum, rel.get_r_offset(),
2908*fae548d3Szrj 				   _("unexpected reloc %u against local symbol without base register in object file when generating a position-independent output file"),
2909*fae548d3Szrj 				   r_type);
2910*fae548d3Szrj 	}
2911*fae548d3Szrj 
2912*fae548d3Szrj       // Convert
2913*fae548d3Szrj       // mov foo@GOT(%reg), %reg
2914*fae548d3Szrj       // to
2915*fae548d3Szrj       // lea foo@GOTOFF(%reg), %reg
2916*fae548d3Szrj       // if possible.
2917*fae548d3Szrj       if (rel.get_r_offset() >= 2
2918*fae548d3Szrj 	  && view[-2] == 0x8b
2919*fae548d3Szrj 	  && ((gsym == NULL && !psymval->is_ifunc_symbol())
2920*fae548d3Szrj 	      || (gsym != NULL
2921*fae548d3Szrj 		  && Target_i386::can_convert_mov_to_lea(gsym))))
2922*fae548d3Szrj 	{
2923*fae548d3Szrj 	  view[-2] = 0x8d;
2924*fae548d3Szrj 	  elfcpp::Elf_types<32>::Elf_Addr value;
2925*fae548d3Szrj 	  value = psymval->value(object, 0);
2926*fae548d3Szrj 	  // Don't subtract the .got.plt section address for baseless
2927*fae548d3Szrj 	  // addressing.
2928*fae548d3Szrj 	  if (!baseless)
2929*fae548d3Szrj 	    value -= target->got_plt_section()->address();
2930*fae548d3Szrj 	  Relocate_functions<32, false>::rel32(view, value);
2931*fae548d3Szrj 	}
2932*fae548d3Szrj       else
2933*fae548d3Szrj 	{
2934*fae548d3Szrj 	  // The GOT pointer points to the end of the GOT section.
2935*fae548d3Szrj 	  // We need to subtract the size of the GOT section to get
2936*fae548d3Szrj 	  // the actual offset to use in the relocation.
2937*fae548d3Szrj 	  unsigned int got_offset = 0;
2938*fae548d3Szrj 	  if (gsym != NULL)
2939*fae548d3Szrj 	    {
2940*fae548d3Szrj 	      gold_assert(gsym->has_got_offset(GOT_TYPE_STANDARD));
2941*fae548d3Szrj 	      got_offset = (gsym->got_offset(GOT_TYPE_STANDARD)
2942*fae548d3Szrj 			    - target->got_size());
2943*fae548d3Szrj 	    }
2944*fae548d3Szrj 	  else
2945*fae548d3Szrj 	    {
2946*fae548d3Szrj 	      unsigned int r_sym = elfcpp::elf_r_sym<32>(rel.get_r_info());
2947*fae548d3Szrj 	      gold_assert(object->local_has_got_offset(r_sym, GOT_TYPE_STANDARD));
2948*fae548d3Szrj 	      got_offset = (object->local_got_offset(r_sym, GOT_TYPE_STANDARD)
2949*fae548d3Szrj 			    - target->got_size());
2950*fae548d3Szrj 	    }
2951*fae548d3Szrj 	  // Add the .got.plt section address for baseless addressing.
2952*fae548d3Szrj 	  if (baseless)
2953*fae548d3Szrj 	    got_offset += target->got_plt_section()->address();
2954*fae548d3Szrj 	  Relocate_functions<32, false>::rel32(view, got_offset);
2955*fae548d3Szrj 	}
2956*fae548d3Szrj       break;
2957*fae548d3Szrj 
2958*fae548d3Szrj     case elfcpp::R_386_GOTOFF:
2959*fae548d3Szrj       {
2960*fae548d3Szrj 	elfcpp::Elf_types<32>::Elf_Addr reladdr;
2961*fae548d3Szrj 	reladdr = target->got_plt_section()->address();
2962*fae548d3Szrj 	Relocate_functions<32, false>::pcrel32(view, object, psymval, reladdr);
2963*fae548d3Szrj       }
2964*fae548d3Szrj       break;
2965*fae548d3Szrj 
2966*fae548d3Szrj     case elfcpp::R_386_GOTPC:
2967*fae548d3Szrj       {
2968*fae548d3Szrj 	elfcpp::Elf_types<32>::Elf_Addr value;
2969*fae548d3Szrj 	value = target->got_plt_section()->address();
2970*fae548d3Szrj 	Relocate_functions<32, false>::pcrel32(view, value, address);
2971*fae548d3Szrj       }
2972*fae548d3Szrj       break;
2973*fae548d3Szrj 
2974*fae548d3Szrj     case elfcpp::R_386_COPY:
2975*fae548d3Szrj     case elfcpp::R_386_GLOB_DAT:
2976*fae548d3Szrj     case elfcpp::R_386_JUMP_SLOT:
2977*fae548d3Szrj     case elfcpp::R_386_RELATIVE:
2978*fae548d3Szrj     case elfcpp::R_386_IRELATIVE:
2979*fae548d3Szrj       // These are outstanding tls relocs, which are unexpected when
2980*fae548d3Szrj       // linking.
2981*fae548d3Szrj     case elfcpp::R_386_TLS_TPOFF:
2982*fae548d3Szrj     case elfcpp::R_386_TLS_DTPMOD32:
2983*fae548d3Szrj     case elfcpp::R_386_TLS_DTPOFF32:
2984*fae548d3Szrj     case elfcpp::R_386_TLS_TPOFF32:
2985*fae548d3Szrj     case elfcpp::R_386_TLS_DESC:
2986*fae548d3Szrj       gold_error_at_location(relinfo, relnum, rel.get_r_offset(),
2987*fae548d3Szrj 			     _("unexpected reloc %u in object file"),
2988*fae548d3Szrj 			     r_type);
2989*fae548d3Szrj       break;
2990*fae548d3Szrj 
2991*fae548d3Szrj       // These are initial tls relocs, which are expected when
2992*fae548d3Szrj       // linking.
2993*fae548d3Szrj     case elfcpp::R_386_TLS_GD:             // Global-dynamic
2994*fae548d3Szrj     case elfcpp::R_386_TLS_GOTDESC:        // Global-dynamic (from ~oliva url)
2995*fae548d3Szrj     case elfcpp::R_386_TLS_DESC_CALL:
2996*fae548d3Szrj     case elfcpp::R_386_TLS_LDM:            // Local-dynamic
2997*fae548d3Szrj     case elfcpp::R_386_TLS_LDO_32:         // Alternate local-dynamic
2998*fae548d3Szrj     case elfcpp::R_386_TLS_IE:             // Initial-exec
2999*fae548d3Szrj     case elfcpp::R_386_TLS_IE_32:
3000*fae548d3Szrj     case elfcpp::R_386_TLS_GOTIE:
3001*fae548d3Szrj     case elfcpp::R_386_TLS_LE:             // Local-exec
3002*fae548d3Szrj     case elfcpp::R_386_TLS_LE_32:
3003*fae548d3Szrj       this->relocate_tls(relinfo, target, relnum, rel, r_type, gsym, psymval,
3004*fae548d3Szrj 			 view, address, view_size);
3005*fae548d3Szrj       break;
3006*fae548d3Szrj 
3007*fae548d3Szrj     case elfcpp::R_386_32PLT:
3008*fae548d3Szrj     case elfcpp::R_386_TLS_GD_32:
3009*fae548d3Szrj     case elfcpp::R_386_TLS_GD_PUSH:
3010*fae548d3Szrj     case elfcpp::R_386_TLS_GD_CALL:
3011*fae548d3Szrj     case elfcpp::R_386_TLS_GD_POP:
3012*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_32:
3013*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_PUSH:
3014*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_CALL:
3015*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_POP:
3016*fae548d3Szrj     case elfcpp::R_386_USED_BY_INTEL_200:
3017*fae548d3Szrj     default:
3018*fae548d3Szrj       gold_error_at_location(relinfo, relnum, rel.get_r_offset(),
3019*fae548d3Szrj 			     _("unsupported reloc %u"),
3020*fae548d3Szrj 			     r_type);
3021*fae548d3Szrj       break;
3022*fae548d3Szrj     }
3023*fae548d3Szrj 
3024*fae548d3Szrj   return true;
3025*fae548d3Szrj }
3026*fae548d3Szrj 
3027*fae548d3Szrj // Perform a TLS relocation.
3028*fae548d3Szrj 
3029*fae548d3Szrj inline void
relocate_tls(const Relocate_info<32,false> * relinfo,Target_i386 * target,size_t relnum,const elfcpp::Rel<32,false> & rel,unsigned int r_type,const Sized_symbol<32> * gsym,const Symbol_value<32> * psymval,unsigned char * view,elfcpp::Elf_types<32>::Elf_Addr,section_size_type view_size)3030*fae548d3Szrj Target_i386::Relocate::relocate_tls(const Relocate_info<32, false>* relinfo,
3031*fae548d3Szrj 				    Target_i386* target,
3032*fae548d3Szrj 				    size_t relnum,
3033*fae548d3Szrj 				    const elfcpp::Rel<32, false>& rel,
3034*fae548d3Szrj 				    unsigned int r_type,
3035*fae548d3Szrj 				    const Sized_symbol<32>* gsym,
3036*fae548d3Szrj 				    const Symbol_value<32>* psymval,
3037*fae548d3Szrj 				    unsigned char* view,
3038*fae548d3Szrj 				    elfcpp::Elf_types<32>::Elf_Addr,
3039*fae548d3Szrj 				    section_size_type view_size)
3040*fae548d3Szrj {
3041*fae548d3Szrj   Output_segment* tls_segment = relinfo->layout->tls_segment();
3042*fae548d3Szrj 
3043*fae548d3Szrj   const Sized_relobj_file<32, false>* object = relinfo->object;
3044*fae548d3Szrj 
3045*fae548d3Szrj   elfcpp::Elf_types<32>::Elf_Addr value = psymval->value(object, 0);
3046*fae548d3Szrj 
3047*fae548d3Szrj   const bool is_final = (gsym == NULL
3048*fae548d3Szrj 			 ? !parameters->options().shared()
3049*fae548d3Szrj 			 : gsym->final_value_is_known());
3050*fae548d3Szrj   const tls::Tls_optimization optimized_type
3051*fae548d3Szrj       = Target_i386::optimize_tls_reloc(is_final, r_type);
3052*fae548d3Szrj   switch (r_type)
3053*fae548d3Szrj     {
3054*fae548d3Szrj     case elfcpp::R_386_TLS_GD:           // Global-dynamic
3055*fae548d3Szrj       if (optimized_type == tls::TLSOPT_TO_LE)
3056*fae548d3Szrj 	{
3057*fae548d3Szrj 	  if (tls_segment == NULL)
3058*fae548d3Szrj 	    {
3059*fae548d3Szrj 	      gold_assert(parameters->errors()->error_count() > 0
3060*fae548d3Szrj 			  || issue_undefined_symbol_error(gsym));
3061*fae548d3Szrj 	      return;
3062*fae548d3Szrj 	    }
3063*fae548d3Szrj 	  this->tls_gd_to_le(relinfo, relnum, tls_segment,
3064*fae548d3Szrj 			     rel, r_type, value, view,
3065*fae548d3Szrj 			     view_size);
3066*fae548d3Szrj 	  break;
3067*fae548d3Szrj 	}
3068*fae548d3Szrj       else
3069*fae548d3Szrj 	{
3070*fae548d3Szrj 	  unsigned int got_type = (optimized_type == tls::TLSOPT_TO_IE
3071*fae548d3Szrj 				   ? GOT_TYPE_TLS_NOFFSET
3072*fae548d3Szrj 				   : GOT_TYPE_TLS_PAIR);
3073*fae548d3Szrj 	  unsigned int got_offset;
3074*fae548d3Szrj 	  if (gsym != NULL)
3075*fae548d3Szrj 	    {
3076*fae548d3Szrj 	      gold_assert(gsym->has_got_offset(got_type));
3077*fae548d3Szrj 	      got_offset = gsym->got_offset(got_type) - target->got_size();
3078*fae548d3Szrj 	    }
3079*fae548d3Szrj 	  else
3080*fae548d3Szrj 	    {
3081*fae548d3Szrj 	      unsigned int r_sym = elfcpp::elf_r_sym<32>(rel.get_r_info());
3082*fae548d3Szrj 	      gold_assert(object->local_has_got_offset(r_sym, got_type));
3083*fae548d3Szrj 	      got_offset = (object->local_got_offset(r_sym, got_type)
3084*fae548d3Szrj 			    - target->got_size());
3085*fae548d3Szrj 	    }
3086*fae548d3Szrj 	  if (optimized_type == tls::TLSOPT_TO_IE)
3087*fae548d3Szrj 	    {
3088*fae548d3Szrj 	      this->tls_gd_to_ie(relinfo, relnum, rel, r_type,
3089*fae548d3Szrj 				 got_offset, view, view_size);
3090*fae548d3Szrj 	      break;
3091*fae548d3Szrj 	    }
3092*fae548d3Szrj 	  else if (optimized_type == tls::TLSOPT_NONE)
3093*fae548d3Szrj 	    {
3094*fae548d3Szrj 	      // Relocate the field with the offset of the pair of GOT
3095*fae548d3Szrj 	      // entries.
3096*fae548d3Szrj 	      Relocate_functions<32, false>::rel32(view, got_offset);
3097*fae548d3Szrj 	      break;
3098*fae548d3Szrj 	    }
3099*fae548d3Szrj 	}
3100*fae548d3Szrj       gold_error_at_location(relinfo, relnum, rel.get_r_offset(),
3101*fae548d3Szrj 			     _("unsupported reloc %u"),
3102*fae548d3Szrj 			     r_type);
3103*fae548d3Szrj       break;
3104*fae548d3Szrj 
3105*fae548d3Szrj     case elfcpp::R_386_TLS_GOTDESC:      // Global-dynamic (from ~oliva url)
3106*fae548d3Szrj     case elfcpp::R_386_TLS_DESC_CALL:
3107*fae548d3Szrj       this->local_dynamic_type_ = LOCAL_DYNAMIC_GNU;
3108*fae548d3Szrj       if (optimized_type == tls::TLSOPT_TO_LE)
3109*fae548d3Szrj 	{
3110*fae548d3Szrj 	  if (tls_segment == NULL)
3111*fae548d3Szrj 	    {
3112*fae548d3Szrj 	      gold_assert(parameters->errors()->error_count() > 0
3113*fae548d3Szrj 			  || issue_undefined_symbol_error(gsym));
3114*fae548d3Szrj 	      return;
3115*fae548d3Szrj 	    }
3116*fae548d3Szrj 	  this->tls_desc_gd_to_le(relinfo, relnum, tls_segment,
3117*fae548d3Szrj 				  rel, r_type, value, view,
3118*fae548d3Szrj 				  view_size);
3119*fae548d3Szrj 	  break;
3120*fae548d3Szrj 	}
3121*fae548d3Szrj       else
3122*fae548d3Szrj 	{
3123*fae548d3Szrj 	  unsigned int got_type = (optimized_type == tls::TLSOPT_TO_IE
3124*fae548d3Szrj 				   ? GOT_TYPE_TLS_NOFFSET
3125*fae548d3Szrj 				   : GOT_TYPE_TLS_DESC);
3126*fae548d3Szrj 	  unsigned int got_offset = 0;
3127*fae548d3Szrj 	  if (r_type == elfcpp::R_386_TLS_GOTDESC
3128*fae548d3Szrj 	      && optimized_type == tls::TLSOPT_NONE)
3129*fae548d3Szrj 	    {
3130*fae548d3Szrj 	      // We created GOT entries in the .got.tlsdesc portion of
3131*fae548d3Szrj 	      // the .got.plt section, but the offset stored in the
3132*fae548d3Szrj 	      // symbol is the offset within .got.tlsdesc.
3133*fae548d3Szrj 	      got_offset = (target->got_size()
3134*fae548d3Szrj 			    + target->got_plt_section()->data_size());
3135*fae548d3Szrj 	    }
3136*fae548d3Szrj 	  if (gsym != NULL)
3137*fae548d3Szrj 	    {
3138*fae548d3Szrj 	      gold_assert(gsym->has_got_offset(got_type));
3139*fae548d3Szrj 	      got_offset += gsym->got_offset(got_type) - target->got_size();
3140*fae548d3Szrj 	    }
3141*fae548d3Szrj 	  else
3142*fae548d3Szrj 	    {
3143*fae548d3Szrj 	      unsigned int r_sym = elfcpp::elf_r_sym<32>(rel.get_r_info());
3144*fae548d3Szrj 	      gold_assert(object->local_has_got_offset(r_sym, got_type));
3145*fae548d3Szrj 	      got_offset += (object->local_got_offset(r_sym, got_type)
3146*fae548d3Szrj 			     - target->got_size());
3147*fae548d3Szrj 	    }
3148*fae548d3Szrj 	  if (optimized_type == tls::TLSOPT_TO_IE)
3149*fae548d3Szrj 	    {
3150*fae548d3Szrj 	      this->tls_desc_gd_to_ie(relinfo, relnum, rel, r_type,
3151*fae548d3Szrj 				      got_offset, view, view_size);
3152*fae548d3Szrj 	      break;
3153*fae548d3Szrj 	    }
3154*fae548d3Szrj 	  else if (optimized_type == tls::TLSOPT_NONE)
3155*fae548d3Szrj 	    {
3156*fae548d3Szrj 	      if (r_type == elfcpp::R_386_TLS_GOTDESC)
3157*fae548d3Szrj 		{
3158*fae548d3Szrj 		  // Relocate the field with the offset of the pair of GOT
3159*fae548d3Szrj 		  // entries.
3160*fae548d3Szrj 		  Relocate_functions<32, false>::rel32(view, got_offset);
3161*fae548d3Szrj 		}
3162*fae548d3Szrj 	      break;
3163*fae548d3Szrj 	    }
3164*fae548d3Szrj 	}
3165*fae548d3Szrj       gold_error_at_location(relinfo, relnum, rel.get_r_offset(),
3166*fae548d3Szrj 			     _("unsupported reloc %u"),
3167*fae548d3Szrj 			     r_type);
3168*fae548d3Szrj       break;
3169*fae548d3Szrj 
3170*fae548d3Szrj     case elfcpp::R_386_TLS_LDM:          // Local-dynamic
3171*fae548d3Szrj       if (this->local_dynamic_type_ == LOCAL_DYNAMIC_SUN)
3172*fae548d3Szrj 	{
3173*fae548d3Szrj 	  gold_error_at_location(relinfo, relnum, rel.get_r_offset(),
3174*fae548d3Szrj 				 _("both SUN and GNU model "
3175*fae548d3Szrj 				   "TLS relocations"));
3176*fae548d3Szrj 	  break;
3177*fae548d3Szrj 	}
3178*fae548d3Szrj       this->local_dynamic_type_ = LOCAL_DYNAMIC_GNU;
3179*fae548d3Szrj       if (optimized_type == tls::TLSOPT_TO_LE)
3180*fae548d3Szrj 	{
3181*fae548d3Szrj 	  if (tls_segment == NULL)
3182*fae548d3Szrj 	    {
3183*fae548d3Szrj 	      gold_assert(parameters->errors()->error_count() > 0
3184*fae548d3Szrj 			  || issue_undefined_symbol_error(gsym));
3185*fae548d3Szrj 	      return;
3186*fae548d3Szrj 	    }
3187*fae548d3Szrj 	  this->tls_ld_to_le(relinfo, relnum, tls_segment, rel, r_type,
3188*fae548d3Szrj 			     value, view, view_size);
3189*fae548d3Szrj 	  break;
3190*fae548d3Szrj 	}
3191*fae548d3Szrj       else if (optimized_type == tls::TLSOPT_NONE)
3192*fae548d3Szrj 	{
3193*fae548d3Szrj 	  // Relocate the field with the offset of the GOT entry for
3194*fae548d3Szrj 	  // the module index.
3195*fae548d3Szrj 	  unsigned int got_offset;
3196*fae548d3Szrj 	  got_offset = (target->got_mod_index_entry(NULL, NULL, NULL)
3197*fae548d3Szrj 			- target->got_size());
3198*fae548d3Szrj 	  Relocate_functions<32, false>::rel32(view, got_offset);
3199*fae548d3Szrj 	  break;
3200*fae548d3Szrj 	}
3201*fae548d3Szrj       gold_error_at_location(relinfo, relnum, rel.get_r_offset(),
3202*fae548d3Szrj 			     _("unsupported reloc %u"),
3203*fae548d3Szrj 			     r_type);
3204*fae548d3Szrj       break;
3205*fae548d3Szrj 
3206*fae548d3Szrj     case elfcpp::R_386_TLS_LDO_32:       // Alternate local-dynamic
3207*fae548d3Szrj       if (optimized_type == tls::TLSOPT_TO_LE)
3208*fae548d3Szrj 	{
3209*fae548d3Szrj 	  // This reloc can appear in debugging sections, in which
3210*fae548d3Szrj 	  // case we must not convert to local-exec.  We decide what
3211*fae548d3Szrj 	  // to do based on whether the section is marked as
3212*fae548d3Szrj 	  // containing executable code.  That is what the GNU linker
3213*fae548d3Szrj 	  // does as well.
3214*fae548d3Szrj 	  elfcpp::Shdr<32, false> shdr(relinfo->data_shdr);
3215*fae548d3Szrj 	  if ((shdr.get_sh_flags() & elfcpp::SHF_EXECINSTR) != 0)
3216*fae548d3Szrj 	    {
3217*fae548d3Szrj 	      if (tls_segment == NULL)
3218*fae548d3Szrj 		{
3219*fae548d3Szrj 		  gold_assert(parameters->errors()->error_count() > 0
3220*fae548d3Szrj 			      || issue_undefined_symbol_error(gsym));
3221*fae548d3Szrj 		  return;
3222*fae548d3Szrj 		}
3223*fae548d3Szrj 	      value -= tls_segment->memsz();
3224*fae548d3Szrj 	    }
3225*fae548d3Szrj 	}
3226*fae548d3Szrj       Relocate_functions<32, false>::rel32(view, value);
3227*fae548d3Szrj       break;
3228*fae548d3Szrj 
3229*fae548d3Szrj     case elfcpp::R_386_TLS_IE:           // Initial-exec
3230*fae548d3Szrj     case elfcpp::R_386_TLS_GOTIE:
3231*fae548d3Szrj     case elfcpp::R_386_TLS_IE_32:
3232*fae548d3Szrj       if (optimized_type == tls::TLSOPT_TO_LE)
3233*fae548d3Szrj 	{
3234*fae548d3Szrj 	  if (tls_segment == NULL)
3235*fae548d3Szrj 	    {
3236*fae548d3Szrj 	      gold_assert(parameters->errors()->error_count() > 0
3237*fae548d3Szrj 			  || issue_undefined_symbol_error(gsym));
3238*fae548d3Szrj 	      return;
3239*fae548d3Szrj 	    }
3240*fae548d3Szrj 	  Target_i386::Relocate::tls_ie_to_le(relinfo, relnum, tls_segment,
3241*fae548d3Szrj 					      rel, r_type, value, view,
3242*fae548d3Szrj 					      view_size);
3243*fae548d3Szrj 	  break;
3244*fae548d3Szrj 	}
3245*fae548d3Szrj       else if (optimized_type == tls::TLSOPT_NONE)
3246*fae548d3Szrj 	{
3247*fae548d3Szrj 	  // Relocate the field with the offset of the GOT entry for
3248*fae548d3Szrj 	  // the tp-relative offset of the symbol.
3249*fae548d3Szrj 	  unsigned int got_type = (r_type == elfcpp::R_386_TLS_IE_32
3250*fae548d3Szrj 				   ? GOT_TYPE_TLS_OFFSET
3251*fae548d3Szrj 				   : GOT_TYPE_TLS_NOFFSET);
3252*fae548d3Szrj 	  unsigned int got_offset;
3253*fae548d3Szrj 	  if (gsym != NULL)
3254*fae548d3Szrj 	    {
3255*fae548d3Szrj 	      gold_assert(gsym->has_got_offset(got_type));
3256*fae548d3Szrj 	      got_offset = gsym->got_offset(got_type);
3257*fae548d3Szrj 	    }
3258*fae548d3Szrj 	  else
3259*fae548d3Szrj 	    {
3260*fae548d3Szrj 	      unsigned int r_sym = elfcpp::elf_r_sym<32>(rel.get_r_info());
3261*fae548d3Szrj 	      gold_assert(object->local_has_got_offset(r_sym, got_type));
3262*fae548d3Szrj 	      got_offset = object->local_got_offset(r_sym, got_type);
3263*fae548d3Szrj 	    }
3264*fae548d3Szrj 	  // For the R_386_TLS_IE relocation, we need to apply the
3265*fae548d3Szrj 	  // absolute address of the GOT entry.
3266*fae548d3Szrj 	  if (r_type == elfcpp::R_386_TLS_IE)
3267*fae548d3Szrj 	    got_offset += target->got_plt_section()->address();
3268*fae548d3Szrj 	  // All GOT offsets are relative to the end of the GOT.
3269*fae548d3Szrj 	  got_offset -= target->got_size();
3270*fae548d3Szrj 	  Relocate_functions<32, false>::rel32(view, got_offset);
3271*fae548d3Szrj 	  break;
3272*fae548d3Szrj 	}
3273*fae548d3Szrj       gold_error_at_location(relinfo, relnum, rel.get_r_offset(),
3274*fae548d3Szrj 			     _("unsupported reloc %u"),
3275*fae548d3Szrj 			     r_type);
3276*fae548d3Szrj       break;
3277*fae548d3Szrj 
3278*fae548d3Szrj     case elfcpp::R_386_TLS_LE:           // Local-exec
3279*fae548d3Szrj       // If we're creating a shared library, a dynamic relocation will
3280*fae548d3Szrj       // have been created for this location, so do not apply it now.
3281*fae548d3Szrj       if (!parameters->options().shared())
3282*fae548d3Szrj 	{
3283*fae548d3Szrj 	  if (tls_segment == NULL)
3284*fae548d3Szrj 	    {
3285*fae548d3Szrj 	      gold_assert(parameters->errors()->error_count() > 0
3286*fae548d3Szrj 			  || issue_undefined_symbol_error(gsym));
3287*fae548d3Szrj 	      return;
3288*fae548d3Szrj 	    }
3289*fae548d3Szrj 	  value -= tls_segment->memsz();
3290*fae548d3Szrj 	  Relocate_functions<32, false>::rel32(view, value);
3291*fae548d3Szrj 	}
3292*fae548d3Szrj       break;
3293*fae548d3Szrj 
3294*fae548d3Szrj     case elfcpp::R_386_TLS_LE_32:
3295*fae548d3Szrj       // If we're creating a shared library, a dynamic relocation will
3296*fae548d3Szrj       // have been created for this location, so do not apply it now.
3297*fae548d3Szrj       if (!parameters->options().shared())
3298*fae548d3Szrj 	{
3299*fae548d3Szrj 	  if (tls_segment == NULL)
3300*fae548d3Szrj 	    {
3301*fae548d3Szrj 	      gold_assert(parameters->errors()->error_count() > 0
3302*fae548d3Szrj 			  || issue_undefined_symbol_error(gsym));
3303*fae548d3Szrj 	      return;
3304*fae548d3Szrj 	    }
3305*fae548d3Szrj 	  value = tls_segment->memsz() - value;
3306*fae548d3Szrj 	  Relocate_functions<32, false>::rel32(view, value);
3307*fae548d3Szrj 	}
3308*fae548d3Szrj       break;
3309*fae548d3Szrj     }
3310*fae548d3Szrj }
3311*fae548d3Szrj 
3312*fae548d3Szrj // Do a relocation in which we convert a TLS General-Dynamic to a
3313*fae548d3Szrj // Local-Exec.
3314*fae548d3Szrj 
3315*fae548d3Szrj inline void
tls_gd_to_le(const Relocate_info<32,false> * relinfo,size_t relnum,Output_segment * tls_segment,const elfcpp::Rel<32,false> & rel,unsigned int,elfcpp::Elf_types<32>::Elf_Addr value,unsigned char * view,section_size_type view_size)3316*fae548d3Szrj Target_i386::Relocate::tls_gd_to_le(const Relocate_info<32, false>* relinfo,
3317*fae548d3Szrj 				    size_t relnum,
3318*fae548d3Szrj 				    Output_segment* tls_segment,
3319*fae548d3Szrj 				    const elfcpp::Rel<32, false>& rel,
3320*fae548d3Szrj 				    unsigned int,
3321*fae548d3Szrj 				    elfcpp::Elf_types<32>::Elf_Addr value,
3322*fae548d3Szrj 				    unsigned char* view,
3323*fae548d3Szrj 				    section_size_type view_size)
3324*fae548d3Szrj {
3325*fae548d3Szrj   // leal foo(,%ebx,1),%eax; call ___tls_get_addr@PLT
3326*fae548d3Szrj   //  ==> movl %gs:0,%eax; subl $foo@tpoff,%eax
3327*fae548d3Szrj   // leal foo(%ebx),%eax; call ___tls_get_addr@PLT
3328*fae548d3Szrj   //  ==> movl %gs:0,%eax; subl $foo@tpoff,%eax
3329*fae548d3Szrj   // leal foo(%reg),%eax; call *___tls_get_addr@GOT(%reg)
3330*fae548d3Szrj   //  ==> movl %gs:0,%eax; subl $foo@tpoff,%eax
3331*fae548d3Szrj 
3332*fae548d3Szrj   tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, -2);
3333*fae548d3Szrj   tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, 9);
3334*fae548d3Szrj 
3335*fae548d3Szrj   unsigned char op1 = view[-1];
3336*fae548d3Szrj   unsigned char op2 = view[-2];
3337*fae548d3Szrj   unsigned char op3 = view[4];
3338*fae548d3Szrj 
3339*fae548d3Szrj   tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3340*fae548d3Szrj 		 op2 == 0x8d || op2 == 0x04);
3341*fae548d3Szrj   tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3342*fae548d3Szrj 		 op3 == 0xe8 || op3 == 0xff);
3343*fae548d3Szrj 
3344*fae548d3Szrj   int roff = 5;
3345*fae548d3Szrj 
3346*fae548d3Szrj   if (op2 == 0x04)
3347*fae548d3Szrj     {
3348*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, -3);
3349*fae548d3Szrj       tls::check_tls(relinfo, relnum, rel.get_r_offset(), view[-3] == 0x8d);
3350*fae548d3Szrj       tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3351*fae548d3Szrj 		     ((op1 & 0xc7) == 0x05 && op1 != (4 << 3)));
3352*fae548d3Szrj       memcpy(view - 3, "\x65\xa1\0\0\0\0\x81\xe8\0\0\0", 12);
3353*fae548d3Szrj     }
3354*fae548d3Szrj   else
3355*fae548d3Szrj     {
3356*fae548d3Szrj       unsigned char reg = op1 & 7;
3357*fae548d3Szrj       tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3358*fae548d3Szrj 		     ((op1 & 0xf8) == 0x80
3359*fae548d3Szrj 		      && reg != 4
3360*fae548d3Szrj 		      && reg != 0
3361*fae548d3Szrj 		      && (op3 == 0xe8 || (view[5] & 0x7) == reg)));
3362*fae548d3Szrj       if (op3 == 0xff
3363*fae548d3Szrj 	  || (rel.get_r_offset() + 9 < view_size
3364*fae548d3Szrj 	      && view[9] == 0x90))
3365*fae548d3Szrj 	{
3366*fae548d3Szrj 	  // There is an indirect call or a trailing nop.  Use the size
3367*fae548d3Szrj 	  // byte subl.
3368*fae548d3Szrj 	  memcpy(view - 2, "\x65\xa1\0\0\0\0\x81\xe8\0\0\0", 12);
3369*fae548d3Szrj 	  roff = 6;
3370*fae548d3Szrj 	}
3371*fae548d3Szrj       else
3372*fae548d3Szrj 	{
3373*fae548d3Szrj 	  // Use the five byte subl.
3374*fae548d3Szrj 	  memcpy(view - 2, "\x65\xa1\0\0\0\0\x2d\0\0\0", 11);
3375*fae548d3Szrj 	}
3376*fae548d3Szrj     }
3377*fae548d3Szrj 
3378*fae548d3Szrj   value = tls_segment->memsz() - value;
3379*fae548d3Szrj   Relocate_functions<32, false>::rel32(view + roff, value);
3380*fae548d3Szrj 
3381*fae548d3Szrj   // The next reloc should be a PLT32 reloc against __tls_get_addr.
3382*fae548d3Szrj   // We can skip it.
3383*fae548d3Szrj   this->skip_call_tls_get_addr_ = true;
3384*fae548d3Szrj }
3385*fae548d3Szrj 
3386*fae548d3Szrj // Do a relocation in which we convert a TLS General-Dynamic to an
3387*fae548d3Szrj // Initial-Exec.
3388*fae548d3Szrj 
3389*fae548d3Szrj inline void
tls_gd_to_ie(const Relocate_info<32,false> * relinfo,size_t relnum,const elfcpp::Rel<32,false> & rel,unsigned int,elfcpp::Elf_types<32>::Elf_Addr value,unsigned char * view,section_size_type view_size)3390*fae548d3Szrj Target_i386::Relocate::tls_gd_to_ie(const Relocate_info<32, false>* relinfo,
3391*fae548d3Szrj 				    size_t relnum,
3392*fae548d3Szrj 				    const elfcpp::Rel<32, false>& rel,
3393*fae548d3Szrj 				    unsigned int,
3394*fae548d3Szrj 				    elfcpp::Elf_types<32>::Elf_Addr value,
3395*fae548d3Szrj 				    unsigned char* view,
3396*fae548d3Szrj 				    section_size_type view_size)
3397*fae548d3Szrj {
3398*fae548d3Szrj   // leal foo(,%ebx,1),%eax; call ___tls_get_addr@PLT
3399*fae548d3Szrj   //  ==> movl %gs:0,%eax; addl foo@gotntpoff(%ebx),%eax
3400*fae548d3Szrj   // leal foo(%ebx),%eax; call ___tls_get_addr@PLT; nop
3401*fae548d3Szrj   //  ==> movl %gs:0,%eax; addl foo@gotntpoff(%ebx),%eax
3402*fae548d3Szrj   // leal foo(%reg),%eax; call *___tls_get_addr@GOT(%reg)
3403*fae548d3Szrj   //  ==> movl %gs:0,%eax; addl foo@gotntpoff(%reg),%eax
3404*fae548d3Szrj 
3405*fae548d3Szrj   tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, -2);
3406*fae548d3Szrj   tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, 9);
3407*fae548d3Szrj 
3408*fae548d3Szrj   unsigned char op1 = view[-1];
3409*fae548d3Szrj   unsigned char op2 = view[-2];
3410*fae548d3Szrj   unsigned char op3 = view[4];
3411*fae548d3Szrj 
3412*fae548d3Szrj   tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3413*fae548d3Szrj 		 op2 == 0x8d || op2 == 0x04);
3414*fae548d3Szrj   tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3415*fae548d3Szrj 		 op3 == 0xe8 || op3 == 0xff);
3416*fae548d3Szrj 
3417*fae548d3Szrj   int roff;
3418*fae548d3Szrj 
3419*fae548d3Szrj   if (op2 == 0x04)
3420*fae548d3Szrj     {
3421*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, -3);
3422*fae548d3Szrj       tls::check_tls(relinfo, relnum, rel.get_r_offset(), view[-3] == 0x8d);
3423*fae548d3Szrj       tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3424*fae548d3Szrj 		     ((op1 & 0xc7) == 0x05 && op1 != (4 << 3)));
3425*fae548d3Szrj       roff = 5;
3426*fae548d3Szrj     }
3427*fae548d3Szrj   else
3428*fae548d3Szrj     {
3429*fae548d3Szrj       unsigned char reg = op1 & 7;
3430*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, 10);
3431*fae548d3Szrj       tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3432*fae548d3Szrj 		     ((op1 & 0xf8) == 0x80
3433*fae548d3Szrj 		      && reg != 4
3434*fae548d3Szrj 		      && reg != 0
3435*fae548d3Szrj 		      && ((op3 == 0xe8 && view[9] == 0x90)
3436*fae548d3Szrj 			   || (view[5] & 0x7) == reg)));
3437*fae548d3Szrj       roff = 6;
3438*fae548d3Szrj     }
3439*fae548d3Szrj 
3440*fae548d3Szrj   memcpy(view + roff - 8, "\x65\xa1\0\0\0\0\x03\x83\0\0\0", 12);
3441*fae548d3Szrj   Relocate_functions<32, false>::rel32(view + roff, value);
3442*fae548d3Szrj 
3443*fae548d3Szrj   // The next reloc should be a PLT32 reloc against __tls_get_addr.
3444*fae548d3Szrj   // We can skip it.
3445*fae548d3Szrj   this->skip_call_tls_get_addr_ = true;
3446*fae548d3Szrj }
3447*fae548d3Szrj 
3448*fae548d3Szrj // Do a relocation in which we convert a TLS_GOTDESC or TLS_DESC_CALL
3449*fae548d3Szrj // General-Dynamic to a Local-Exec.
3450*fae548d3Szrj 
3451*fae548d3Szrj inline void
tls_desc_gd_to_le(const Relocate_info<32,false> * relinfo,size_t relnum,Output_segment * tls_segment,const elfcpp::Rel<32,false> & rel,unsigned int r_type,elfcpp::Elf_types<32>::Elf_Addr value,unsigned char * view,section_size_type view_size)3452*fae548d3Szrj Target_i386::Relocate::tls_desc_gd_to_le(
3453*fae548d3Szrj     const Relocate_info<32, false>* relinfo,
3454*fae548d3Szrj     size_t relnum,
3455*fae548d3Szrj     Output_segment* tls_segment,
3456*fae548d3Szrj     const elfcpp::Rel<32, false>& rel,
3457*fae548d3Szrj     unsigned int r_type,
3458*fae548d3Szrj     elfcpp::Elf_types<32>::Elf_Addr value,
3459*fae548d3Szrj     unsigned char* view,
3460*fae548d3Szrj     section_size_type view_size)
3461*fae548d3Szrj {
3462*fae548d3Szrj   if (r_type == elfcpp::R_386_TLS_GOTDESC)
3463*fae548d3Szrj     {
3464*fae548d3Szrj       // leal foo@TLSDESC(%ebx), %eax
3465*fae548d3Szrj       // ==> leal foo@NTPOFF, %eax
3466*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, -2);
3467*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, 4);
3468*fae548d3Szrj       tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3469*fae548d3Szrj 		     view[-2] == 0x8d && view[-1] == 0x83);
3470*fae548d3Szrj       view[-1] = 0x05;
3471*fae548d3Szrj       value -= tls_segment->memsz();
3472*fae548d3Szrj       Relocate_functions<32, false>::rel32(view, value);
3473*fae548d3Szrj     }
3474*fae548d3Szrj   else
3475*fae548d3Szrj     {
3476*fae548d3Szrj       // call *foo@TLSCALL(%eax)
3477*fae548d3Szrj       // ==> nop; nop
3478*fae548d3Szrj       gold_assert(r_type == elfcpp::R_386_TLS_DESC_CALL);
3479*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, 2);
3480*fae548d3Szrj       tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3481*fae548d3Szrj 		     view[0] == 0xff && view[1] == 0x10);
3482*fae548d3Szrj       view[0] = 0x66;
3483*fae548d3Szrj       view[1] = 0x90;
3484*fae548d3Szrj     }
3485*fae548d3Szrj }
3486*fae548d3Szrj 
3487*fae548d3Szrj // Do a relocation in which we convert a TLS_GOTDESC or TLS_DESC_CALL
3488*fae548d3Szrj // General-Dynamic to an Initial-Exec.
3489*fae548d3Szrj 
3490*fae548d3Szrj inline void
tls_desc_gd_to_ie(const Relocate_info<32,false> * relinfo,size_t relnum,const elfcpp::Rel<32,false> & rel,unsigned int r_type,elfcpp::Elf_types<32>::Elf_Addr value,unsigned char * view,section_size_type view_size)3491*fae548d3Szrj Target_i386::Relocate::tls_desc_gd_to_ie(
3492*fae548d3Szrj     const Relocate_info<32, false>* relinfo,
3493*fae548d3Szrj     size_t relnum,
3494*fae548d3Szrj     const elfcpp::Rel<32, false>& rel,
3495*fae548d3Szrj     unsigned int r_type,
3496*fae548d3Szrj     elfcpp::Elf_types<32>::Elf_Addr value,
3497*fae548d3Szrj     unsigned char* view,
3498*fae548d3Szrj     section_size_type view_size)
3499*fae548d3Szrj {
3500*fae548d3Szrj   if (r_type == elfcpp::R_386_TLS_GOTDESC)
3501*fae548d3Szrj     {
3502*fae548d3Szrj       // leal foo@TLSDESC(%ebx), %eax
3503*fae548d3Szrj       // ==> movl foo@GOTNTPOFF(%ebx), %eax
3504*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, -2);
3505*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, 4);
3506*fae548d3Szrj       tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3507*fae548d3Szrj 		     view[-2] == 0x8d && view[-1] == 0x83);
3508*fae548d3Szrj       view[-2] = 0x8b;
3509*fae548d3Szrj       Relocate_functions<32, false>::rel32(view, value);
3510*fae548d3Szrj     }
3511*fae548d3Szrj   else
3512*fae548d3Szrj     {
3513*fae548d3Szrj       // call *foo@TLSCALL(%eax)
3514*fae548d3Szrj       // ==> nop; nop
3515*fae548d3Szrj       gold_assert(r_type == elfcpp::R_386_TLS_DESC_CALL);
3516*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, 2);
3517*fae548d3Szrj       tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3518*fae548d3Szrj 		     view[0] == 0xff && view[1] == 0x10);
3519*fae548d3Szrj       view[0] = 0x66;
3520*fae548d3Szrj       view[1] = 0x90;
3521*fae548d3Szrj     }
3522*fae548d3Szrj }
3523*fae548d3Szrj 
3524*fae548d3Szrj // Do a relocation in which we convert a TLS Local-Dynamic to a
3525*fae548d3Szrj // Local-Exec.
3526*fae548d3Szrj 
3527*fae548d3Szrj inline void
tls_ld_to_le(const Relocate_info<32,false> * relinfo,size_t relnum,Output_segment *,const elfcpp::Rel<32,false> & rel,unsigned int,elfcpp::Elf_types<32>::Elf_Addr,unsigned char * view,section_size_type view_size)3528*fae548d3Szrj Target_i386::Relocate::tls_ld_to_le(const Relocate_info<32, false>* relinfo,
3529*fae548d3Szrj 				    size_t relnum,
3530*fae548d3Szrj 				    Output_segment*,
3531*fae548d3Szrj 				    const elfcpp::Rel<32, false>& rel,
3532*fae548d3Szrj 				    unsigned int,
3533*fae548d3Szrj 				    elfcpp::Elf_types<32>::Elf_Addr,
3534*fae548d3Szrj 				    unsigned char* view,
3535*fae548d3Szrj 				    section_size_type view_size)
3536*fae548d3Szrj {
3537*fae548d3Szrj   // leal foo(%ebx), %eax; call ___tls_get_addr@PLT
3538*fae548d3Szrj   // ==> movl %gs:0,%eax; nop; leal 0(%esi,1),%esi
3539*fae548d3Szrj   // leal foo(%reg), %eax; call call *___tls_get_addr@GOT(%reg)
3540*fae548d3Szrj   // ==> movl %gs:0,%eax; leal (%esi),%esi
3541*fae548d3Szrj 
3542*fae548d3Szrj   tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, -2);
3543*fae548d3Szrj 
3544*fae548d3Szrj   unsigned char op1 = view[-1];
3545*fae548d3Szrj   unsigned char op2 = view[-2];
3546*fae548d3Szrj   unsigned char op3 = view[4];
3547*fae548d3Szrj 
3548*fae548d3Szrj   tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3549*fae548d3Szrj 		 op3 == 0xe8 || op3 == 0xff);
3550*fae548d3Szrj   tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size,
3551*fae548d3Szrj 		   op3 == 0xe8 ? 9 : 10);
3552*fae548d3Szrj 
3553*fae548d3Szrj   // FIXME: Does this test really always pass?
3554*fae548d3Szrj   tls::check_tls(relinfo, relnum, rel.get_r_offset(), op2 == 0x8d);
3555*fae548d3Szrj 
3556*fae548d3Szrj   unsigned char reg = op1 & 7;
3557*fae548d3Szrj   tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3558*fae548d3Szrj 		 ((op1 & 0xf8) == 0x80
3559*fae548d3Szrj 		  && reg != 4
3560*fae548d3Szrj 		  && reg != 0
3561*fae548d3Szrj 		  && (op3 == 0xe8 || (view[5] & 0x7) == reg)));
3562*fae548d3Szrj 
3563*fae548d3Szrj   if (op3 == 0xe8)
3564*fae548d3Szrj     memcpy(view - 2, "\x65\xa1\0\0\0\0\x90\x8d\x74\x26\0", 11);
3565*fae548d3Szrj   else
3566*fae548d3Szrj     memcpy(view - 2, "\x65\xa1\0\0\0\0\x8d\xb6\0\0\0\0", 12);
3567*fae548d3Szrj 
3568*fae548d3Szrj   // The next reloc should be a PLT32 reloc against __tls_get_addr.
3569*fae548d3Szrj   // We can skip it.
3570*fae548d3Szrj   this->skip_call_tls_get_addr_ = true;
3571*fae548d3Szrj }
3572*fae548d3Szrj 
3573*fae548d3Szrj // Do a relocation in which we convert a TLS Initial-Exec to a
3574*fae548d3Szrj // Local-Exec.
3575*fae548d3Szrj 
3576*fae548d3Szrj inline void
tls_ie_to_le(const Relocate_info<32,false> * relinfo,size_t relnum,Output_segment * tls_segment,const elfcpp::Rel<32,false> & rel,unsigned int r_type,elfcpp::Elf_types<32>::Elf_Addr value,unsigned char * view,section_size_type view_size)3577*fae548d3Szrj Target_i386::Relocate::tls_ie_to_le(const Relocate_info<32, false>* relinfo,
3578*fae548d3Szrj 				    size_t relnum,
3579*fae548d3Szrj 				    Output_segment* tls_segment,
3580*fae548d3Szrj 				    const elfcpp::Rel<32, false>& rel,
3581*fae548d3Szrj 				    unsigned int r_type,
3582*fae548d3Szrj 				    elfcpp::Elf_types<32>::Elf_Addr value,
3583*fae548d3Szrj 				    unsigned char* view,
3584*fae548d3Szrj 				    section_size_type view_size)
3585*fae548d3Szrj {
3586*fae548d3Szrj   // We have to actually change the instructions, which means that we
3587*fae548d3Szrj   // need to examine the opcodes to figure out which instruction we
3588*fae548d3Szrj   // are looking at.
3589*fae548d3Szrj   if (r_type == elfcpp::R_386_TLS_IE)
3590*fae548d3Szrj     {
3591*fae548d3Szrj       // movl %gs:XX,%eax  ==>  movl $YY,%eax
3592*fae548d3Szrj       // movl %gs:XX,%reg  ==>  movl $YY,%reg
3593*fae548d3Szrj       // addl %gs:XX,%reg  ==>  addl $YY,%reg
3594*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, -1);
3595*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, 4);
3596*fae548d3Szrj 
3597*fae548d3Szrj       unsigned char op1 = view[-1];
3598*fae548d3Szrj       if (op1 == 0xa1)
3599*fae548d3Szrj 	{
3600*fae548d3Szrj 	  // movl XX,%eax  ==>  movl $YY,%eax
3601*fae548d3Szrj 	  view[-1] = 0xb8;
3602*fae548d3Szrj 	}
3603*fae548d3Szrj       else
3604*fae548d3Szrj 	{
3605*fae548d3Szrj 	  tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, -2);
3606*fae548d3Szrj 
3607*fae548d3Szrj 	  unsigned char op2 = view[-2];
3608*fae548d3Szrj 	  if (op2 == 0x8b)
3609*fae548d3Szrj 	    {
3610*fae548d3Szrj 	      // movl XX,%reg  ==>  movl $YY,%reg
3611*fae548d3Szrj 	      tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3612*fae548d3Szrj 			     (op1 & 0xc7) == 0x05);
3613*fae548d3Szrj 	      view[-2] = 0xc7;
3614*fae548d3Szrj 	      view[-1] = 0xc0 | ((op1 >> 3) & 7);
3615*fae548d3Szrj 	    }
3616*fae548d3Szrj 	  else if (op2 == 0x03)
3617*fae548d3Szrj 	    {
3618*fae548d3Szrj 	      // addl XX,%reg  ==>  addl $YY,%reg
3619*fae548d3Szrj 	      tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3620*fae548d3Szrj 			     (op1 & 0xc7) == 0x05);
3621*fae548d3Szrj 	      view[-2] = 0x81;
3622*fae548d3Szrj 	      view[-1] = 0xc0 | ((op1 >> 3) & 7);
3623*fae548d3Szrj 	    }
3624*fae548d3Szrj 	  else
3625*fae548d3Szrj 	    tls::check_tls(relinfo, relnum, rel.get_r_offset(), 0);
3626*fae548d3Szrj 	}
3627*fae548d3Szrj     }
3628*fae548d3Szrj   else
3629*fae548d3Szrj     {
3630*fae548d3Szrj       // subl %gs:XX(%reg1),%reg2  ==>  subl $YY,%reg2
3631*fae548d3Szrj       // movl %gs:XX(%reg1),%reg2  ==>  movl $YY,%reg2
3632*fae548d3Szrj       // addl %gs:XX(%reg1),%reg2  ==>  addl $YY,$reg2
3633*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, -2);
3634*fae548d3Szrj       tls::check_range(relinfo, relnum, rel.get_r_offset(), view_size, 4);
3635*fae548d3Szrj 
3636*fae548d3Szrj       unsigned char op1 = view[-1];
3637*fae548d3Szrj       unsigned char op2 = view[-2];
3638*fae548d3Szrj       tls::check_tls(relinfo, relnum, rel.get_r_offset(),
3639*fae548d3Szrj 		     (op1 & 0xc0) == 0x80 && (op1 & 7) != 4);
3640*fae548d3Szrj       if (op2 == 0x8b)
3641*fae548d3Szrj 	{
3642*fae548d3Szrj 	  // movl %gs:XX(%reg1),%reg2  ==>  movl $YY,%reg2
3643*fae548d3Szrj 	  view[-2] = 0xc7;
3644*fae548d3Szrj 	  view[-1] = 0xc0 | ((op1 >> 3) & 7);
3645*fae548d3Szrj 	}
3646*fae548d3Szrj       else if (op2 == 0x2b)
3647*fae548d3Szrj 	{
3648*fae548d3Szrj 	  // subl %gs:XX(%reg1),%reg2  ==>  subl $YY,%reg2
3649*fae548d3Szrj 	  view[-2] = 0x81;
3650*fae548d3Szrj 	  view[-1] = 0xe8 | ((op1 >> 3) & 7);
3651*fae548d3Szrj 	}
3652*fae548d3Szrj       else if (op2 == 0x03)
3653*fae548d3Szrj 	{
3654*fae548d3Szrj 	  // addl %gs:XX(%reg1),%reg2  ==>  addl $YY,$reg2
3655*fae548d3Szrj 	  view[-2] = 0x81;
3656*fae548d3Szrj 	  view[-1] = 0xc0 | ((op1 >> 3) & 7);
3657*fae548d3Szrj 	}
3658*fae548d3Szrj       else
3659*fae548d3Szrj 	tls::check_tls(relinfo, relnum, rel.get_r_offset(), 0);
3660*fae548d3Szrj     }
3661*fae548d3Szrj 
3662*fae548d3Szrj   value = tls_segment->memsz() - value;
3663*fae548d3Szrj   if (r_type == elfcpp::R_386_TLS_IE || r_type == elfcpp::R_386_TLS_GOTIE)
3664*fae548d3Szrj     value = - value;
3665*fae548d3Szrj 
3666*fae548d3Szrj   Relocate_functions<32, false>::rel32(view, value);
3667*fae548d3Szrj }
3668*fae548d3Szrj 
3669*fae548d3Szrj // Relocate section data.
3670*fae548d3Szrj 
3671*fae548d3Szrj void
relocate_section(const Relocate_info<32,false> * relinfo,unsigned int sh_type,const unsigned char * prelocs,size_t reloc_count,Output_section * output_section,bool needs_special_offset_handling,unsigned char * view,elfcpp::Elf_types<32>::Elf_Addr address,section_size_type view_size,const Reloc_symbol_changes * reloc_symbol_changes)3672*fae548d3Szrj Target_i386::relocate_section(const Relocate_info<32, false>* relinfo,
3673*fae548d3Szrj 			      unsigned int sh_type,
3674*fae548d3Szrj 			      const unsigned char* prelocs,
3675*fae548d3Szrj 			      size_t reloc_count,
3676*fae548d3Szrj 			      Output_section* output_section,
3677*fae548d3Szrj 			      bool needs_special_offset_handling,
3678*fae548d3Szrj 			      unsigned char* view,
3679*fae548d3Szrj 			      elfcpp::Elf_types<32>::Elf_Addr address,
3680*fae548d3Szrj 			      section_size_type view_size,
3681*fae548d3Szrj 			      const Reloc_symbol_changes* reloc_symbol_changes)
3682*fae548d3Szrj {
3683*fae548d3Szrj   gold_assert(sh_type == elfcpp::SHT_REL);
3684*fae548d3Szrj 
3685*fae548d3Szrj   gold::relocate_section<32, false, Target_i386, Relocate,
3686*fae548d3Szrj 			 gold::Default_comdat_behavior, Classify_reloc>(
3687*fae548d3Szrj     relinfo,
3688*fae548d3Szrj     this,
3689*fae548d3Szrj     prelocs,
3690*fae548d3Szrj     reloc_count,
3691*fae548d3Szrj     output_section,
3692*fae548d3Szrj     needs_special_offset_handling,
3693*fae548d3Szrj     view,
3694*fae548d3Szrj     address,
3695*fae548d3Szrj     view_size,
3696*fae548d3Szrj     reloc_symbol_changes);
3697*fae548d3Szrj }
3698*fae548d3Szrj 
3699*fae548d3Szrj // Return the size of a relocation while scanning during a relocatable
3700*fae548d3Szrj // link.
3701*fae548d3Szrj 
3702*fae548d3Szrj unsigned int
get_size_for_reloc(unsigned int r_type,Relobj * object)3703*fae548d3Szrj Target_i386::Classify_reloc::get_size_for_reloc(
3704*fae548d3Szrj     unsigned int r_type,
3705*fae548d3Szrj     Relobj* object)
3706*fae548d3Szrj {
3707*fae548d3Szrj   switch (r_type)
3708*fae548d3Szrj     {
3709*fae548d3Szrj     case elfcpp::R_386_NONE:
3710*fae548d3Szrj     case elfcpp::R_386_GNU_VTINHERIT:
3711*fae548d3Szrj     case elfcpp::R_386_GNU_VTENTRY:
3712*fae548d3Szrj     case elfcpp::R_386_TLS_GD:            // Global-dynamic
3713*fae548d3Szrj     case elfcpp::R_386_TLS_GOTDESC:       // Global-dynamic (from ~oliva url)
3714*fae548d3Szrj     case elfcpp::R_386_TLS_DESC_CALL:
3715*fae548d3Szrj     case elfcpp::R_386_TLS_LDM:           // Local-dynamic
3716*fae548d3Szrj     case elfcpp::R_386_TLS_LDO_32:        // Alternate local-dynamic
3717*fae548d3Szrj     case elfcpp::R_386_TLS_IE:            // Initial-exec
3718*fae548d3Szrj     case elfcpp::R_386_TLS_IE_32:
3719*fae548d3Szrj     case elfcpp::R_386_TLS_GOTIE:
3720*fae548d3Szrj     case elfcpp::R_386_TLS_LE:            // Local-exec
3721*fae548d3Szrj     case elfcpp::R_386_TLS_LE_32:
3722*fae548d3Szrj       return 0;
3723*fae548d3Szrj 
3724*fae548d3Szrj     case elfcpp::R_386_32:
3725*fae548d3Szrj     case elfcpp::R_386_PC32:
3726*fae548d3Szrj     case elfcpp::R_386_GOT32:
3727*fae548d3Szrj     case elfcpp::R_386_GOT32X:
3728*fae548d3Szrj     case elfcpp::R_386_PLT32:
3729*fae548d3Szrj     case elfcpp::R_386_GOTOFF:
3730*fae548d3Szrj     case elfcpp::R_386_GOTPC:
3731*fae548d3Szrj      return 4;
3732*fae548d3Szrj 
3733*fae548d3Szrj     case elfcpp::R_386_16:
3734*fae548d3Szrj     case elfcpp::R_386_PC16:
3735*fae548d3Szrj       return 2;
3736*fae548d3Szrj 
3737*fae548d3Szrj     case elfcpp::R_386_8:
3738*fae548d3Szrj     case elfcpp::R_386_PC8:
3739*fae548d3Szrj       return 1;
3740*fae548d3Szrj 
3741*fae548d3Szrj       // These are relocations which should only be seen by the
3742*fae548d3Szrj       // dynamic linker, and should never be seen here.
3743*fae548d3Szrj     case elfcpp::R_386_COPY:
3744*fae548d3Szrj     case elfcpp::R_386_GLOB_DAT:
3745*fae548d3Szrj     case elfcpp::R_386_JUMP_SLOT:
3746*fae548d3Szrj     case elfcpp::R_386_RELATIVE:
3747*fae548d3Szrj     case elfcpp::R_386_IRELATIVE:
3748*fae548d3Szrj     case elfcpp::R_386_TLS_TPOFF:
3749*fae548d3Szrj     case elfcpp::R_386_TLS_DTPMOD32:
3750*fae548d3Szrj     case elfcpp::R_386_TLS_DTPOFF32:
3751*fae548d3Szrj     case elfcpp::R_386_TLS_TPOFF32:
3752*fae548d3Szrj     case elfcpp::R_386_TLS_DESC:
3753*fae548d3Szrj       object->error(_("unexpected reloc %u in object file"), r_type);
3754*fae548d3Szrj       return 0;
3755*fae548d3Szrj 
3756*fae548d3Szrj     case elfcpp::R_386_32PLT:
3757*fae548d3Szrj     case elfcpp::R_386_TLS_GD_32:
3758*fae548d3Szrj     case elfcpp::R_386_TLS_GD_PUSH:
3759*fae548d3Szrj     case elfcpp::R_386_TLS_GD_CALL:
3760*fae548d3Szrj     case elfcpp::R_386_TLS_GD_POP:
3761*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_32:
3762*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_PUSH:
3763*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_CALL:
3764*fae548d3Szrj     case elfcpp::R_386_TLS_LDM_POP:
3765*fae548d3Szrj     case elfcpp::R_386_USED_BY_INTEL_200:
3766*fae548d3Szrj     default:
3767*fae548d3Szrj       object->error(_("unsupported reloc %u in object file"), r_type);
3768*fae548d3Szrj       return 0;
3769*fae548d3Szrj     }
3770*fae548d3Szrj }
3771*fae548d3Szrj 
3772*fae548d3Szrj // Scan the relocs during a relocatable link.
3773*fae548d3Szrj 
3774*fae548d3Szrj void
scan_relocatable_relocs(Symbol_table * symtab,Layout * layout,Sized_relobj_file<32,false> * object,unsigned int data_shndx,unsigned int sh_type,const unsigned char * prelocs,size_t reloc_count,Output_section * output_section,bool needs_special_offset_handling,size_t local_symbol_count,const unsigned char * plocal_symbols,Relocatable_relocs * rr)3775*fae548d3Szrj Target_i386::scan_relocatable_relocs(Symbol_table* symtab,
3776*fae548d3Szrj 				     Layout* layout,
3777*fae548d3Szrj 				     Sized_relobj_file<32, false>* object,
3778*fae548d3Szrj 				     unsigned int data_shndx,
3779*fae548d3Szrj 				     unsigned int sh_type,
3780*fae548d3Szrj 				     const unsigned char* prelocs,
3781*fae548d3Szrj 				     size_t reloc_count,
3782*fae548d3Szrj 				     Output_section* output_section,
3783*fae548d3Szrj 				     bool needs_special_offset_handling,
3784*fae548d3Szrj 				     size_t local_symbol_count,
3785*fae548d3Szrj 				     const unsigned char* plocal_symbols,
3786*fae548d3Szrj 				     Relocatable_relocs* rr)
3787*fae548d3Szrj {
3788*fae548d3Szrj   typedef gold::Default_scan_relocatable_relocs<Classify_reloc>
3789*fae548d3Szrj       Scan_relocatable_relocs;
3790*fae548d3Szrj 
3791*fae548d3Szrj   gold_assert(sh_type == elfcpp::SHT_REL);
3792*fae548d3Szrj 
3793*fae548d3Szrj   gold::scan_relocatable_relocs<32, false, Scan_relocatable_relocs>(
3794*fae548d3Szrj     symtab,
3795*fae548d3Szrj     layout,
3796*fae548d3Szrj     object,
3797*fae548d3Szrj     data_shndx,
3798*fae548d3Szrj     prelocs,
3799*fae548d3Szrj     reloc_count,
3800*fae548d3Szrj     output_section,
3801*fae548d3Szrj     needs_special_offset_handling,
3802*fae548d3Szrj     local_symbol_count,
3803*fae548d3Szrj     plocal_symbols,
3804*fae548d3Szrj     rr);
3805*fae548d3Szrj }
3806*fae548d3Szrj 
3807*fae548d3Szrj // Scan the relocs for --emit-relocs.
3808*fae548d3Szrj 
3809*fae548d3Szrj void
emit_relocs_scan(Symbol_table * symtab,Layout * layout,Sized_relobj_file<32,false> * object,unsigned int data_shndx,unsigned int sh_type,const unsigned char * prelocs,size_t reloc_count,Output_section * output_section,bool needs_special_offset_handling,size_t local_symbol_count,const unsigned char * plocal_syms,Relocatable_relocs * rr)3810*fae548d3Szrj Target_i386::emit_relocs_scan(Symbol_table* symtab,
3811*fae548d3Szrj 			      Layout* layout,
3812*fae548d3Szrj 			      Sized_relobj_file<32, false>* object,
3813*fae548d3Szrj 			      unsigned int data_shndx,
3814*fae548d3Szrj 			      unsigned int sh_type,
3815*fae548d3Szrj 			      const unsigned char* prelocs,
3816*fae548d3Szrj 			      size_t reloc_count,
3817*fae548d3Szrj 			      Output_section* output_section,
3818*fae548d3Szrj 			      bool needs_special_offset_handling,
3819*fae548d3Szrj 			      size_t local_symbol_count,
3820*fae548d3Szrj 			      const unsigned char* plocal_syms,
3821*fae548d3Szrj 			      Relocatable_relocs* rr)
3822*fae548d3Szrj {
3823*fae548d3Szrj   typedef gold::Default_classify_reloc<elfcpp::SHT_REL, 32, false>
3824*fae548d3Szrj       Classify_reloc;
3825*fae548d3Szrj   typedef gold::Default_emit_relocs_strategy<Classify_reloc>
3826*fae548d3Szrj       Emit_relocs_strategy;
3827*fae548d3Szrj 
3828*fae548d3Szrj   gold_assert(sh_type == elfcpp::SHT_REL);
3829*fae548d3Szrj 
3830*fae548d3Szrj   gold::scan_relocatable_relocs<32, false, Emit_relocs_strategy>(
3831*fae548d3Szrj     symtab,
3832*fae548d3Szrj     layout,
3833*fae548d3Szrj     object,
3834*fae548d3Szrj     data_shndx,
3835*fae548d3Szrj     prelocs,
3836*fae548d3Szrj     reloc_count,
3837*fae548d3Szrj     output_section,
3838*fae548d3Szrj     needs_special_offset_handling,
3839*fae548d3Szrj     local_symbol_count,
3840*fae548d3Szrj     plocal_syms,
3841*fae548d3Szrj     rr);
3842*fae548d3Szrj }
3843*fae548d3Szrj 
3844*fae548d3Szrj // Emit relocations for a section.
3845*fae548d3Szrj 
3846*fae548d3Szrj void
relocate_relocs(const Relocate_info<32,false> * relinfo,unsigned int sh_type,const unsigned char * prelocs,size_t reloc_count,Output_section * output_section,elfcpp::Elf_types<32>::Elf_Off offset_in_output_section,unsigned char * view,elfcpp::Elf_types<32>::Elf_Addr view_address,section_size_type view_size,unsigned char * reloc_view,section_size_type reloc_view_size)3847*fae548d3Szrj Target_i386::relocate_relocs(
3848*fae548d3Szrj     const Relocate_info<32, false>* relinfo,
3849*fae548d3Szrj     unsigned int sh_type,
3850*fae548d3Szrj     const unsigned char* prelocs,
3851*fae548d3Szrj     size_t reloc_count,
3852*fae548d3Szrj     Output_section* output_section,
3853*fae548d3Szrj     elfcpp::Elf_types<32>::Elf_Off offset_in_output_section,
3854*fae548d3Szrj     unsigned char* view,
3855*fae548d3Szrj     elfcpp::Elf_types<32>::Elf_Addr view_address,
3856*fae548d3Szrj     section_size_type view_size,
3857*fae548d3Szrj     unsigned char* reloc_view,
3858*fae548d3Szrj     section_size_type reloc_view_size)
3859*fae548d3Szrj {
3860*fae548d3Szrj   gold_assert(sh_type == elfcpp::SHT_REL);
3861*fae548d3Szrj 
3862*fae548d3Szrj   gold::relocate_relocs<32, false, Classify_reloc>(
3863*fae548d3Szrj     relinfo,
3864*fae548d3Szrj     prelocs,
3865*fae548d3Szrj     reloc_count,
3866*fae548d3Szrj     output_section,
3867*fae548d3Szrj     offset_in_output_section,
3868*fae548d3Szrj     view,
3869*fae548d3Szrj     view_address,
3870*fae548d3Szrj     view_size,
3871*fae548d3Szrj     reloc_view,
3872*fae548d3Szrj     reloc_view_size);
3873*fae548d3Szrj }
3874*fae548d3Szrj 
3875*fae548d3Szrj // Return the value to use for a dynamic which requires special
3876*fae548d3Szrj // treatment.  This is how we support equality comparisons of function
3877*fae548d3Szrj // pointers across shared library boundaries, as described in the
3878*fae548d3Szrj // processor specific ABI supplement.
3879*fae548d3Szrj 
3880*fae548d3Szrj uint64_t
do_dynsym_value(const Symbol * gsym) const3881*fae548d3Szrj Target_i386::do_dynsym_value(const Symbol* gsym) const
3882*fae548d3Szrj {
3883*fae548d3Szrj   gold_assert(gsym->is_from_dynobj() && gsym->has_plt_offset());
3884*fae548d3Szrj   return this->plt_address_for_global(gsym);
3885*fae548d3Szrj }
3886*fae548d3Szrj 
3887*fae548d3Szrj // Return a string used to fill a code section with nops to take up
3888*fae548d3Szrj // the specified length.
3889*fae548d3Szrj 
3890*fae548d3Szrj std::string
do_code_fill(section_size_type length) const3891*fae548d3Szrj Target_i386::do_code_fill(section_size_type length) const
3892*fae548d3Szrj {
3893*fae548d3Szrj   if (length >= 16)
3894*fae548d3Szrj     {
3895*fae548d3Szrj       // Build a jmp instruction to skip over the bytes.
3896*fae548d3Szrj       unsigned char jmp[5];
3897*fae548d3Szrj       jmp[0] = 0xe9;
3898*fae548d3Szrj       elfcpp::Swap_unaligned<32, false>::writeval(jmp + 1, length - 5);
3899*fae548d3Szrj       return (std::string(reinterpret_cast<char*>(&jmp[0]), 5)
3900*fae548d3Szrj 	      + std::string(length - 5, static_cast<char>(0x90)));
3901*fae548d3Szrj     }
3902*fae548d3Szrj 
3903*fae548d3Szrj   // Nop sequences of various lengths.
3904*fae548d3Szrj   const char nop1[1] = { '\x90' };                   // nop
3905*fae548d3Szrj   const char nop2[2] = { '\x66', '\x90' };           // xchg %ax %ax
3906*fae548d3Szrj   const char nop3[3] = { '\x8d', '\x76', '\x00' };   // leal 0(%esi),%esi
3907*fae548d3Szrj   const char nop4[4] = { '\x8d', '\x74', '\x26',     // leal 0(%esi,1),%esi
3908*fae548d3Szrj 			 '\x00'};
3909*fae548d3Szrj   const char nop5[5] = { '\x90', '\x8d', '\x74',     // nop
3910*fae548d3Szrj 			 '\x26', '\x00' };           // leal 0(%esi,1),%esi
3911*fae548d3Szrj   const char nop6[6] = { '\x8d', '\xb6', '\x00',     // leal 0L(%esi),%esi
3912*fae548d3Szrj 			 '\x00', '\x00', '\x00' };
3913*fae548d3Szrj   const char nop7[7] = { '\x8d', '\xb4', '\x26',     // leal 0L(%esi,1),%esi
3914*fae548d3Szrj 			 '\x00', '\x00', '\x00',
3915*fae548d3Szrj 			 '\x00' };
3916*fae548d3Szrj   const char nop8[8] = { '\x90', '\x8d', '\xb4',     // nop
3917*fae548d3Szrj 			 '\x26', '\x00', '\x00',     // leal 0L(%esi,1),%esi
3918*fae548d3Szrj 			 '\x00', '\x00' };
3919*fae548d3Szrj   const char nop9[9] = { '\x89', '\xf6', '\x8d',     // movl %esi,%esi
3920*fae548d3Szrj 			 '\xbc', '\x27', '\x00',     // leal 0L(%edi,1),%edi
3921*fae548d3Szrj 			 '\x00', '\x00', '\x00' };
3922*fae548d3Szrj   const char nop10[10] = { '\x8d', '\x76', '\x00',   // leal 0(%esi),%esi
3923*fae548d3Szrj 			   '\x8d', '\xbc', '\x27',   // leal 0L(%edi,1),%edi
3924*fae548d3Szrj 			   '\x00', '\x00', '\x00',
3925*fae548d3Szrj 			   '\x00' };
3926*fae548d3Szrj   const char nop11[11] = { '\x8d', '\x74', '\x26',   // leal 0(%esi,1),%esi
3927*fae548d3Szrj 			   '\x00', '\x8d', '\xbc',   // leal 0L(%edi,1),%edi
3928*fae548d3Szrj 			   '\x27', '\x00', '\x00',
3929*fae548d3Szrj 			   '\x00', '\x00' };
3930*fae548d3Szrj   const char nop12[12] = { '\x8d', '\xb6', '\x00',   // leal 0L(%esi),%esi
3931*fae548d3Szrj 			   '\x00', '\x00', '\x00',   // leal 0L(%edi),%edi
3932*fae548d3Szrj 			   '\x8d', '\xbf', '\x00',
3933*fae548d3Szrj 			   '\x00', '\x00', '\x00' };
3934*fae548d3Szrj   const char nop13[13] = { '\x8d', '\xb6', '\x00',   // leal 0L(%esi),%esi
3935*fae548d3Szrj 			   '\x00', '\x00', '\x00',   // leal 0L(%edi,1),%edi
3936*fae548d3Szrj 			   '\x8d', '\xbc', '\x27',
3937*fae548d3Szrj 			   '\x00', '\x00', '\x00',
3938*fae548d3Szrj 			   '\x00' };
3939*fae548d3Szrj   const char nop14[14] = { '\x8d', '\xb4', '\x26',   // leal 0L(%esi,1),%esi
3940*fae548d3Szrj 			   '\x00', '\x00', '\x00',   // leal 0L(%edi,1),%edi
3941*fae548d3Szrj 			   '\x00', '\x8d', '\xbc',
3942*fae548d3Szrj 			   '\x27', '\x00', '\x00',
3943*fae548d3Szrj 			   '\x00', '\x00' };
3944*fae548d3Szrj   const char nop15[15] = { '\xeb', '\x0d', '\x90',   // jmp .+15
3945*fae548d3Szrj 			   '\x90', '\x90', '\x90',   // nop,nop,nop,...
3946*fae548d3Szrj 			   '\x90', '\x90', '\x90',
3947*fae548d3Szrj 			   '\x90', '\x90', '\x90',
3948*fae548d3Szrj 			   '\x90', '\x90', '\x90' };
3949*fae548d3Szrj 
3950*fae548d3Szrj   const char* nops[16] = {
3951*fae548d3Szrj     NULL,
3952*fae548d3Szrj     nop1, nop2, nop3, nop4, nop5, nop6, nop7,
3953*fae548d3Szrj     nop8, nop9, nop10, nop11, nop12, nop13, nop14, nop15
3954*fae548d3Szrj   };
3955*fae548d3Szrj 
3956*fae548d3Szrj   return std::string(nops[length], length);
3957*fae548d3Szrj }
3958*fae548d3Szrj 
3959*fae548d3Szrj // Return the value to use for the base of a DW_EH_PE_datarel offset
3960*fae548d3Szrj // in an FDE.  Solaris and SVR4 use DW_EH_PE_datarel because their
3961*fae548d3Szrj // assembler can not write out the difference between two labels in
3962*fae548d3Szrj // different sections, so instead of using a pc-relative value they
3963*fae548d3Szrj // use an offset from the GOT.
3964*fae548d3Szrj 
3965*fae548d3Szrj uint64_t
do_ehframe_datarel_base() const3966*fae548d3Szrj Target_i386::do_ehframe_datarel_base() const
3967*fae548d3Szrj {
3968*fae548d3Szrj   gold_assert(this->global_offset_table_ != NULL);
3969*fae548d3Szrj   Symbol* sym = this->global_offset_table_;
3970*fae548d3Szrj   Sized_symbol<32>* ssym = static_cast<Sized_symbol<32>*>(sym);
3971*fae548d3Szrj   return ssym->value();
3972*fae548d3Szrj }
3973*fae548d3Szrj 
3974*fae548d3Szrj // Return whether SYM should be treated as a call to a non-split
3975*fae548d3Szrj // function.  We don't want that to be true of a call to a
3976*fae548d3Szrj // get_pc_thunk function.
3977*fae548d3Szrj 
3978*fae548d3Szrj bool
do_is_call_to_non_split(const Symbol * sym,const unsigned char *,const unsigned char *,section_size_type) const3979*fae548d3Szrj Target_i386::do_is_call_to_non_split(const Symbol* sym,
3980*fae548d3Szrj 				     const unsigned char*,
3981*fae548d3Szrj 				     const unsigned char*,
3982*fae548d3Szrj 				     section_size_type) const
3983*fae548d3Szrj {
3984*fae548d3Szrj   return (sym->type() == elfcpp::STT_FUNC
3985*fae548d3Szrj 	  && !is_prefix_of("__i686.get_pc_thunk.", sym->name()));
3986*fae548d3Szrj }
3987*fae548d3Szrj 
3988*fae548d3Szrj // FNOFFSET in section SHNDX in OBJECT is the start of a function
3989*fae548d3Szrj // compiled with -fsplit-stack.  The function calls non-split-stack
3990*fae548d3Szrj // code.  We have to change the function so that it always ensures
3991*fae548d3Szrj // that it has enough stack space to run some random function.
3992*fae548d3Szrj 
3993*fae548d3Szrj void
do_calls_non_split(Relobj * object,unsigned int shndx,section_offset_type fnoffset,section_size_type fnsize,const unsigned char *,size_t,unsigned char * view,section_size_type view_size,std::string * from,std::string * to) const3994*fae548d3Szrj Target_i386::do_calls_non_split(Relobj* object, unsigned int shndx,
3995*fae548d3Szrj 				       section_offset_type fnoffset,
3996*fae548d3Szrj 				       section_size_type fnsize,
3997*fae548d3Szrj 				       const unsigned char*,
3998*fae548d3Szrj 				       size_t,
3999*fae548d3Szrj 				       unsigned char* view,
4000*fae548d3Szrj 				       section_size_type view_size,
4001*fae548d3Szrj 				       std::string* from,
4002*fae548d3Szrj 				       std::string* to) const
4003*fae548d3Szrj {
4004*fae548d3Szrj   // The function starts with a comparison of the stack pointer and a
4005*fae548d3Szrj   // field in the TCB.  This is followed by a jump.
4006*fae548d3Szrj 
4007*fae548d3Szrj   // cmp %gs:NN,%esp
4008*fae548d3Szrj   if (this->match_view(view, view_size, fnoffset, "\x65\x3b\x25", 3)
4009*fae548d3Szrj       && fnsize > 7)
4010*fae548d3Szrj     {
4011*fae548d3Szrj       // We will call __morestack if the carry flag is set after this
4012*fae548d3Szrj       // comparison.  We turn the comparison into an stc instruction
4013*fae548d3Szrj       // and some nops.
4014*fae548d3Szrj       view[fnoffset] = '\xf9';
4015*fae548d3Szrj       this->set_view_to_nop(view, view_size, fnoffset + 1, 6);
4016*fae548d3Szrj     }
4017*fae548d3Szrj   // lea NN(%esp),%ecx
4018*fae548d3Szrj   // lea NN(%esp),%edx
4019*fae548d3Szrj   else if ((this->match_view(view, view_size, fnoffset, "\x8d\x8c\x24", 3)
4020*fae548d3Szrj 	    || this->match_view(view, view_size, fnoffset, "\x8d\x94\x24", 3))
4021*fae548d3Szrj 	   && fnsize > 7)
4022*fae548d3Szrj     {
4023*fae548d3Szrj       // This is loading an offset from the stack pointer for a
4024*fae548d3Szrj       // comparison.  The offset is negative, so we decrease the
4025*fae548d3Szrj       // offset by the amount of space we need for the stack.  This
4026*fae548d3Szrj       // means we will avoid calling __morestack if there happens to
4027*fae548d3Szrj       // be plenty of space on the stack already.
4028*fae548d3Szrj       unsigned char* pval = view + fnoffset + 3;
4029*fae548d3Szrj       uint32_t val = elfcpp::Swap_unaligned<32, false>::readval(pval);
4030*fae548d3Szrj       val -= parameters->options().split_stack_adjust_size();
4031*fae548d3Szrj       elfcpp::Swap_unaligned<32, false>::writeval(pval, val);
4032*fae548d3Szrj     }
4033*fae548d3Szrj   else
4034*fae548d3Szrj     {
4035*fae548d3Szrj       if (!object->has_no_split_stack())
4036*fae548d3Szrj 	object->error(_("failed to match split-stack sequence at "
4037*fae548d3Szrj 			"section %u offset %0zx"),
4038*fae548d3Szrj 		      shndx, static_cast<size_t>(fnoffset));
4039*fae548d3Szrj       return;
4040*fae548d3Szrj     }
4041*fae548d3Szrj 
4042*fae548d3Szrj   // We have to change the function so that it calls
4043*fae548d3Szrj   // __morestack_non_split instead of __morestack.  The former will
4044*fae548d3Szrj   // allocate additional stack space.
4045*fae548d3Szrj   *from = "__morestack";
4046*fae548d3Szrj   *to = "__morestack_non_split";
4047*fae548d3Szrj }
4048*fae548d3Szrj 
4049*fae548d3Szrj // The selector for i386 object files.  Note this is never instantiated
4050*fae548d3Szrj // directly.  It's only used in Target_selector_i386_nacl, below.
4051*fae548d3Szrj 
4052*fae548d3Szrj class Target_selector_i386 : public Target_selector_freebsd
4053*fae548d3Szrj {
4054*fae548d3Szrj public:
Target_selector_i386()4055*fae548d3Szrj   Target_selector_i386()
4056*fae548d3Szrj     : Target_selector_freebsd(elfcpp::EM_386, 32, false,
4057*fae548d3Szrj 			      "elf32-i386", "elf32-i386-freebsd",
4058*fae548d3Szrj 			      "elf_i386")
4059*fae548d3Szrj   { }
4060*fae548d3Szrj 
4061*fae548d3Szrj   Target*
do_instantiate_target()4062*fae548d3Szrj   do_instantiate_target()
4063*fae548d3Szrj   { return new Target_i386(); }
4064*fae548d3Szrj };
4065*fae548d3Szrj 
4066*fae548d3Szrj // NaCl variant.  It uses different PLT contents.
4067*fae548d3Szrj 
4068*fae548d3Szrj class Output_data_plt_i386_nacl : public Output_data_plt_i386
4069*fae548d3Szrj {
4070*fae548d3Szrj  public:
Output_data_plt_i386_nacl(Layout * layout,Output_data_got_plt_i386 * got_plt,Output_data_space * got_irelative)4071*fae548d3Szrj   Output_data_plt_i386_nacl(Layout* layout,
4072*fae548d3Szrj 			    Output_data_got_plt_i386* got_plt,
4073*fae548d3Szrj 			    Output_data_space* got_irelative)
4074*fae548d3Szrj     : Output_data_plt_i386(layout, plt_entry_size, got_plt, got_irelative)
4075*fae548d3Szrj   { }
4076*fae548d3Szrj 
4077*fae548d3Szrj  protected:
4078*fae548d3Szrj   virtual unsigned int
do_get_plt_entry_size() const4079*fae548d3Szrj   do_get_plt_entry_size() const
4080*fae548d3Szrj   { return plt_entry_size; }
4081*fae548d3Szrj 
4082*fae548d3Szrj   virtual void
do_add_eh_frame(Layout * layout)4083*fae548d3Szrj   do_add_eh_frame(Layout* layout)
4084*fae548d3Szrj   {
4085*fae548d3Szrj     layout->add_eh_frame_for_plt(this, plt_eh_frame_cie, plt_eh_frame_cie_size,
4086*fae548d3Szrj 				 plt_eh_frame_fde, plt_eh_frame_fde_size);
4087*fae548d3Szrj   }
4088*fae548d3Szrj 
4089*fae548d3Szrj   // The size of an entry in the PLT.
4090*fae548d3Szrj   static const int plt_entry_size = 64;
4091*fae548d3Szrj 
4092*fae548d3Szrj   // The .eh_frame unwind information for the PLT.
4093*fae548d3Szrj   static const int plt_eh_frame_fde_size = 32;
4094*fae548d3Szrj   static const unsigned char plt_eh_frame_fde[plt_eh_frame_fde_size];
4095*fae548d3Szrj };
4096*fae548d3Szrj 
4097*fae548d3Szrj class Output_data_plt_i386_nacl_exec : public Output_data_plt_i386_nacl
4098*fae548d3Szrj {
4099*fae548d3Szrj public:
Output_data_plt_i386_nacl_exec(Layout * layout,Output_data_got_plt_i386 * got_plt,Output_data_space * got_irelative)4100*fae548d3Szrj   Output_data_plt_i386_nacl_exec(Layout* layout,
4101*fae548d3Szrj 				 Output_data_got_plt_i386* got_plt,
4102*fae548d3Szrj 				 Output_data_space* got_irelative)
4103*fae548d3Szrj     : Output_data_plt_i386_nacl(layout, got_plt, got_irelative)
4104*fae548d3Szrj   { }
4105*fae548d3Szrj 
4106*fae548d3Szrj  protected:
4107*fae548d3Szrj   virtual void
4108*fae548d3Szrj   do_fill_first_plt_entry(unsigned char* pov,
4109*fae548d3Szrj 			  elfcpp::Elf_types<32>::Elf_Addr got_address);
4110*fae548d3Szrj 
4111*fae548d3Szrj   virtual unsigned int
4112*fae548d3Szrj   do_fill_plt_entry(unsigned char* pov,
4113*fae548d3Szrj 		    elfcpp::Elf_types<32>::Elf_Addr got_address,
4114*fae548d3Szrj 		    unsigned int got_offset,
4115*fae548d3Szrj 		    unsigned int plt_offset,
4116*fae548d3Szrj 		    unsigned int plt_rel_offset);
4117*fae548d3Szrj 
4118*fae548d3Szrj  private:
4119*fae548d3Szrj   // The first entry in the PLT for an executable.
4120*fae548d3Szrj   static const unsigned char first_plt_entry[plt_entry_size];
4121*fae548d3Szrj 
4122*fae548d3Szrj   // Other entries in the PLT for an executable.
4123*fae548d3Szrj   static const unsigned char plt_entry[plt_entry_size];
4124*fae548d3Szrj };
4125*fae548d3Szrj 
4126*fae548d3Szrj class Output_data_plt_i386_nacl_dyn : public Output_data_plt_i386_nacl
4127*fae548d3Szrj {
4128*fae548d3Szrj  public:
Output_data_plt_i386_nacl_dyn(Layout * layout,Output_data_got_plt_i386 * got_plt,Output_data_space * got_irelative)4129*fae548d3Szrj   Output_data_plt_i386_nacl_dyn(Layout* layout,
4130*fae548d3Szrj 				Output_data_got_plt_i386* got_plt,
4131*fae548d3Szrj 				Output_data_space* got_irelative)
4132*fae548d3Szrj     : Output_data_plt_i386_nacl(layout, got_plt, got_irelative)
4133*fae548d3Szrj   { }
4134*fae548d3Szrj 
4135*fae548d3Szrj  protected:
4136*fae548d3Szrj   virtual void
4137*fae548d3Szrj   do_fill_first_plt_entry(unsigned char* pov, elfcpp::Elf_types<32>::Elf_Addr);
4138*fae548d3Szrj 
4139*fae548d3Szrj   virtual unsigned int
4140*fae548d3Szrj   do_fill_plt_entry(unsigned char* pov,
4141*fae548d3Szrj 		    elfcpp::Elf_types<32>::Elf_Addr,
4142*fae548d3Szrj 		    unsigned int got_offset,
4143*fae548d3Szrj 		    unsigned int plt_offset,
4144*fae548d3Szrj 		    unsigned int plt_rel_offset);
4145*fae548d3Szrj 
4146*fae548d3Szrj  private:
4147*fae548d3Szrj   // The first entry in the PLT for a shared object.
4148*fae548d3Szrj   static const unsigned char first_plt_entry[plt_entry_size];
4149*fae548d3Szrj 
4150*fae548d3Szrj   // Other entries in the PLT for a shared object.
4151*fae548d3Szrj   static const unsigned char plt_entry[plt_entry_size];
4152*fae548d3Szrj };
4153*fae548d3Szrj 
4154*fae548d3Szrj class Target_i386_nacl : public Target_i386
4155*fae548d3Szrj {
4156*fae548d3Szrj  public:
Target_i386_nacl()4157*fae548d3Szrj   Target_i386_nacl()
4158*fae548d3Szrj     : Target_i386(&i386_nacl_info)
4159*fae548d3Szrj   { }
4160*fae548d3Szrj 
4161*fae548d3Szrj  protected:
4162*fae548d3Szrj   virtual Output_data_plt_i386*
do_make_data_plt(Layout * layout,Output_data_got_plt_i386 * got_plt,Output_data_space * got_irelative,bool dyn)4163*fae548d3Szrj   do_make_data_plt(Layout* layout,
4164*fae548d3Szrj 		   Output_data_got_plt_i386* got_plt,
4165*fae548d3Szrj 		   Output_data_space* got_irelative,
4166*fae548d3Szrj 		   bool dyn)
4167*fae548d3Szrj   {
4168*fae548d3Szrj     if (dyn)
4169*fae548d3Szrj       return new Output_data_plt_i386_nacl_dyn(layout, got_plt, got_irelative);
4170*fae548d3Szrj     else
4171*fae548d3Szrj       return new Output_data_plt_i386_nacl_exec(layout, got_plt, got_irelative);
4172*fae548d3Szrj   }
4173*fae548d3Szrj 
4174*fae548d3Szrj   virtual std::string
4175*fae548d3Szrj   do_code_fill(section_size_type length) const;
4176*fae548d3Szrj 
4177*fae548d3Szrj  private:
4178*fae548d3Szrj   static const Target::Target_info i386_nacl_info;
4179*fae548d3Szrj };
4180*fae548d3Szrj 
4181*fae548d3Szrj const Target::Target_info Target_i386_nacl::i386_nacl_info =
4182*fae548d3Szrj {
4183*fae548d3Szrj   32,			// size
4184*fae548d3Szrj   false,		// is_big_endian
4185*fae548d3Szrj   elfcpp::EM_386,	// machine_code
4186*fae548d3Szrj   false,		// has_make_symbol
4187*fae548d3Szrj   false,		// has_resolve
4188*fae548d3Szrj   true,			// has_code_fill
4189*fae548d3Szrj   true,			// is_default_stack_executable
4190*fae548d3Szrj   true,			// can_icf_inline_merge_sections
4191*fae548d3Szrj   '\0',			// wrap_char
4192*fae548d3Szrj   "/lib/ld-nacl-x86-32.so.1", // dynamic_linker
4193*fae548d3Szrj   0x20000,		// default_text_segment_address
4194*fae548d3Szrj   0x10000,		// abi_pagesize (overridable by -z max-page-size)
4195*fae548d3Szrj   0x10000,		// common_pagesize (overridable by -z common-page-size)
4196*fae548d3Szrj   true,                 // isolate_execinstr
4197*fae548d3Szrj   0x10000000,           // rosegment_gap
4198*fae548d3Szrj   elfcpp::SHN_UNDEF,	// small_common_shndx
4199*fae548d3Szrj   elfcpp::SHN_UNDEF,	// large_common_shndx
4200*fae548d3Szrj   0,			// small_common_section_flags
4201*fae548d3Szrj   0,			// large_common_section_flags
4202*fae548d3Szrj   NULL,			// attributes_section
4203*fae548d3Szrj   NULL,			// attributes_vendor
4204*fae548d3Szrj   "_start",		// entry_symbol_name
4205*fae548d3Szrj   32,			// hash_entry_size
4206*fae548d3Szrj   elfcpp::SHT_PROGBITS,	// unwind_section_type
4207*fae548d3Szrj };
4208*fae548d3Szrj 
4209*fae548d3Szrj #define	NACLMASK	0xe0            // 32-byte alignment mask
4210*fae548d3Szrj 
4211*fae548d3Szrj const unsigned char
4212*fae548d3Szrj Output_data_plt_i386_nacl_exec::first_plt_entry[plt_entry_size] =
4213*fae548d3Szrj {
4214*fae548d3Szrj   0xff, 0x35,                          // pushl contents of memory address
4215*fae548d3Szrj   0, 0, 0, 0,                          // replaced with address of .got + 4
4216*fae548d3Szrj   0x8b, 0x0d,                          // movl contents of address, %ecx
4217*fae548d3Szrj   0, 0, 0, 0,                          // replaced with address of .got + 8
4218*fae548d3Szrj   0x83, 0xe1, NACLMASK,                // andl $NACLMASK, %ecx
4219*fae548d3Szrj   0xff, 0xe1,                          // jmp *%ecx
4220*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4221*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4222*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4223*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4224*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4225*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4226*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4227*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90
4228*fae548d3Szrj };
4229*fae548d3Szrj 
4230*fae548d3Szrj void
do_fill_first_plt_entry(unsigned char * pov,elfcpp::Elf_types<32>::Elf_Addr got_address)4231*fae548d3Szrj Output_data_plt_i386_nacl_exec::do_fill_first_plt_entry(
4232*fae548d3Szrj     unsigned char* pov,
4233*fae548d3Szrj     elfcpp::Elf_types<32>::Elf_Addr got_address)
4234*fae548d3Szrj {
4235*fae548d3Szrj   memcpy(pov, first_plt_entry, plt_entry_size);
4236*fae548d3Szrj   elfcpp::Swap_unaligned<32, false>::writeval(pov + 2, got_address + 4);
4237*fae548d3Szrj   elfcpp::Swap<32, false>::writeval(pov + 8, got_address + 8);
4238*fae548d3Szrj }
4239*fae548d3Szrj 
4240*fae548d3Szrj // The first entry in the PLT for a shared object.
4241*fae548d3Szrj 
4242*fae548d3Szrj const unsigned char
4243*fae548d3Szrj Output_data_plt_i386_nacl_dyn::first_plt_entry[plt_entry_size] =
4244*fae548d3Szrj {
4245*fae548d3Szrj   0xff, 0xb3, 4, 0, 0, 0,	// pushl 4(%ebx)
4246*fae548d3Szrj   0x8b, 0x4b, 0x08,		// mov 0x8(%ebx), %ecx
4247*fae548d3Szrj   0x83, 0xe1, NACLMASK,         // andl $NACLMASK, %ecx
4248*fae548d3Szrj   0xff, 0xe1,                   // jmp *%ecx
4249*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4250*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4251*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4252*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4253*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4254*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4255*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4256*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4257*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90,  // nops
4258*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90   // nops
4259*fae548d3Szrj };
4260*fae548d3Szrj 
4261*fae548d3Szrj void
do_fill_first_plt_entry(unsigned char * pov,elfcpp::Elf_types<32>::Elf_Addr)4262*fae548d3Szrj Output_data_plt_i386_nacl_dyn::do_fill_first_plt_entry(
4263*fae548d3Szrj     unsigned char* pov,
4264*fae548d3Szrj     elfcpp::Elf_types<32>::Elf_Addr)
4265*fae548d3Szrj {
4266*fae548d3Szrj   memcpy(pov, first_plt_entry, plt_entry_size);
4267*fae548d3Szrj }
4268*fae548d3Szrj 
4269*fae548d3Szrj // Subsequent entries in the PLT for an executable.
4270*fae548d3Szrj 
4271*fae548d3Szrj const unsigned char
4272*fae548d3Szrj Output_data_plt_i386_nacl_exec::plt_entry[plt_entry_size] =
4273*fae548d3Szrj {
4274*fae548d3Szrj   0x8b, 0x0d,                    // movl contents of address, %ecx */
4275*fae548d3Szrj   0, 0, 0, 0,                    // replaced with address of symbol in .got
4276*fae548d3Szrj   0x83, 0xe1, NACLMASK,          // andl $NACLMASK, %ecx
4277*fae548d3Szrj   0xff, 0xe1,                    // jmp *%ecx
4278*fae548d3Szrj 
4279*fae548d3Szrj   // Pad to the next 32-byte boundary with nop instructions.
4280*fae548d3Szrj   0x90,
4281*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
4282*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
4283*fae548d3Szrj 
4284*fae548d3Szrj   // Lazy GOT entries point here (32-byte aligned).
4285*fae548d3Szrj   0x68,                       // pushl immediate
4286*fae548d3Szrj   0, 0, 0, 0,                 // replaced with offset into relocation table
4287*fae548d3Szrj   0xe9,                       // jmp relative
4288*fae548d3Szrj   0, 0, 0, 0,                 // replaced with offset to start of .plt
4289*fae548d3Szrj 
4290*fae548d3Szrj   // Pad to the next 32-byte boundary with nop instructions.
4291*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
4292*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
4293*fae548d3Szrj   0x90, 0x90
4294*fae548d3Szrj };
4295*fae548d3Szrj 
4296*fae548d3Szrj unsigned int
do_fill_plt_entry(unsigned char * pov,elfcpp::Elf_types<32>::Elf_Addr got_address,unsigned int got_offset,unsigned int plt_offset,unsigned int plt_rel_offset)4297*fae548d3Szrj Output_data_plt_i386_nacl_exec::do_fill_plt_entry(
4298*fae548d3Szrj     unsigned char* pov,
4299*fae548d3Szrj     elfcpp::Elf_types<32>::Elf_Addr got_address,
4300*fae548d3Szrj     unsigned int got_offset,
4301*fae548d3Szrj     unsigned int plt_offset,
4302*fae548d3Szrj     unsigned int plt_rel_offset)
4303*fae548d3Szrj {
4304*fae548d3Szrj   memcpy(pov, plt_entry, plt_entry_size);
4305*fae548d3Szrj   elfcpp::Swap_unaligned<32, false>::writeval(pov + 2,
4306*fae548d3Szrj 					      got_address + got_offset);
4307*fae548d3Szrj   elfcpp::Swap_unaligned<32, false>::writeval(pov + 33, plt_rel_offset);
4308*fae548d3Szrj   elfcpp::Swap<32, false>::writeval(pov + 38, - (plt_offset + 38 + 4));
4309*fae548d3Szrj   return 32;
4310*fae548d3Szrj }
4311*fae548d3Szrj 
4312*fae548d3Szrj // Subsequent entries in the PLT for a shared object.
4313*fae548d3Szrj 
4314*fae548d3Szrj const unsigned char
4315*fae548d3Szrj Output_data_plt_i386_nacl_dyn::plt_entry[plt_entry_size] =
4316*fae548d3Szrj {
4317*fae548d3Szrj   0x8b, 0x8b,          // movl offset(%ebx), %ecx
4318*fae548d3Szrj   0, 0, 0, 0,          // replaced with offset of symbol in .got
4319*fae548d3Szrj   0x83, 0xe1, 0xe0,    // andl $NACLMASK, %ecx
4320*fae548d3Szrj   0xff, 0xe1,          // jmp *%ecx
4321*fae548d3Szrj 
4322*fae548d3Szrj   // Pad to the next 32-byte boundary with nop instructions.
4323*fae548d3Szrj   0x90,
4324*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
4325*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
4326*fae548d3Szrj 
4327*fae548d3Szrj   // Lazy GOT entries point here (32-byte aligned).
4328*fae548d3Szrj   0x68,                // pushl immediate
4329*fae548d3Szrj   0, 0, 0, 0,          // replaced with offset into relocation table.
4330*fae548d3Szrj   0xe9,                // jmp relative
4331*fae548d3Szrj   0, 0, 0, 0,          // replaced with offset to start of .plt.
4332*fae548d3Szrj 
4333*fae548d3Szrj   // Pad to the next 32-byte boundary with nop instructions.
4334*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
4335*fae548d3Szrj   0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
4336*fae548d3Szrj   0x90, 0x90
4337*fae548d3Szrj };
4338*fae548d3Szrj 
4339*fae548d3Szrj unsigned int
do_fill_plt_entry(unsigned char * pov,elfcpp::Elf_types<32>::Elf_Addr,unsigned int got_offset,unsigned int plt_offset,unsigned int plt_rel_offset)4340*fae548d3Szrj Output_data_plt_i386_nacl_dyn::do_fill_plt_entry(
4341*fae548d3Szrj     unsigned char* pov,
4342*fae548d3Szrj     elfcpp::Elf_types<32>::Elf_Addr,
4343*fae548d3Szrj     unsigned int got_offset,
4344*fae548d3Szrj     unsigned int plt_offset,
4345*fae548d3Szrj     unsigned int plt_rel_offset)
4346*fae548d3Szrj {
4347*fae548d3Szrj   memcpy(pov, plt_entry, plt_entry_size);
4348*fae548d3Szrj   elfcpp::Swap_unaligned<32, false>::writeval(pov + 2, got_offset);
4349*fae548d3Szrj   elfcpp::Swap_unaligned<32, false>::writeval(pov + 33, plt_rel_offset);
4350*fae548d3Szrj   elfcpp::Swap<32, false>::writeval(pov + 38, - (plt_offset + 38 + 4));
4351*fae548d3Szrj   return 32;
4352*fae548d3Szrj }
4353*fae548d3Szrj 
4354*fae548d3Szrj const unsigned char
4355*fae548d3Szrj Output_data_plt_i386_nacl::plt_eh_frame_fde[plt_eh_frame_fde_size] =
4356*fae548d3Szrj {
4357*fae548d3Szrj   0, 0, 0, 0,				// Replaced with offset to .plt.
4358*fae548d3Szrj   0, 0, 0, 0,				// Replaced with size of .plt.
4359*fae548d3Szrj   0,					// Augmentation size.
4360*fae548d3Szrj   elfcpp::DW_CFA_def_cfa_offset, 8,	// DW_CFA_def_cfa_offset: 8.
4361*fae548d3Szrj   elfcpp::DW_CFA_advance_loc + 6,	// Advance 6 to __PLT__ + 6.
4362*fae548d3Szrj   elfcpp::DW_CFA_def_cfa_offset, 12,	// DW_CFA_def_cfa_offset: 12.
4363*fae548d3Szrj   elfcpp::DW_CFA_advance_loc + 58,	// Advance 58 to __PLT__ + 64.
4364*fae548d3Szrj   elfcpp::DW_CFA_def_cfa_expression,	// DW_CFA_def_cfa_expression.
4365*fae548d3Szrj   13,					// Block length.
4366*fae548d3Szrj   elfcpp::DW_OP_breg4, 4,		// Push %esp + 4.
4367*fae548d3Szrj   elfcpp::DW_OP_breg8, 0,		// Push %eip.
4368*fae548d3Szrj   elfcpp::DW_OP_const1u, 63,            // Push 0x3f.
4369*fae548d3Szrj   elfcpp::DW_OP_and,			// & (%eip & 0x3f).
4370*fae548d3Szrj   elfcpp::DW_OP_const1u, 37,            // Push 0x25.
4371*fae548d3Szrj   elfcpp::DW_OP_ge,			// >= ((%eip & 0x3f) >= 0x25)
4372*fae548d3Szrj   elfcpp::DW_OP_lit2,			// Push 2.
4373*fae548d3Szrj   elfcpp::DW_OP_shl,			// << (((%eip & 0x3f) >= 0x25) << 2)
4374*fae548d3Szrj   elfcpp::DW_OP_plus,			// + ((((%eip&0x3f)>=0x25)<<2)+%esp+4
4375*fae548d3Szrj   elfcpp::DW_CFA_nop,			// Align to 32 bytes.
4376*fae548d3Szrj   elfcpp::DW_CFA_nop
4377*fae548d3Szrj };
4378*fae548d3Szrj 
4379*fae548d3Szrj // Return a string used to fill a code section with nops.
4380*fae548d3Szrj // For NaCl, long NOPs are only valid if they do not cross
4381*fae548d3Szrj // bundle alignment boundaries, so keep it simple with one-byte NOPs.
4382*fae548d3Szrj std::string
do_code_fill(section_size_type length) const4383*fae548d3Szrj Target_i386_nacl::do_code_fill(section_size_type length) const
4384*fae548d3Szrj {
4385*fae548d3Szrj   return std::string(length, static_cast<char>(0x90));
4386*fae548d3Szrj }
4387*fae548d3Szrj 
4388*fae548d3Szrj // The selector for i386-nacl object files.
4389*fae548d3Szrj 
4390*fae548d3Szrj class Target_selector_i386_nacl
4391*fae548d3Szrj   : public Target_selector_nacl<Target_selector_i386, Target_i386_nacl>
4392*fae548d3Szrj {
4393*fae548d3Szrj  public:
Target_selector_i386_nacl()4394*fae548d3Szrj   Target_selector_i386_nacl()
4395*fae548d3Szrj     : Target_selector_nacl<Target_selector_i386,
4396*fae548d3Szrj 			   Target_i386_nacl>("x86-32",
4397*fae548d3Szrj 					     "elf32-i386-nacl",
4398*fae548d3Szrj 					     "elf_i386_nacl")
4399*fae548d3Szrj   { }
4400*fae548d3Szrj };
4401*fae548d3Szrj 
4402*fae548d3Szrj Target_selector_i386_nacl target_selector_i386;
4403*fae548d3Szrj 
4404*fae548d3Szrj // IAMCU variant.  It uses EM_IAMCU, not EM_386.
4405*fae548d3Szrj 
4406*fae548d3Szrj class Target_iamcu : public Target_i386
4407*fae548d3Szrj {
4408*fae548d3Szrj  public:
Target_iamcu()4409*fae548d3Szrj   Target_iamcu()
4410*fae548d3Szrj     : Target_i386(&iamcu_info)
4411*fae548d3Szrj   { }
4412*fae548d3Szrj 
4413*fae548d3Szrj  private:
4414*fae548d3Szrj   // Information about this specific target which we pass to the
4415*fae548d3Szrj   // general Target structure.
4416*fae548d3Szrj   static const Target::Target_info iamcu_info;
4417*fae548d3Szrj };
4418*fae548d3Szrj 
4419*fae548d3Szrj const Target::Target_info Target_iamcu::iamcu_info =
4420*fae548d3Szrj {
4421*fae548d3Szrj   32,			// size
4422*fae548d3Szrj   false,		// is_big_endian
4423*fae548d3Szrj   elfcpp::EM_IAMCU,	// machine_code
4424*fae548d3Szrj   false,		// has_make_symbol
4425*fae548d3Szrj   false,		// has_resolve
4426*fae548d3Szrj   true,			// has_code_fill
4427*fae548d3Szrj   true,			// is_default_stack_executable
4428*fae548d3Szrj   true,			// can_icf_inline_merge_sections
4429*fae548d3Szrj   '\0',			// wrap_char
4430*fae548d3Szrj   "/usr/lib/libc.so.1",	// dynamic_linker
4431*fae548d3Szrj   0x08048000,		// default_text_segment_address
4432*fae548d3Szrj   0x1000,		// abi_pagesize (overridable by -z max-page-size)
4433*fae548d3Szrj   0x1000,		// common_pagesize (overridable by -z common-page-size)
4434*fae548d3Szrj   false,                // isolate_execinstr
4435*fae548d3Szrj   0,                    // rosegment_gap
4436*fae548d3Szrj   elfcpp::SHN_UNDEF,	// small_common_shndx
4437*fae548d3Szrj   elfcpp::SHN_UNDEF,	// large_common_shndx
4438*fae548d3Szrj   0,			// small_common_section_flags
4439*fae548d3Szrj   0,			// large_common_section_flags
4440*fae548d3Szrj   NULL,			// attributes_section
4441*fae548d3Szrj   NULL,			// attributes_vendor
4442*fae548d3Szrj   "_start",		// entry_symbol_name
4443*fae548d3Szrj   32,			// hash_entry_size
4444*fae548d3Szrj   elfcpp::SHT_PROGBITS,	// unwind_section_type
4445*fae548d3Szrj };
4446*fae548d3Szrj 
4447*fae548d3Szrj class Target_selector_iamcu : public Target_selector
4448*fae548d3Szrj {
4449*fae548d3Szrj public:
Target_selector_iamcu()4450*fae548d3Szrj   Target_selector_iamcu()
4451*fae548d3Szrj     : Target_selector(elfcpp::EM_IAMCU, 32, false, "elf32-iamcu",
4452*fae548d3Szrj 		      "elf_iamcu")
4453*fae548d3Szrj   { }
4454*fae548d3Szrj 
4455*fae548d3Szrj   Target*
do_instantiate_target()4456*fae548d3Szrj   do_instantiate_target()
4457*fae548d3Szrj   { return new Target_iamcu(); }
4458*fae548d3Szrj };
4459*fae548d3Szrj 
4460*fae548d3Szrj Target_selector_iamcu target_selector_iamcu;
4461*fae548d3Szrj 
4462*fae548d3Szrj } // End anonymous namespace.
4463