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