* Makefile.am (ALL_64_EMULATION_SOURCES): Add powerpc64-*-freebsd
[deliverable/binutils-gdb.git] / ld / emultempl / ppc64elf.em
CommitLineData
1f808cd5 1# This shell script emits a C file. -*- C -*-
e922bcab 2# Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
74f0fb50 3# Free Software Foundation, Inc.
1f808cd5 4#
f96b4a7b 5# This file is part of the GNU Binutils.
1f808cd5
AM
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
f96b4a7b 9# the Free Software Foundation; either version 3 of the License, or
1f808cd5
AM
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
f96b4a7b
NC
19# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20# MA 02110-1301, USA.
1f808cd5
AM
21#
22
23# This file is sourced from elf32.em, and defines extra powerpc64-elf
24# specific routines.
25#
92b93329 26fragment <<EOF
1f808cd5 27
9c1d81c1 28#include "ldctor.h"
805fc799 29#include "libbfd.h"
83490352 30#include "elf-bfd.h"
1f808cd5
AM
31#include "elf64-ppc.h"
32
9c1d81c1
AM
33/* Fake input file for stubs. */
34static lang_input_statement_type *stub_file;
68f8ff14 35static int stub_added = 0;
9c1d81c1 36
deb04cdb
AM
37/* Whether we need to call ppc_layout_sections_again. */
38static int need_laying_out = 0;
39
9c1d81c1
AM
40/* Maximum size of a group of input sections that can be handled by
41 one stub section. A value of +/-1 indicates the bfd back-end
42 should use a suitable default size. */
43static bfd_signed_vma group_size = 1;
44
fac1652d
AM
45/* Whether to add ".foo" entries for each "foo" in a version script. */
46static int dotsyms = 1;
47
e5096e3f 48/* Whether to run tls optimization. */
c5614fa4 49static int no_tls_opt = 0;
a7f2871e 50static int no_tls_get_addr_opt = 0;
c5614fa4
AM
51
52/* Whether to run opd optimization. */
53static int no_opd_opt = 0;
54
55/* Whether to run toc optimization. */
56static int no_toc_opt = 0;
e5096e3f 57
4c52953f
AM
58/* Whether to allow multiple toc sections. */
59static int no_multi_toc = 0;
60
d43d0b53
AM
61/* Whether to sort input toc and got sections. */
62static int no_toc_sort = 0;
63
9df0ef5f 64/* Set if PLT call stubs should load r11. */
bd59d916 65static int plt_static_chain = ${DEFAULT_PLT_STATIC_CHAIN-0};
9df0ef5f 66
0b9a4d73 67/* Whether to emit symbols for stubs. */
b02c4cfa 68static int emit_stub_syms = -1;
0b9a4d73
AM
69
70static asection *toc_section = 0;
71
3f764659
JJ
72/* Whether to canonicalize .opd so that there are no overlapping
73 .opd entries. */
74static int non_overlapping_opd = 0;
9c1d81c1
AM
75
76/* This is called before the input files are opened. We create a new
77 fake input file to hold the stub sections. */
78
79static void
7d8a3a28 80ppc_create_output_section_statements (void)
9c1d81c1 81{
5503fea1 82 if (!(bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour
4dfe6ac6 83 && elf_object_id (link_info.output_bfd) == PPC64_ELF_DATA))
a015f5ec
AM
84 return;
85
b9cf773d
AM
86 link_info.wrap_char = '.';
87
9c1d81c1
AM
88 stub_file = lang_add_input_file ("linker stubs",
89 lang_input_file_is_fake_enum,
90 NULL);
f13a99db 91 stub_file->the_bfd = bfd_create ("linker stubs", link_info.output_bfd);
9c1d81c1
AM
92 if (stub_file->the_bfd == NULL
93 || !bfd_set_arch_mach (stub_file->the_bfd,
f13a99db
AM
94 bfd_get_arch (link_info.output_bfd),
95 bfd_get_mach (link_info.output_bfd)))
9c1d81c1 96 {
f7c46796 97 einfo ("%F%P: can not create BFD: %E\n");
9c1d81c1
AM
98 return;
99 }
100
d457dcf6 101 stub_file->the_bfd->flags |= BFD_LINKER_CREATED;
9c1d81c1 102 ldlang_add_file (stub_file);
68f8ff14 103 ppc64_elf_init_stub_bfd (stub_file->the_bfd, &link_info);
9c1d81c1
AM
104}
105
d43d0b53
AM
106/* Move the input section statement at *U which happens to be on LIST
107 to be just before *TO. */
108
109static void
110move_input_section (lang_statement_list_type *list,
111 lang_statement_union_type **u,
112 lang_statement_union_type **to)
113{
114 lang_statement_union_type *s = *u;
115 asection *i = s->input_section.section;
116 asection *p, *n;
117
118 /* Snip the input section from the statement list. If it was the
119 last statement, fix the list tail pointer. */
120 *u = s->header.next;
121 if (*u == NULL)
122 list->tail = u;
123 /* Add it back in the new position. */
124 s->header.next = *to;
125 *to = s;
126 if (list->tail == to)
127 list->tail = &s->header.next;
128
129 /* Trim I off the bfd map_head/map_tail doubly linked lists. */
130 n = i->map_head.s;
131 p = i->map_tail.s;
132 (p != NULL ? p : i->output_section)->map_head.s = n;
133 (n != NULL ? n : i->output_section)->map_tail.s = p;
134
135 /* Add I back on in its new position. */
136 if (s->header.next->header.type == lang_input_section_enum)
137 {
138 n = s->header.next->input_section.section;
139 p = n->map_tail.s;
140 }
141 else
142 {
143 /* If the next statement is not an input section statement then
144 TO must point at the previous input section statement
145 header.next field. */
146 lang_input_section_type *prev = (lang_input_section_type *)
147 ((char *) to - offsetof (lang_statement_union_type, header.next));
148
149 ASSERT (prev->header.type == lang_input_section_enum);
150 p = prev->section;
151 n = p->map_head.s;
152 }
153 i->map_head.s = n;
154 i->map_tail.s = p;
155 (p != NULL ? p : i->output_section)->map_head.s = i;
156 (n != NULL ? n : i->output_section)->map_tail.s = i;
157}
158
159/* Sort input section statements in the linker script tree rooted at
160 LIST so that those whose owning bfd happens to have a section
161 called .init or .fini are placed first. Place any TOC sections
162 referenced by small TOC relocs next, with TOC sections referenced
163 only by bigtoc relocs last. */
164
165static void
166sort_toc_sections (lang_statement_list_type *list,
167 lang_statement_union_type **ini,
168 lang_statement_union_type **small)
169{
170 lang_statement_union_type *s, **u;
171 asection *i;
172
173 u = &list->head;
174 while ((s = *u) != NULL)
175 {
176 switch (s->header.type)
177 {
178 case lang_wild_statement_enum:
179 sort_toc_sections (&s->wild_statement.children, ini, small);
180 break;
181
182 case lang_group_statement_enum:
183 sort_toc_sections (&s->group_statement.children, ini, small);
184 break;
185
186 case lang_input_section_enum:
187 i = s->input_section.section;
188 /* Leave the stub_file .got where it is. We put the .got
189 header there. */
190 if (i->owner == stub_file->the_bfd)
191 break;
192 if (bfd_get_section_by_name (i->owner, ".init") != NULL
193 || bfd_get_section_by_name (i->owner, ".fini") != NULL)
194 {
195 if (ini != NULL && *ini != s)
196 {
197 move_input_section (list, u, ini);
198 if (small == ini)
199 small = &s->header.next;
200 ini = &s->header.next;
201 continue;
202 }
203 if (small == ini)
204 small = &s->header.next;
205 ini = &s->header.next;
206 break;
207 }
208 else if (ini == NULL)
209 ini = u;
210
211 if (ppc64_elf_has_small_toc_reloc (i))
212 {
213 if (small != NULL && *small != s)
214 {
215 move_input_section (list, u, small);
216 small = &s->header.next;
217 continue;
218 }
219 small = &s->header.next;
220 }
221 else if (small == NULL)
222 small = u;
223 break;
224
225 default:
226 break;
227 }
228 u = &s->header.next;
229 }
230}
231
ba761f19
AM
232static void
233prelim_size_sections (void)
234{
235 if (expld.phase != lang_mark_phase_enum)
236 {
237 expld.phase = lang_mark_phase_enum;
238 expld.dataseg.phase = exp_dataseg_none;
239 one_lang_size_sections_pass (NULL, FALSE);
240 /* We must not cache anything from the preliminary sizing. */
241 lang_reset_memory_regions ();
242 }
243}
244
836c6af1 245static void
7d8a3a28 246ppc_before_allocation (void)
836c6af1 247{
a015f5ec 248 if (stub_file != NULL)
e0468e59 249 {
74f0fb50 250 if (!no_opd_opt
33c0ec9d 251 && !ppc64_elf_edit_opd (&link_info, non_overlapping_opd))
f7c46796 252 einfo ("%X%P: can not edit %s: %E\n", "opd");
e5096e3f 253
33c0ec9d 254 if (ppc64_elf_tls_setup (&link_info, no_tls_get_addr_opt, &no_multi_toc)
f13a99db 255 && !no_tls_opt)
a015f5ec
AM
256 {
257 /* Size the sections. This is premature, but we want to know the
258 TLS segment layout so that certain optimizations can be done. */
ba761f19 259 prelim_size_sections ();
a015f5ec 260
33c0ec9d 261 if (!ppc64_elf_tls_optimize (&link_info))
92b7a70f 262 einfo ("%X%P: TLS problem %E\n");
a015f5ec 263 }
c5614fa4
AM
264
265 if (!no_toc_opt
ba761f19
AM
266 && !link_info.relocatable)
267 {
268 prelim_size_sections ();
269
270 if (!ppc64_elf_edit_toc (&link_info))
f7c46796 271 einfo ("%X%P: can not edit %s: %E\n", "toc");
ba761f19 272 }
d43d0b53
AM
273
274 if (!no_toc_sort)
275 {
276 lang_output_section_statement_type *toc_os;
277
278 toc_os = lang_output_section_find (".got");
279 if (toc_os != NULL)
280 sort_toc_sections (&toc_os->children, NULL, NULL);
281 }
e0468e59
AM
282 }
283
836c6af1
AM
284 gld${EMULATION_NAME}_before_allocation ();
285}
286
9c1d81c1
AM
287struct hook_stub_info
288{
289 lang_statement_list_type add;
290 asection *input_section;
291};
292
293/* Traverse the linker tree to find the spot where the stub goes. */
294
b34976b6 295static bfd_boolean
7d8a3a28 296hook_in_stub (struct hook_stub_info *info, lang_statement_union_type **lp)
9c1d81c1
AM
297{
298 lang_statement_union_type *l;
b34976b6 299 bfd_boolean ret;
9c1d81c1
AM
300
301 for (; (l = *lp) != NULL; lp = &l->header.next)
302 {
303 switch (l->header.type)
304 {
305 case lang_constructors_statement_enum:
306 ret = hook_in_stub (info, &constructor_list.head);
307 if (ret)
308 return ret;
309 break;
310
311 case lang_output_section_statement_enum:
312 ret = hook_in_stub (info,
313 &l->output_section_statement.children.head);
314 if (ret)
315 return ret;
316 break;
317
318 case lang_wild_statement_enum:
319 ret = hook_in_stub (info, &l->wild_statement.children.head);
320 if (ret)
321 return ret;
322 break;
323
324 case lang_group_statement_enum:
325 ret = hook_in_stub (info, &l->group_statement.children.head);
326 if (ret)
327 return ret;
328 break;
329
330 case lang_input_section_enum:
331 if (l->input_section.section == info->input_section)
332 {
333 /* We've found our section. Insert the stub immediately
334 before its associated input section. */
335 *lp = info->add.head;
336 *(info->add.tail) = l;
b34976b6 337 return TRUE;
9c1d81c1
AM
338 }
339 break;
340
341 case lang_data_statement_enum:
342 case lang_reloc_statement_enum:
343 case lang_object_symbols_statement_enum:
344 case lang_output_statement_enum:
345 case lang_target_statement_enum:
346 case lang_input_statement_enum:
347 case lang_assignment_statement_enum:
348 case lang_padding_statement_enum:
349 case lang_address_statement_enum:
350 case lang_fill_statement_enum:
351 break;
352
353 default:
354 FAIL ();
355 break;
356 }
357 }
b34976b6 358 return FALSE;
9c1d81c1
AM
359}
360
361
362/* Call-back for ppc64_elf_size_stubs. */
363
364/* Create a new stub section, and arrange for it to be linked
365 immediately before INPUT_SECTION. */
366
367static asection *
7d8a3a28 368ppc_add_stub_section (const char *stub_sec_name, asection *input_section)
9c1d81c1
AM
369{
370 asection *stub_sec;
371 flagword flags;
372 asection *output_section;
373 const char *secname;
374 lang_output_section_statement_type *os;
375 struct hook_stub_info info;
376
9c1d81c1 377 flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE
e4e0193e 378 | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_KEEP);
9795b468
AM
379 stub_sec = bfd_make_section_anyway_with_flags (stub_file->the_bfd,
380 stub_sec_name, flags);
bd518033
AM
381 if (stub_sec == NULL
382 || !bfd_set_section_alignment (stub_file->the_bfd, stub_sec, 5))
9c1d81c1
AM
383 goto err_ret;
384
385 output_section = input_section->output_section;
386 secname = bfd_get_section_name (output_section->owner, output_section);
387 os = lang_output_section_find (secname);
388
389 info.input_section = input_section;
390 lang_list_init (&info.add);
7b986e99 391 lang_add_section (&info.add, stub_sec, os);
9c1d81c1
AM
392
393 if (info.add.head == NULL)
394 goto err_ret;
395
68f8ff14 396 stub_added = 1;
9c1d81c1
AM
397 if (hook_in_stub (&info, &os->children.head))
398 return stub_sec;
399
400 err_ret:
401 einfo ("%X%P: can not make stub section: %E\n");
402 return NULL;
403}
404
405
406/* Another call-back for ppc64_elf_size_stubs. */
407
408static void
7d8a3a28 409ppc_layout_sections_again (void)
9c1d81c1
AM
410{
411 /* If we have changed sizes of the stub sections, then we need
412 to recalculate all the section offsets. This may mean we need to
413 add even more stubs. */
8ded5a0f 414 gld${EMULATION_NAME}_map_segments (TRUE);
1f808cd5 415
1049f94e 416 if (!link_info.relocatable)
f13a99db
AM
417 _bfd_set_gp_value (link_info.output_bfd,
418 ppc64_elf_toc (link_info.output_bfd));
eaeb0a9d
AM
419
420 need_laying_out = -1;
1f808cd5
AM
421}
422
9c1d81c1 423
0b9a4d73 424static void
7d8a3a28 425build_toc_list (lang_statement_union_type *statement)
0b9a4d73 426{
7b986e99
AM
427 if (statement->header.type == lang_input_section_enum)
428 {
429 asection *i = statement->input_section.section;
430
431 if (!((lang_input_statement_type *) i->owner->usrdata)->just_syms_flag
432 && (i->flags & SEC_EXCLUDE) == 0
433 && i->output_section == toc_section)
927be08e
AM
434 {
435 if (!ppc64_elf_next_toc_section (&link_info, i))
436 einfo ("%X%P: linker script separates .got and .toc\n");
437 }
7b986e99 438 }
0b9a4d73
AM
439}
440
441
9c1d81c1 442static void
7d8a3a28 443build_section_lists (lang_statement_union_type *statement)
9c1d81c1 444{
7b986e99 445 if (statement->header.type == lang_input_section_enum)
9c1d81c1 446 {
7b986e99
AM
447 asection *i = statement->input_section.section;
448
449 if (!((lang_input_statement_type *) i->owner->usrdata)->just_syms_flag
450 && (i->flags & SEC_EXCLUDE) == 0
451 && i->output_section != NULL
f13a99db 452 && i->output_section->owner == link_info.output_bfd)
7b986e99
AM
453 {
454 if (!ppc64_elf_next_input_section (&link_info, i))
455 einfo ("%X%P: can not size stub section: %E\n");
456 }
9c1d81c1
AM
457 }
458}
459
fac1652d 460
eaeb0a9d
AM
461/* Call the back-end function to set TOC base after we have placed all
462 the sections. */
1f808cd5 463static void
eaeb0a9d 464gld${EMULATION_NAME}_after_allocation (void)
1f808cd5 465{
eaeb0a9d
AM
466 /* bfd_elf_discard_info just plays with data and debugging sections,
467 ie. doesn't affect code size, so we can delay resizing the
deb04cdb
AM
468 sections. It's likely we'll resize everything in the process of
469 adding stubs. */
f13a99db 470 if (bfd_elf_discard_info (link_info.output_bfd, &link_info))
deb04cdb
AM
471 need_laying_out = 1;
472
836c6af1
AM
473 /* If generating a relocatable output file, then we don't have any
474 stubs. */
1049f94e 475 if (stub_file != NULL && !link_info.relocatable)
1f808cd5 476 {
927be08e
AM
477 int ret = ppc64_elf_setup_section_lists (&link_info,
478 &ppc_add_stub_section,
479 &ppc_layout_sections_again);
92b7a70f
AM
480 if (ret < 0)
481 einfo ("%X%P: can not size stub section: %E\n");
482 else if (ret > 0)
9c1d81c1 483 {
927be08e
AM
484 ppc64_elf_start_multitoc_partition (&link_info);
485
486 if (!no_multi_toc)
487 {
488 toc_section = bfd_get_section_by_name (link_info.output_bfd,
489 ".got");
490 if (toc_section != NULL)
491 lang_for_each_statement (build_toc_list);
492 }
493
494 if (ppc64_elf_layout_multitoc (&link_info)
495 && !no_multi_toc
496 && toc_section != NULL)
0b9a4d73
AM
497 lang_for_each_statement (build_toc_list);
498
927be08e 499 ppc64_elf_finish_multitoc_partition (&link_info);
0b9a4d73 500
836c6af1 501 lang_for_each_statement (build_section_lists);
9c1d81c1 502
70cc837d
AM
503 if (!ppc64_elf_check_init_fini (&link_info))
504 einfo ("%P: .init/.fini fragments use differing TOC pointers\n");
505
836c6af1 506 /* Call into the BFD backend to do the real work. */
9df0ef5f 507 if (!ppc64_elf_size_stubs (&link_info, group_size, plt_static_chain))
92b7a70f 508 einfo ("%X%P: can not size stub section: %E\n");
1f808cd5 509 }
9c1d81c1 510 }
1f808cd5 511
8ded5a0f 512 if (need_laying_out != -1)
eaeb0a9d
AM
513 {
514 gld${EMULATION_NAME}_map_segments (need_laying_out);
515
516 if (!link_info.relocatable)
517 _bfd_set_gp_value (link_info.output_bfd,
518 ppc64_elf_toc (link_info.output_bfd));
519 }
520}
521
522
523/* Final emulation specific call. */
524
525static void
526gld${EMULATION_NAME}_finish (void)
527{
528 /* e_entry on PowerPC64 points to the function descriptor for
529 _start. If _start is missing, default to the first function
530 descriptor in the .opd section. */
531 entry_section = ".opd";
deb04cdb 532
68f8ff14 533 if (stub_added)
9c1d81c1 534 {
bda6c678
AM
535 char *msg = NULL;
536 char *line, *endline;
537
b02c4cfa
AM
538 if (emit_stub_syms < 0)
539 emit_stub_syms = 1;
bda6c678
AM
540 if (!ppc64_elf_build_stubs (emit_stub_syms, &link_info,
541 config.stats ? &msg : NULL))
9c1d81c1 542 einfo ("%X%P: can not build stubs: %E\n");
bda6c678 543
e922bcab 544 fflush (stdout);
bda6c678
AM
545 for (line = msg; line != NULL; line = endline)
546 {
547 endline = strchr (line, '\n');
548 if (endline != NULL)
549 *endline++ = '\0';
550 fprintf (stderr, "%s: %s\n", program_name, line);
551 }
e922bcab 552 fflush (stderr);
bda6c678
AM
553 if (msg != NULL)
554 free (msg);
9c1d81c1 555 }
99877b66
AM
556
557 ppc64_elf_restore_symbols (&link_info);
1e035701 558 finish_default ();
9c1d81c1 559}
1f808cd5 560
76dc39fe 561
fac1652d
AM
562/* Add a pattern matching ".foo" for every "foo" in a version script.
563
564 The reason for doing this is that many shared library version
565 scripts export a selected set of functions or data symbols, forcing
566 others local. eg.
567
568 . VERS_1 {
569 . global:
570 . this; that; some; thing;
571 . local:
572 . *;
573 . };
574
575 To make the above work for PowerPC64, we need to export ".this",
576 ".that" and so on, otherwise only the function descriptor syms are
577 exported. Lack of an exported function code sym may cause a
578 definition to be pulled in from a static library. */
579
7d8a3a28
AM
580static struct bfd_elf_version_expr *
581gld${EMULATION_NAME}_new_vers_pattern (struct bfd_elf_version_expr *entry)
fac1652d
AM
582{
583 struct bfd_elf_version_expr *dot_entry;
fac1652d
AM
584 unsigned int len;
585 char *dot_pat;
586
b7b7fe3f 587 if (!dotsyms
ae5a3597
AM
588 || entry->pattern[0] == '.'
589 || (!entry->literal && entry->pattern[0] == '*'))
fac1652d
AM
590 return entry;
591
7d8a3a28 592 dot_entry = xmalloc (sizeof *dot_entry);
108ba305 593 *dot_entry = *entry;
fac1652d 594 dot_entry->next = entry;
ae5a3597
AM
595 len = strlen (entry->pattern) + 2;
596 dot_pat = xmalloc (len);
597 dot_pat[0] = '.';
598 memcpy (dot_pat + 1, entry->pattern, len - 1);
599 dot_entry->pattern = dot_pat;
71755fdf 600 dot_entry->script = 1;
fac1652d
AM
601 return dot_entry;
602}
603
604
9c1d81c1
AM
605/* Avoid processing the fake stub_file in vercheck, stat_needed and
606 check_needed routines. */
1f808cd5 607
7d8a3a28 608static void (*real_func) (lang_input_statement_type *);
1f808cd5 609
7d8a3a28 610static void ppc_for_each_input_file_wrapper (lang_input_statement_type *l)
9c1d81c1
AM
611{
612 if (l != stub_file)
613 (*real_func) (l);
1f808cd5 614}
9c1d81c1
AM
615
616static void
7d8a3a28 617ppc_lang_for_each_input_file (void (*func) (lang_input_statement_type *))
9c1d81c1
AM
618{
619 real_func = func;
620 lang_for_each_input_file (&ppc_for_each_input_file_wrapper);
621}
622
623#define lang_for_each_input_file ppc_lang_for_each_input_file
624
1f808cd5
AM
625EOF
626
dc27aea4 627if grep -q 'ld_elf32_spu_emulation' ldemul-list.h; then
92b93329 628 fragment <<EOF
dc27aea4
AM
629/* Special handling for embedded SPU executables. */
630extern bfd_boolean embedded_spu_file (lang_input_statement_type *, const char *);
631static bfd_boolean gld${EMULATION_NAME}_load_symbols (lang_input_statement_type *);
632
633static bfd_boolean
634ppc64_recognized_file (lang_input_statement_type *entry)
635{
636 if (embedded_spu_file (entry, "-m64"))
637 return TRUE;
638
639 return gld${EMULATION_NAME}_load_symbols (entry);
640}
641EOF
642LDEMUL_RECOGNIZED_FILE=ppc64_recognized_file
643fi
644
9c1d81c1
AM
645# Define some shell vars to insert bits of code into the standard elf
646# parse_args and list_options functions.
647#
58d180e8
AM
648PARSE_AND_LIST_PROLOGUE=${PARSE_AND_LIST_PROLOGUE}'
649#define OPTION_STUBGROUP_SIZE 321
9df0ef5f
AM
650#define OPTION_PLT_STATIC_CHAIN (OPTION_STUBGROUP_SIZE + 1)
651#define OPTION_NO_PLT_STATIC_CHAIN (OPTION_PLT_STATIC_CHAIN + 1)
652#define OPTION_STUBSYMS (OPTION_NO_PLT_STATIC_CHAIN + 1)
b02c4cfa
AM
653#define OPTION_NO_STUBSYMS (OPTION_STUBSYMS + 1)
654#define OPTION_DOTSYMS (OPTION_NO_STUBSYMS + 1)
fac1652d 655#define OPTION_NO_DOTSYMS (OPTION_DOTSYMS + 1)
e5096e3f 656#define OPTION_NO_TLS_OPT (OPTION_NO_DOTSYMS + 1)
a7f2871e
AM
657#define OPTION_NO_TLS_GET_ADDR_OPT (OPTION_NO_TLS_OPT + 1)
658#define OPTION_NO_OPD_OPT (OPTION_NO_TLS_GET_ADDR_OPT + 1)
c5614fa4 659#define OPTION_NO_TOC_OPT (OPTION_NO_OPD_OPT + 1)
4c52953f 660#define OPTION_NO_MULTI_TOC (OPTION_NO_TOC_OPT + 1)
d43d0b53
AM
661#define OPTION_NO_TOC_SORT (OPTION_NO_MULTI_TOC + 1)
662#define OPTION_NON_OVERLAPPING_OPD (OPTION_NO_TOC_SORT + 1)
9c1d81c1
AM
663'
664
58d180e8 665PARSE_AND_LIST_LONGOPTS=${PARSE_AND_LIST_LONGOPTS}'
9c1d81c1 666 { "stub-group-size", required_argument, NULL, OPTION_STUBGROUP_SIZE },
9df0ef5f
AM
667 { "plt-static-chain", no_argument, NULL, OPTION_PLT_STATIC_CHAIN },
668 { "no-plt-static-chain", no_argument, NULL, OPTION_NO_PLT_STATIC_CHAIN },
0b9a4d73 669 { "emit-stub-syms", no_argument, NULL, OPTION_STUBSYMS },
b02c4cfa 670 { "no-emit-stub-syms", no_argument, NULL, OPTION_NO_STUBSYMS },
fac1652d
AM
671 { "dotsyms", no_argument, NULL, OPTION_DOTSYMS },
672 { "no-dotsyms", no_argument, NULL, OPTION_NO_DOTSYMS },
e5096e3f 673 { "no-tls-optimize", no_argument, NULL, OPTION_NO_TLS_OPT },
a7f2871e 674 { "no-tls-get-addr-optimize", no_argument, NULL, OPTION_NO_TLS_GET_ADDR_OPT },
c5614fa4
AM
675 { "no-opd-optimize", no_argument, NULL, OPTION_NO_OPD_OPT },
676 { "no-toc-optimize", no_argument, NULL, OPTION_NO_TOC_OPT },
4c52953f 677 { "no-multi-toc", no_argument, NULL, OPTION_NO_MULTI_TOC },
d43d0b53 678 { "no-toc-sort", no_argument, NULL, OPTION_NO_TOC_SORT },
3f764659 679 { "non-overlapping-opd", no_argument, NULL, OPTION_NON_OVERLAPPING_OPD },
9c1d81c1
AM
680'
681
58d180e8 682PARSE_AND_LIST_OPTIONS=${PARSE_AND_LIST_OPTIONS}'
9c1d81c1 683 fprintf (file, _("\
442996ee
AM
684 --stub-group-size=N Maximum size of a group of input sections that\n\
685 can be handled by one stub section. A negative\n\
686 value locates all stubs before their branches\n\
687 (with a group size of -N), while a positive\n\
688 value allows two groups of input sections, one\n\
689 before, and one after each stub section.\n\
690 Values of +/-1 indicate the linker should\n\
691 choose suitable defaults.\n"
9c1d81c1 692 ));
fac1652d 693 fprintf (file, _("\
9df0ef5f
AM
694 --plt-static-chain PLT call stubs should load r11.\n"
695 ));
696 fprintf (file, _("\
697 --no-plt-static-chain PLT call stubs should not load r11. (default)\n"
698 ));
699 fprintf (file, _("\
442996ee 700 --emit-stub-syms Label linker stubs with a symbol.\n"
0b9a4d73
AM
701 ));
702 fprintf (file, _("\
b02c4cfa
AM
703 --no-emit-stub-syms Don'\''t label linker stubs with a symbol.\n"
704 ));
705 fprintf (file, _("\
442996ee
AM
706 --dotsyms For every version pattern \"foo\" in a version\n\
707 script, add \".foo\" so that function code\n\
708 symbols are treated the same as function\n\
709 descriptor symbols. Defaults to on.\n"
fac1652d
AM
710 ));
711 fprintf (file, _("\
442996ee 712 --no-dotsyms Don'\''t do anything special in version scripts.\n"
fac1652d 713 ));
e5096e3f 714 fprintf (file, _("\
442996ee 715 --no-tls-optimize Don'\''t try to optimize TLS accesses.\n"
e5096e3f 716 ));
3f764659 717 fprintf (file, _("\
a7f2871e
AM
718 --no-tls-get-addr-optimize Don'\''t use a special __tls_get_addr call.\n"
719 ));
720 fprintf (file, _("\
442996ee 721 --no-opd-optimize Don'\''t optimize the OPD section.\n"
c5614fa4
AM
722 ));
723 fprintf (file, _("\
442996ee 724 --no-toc-optimize Don'\''t optimize the TOC section.\n"
c5614fa4
AM
725 ));
726 fprintf (file, _("\
442996ee 727 --no-multi-toc Disallow automatic multiple toc sections.\n"
4c52953f
AM
728 ));
729 fprintf (file, _("\
d43d0b53
AM
730 --no-toc-sort Don'\''t sort TOC and GOT sections.\n"
731 ));
732 fprintf (file, _("\
442996ee
AM
733 --non-overlapping-opd Canonicalize .opd, so that there are no\n\
734 overlapping .opd entries.\n"
3f764659 735 ));
9c1d81c1
AM
736'
737
58d180e8 738PARSE_AND_LIST_ARGS_CASES=${PARSE_AND_LIST_ARGS_CASES}'
9c1d81c1
AM
739 case OPTION_STUBGROUP_SIZE:
740 {
741 const char *end;
742 group_size = bfd_scan_vma (optarg, &end, 0);
743 if (*end)
744 einfo (_("%P%F: invalid number `%s'\''\n"), optarg);
745 }
746 break;
fac1652d 747
9df0ef5f
AM
748 case OPTION_PLT_STATIC_CHAIN:
749 plt_static_chain = 1;
750 break;
751
752 case OPTION_NO_PLT_STATIC_CHAIN:
753 plt_static_chain = 0;
754 break;
755
0b9a4d73
AM
756 case OPTION_STUBSYMS:
757 emit_stub_syms = 1;
758 break;
759
b02c4cfa
AM
760 case OPTION_NO_STUBSYMS:
761 emit_stub_syms = 0;
762 break;
763
fac1652d 764 case OPTION_DOTSYMS:
e5096e3f 765 dotsyms = 1;
fac1652d
AM
766 break;
767
768 case OPTION_NO_DOTSYMS:
e5096e3f
AM
769 dotsyms = 0;
770 break;
771
772 case OPTION_NO_TLS_OPT:
c5614fa4
AM
773 no_tls_opt = 1;
774 break;
775
a7f2871e
AM
776 case OPTION_NO_TLS_GET_ADDR_OPT:
777 no_tls_get_addr_opt = 1;
778 break;
779
c5614fa4
AM
780 case OPTION_NO_OPD_OPT:
781 no_opd_opt = 1;
782 break;
783
784 case OPTION_NO_TOC_OPT:
785 no_toc_opt = 1;
fac1652d 786 break;
3f764659 787
4c52953f
AM
788 case OPTION_NO_MULTI_TOC:
789 no_multi_toc = 1;
790 break;
791
d43d0b53
AM
792 case OPTION_NO_TOC_SORT:
793 no_toc_sort = 1;
794 break;
795
3f764659
JJ
796 case OPTION_NON_OVERLAPPING_OPD:
797 non_overlapping_opd = 1;
798 break;
9c1d81c1
AM
799'
800
1f808cd5
AM
801# Put these extra ppc64elf routines in ld_${EMULATION_NAME}_emulation
802#
836c6af1 803LDEMUL_BEFORE_ALLOCATION=ppc_before_allocation
1f808cd5 804LDEMUL_AFTER_ALLOCATION=gld${EMULATION_NAME}_after_allocation
8ded5a0f 805LDEMUL_FINISH=gld${EMULATION_NAME}_finish
9c1d81c1 806LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS=ppc_create_output_section_statements
fac1652d 807LDEMUL_NEW_VERS_PATTERN=gld${EMULATION_NAME}_new_vers_pattern
This page took 0.490381 seconds and 4 git commands to generate.