gas -Z flag
[deliverable/binutils-gdb.git] / gas / config / obj-elf.c
CommitLineData
252b5132 1/* ELF object file format
b3adc24a 2 Copyright (C) 1992-2020 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as
ec2655a6 8 published by the Free Software Foundation; either version 3,
252b5132
RH
9 or (at your option) any later version.
10
11 GAS is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
14 the GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132
RH
20
21#define OBJ_HEADER "obj-elf.h"
22#include "as.h"
3882b010 23#include "safe-ctype.h"
252b5132
RH
24#include "subsegs.h"
25#include "obstack.h"
87ccc1b0 26#include "dwarf2dbg.h"
252b5132
RH
27
28#ifndef ECOFF_DEBUGGING
29#define ECOFF_DEBUGGING 0
30#else
31#define NEED_ECOFF_DEBUG
32#endif
33
34#ifdef NEED_ECOFF_DEBUG
35#include "ecoff.h"
0ba9378a 36#include "bfd/ecoff-bfd.h"
252b5132
RH
37#endif
38
39#ifdef TC_ALPHA
40#include "elf/alpha.h"
41#endif
42
43#ifdef TC_MIPS
44#include "elf/mips.h"
45#endif
46
47#ifdef TC_PPC
48#include "elf/ppc.h"
49#endif
50
3b22753a
L
51#ifdef TC_I386
52#include "elf/x86-64.h"
53#endif
54
280d71bf
DB
55#ifdef TC_MEP
56#include "elf/mep.h"
57#endif
58
36591ba1
SL
59#ifdef TC_NIOS2
60#include "elf/nios2.h"
61#endif
62
93f11b16
DD
63#ifdef TC_PRU
64#include "elf/pru.h"
65#endif
66
dbe2df79
AM
67static void obj_elf_line (int);
68static void obj_elf_size (int);
69static void obj_elf_type (int);
70static void obj_elf_ident (int);
71static void obj_elf_weak (int);
72static void obj_elf_local (int);
73static void obj_elf_visibility (int);
74static void obj_elf_symver (int);
75static void obj_elf_subsection (int);
76static void obj_elf_popsection (int);
0420f52b 77static void obj_elf_gnu_attribute (int);
dbe2df79 78static void obj_elf_tls_common (int);
13c56984 79static void obj_elf_lcomm (int);
8fe53b44 80static void obj_elf_struct (int);
252b5132
RH
81
82static const pseudo_typeS elf_pseudo_table[] =
83{
84 {"comm", obj_elf_common, 0},
9be1cda6 85 {"common", obj_elf_common, 1},
252b5132 86 {"ident", obj_elf_ident, 0},
13c56984 87 {"lcomm", obj_elf_lcomm, 0},
252b5132
RH
88 {"local", obj_elf_local, 0},
89 {"previous", obj_elf_previous, 0},
90 {"section", obj_elf_section, 0},
91 {"section.s", obj_elf_section, 0},
92 {"sect", obj_elf_section, 0},
93 {"sect.s", obj_elf_section, 0},
9de8d8f1
RH
94 {"pushsection", obj_elf_section, 1},
95 {"popsection", obj_elf_popsection, 0},
252b5132
RH
96 {"size", obj_elf_size, 0},
97 {"type", obj_elf_type, 0},
98 {"version", obj_elf_version, 0},
99 {"weak", obj_elf_weak, 0},
100
bf514e21 101 /* These define symbol visibility. */
2e13b764
NC
102 {"internal", obj_elf_visibility, STV_INTERNAL},
103 {"hidden", obj_elf_visibility, STV_HIDDEN},
104 {"protected", obj_elf_visibility, STV_PROTECTED},
105
252b5132
RH
106 /* These are used for stabs-in-elf configurations. */
107 {"line", obj_elf_line, 0},
108
109 /* This is a GNU extension to handle symbol versions. */
110 {"symver", obj_elf_symver, 0},
111
112 /* A GNU extension to change subsection only. */
113 {"subsection", obj_elf_subsection, 0},
114
115 /* These are GNU extensions to aid in garbage collecting C++ vtables. */
68d20676
NC
116 {"vtable_inherit", obj_elf_vtable_inherit, 0},
117 {"vtable_entry", obj_elf_vtable_entry, 0},
252b5132 118
0420f52b
MR
119 /* A GNU extension for object attributes. */
120 {"gnu_attribute", obj_elf_gnu_attribute, 0},
121
bf514e21 122 /* These are used for dwarf. */
252b5132
RH
123 {"2byte", cons, 2},
124 {"4byte", cons, 4},
125 {"8byte", cons, 8},
87ccc1b0 126 /* These are used for dwarf2. */
68d20676 127 { "file", dwarf2_directive_file, 0 },
87ccc1b0 128 { "loc", dwarf2_directive_loc, 0 },
07a53e5c 129 { "loc_mark_labels", dwarf2_directive_loc_mark_labels, 0 },
252b5132
RH
130
131 /* We need to trap the section changing calls to handle .previous. */
132 {"data", obj_elf_data, 0},
8fe53b44
JB
133 {"offset", obj_elf_struct, 0},
134 {"struct", obj_elf_struct, 0},
252b5132
RH
135 {"text", obj_elf_text, 0},
136
13ae64f3
JJ
137 {"tls_common", obj_elf_tls_common, 0},
138
252b5132 139 /* End sentinel. */
ab9da554 140 {NULL, NULL, 0},
252b5132
RH
141};
142
143static const pseudo_typeS ecoff_debug_pseudo_table[] =
144{
145#ifdef NEED_ECOFF_DEBUG
146 /* COFF style debugging information for ECOFF. .ln is not used; .loc
147 is used instead. */
148 { "def", ecoff_directive_def, 0 },
149 { "dim", ecoff_directive_dim, 0 },
150 { "endef", ecoff_directive_endef, 0 },
151 { "file", ecoff_directive_file, 0 },
152 { "scl", ecoff_directive_scl, 0 },
153 { "tag", ecoff_directive_tag, 0 },
154 { "val", ecoff_directive_val, 0 },
155
156 /* COFF debugging requires pseudo-ops .size and .type, but ELF
157 already has meanings for those. We use .esize and .etype
158 instead. These are only generated by gcc anyhow. */
159 { "esize", ecoff_directive_size, 0 },
160 { "etype", ecoff_directive_type, 0 },
161
162 /* ECOFF specific debugging information. */
37f9ec62 163 { "aent", ecoff_directive_ent, 1 },
252b5132
RH
164 { "begin", ecoff_directive_begin, 0 },
165 { "bend", ecoff_directive_bend, 0 },
166 { "end", ecoff_directive_end, 0 },
167 { "ent", ecoff_directive_ent, 0 },
168 { "fmask", ecoff_directive_fmask, 0 },
169 { "frame", ecoff_directive_frame, 0 },
170 { "loc", ecoff_directive_loc, 0 },
171 { "mask", ecoff_directive_mask, 0 },
172
173 /* Other ECOFF directives. */
174 { "extern", ecoff_directive_extern, 0 },
175
176 /* These are used on Irix. I don't know how to implement them. */
177 { "alias", s_ignore, 0 },
178 { "bgnb", s_ignore, 0 },
179 { "endb", s_ignore, 0 },
180 { "lab", s_ignore, 0 },
181 { "noalias", s_ignore, 0 },
182 { "verstamp", s_ignore, 0 },
183 { "vreg", s_ignore, 0 },
184#endif
185
ab9da554 186 {NULL, NULL, 0} /* end sentinel */
252b5132
RH
187};
188
189#undef NO_RELOC
190#include "aout/aout64.h"
191
192/* This is called when the assembler starts. */
193
3b22753a
L
194asection *elf_com_section_ptr;
195
252b5132 196void
dbe2df79 197elf_begin (void)
252b5132 198{
dbe2df79
AM
199 asection *s;
200
252b5132 201 /* Add symbols for the known sections to the symbol table. */
dbe2df79
AM
202 s = bfd_get_section_by_name (stdoutput, TEXT_SECTION_NAME);
203 symbol_table_insert (section_symbol (s));
204 s = bfd_get_section_by_name (stdoutput, DATA_SECTION_NAME);
205 symbol_table_insert (section_symbol (s));
206 s = bfd_get_section_by_name (stdoutput, BSS_SECTION_NAME);
207 symbol_table_insert (section_symbol (s));
3b22753a 208 elf_com_section_ptr = bfd_com_section_ptr;
252b5132
RH
209}
210
211void
dbe2df79 212elf_pop_insert (void)
252b5132
RH
213{
214 pop_insert (elf_pseudo_table);
215 if (ECOFF_DEBUGGING)
216 pop_insert (ecoff_debug_pseudo_table);
217}
218
219static bfd_vma
dbe2df79 220elf_s_get_size (symbolS *sym)
252b5132
RH
221{
222 return S_GET_SIZE (sym);
223}
224
225static void
dbe2df79 226elf_s_set_size (symbolS *sym, bfd_vma sz)
252b5132
RH
227{
228 S_SET_SIZE (sym, sz);
229}
230
231static bfd_vma
dbe2df79 232elf_s_get_align (symbolS *sym)
252b5132
RH
233{
234 return S_GET_ALIGN (sym);
235}
236
237static void
dbe2df79 238elf_s_set_align (symbolS *sym, bfd_vma align)
252b5132
RH
239{
240 S_SET_ALIGN (sym, align);
241}
242
4c63da97 243int
dbe2df79 244elf_s_get_other (symbolS *sym)
4c63da97
AM
245{
246 return elf_symbol (symbol_get_bfdsym (sym))->internal_elf_sym.st_other;
247}
248
5110c57e 249static void
dbe2df79 250elf_s_set_other (symbolS *sym, int other)
5110c57e
HPN
251{
252 S_SET_OTHER (sym, other);
253}
254
252b5132 255static int
dbe2df79 256elf_sec_sym_ok_for_reloc (asection *sec)
252b5132
RH
257{
258 return obj_sec_sym_ok_for_reloc (sec);
259}
260
261void
c04f5787 262elf_file_symbol (const char *s, int appfile)
252b5132 263{
8d1015a8
AM
264 asymbol *bsym;
265
c04f5787
AM
266 if (!appfile
267 || symbol_rootP == NULL
8d1015a8
AM
268 || (bsym = symbol_get_bfdsym (symbol_rootP)) == NULL
269 || (bsym->flags & BSF_FILE) == 0)
c04f5787
AM
270 {
271 symbolS *sym;
e57e6ddc 272 size_t name_length;
252b5132 273
c04f5787
AM
274 sym = symbol_new (s, absolute_section, 0, NULL);
275 symbol_set_frag (sym, &zero_address_frag);
efa19bfd
JB
276
277 name_length = strlen (s);
278 if (name_length > strlen (S_GET_NAME (sym)))
279 {
280 obstack_grow (&notes, s, name_length + 1);
1e9cc1c2 281 S_SET_NAME (sym, (const char *) obstack_finish (&notes));
efa19bfd
JB
282 }
283 else
284 strcpy ((char *) S_GET_NAME (sym), s);
285
c04f5787 286 symbol_get_bfdsym (sym)->flags |= BSF_FILE;
252b5132 287
fbdf9406 288 if (symbol_rootP != sym
8d1015a8
AM
289 && ((bsym = symbol_get_bfdsym (symbol_rootP)) == NULL
290 || (bsym->flags & BSF_FILE) == 0))
c04f5787
AM
291 {
292 symbol_remove (sym, &symbol_rootP, &symbol_lastP);
293 symbol_insert (sym, symbol_rootP, &symbol_rootP, &symbol_lastP);
fbdf9406
JB
294 }
295
252b5132 296#ifdef DEBUG
fbdf9406 297 verify_symbol_chain (symbol_rootP, symbol_lastP);
252b5132
RH
298#endif
299 }
300
301#ifdef NEED_ECOFF_DEBUG
f17c130b 302 ecoff_new_file (s, appfile);
252b5132
RH
303#endif
304}
305
e13bab5a
AM
306/* Called from read.c:s_comm after we've parsed .comm symbol, size.
307 Parse a possible alignment value. */
308
3b22753a 309symbolS *
e13bab5a 310elf_common_parse (int ignore ATTRIBUTE_UNUSED, symbolS *symbolP, addressT size)
252b5132 311{
e13bab5a
AM
312 addressT align = 0;
313 int is_local = symbol_get_obj (symbolP)->local;
252b5132 314
e13bab5a 315 if (*input_line_pointer == ',')
9be1cda6 316 {
e13bab5a 317 char *save = input_line_pointer;
9be1cda6 318
252b5132
RH
319 input_line_pointer++;
320 SKIP_WHITESPACE ();
e13bab5a
AM
321
322 if (*input_line_pointer == '"')
252b5132 323 {
e13bab5a
AM
324 /* For sparc. Accept .common symbol, length, "bss" */
325 input_line_pointer++;
326 /* Some use the dot, some don't. */
327 if (*input_line_pointer == '.')
328 input_line_pointer++;
329 /* Some say data, some say bss. */
330 if (strncmp (input_line_pointer, "bss\"", 4) == 0)
331 input_line_pointer += 4;
332 else if (strncmp (input_line_pointer, "data\"", 5) == 0)
333 input_line_pointer += 5;
334 else
252b5132 335 {
e13bab5a
AM
336 char *p = input_line_pointer;
337 char c;
338
339 while (*--p != '"')
340 ;
341 while (!is_end_of_line[(unsigned char) *input_line_pointer])
342 if (*input_line_pointer++ == '"')
343 break;
344 c = *input_line_pointer;
345 *input_line_pointer = '\0';
346 as_bad (_("bad .common segment %s"), p);
347 *input_line_pointer = c;
348 ignore_rest_of_line ();
349 return NULL;
252b5132 350 }
e13bab5a
AM
351 /* ??? Don't ask me why these are always global. */
352 is_local = 0;
252b5132
RH
353 }
354 else
355 {
e13bab5a
AM
356 input_line_pointer = save;
357 align = parse_align (is_local);
358 if (align == (addressT) -1)
359 return NULL;
252b5132
RH
360 }
361 }
e13bab5a
AM
362
363 if (is_local)
364 {
365 bss_alloc (symbolP, size, align);
366 S_CLEAR_EXTERNAL (symbolP);
367 }
252b5132
RH
368 else
369 {
e13bab5a
AM
370 S_SET_VALUE (symbolP, size);
371 S_SET_ALIGN (symbolP, align);
372 S_SET_EXTERNAL (symbolP);
3b22753a 373 S_SET_SEGMENT (symbolP, elf_com_section_ptr);
252b5132
RH
374 }
375
49309057 376 symbol_get_bfdsym (symbolP)->flags |= BSF_OBJECT;
252b5132 377
13ae64f3 378 return symbolP;
252b5132
RH
379}
380
13ae64f3 381void
dbe2df79 382obj_elf_common (int is_common)
13ae64f3 383{
e13bab5a
AM
384 if (flag_mri && is_common)
385 s_mri_common (0);
386 else
387 s_comm_internal (0, elf_common_parse);
13ae64f3
JJ
388}
389
390static void
dbe2df79 391obj_elf_tls_common (int ignore ATTRIBUTE_UNUSED)
13ae64f3 392{
e13bab5a 393 symbolS *symbolP = s_comm_internal (0, elf_common_parse);
13ae64f3
JJ
394
395 if (symbolP)
396 symbol_get_bfdsym (symbolP)->flags |= BSF_THREAD_LOCAL;
397}
398
13c56984
AM
399static void
400obj_elf_lcomm (int ignore ATTRIBUTE_UNUSED)
401{
402 symbolS *symbolP = s_comm_internal (0, s_lcomm_internal);
403
404 if (symbolP)
405 symbol_get_bfdsym (symbolP)->flags |= BSF_OBJECT;
406}
407
6e8bd58f
NS
408static symbolS *
409get_sym_from_input_line_and_check (void)
410{
411 char *name;
412 char c;
413 symbolS *sym;
414
d02603dc 415 c = get_symbol_name (& name);
6e8bd58f
NS
416 sym = symbol_find_or_make (name);
417 *input_line_pointer = c;
d02603dc 418 SKIP_WHITESPACE_AFTER_NAME ();
6e8bd58f
NS
419
420 /* There is no symbol name if input_line_pointer has not moved. */
421 if (name == input_line_pointer)
422 as_bad (_("Missing symbol name in directive"));
423 return sym;
424}
425
252b5132 426static void
dbe2df79 427obj_elf_local (int ignore ATTRIBUTE_UNUSED)
252b5132 428{
252b5132
RH
429 int c;
430 symbolS *symbolP;
431
432 do
433 {
01642c12 434 symbolP = get_sym_from_input_line_and_check ();
6e8bd58f 435 c = *input_line_pointer;
252b5132 436 S_CLEAR_EXTERNAL (symbolP);
49309057 437 symbol_get_obj (symbolP)->local = 1;
252b5132
RH
438 if (c == ',')
439 {
440 input_line_pointer++;
441 SKIP_WHITESPACE ();
442 if (*input_line_pointer == '\n')
443 c = '\n';
444 }
445 }
446 while (c == ',');
447 demand_empty_rest_of_line ();
448}
449
450static void
dbe2df79 451obj_elf_weak (int ignore ATTRIBUTE_UNUSED)
252b5132 452{
252b5132
RH
453 int c;
454 symbolS *symbolP;
455
456 do
457 {
01642c12 458 symbolP = get_sym_from_input_line_and_check ();
6e8bd58f 459 c = *input_line_pointer;
252b5132 460 S_SET_WEAK (symbolP);
252b5132
RH
461 if (c == ',')
462 {
463 input_line_pointer++;
464 SKIP_WHITESPACE ();
465 if (*input_line_pointer == '\n')
466 c = '\n';
467 }
468 }
469 while (c == ',');
470 demand_empty_rest_of_line ();
471}
472
2e13b764 473static void
dbe2df79 474obj_elf_visibility (int visibility)
2e13b764 475{
2e13b764
NC
476 int c;
477 symbolS *symbolP;
478 asymbol *bfdsym;
479 elf_symbol_type *elfsym;
480
481 do
482 {
6e8bd58f 483 symbolP = get_sym_from_input_line_and_check ();
fa306131 484
2e13b764
NC
485 bfdsym = symbol_get_bfdsym (symbolP);
486 elfsym = elf_symbol_from (bfd_asymbol_bfd (bfdsym), bfdsym);
fa306131 487
9c2799c2 488 gas_assert (elfsym);
fa306131 489
20e420c2
RH
490 elfsym->internal_elf_sym.st_other &= ~3;
491 elfsym->internal_elf_sym.st_other |= visibility;
fa306131 492
6e8bd58f 493 c = *input_line_pointer;
2e13b764
NC
494 if (c == ',')
495 {
496 input_line_pointer ++;
fa306131 497
2e13b764 498 SKIP_WHITESPACE ();
fa306131 499
2e13b764
NC
500 if (*input_line_pointer == '\n')
501 c = '\n';
502 }
503 }
504 while (c == ',');
fa306131 505
2e13b764
NC
506 demand_empty_rest_of_line ();
507}
508
252b5132
RH
509static segT previous_section;
510static int previous_subsection;
511
9de8d8f1
RH
512struct section_stack
513{
514 struct section_stack *next;
515 segT seg, prev_seg;
516 int subseg, prev_subseg;
517};
518
519static struct section_stack *section_stack;
520
fafe6678 521static bfd_boolean
86654c12
L
522get_section (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, void *inf)
523{
a8c4d40b 524 struct elf_section_match *match = (struct elf_section_match *) inf;
a91e1603 525 const char *gname = match->group_name;
86654c12 526 const char *group_name = elf_group_name (sec);
b7d07216
L
527 const char *linked_to_symbol_name
528 = sec->map_head.linked_to_symbol_name;
a91e1603 529 unsigned int info = elf_section_data (sec)->this_hdr.sh_info;
01fb1836 530
a91e1603 531 return (info == match->info
a8c4d40b
L
532 && ((bfd_section_flags (sec) & SEC_ASSEMBLER_SECTION_ID)
533 == (match->flags & SEC_ASSEMBLER_SECTION_ID))
534 && sec->section_id == match->section_id
a91e1603
L
535 && (group_name == gname
536 || (group_name != NULL
537 && gname != NULL
b7d07216
L
538 && strcmp (group_name, gname) == 0))
539 && (linked_to_symbol_name == match->linked_to_symbol_name
540 || (linked_to_symbol_name != NULL
541 && match->linked_to_symbol_name != NULL
542 && strcmp (linked_to_symbol_name,
543 match->linked_to_symbol_name) == 0)));
86654c12
L
544}
545
252b5132
RH
546/* Handle the .section pseudo-op. This code supports two different
547 syntaxes.
548
549 The first is found on Solaris, and looks like
550 .section ".sec1",#alloc,#execinstr,#write
551 Here the names after '#' are the SHF_* flags to turn on for the
552 section. I'm not sure how it determines the SHT_* type (BFD
553 doesn't really give us control over the type, anyhow).
554
555 The second format is found on UnixWare, and probably most SVR4
556 machines, and looks like
557 .section .sec1,"a",@progbits
558 The quoted string may contain any combination of a, w, x, and
559 represents the SHF_* flags to turn on for the section. The string
560 beginning with '@' can be progbits or nobits. There should be
561 other possibilities, but I don't know what they are. In any case,
562 BFD doesn't really let us set the section type. */
563
cca86cc8 564void
dbe2df79 565obj_elf_change_section (const char *name,
9fb71ee4 566 unsigned int type,
01e1a5bc 567 bfd_vma attr,
dbe2df79 568 int entsize,
a8c4d40b 569 struct elf_section_match *match_p,
dbe2df79
AM
570 int linkonce,
571 int push)
252b5132 572{
fafe6678 573 asection *old_sec;
252b5132 574 segT sec;
742f45cf 575 flagword flags;
551b43fd 576 const struct elf_backend_data *bed;
f61e8019 577 const struct bfd_elf_special_section *ssect;
a8c4d40b
L
578
579 if (match_p == NULL)
580 {
581 static struct elf_section_match unused_match;
582 match_p = &unused_match;
583 }
252b5132
RH
584
585#ifdef md_flush_pending_output
586 md_flush_pending_output ();
587#endif
588
9de8d8f1
RH
589 /* Switch to the section, creating it if necessary. */
590 if (push)
591 {
592 struct section_stack *elt;
325801bd 593 elt = XNEW (struct section_stack);
9de8d8f1
RH
594 elt->next = section_stack;
595 elt->seg = now_seg;
596 elt->prev_seg = previous_section;
597 elt->subseg = now_subseg;
598 elt->prev_subseg = previous_subsection;
599 section_stack = elt;
600 }
601 previous_section = now_seg;
602 previous_subsection = now_subseg;
603
fafe6678 604 old_sec = bfd_get_section_by_name_if (stdoutput, name, get_section,
a8c4d40b 605 (void *) match_p);
fafe6678 606 if (old_sec)
86654c12 607 {
fafe6678 608 sec = old_sec;
86654c12
L
609 subseg_set (sec, 0);
610 }
611 else
612 sec = subseg_force_new (name, 0);
613
551b43fd
AM
614 bed = get_elf_backend_data (stdoutput);
615 ssect = (*bed->get_sec_type_attr) (stdoutput, sec);
9de8d8f1 616
f61e8019 617 if (ssect != NULL)
2f89ff8d 618 {
ea8f8eab
L
619 bfd_boolean override = FALSE;
620
2f89ff8d 621 if (type == SHT_NULL)
f61e8019
AM
622 type = ssect->type;
623 else if (type != ssect->type)
2f89ff8d 624 {
fafe6678 625 if (old_sec == NULL
23ddb850 626 /* Some older versions of gcc will emit
7ed1d346 627
2f89ff8d 628 .section .init_array,"aw",@progbits
7ed1d346 629
2f89ff8d 630 for __attribute__ ((section (".init_array"))).
3b22753a 631 "@progbits" is incorrect. Also for x86-64 large bss
23ddb850 632 sections, some older versions of gcc will emit
3b22753a
L
633
634 .section .lbss,"aw",@progbits
635
2f89ff8d 636 "@progbits" is incorrect. */
3b22753a
L
637#ifdef TC_I386
638 && (bed->s->arch_size != 64
639 || !(ssect->attr & SHF_X86_64_LARGE))
640#endif
f61e8019
AM
641 && ssect->type != SHT_INIT_ARRAY
642 && ssect->type != SHT_FINI_ARRAY
643 && ssect->type != SHT_PREINIT_ARRAY)
2f89ff8d
L
644 {
645 /* We allow to specify any type for a .note section. */
9fb71ee4
NC
646 if (ssect->type != SHT_NOTE
647 /* Processor and application defined types are allowed too. */
648 && type < SHT_LOPROC)
2f89ff8d
L
649 as_warn (_("setting incorrect section type for %s"),
650 name);
651 }
652 else
653 {
654 as_warn (_("ignoring incorrect section type for %s"),
742f45cf 655 name);
f61e8019 656 type = ssect->type;
2f89ff8d
L
657 }
658 }
659
9fb71ee4
NC
660 if (old_sec == NULL && ((attr & ~(SHF_MASKOS | SHF_MASKPROC))
661 & ~ssect->attr) != 0)
2f89ff8d
L
662 {
663 /* As a GNU extension, we permit a .note section to be
f61e8019 664 allocatable. If the linker sees an allocatable .note
2f89ff8d 665 section, it will create a PT_NOTE segment in the output
92191b29 666 file. We also allow "x" for .note.GNU-stack. */
f61e8019
AM
667 if (ssect->type == SHT_NOTE
668 && (attr == SHF_ALLOC || attr == SHF_EXECINSTR))
669 ;
670 /* Allow different SHF_MERGE and SHF_STRINGS if we have
671 something like .rodata.str. */
672 else if (ssect->suffix_length == -2
673 && name[ssect->prefix_length] == '.'
ea8f8eab
L
674 && (attr
675 & ~ssect->attr
676 & ~SHF_MERGE
677 & ~SHF_STRINGS) == 0)
f61e8019 678 ;
ea8f8eab
L
679 /* .interp, .strtab and .symtab can have SHF_ALLOC. */
680 else if (attr == SHF_ALLOC
681 && (strcmp (name, ".interp") == 0
682 || strcmp (name, ".strtab") == 0
683 || strcmp (name, ".symtab") == 0))
684 override = TRUE;
b9f18452
L
685 /* .note.GNU-stack can have SHF_EXECINSTR. */
686 else if (attr == SHF_EXECINSTR
687 && strcmp (name, ".note.GNU-stack") == 0)
688 override = TRUE;
7f841127
L
689#ifdef TC_ALPHA
690 /* A section on Alpha may have SHF_ALPHA_GPREL. */
691 else if ((attr & ~ssect->attr) == SHF_ALPHA_GPREL)
692 override = TRUE;
708e2187
NC
693#endif
694#ifdef TC_RX
695 else if (attr == (SHF_EXECINSTR | SHF_WRITE | SHF_ALLOC)
696 && (ssect->type == SHT_INIT_ARRAY
697 || ssect->type == SHT_FINI_ARRAY
698 || ssect->type == SHT_PREINIT_ARRAY))
699 /* RX init/fini arrays can and should have the "awx" attributes set. */
700 ;
7f841127 701#endif
f61e8019 702 else
ea8f8eab 703 {
a8c4d40b 704 if (match_p->group_name == NULL)
86654c12
L
705 as_warn (_("setting incorrect section attributes for %s"),
706 name);
ea8f8eab
L
707 override = TRUE;
708 }
2f89ff8d 709 }
9fb71ee4 710
fafe6678 711 if (!override && old_sec == NULL)
f61e8019 712 attr |= ssect->attr;
2f89ff8d 713 }
742f45cf
AM
714
715 /* Convert ELF type and flags to BFD flags. */
716 flags = (SEC_RELOC
717 | ((attr & SHF_WRITE) ? 0 : SEC_READONLY)
718 | ((attr & SHF_ALLOC) ? SEC_ALLOC : 0)
719 | (((attr & SHF_ALLOC) && type != SHT_NOBITS) ? SEC_LOAD : 0)
f5fa8ca2
JJ
720 | ((attr & SHF_EXECINSTR) ? SEC_CODE : 0)
721 | ((attr & SHF_MERGE) ? SEC_MERGE : 0)
13ae64f3 722 | ((attr & SHF_STRINGS) ? SEC_STRINGS : 0)
18ae9cc1 723 | ((attr & SHF_EXCLUDE) ? SEC_EXCLUDE: 0)
13ae64f3 724 | ((attr & SHF_TLS) ? SEC_THREAD_LOCAL : 0));
9de8d8f1 725#ifdef md_elf_section_flags
742f45cf 726 flags = md_elf_section_flags (flags, attr, type);
9de8d8f1
RH
727#endif
728
86654c12
L
729 if (linkonce)
730 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
731
fafe6678 732 if (old_sec == NULL)
742f45cf
AM
733 {
734 symbolS *secsym;
735
94be91de
JB
736 if (type == SHT_NULL)
737 type = bfd_elf_get_default_section_type (flags);
7a6d0b32
JB
738 elf_section_type (sec) = type;
739 elf_section_flags (sec) = attr;
a8c4d40b 740 elf_section_data (sec)->this_hdr.sh_info = match_p->info;
7a6d0b32 741
9de8d8f1
RH
742 /* Prevent SEC_HAS_CONTENTS from being inadvertently set. */
743 if (type == SHT_NOBITS)
13c56984 744 seg_info (sec)->bss = 1;
9de8d8f1 745
a8c4d40b
L
746 /* Set the section ID and flags. */
747 sec->section_id = match_p->section_id;
748 flags |= match_p->flags;
749
b7d07216
L
750 /* Set the linked-to symbol name. */
751 sec->map_head.linked_to_symbol_name
752 = match_p->linked_to_symbol_name;
753
fd361982 754 bfd_set_section_flags (sec, flags);
f5fa8ca2
JJ
755 if (flags & SEC_MERGE)
756 sec->entsize = entsize;
a8c4d40b 757 elf_group_name (sec) = match_p->group_name;
9de8d8f1
RH
758
759 /* Add a symbol for this section to the symbol table. */
760 secsym = symbol_find (name);
761 if (secsym != NULL)
762 symbol_set_bfdsym (secsym, sec->symbol);
763 else
13c56984 764 symbol_table_insert (section_symbol (sec));
9de8d8f1 765 }
7a6d0b32 766 else
742f45cf 767 {
7a6d0b32
JB
768 if (type != SHT_NULL
769 && (unsigned) type != elf_section_type (old_sec))
770 as_warn (_("ignoring changed section type for %s"), name);
771
772 if (attr != 0)
773 {
774 /* If section attributes are specified the second time we see a
775 particular section, then check that they are the same as we
776 saw the first time. */
777 if (((old_sec->flags ^ flags)
778 & (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE
779 | SEC_EXCLUDE | SEC_SORT_ENTRIES | SEC_MERGE | SEC_STRINGS
780 | SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD
781 | SEC_THREAD_LOCAL)))
782 as_warn (_("ignoring changed section attributes for %s"), name);
9fb71ee4
NC
783 else
784 /* FIXME: Maybe we should consider removing a previously set
785 processor or application specific attribute as suspicious ? */
786 elf_section_flags (sec) = attr;
787
7a6d0b32
JB
788 if ((flags & SEC_MERGE) && old_sec->entsize != (unsigned) entsize)
789 as_warn (_("ignoring changed section entity size for %s"), name);
790 }
742f45cf 791 }
9de8d8f1
RH
792
793#ifdef md_elf_section_change_hook
742f45cf 794 md_elf_section_change_hook ();
9de8d8f1
RH
795#endif
796}
797
01e1a5bc 798static bfd_vma
df3a023b
AM
799obj_elf_parse_section_letters (char *str, size_t len,
800 bfd_boolean *is_clone, bfd_vma *gnu_attr)
9de8d8f1 801{
01e1a5bc 802 bfd_vma attr = 0;
f6616a06 803 *is_clone = FALSE;
9de8d8f1
RH
804
805 while (len > 0)
806 {
807 switch (*str)
808 {
809 case 'a':
810 attr |= SHF_ALLOC;
811 break;
18ae9cc1
L
812 case 'e':
813 attr |= SHF_EXCLUDE;
814 break;
b7d07216
L
815 case 'o':
816 attr |= SHF_LINK_ORDER;
817 break;
9de8d8f1
RH
818 case 'w':
819 attr |= SHF_WRITE;
820 break;
821 case 'x':
822 attr |= SHF_EXECINSTR;
823 break;
9469ddf0 824 case 'M':
f5fa8ca2
JJ
825 attr |= SHF_MERGE;
826 break;
9469ddf0 827 case 'S':
f5fa8ca2
JJ
828 attr |= SHF_STRINGS;
829 break;
060adf0e
AM
830 case 'G':
831 attr |= SHF_GROUP;
832 break;
13ae64f3
JJ
833 case 'T':
834 attr |= SHF_TLS;
835 break;
a91e1603 836 case 'd':
df3a023b 837 *gnu_attr |= SHF_GNU_MBIND;
a91e1603 838 break;
01642c12 839 case '?':
f6616a06 840 *is_clone = TRUE;
01642c12 841 break;
34105363
L
842 /* Compatibility. */
843 case 'm':
844 if (*(str - 1) == 'a')
845 {
846 attr |= SHF_MERGE;
847 if (len > 1 && str[1] == 's')
848 {
849 attr |= SHF_STRINGS;
850 str++, len--;
851 }
852 break;
853 }
1a0670f3 854 /* Fall through. */
9de8d8f1
RH
855 default:
856 {
6d4af3c2 857 const char *bad_msg = _("unrecognized .section attribute:"
b7d07216 858 " want a,e,o,w,x,M,S,G,T or number");
9de8d8f1 859#ifdef md_elf_section_letter
01e1a5bc 860 bfd_vma md_attr = md_elf_section_letter (*str, &bad_msg);
8f3bae45 861 if (md_attr != (bfd_vma) -1)
9de8d8f1
RH
862 attr |= md_attr;
863 else
864#endif
9fb71ee4
NC
865 if (ISDIGIT (*str))
866 {
867 char * end;
868
869 attr |= strtoul (str, & end, 0);
870 /* Update str and len, allowing for the fact that
871 we will execute str++ and len-- below. */
872 end --;
873 len -= (end - str);
874 str = end;
875 }
876 else
877 as_fatal ("%s", bad_msg);
9de8d8f1
RH
878 }
879 break;
880 }
881 str++, len--;
882 }
883
884 return attr;
885}
886
8d28c9d7 887static int
44bf2362 888obj_elf_section_type (char *str, size_t len, bfd_boolean warn)
9de8d8f1
RH
889{
890 if (len == 8 && strncmp (str, "progbits", 8) == 0)
891 return SHT_PROGBITS;
892 if (len == 6 && strncmp (str, "nobits", 6) == 0)
893 return SHT_NOBITS;
34f70875
L
894 if (len == 4 && strncmp (str, "note", 4) == 0)
895 return SHT_NOTE;
10b016c2
PB
896 if (len == 10 && strncmp (str, "init_array", 10) == 0)
897 return SHT_INIT_ARRAY;
898 if (len == 10 && strncmp (str, "fini_array", 10) == 0)
899 return SHT_FINI_ARRAY;
900 if (len == 13 && strncmp (str, "preinit_array", 13) == 0)
901 return SHT_PREINIT_ARRAY;
9de8d8f1
RH
902
903#ifdef md_elf_section_type
904 {
905 int md_type = md_elf_section_type (str, len);
906 if (md_type >= 0)
907 return md_type;
908 }
909#endif
910
9fb71ee4
NC
911 if (ISDIGIT (*str))
912 {
913 char * end;
914 int type = strtoul (str, & end, 0);
915
916 if (warn && (size_t) (end - str) != len)
917 as_warn (_("extraneous characters at end of numeric section type"));
918
919 return type;
920 }
921
44bf2362
NC
922 if (warn)
923 as_warn (_("unrecognized section type"));
924 return 0;
925}
926
01e1a5bc 927static bfd_vma
44bf2362
NC
928obj_elf_section_word (char *str, size_t len, int *type)
929{
930 int ret;
931
932 if (len == 5 && strncmp (str, "write", 5) == 0)
933 return SHF_WRITE;
934 if (len == 5 && strncmp (str, "alloc", 5) == 0)
935 return SHF_ALLOC;
936 if (len == 9 && strncmp (str, "execinstr", 9) == 0)
937 return SHF_EXECINSTR;
18ae9cc1
L
938 if (len == 7 && strncmp (str, "exclude", 7) == 0)
939 return SHF_EXCLUDE;
44bf2362
NC
940 if (len == 3 && strncmp (str, "tls", 3) == 0)
941 return SHF_TLS;
942
943#ifdef md_elf_section_word
944 {
01e1a5bc
NC
945 bfd_vma md_attr = md_elf_section_word (str, len);
946 if (md_attr > 0)
44bf2362
NC
947 return md_attr;
948 }
949#endif
950
951 ret = obj_elf_section_type (str, len, FALSE);
952 if (ret != 0)
953 *type = ret;
954 else
955 as_warn (_("unrecognized section attribute"));
956
9de8d8f1
RH
957 return 0;
958}
959
6ce8b369 960/* Get name of section. */
82b8a785 961const char *
dbe2df79 962obj_elf_section_name (void)
6ce8b369
AM
963{
964 char *name;
965
966 SKIP_WHITESPACE ();
967 if (*input_line_pointer == '"')
968 {
969 int dummy;
970
971 name = demand_copy_C_string (&dummy);
972 if (name == NULL)
973 {
974 ignore_rest_of_line ();
975 return NULL;
976 }
977 }
978 else
979 {
980 char *end = input_line_pointer;
981
982 while (0 == strchr ("\n\t,; ", *end))
983 end++;
984 if (end == input_line_pointer)
985 {
c95b35a9 986 as_bad (_("missing name"));
6ce8b369
AM
987 ignore_rest_of_line ();
988 return NULL;
989 }
990
29a2809e 991 name = xmemdup0 (input_line_pointer, end - input_line_pointer);
451133ce
NP
992
993 while (flag_sectname_subst)
994 {
995 char *subst = strchr (name, '%');
996 if (subst && subst[1] == 'S')
997 {
998 int oldlen = strlen (name);
999 int substlen = strlen (now_seg->name);
1000 int newlen = oldlen - 2 + substlen;
add39d23 1001 char *newname = XNEWVEC (char, newlen + 1);
451133ce
NP
1002 int headlen = subst - name;
1003 memcpy (newname, name, headlen);
1004 strcpy (newname + headlen, now_seg->name);
1005 strcat (newname + headlen, subst + 2);
1006 xfree (name);
1007 name = newname;
1008 }
1009 else
1010 break;
1011 }
1012
612d7b83
L
1013#ifdef tc_canonicalize_section_name
1014 name = tc_canonicalize_section_name (name);
1015#endif
6ce8b369
AM
1016 input_line_pointer = end;
1017 }
1018 SKIP_WHITESPACE ();
1019 return name;
1020}
1021
9de8d8f1 1022void
dbe2df79 1023obj_elf_section (int push)
9de8d8f1 1024{
a8c4d40b 1025 const char *name;
82b8a785 1026 char *beg;
01e1a5bc
NC
1027 int type, dummy;
1028 bfd_vma attr;
df3a023b 1029 bfd_vma gnu_attr;
f5fa8ca2 1030 int entsize;
d2dab548 1031 int linkonce;
6f932bce 1032 subsegT new_subsection = -1;
a8c4d40b 1033 struct elf_section_match match;
9de8d8f1 1034
252b5132
RH
1035 if (flag_mri)
1036 {
1037 char mri_type;
1038
9de8d8f1 1039#ifdef md_flush_pending_output
60bcf0fa 1040 md_flush_pending_output ();
9de8d8f1
RH
1041#endif
1042
252b5132
RH
1043 previous_section = now_seg;
1044 previous_subsection = now_subseg;
1045
1046 s_mri_sect (&mri_type);
1047
1048#ifdef md_elf_section_change_hook
1049 md_elf_section_change_hook ();
1050#endif
1051
1052 return;
1053 }
1054
6ce8b369
AM
1055 name = obj_elf_section_name ();
1056 if (name == NULL)
1057 return;
f1f28025 1058
a8c4d40b
L
1059 memset (&match, 0, sizeof (match));
1060
f1f28025
NC
1061 symbolS * sym;
1062 if ((sym = symbol_find (name)) != NULL
1063 && ! symbol_section_p (sym)
1064 && S_IS_DEFINED (sym)
1065 && ! S_IS_VOLATILE (sym)
1066 && ! S_CAN_BE_REDEFINED (sym))
1067 {
1068 as_bad (_("section name '%s' already defined as another symbol"), name);
1069 ignore_rest_of_line ();
1070 return;
1071 }
252b5132
RH
1072 type = SHT_NULL;
1073 attr = 0;
df3a023b 1074 gnu_attr = 0;
f5fa8ca2 1075 entsize = 0;
d2dab548 1076 linkonce = 0;
252b5132
RH
1077
1078 if (*input_line_pointer == ',')
1079 {
1080 /* Skip the comma. */
1081 ++input_line_pointer;
252b5132
RH
1082 SKIP_WHITESPACE ();
1083
9cfc3331 1084 if (push && ISDIGIT (*input_line_pointer))
6f932bce 1085 {
9cfc3331 1086 /* .pushsection has an optional subsection. */
6f932bce 1087 new_subsection = (subsegT) get_absolute_expression ();
9cfc3331
L
1088
1089 SKIP_WHITESPACE ();
1090
1091 /* Stop if we don't see a comma. */
1092 if (*input_line_pointer != ',')
1093 goto done;
1094
1095 /* Skip the comma. */
1096 ++input_line_pointer;
1097 SKIP_WHITESPACE ();
6f932bce 1098 }
9cfc3331
L
1099
1100 if (*input_line_pointer == '"')
252b5132 1101 {
f6616a06 1102 bfd_boolean is_clone;
01642c12 1103
9de8d8f1
RH
1104 beg = demand_copy_C_string (&dummy);
1105 if (beg == NULL)
252b5132 1106 {
9de8d8f1
RH
1107 ignore_rest_of_line ();
1108 return;
252b5132 1109 }
df3a023b
AM
1110 attr |= obj_elf_parse_section_letters (beg, strlen (beg),
1111 &is_clone, &gnu_attr);
252b5132
RH
1112
1113 SKIP_WHITESPACE ();
1114 if (*input_line_pointer == ',')
1115 {
9de8d8f1 1116 char c;
060adf0e
AM
1117 char *save = input_line_pointer;
1118
252b5132
RH
1119 ++input_line_pointer;
1120 SKIP_WHITESPACE ();
9de8d8f1
RH
1121 c = *input_line_pointer;
1122 if (c == '"')
252b5132 1123 {
9de8d8f1
RH
1124 beg = demand_copy_C_string (&dummy);
1125 if (beg == NULL)
252b5132 1126 {
9de8d8f1
RH
1127 ignore_rest_of_line ();
1128 return;
252b5132 1129 }
44bf2362 1130 type = obj_elf_section_type (beg, strlen (beg), TRUE);
9de8d8f1
RH
1131 }
1132 else if (c == '@' || c == '%')
1133 {
d02603dc 1134 ++input_line_pointer;
9fb71ee4
NC
1135
1136 if (ISDIGIT (* input_line_pointer))
df3a023b 1137 type = strtoul (input_line_pointer, &input_line_pointer, 0);
9fb71ee4
NC
1138 else
1139 {
1140 c = get_symbol_name (& beg);
1141 (void) restore_line_pointer (c);
df3a023b
AM
1142 type = obj_elf_section_type (beg,
1143 input_line_pointer - beg,
1144 TRUE);
9fb71ee4 1145 }
252b5132 1146 }
060adf0e
AM
1147 else
1148 input_line_pointer = save;
252b5132 1149 }
f5fa8ca2
JJ
1150
1151 SKIP_WHITESPACE ();
6ce8b369 1152 if ((attr & SHF_MERGE) != 0 && *input_line_pointer == ',')
f5fa8ca2
JJ
1153 {
1154 ++input_line_pointer;
1155 SKIP_WHITESPACE ();
1156 entsize = get_absolute_expression ();
6ce8b369 1157 SKIP_WHITESPACE ();
f5fa8ca2
JJ
1158 if (entsize < 0)
1159 {
6ce8b369 1160 as_warn (_("invalid merge entity size"));
f5fa8ca2
JJ
1161 attr &= ~SHF_MERGE;
1162 entsize = 0;
1163 }
1164 }
6ce8b369
AM
1165 else if ((attr & SHF_MERGE) != 0)
1166 {
1167 as_warn (_("entity size for SHF_MERGE not specified"));
1168 attr &= ~SHF_MERGE;
1169 }
060adf0e 1170
b7d07216
L
1171 if ((attr & SHF_LINK_ORDER) != 0 && *input_line_pointer == ',')
1172 {
1173 char c;
1174 unsigned int length;
1175 ++input_line_pointer;
1176 SKIP_WHITESPACE ();
1177 c = get_symbol_name (& beg);
1178 (void) restore_line_pointer (c);
1179 length = input_line_pointer - beg;
1180 if (length)
1181 match.linked_to_symbol_name = xmemdup0 (beg, length);
1182 }
1183
f6616a06 1184 if ((attr & SHF_GROUP) != 0 && is_clone)
01642c12
RM
1185 {
1186 as_warn (_("? section flag ignored with G present"));
f6616a06 1187 is_clone = FALSE;
01642c12 1188 }
060adf0e
AM
1189 if ((attr & SHF_GROUP) != 0 && *input_line_pointer == ',')
1190 {
1191 ++input_line_pointer;
a8c4d40b
L
1192 match.group_name = obj_elf_section_name ();
1193 if (match.group_name == NULL)
060adf0e 1194 attr &= ~SHF_GROUP;
59365e19 1195 else if (*input_line_pointer == ',')
d2dab548 1196 {
59365e19
AM
1197 ++input_line_pointer;
1198 SKIP_WHITESPACE ();
1199 if (strncmp (input_line_pointer, "comdat", 6) == 0)
1200 {
1201 input_line_pointer += 6;
1202 linkonce = 1;
1203 }
d2dab548
AM
1204 }
1205 else if (strncmp (name, ".gnu.linkonce", 13) == 0)
1206 linkonce = 1;
060adf0e
AM
1207 }
1208 else if ((attr & SHF_GROUP) != 0)
1209 {
1210 as_warn (_("group name for SHF_GROUP not specified"));
1211 attr &= ~SHF_GROUP;
1212 }
01642c12 1213
f6616a06 1214 if (is_clone)
01642c12
RM
1215 {
1216 const char *now_group = elf_group_name (now_seg);
1217 if (now_group != NULL)
1218 {
a8c4d40b 1219 match.group_name = xstrdup (now_group);
01642c12
RM
1220 linkonce = (now_seg->flags & SEC_LINK_ONCE) != 0;
1221 }
1222 }
a91e1603 1223
df3a023b 1224 if ((gnu_attr & SHF_GNU_MBIND) != 0 && *input_line_pointer == ',')
a91e1603 1225 {
a8c4d40b 1226 char *save = input_line_pointer;
a91e1603
L
1227 ++input_line_pointer;
1228 SKIP_WHITESPACE ();
1229 if (ISDIGIT (* input_line_pointer))
1230 {
1231 char *t = input_line_pointer;
a8c4d40b
L
1232 match.info = strtoul (input_line_pointer,
1233 &input_line_pointer, 0);
1234 if (match.info == (unsigned int) -1)
a91e1603
L
1235 {
1236 as_warn (_("unsupported mbind section info: %s"), t);
a8c4d40b 1237 match.info = 0;
a91e1603
L
1238 }
1239 }
a8c4d40b
L
1240 else
1241 input_line_pointer = save;
1242 }
1243
1244 if (*input_line_pointer == ',')
1245 {
1246 char *save = input_line_pointer;
1247 ++input_line_pointer;
1248 SKIP_WHITESPACE ();
1249 if (strncmp (input_line_pointer, "unique", 6) == 0)
1250 {
1251 input_line_pointer += 6;
1252 SKIP_WHITESPACE ();
1253 if (*input_line_pointer == ',')
1254 {
1255 ++input_line_pointer;
1256 SKIP_WHITESPACE ();
1257 if (ISDIGIT (* input_line_pointer))
1258 {
1259 bfd_vma id;
1260 bfd_boolean overflow;
1261 char *t = input_line_pointer;
1262 if (sizeof (bfd_vma) <= sizeof (unsigned long))
1263 {
1264 errno = 0;
1265 id = strtoul (input_line_pointer,
1266 &input_line_pointer, 0);
1267 overflow = (id == (unsigned long) -1
1268 && errno == ERANGE);
1269 }
1270 else
1271 {
1272 id = bfd_scan_vma
1273 (input_line_pointer,
1274 (const char **) &input_line_pointer, 0);
1275 overflow = id == ~(bfd_vma) 0;
1276 }
1277 if (overflow || id > (unsigned int) -1)
1278 {
1279 char *linefeed, saved_char = 0;
1280 if ((linefeed = strchr (t, '\n')) != NULL)
1281 {
1282 saved_char = *linefeed;
1283 *linefeed = '\0';
1284 }
1285 as_bad (_("unsupported section id: %s"), t);
1286 if (saved_char)
1287 *linefeed = saved_char;
1288 }
1289 else
1290 {
1291 match.section_id = id;
1292 match.flags |= SEC_ASSEMBLER_SECTION_ID;
1293 }
1294 }
1295 }
1296 }
1297 else
1298 input_line_pointer = save;
a91e1603 1299 }
252b5132
RH
1300 }
1301 else
1302 {
1303 do
1304 {
9de8d8f1
RH
1305 char c;
1306
252b5132
RH
1307 SKIP_WHITESPACE ();
1308 if (*input_line_pointer != '#')
1309 {
c95b35a9 1310 as_bad (_("character following name is not '#'"));
252b5132
RH
1311 ignore_rest_of_line ();
1312 return;
1313 }
d02603dc
NC
1314 ++input_line_pointer;
1315 c = get_symbol_name (& beg);
1316 (void) restore_line_pointer (c);
9de8d8f1 1317
df3a023b
AM
1318 attr |= obj_elf_section_word (beg, input_line_pointer - beg,
1319 &type);
9de8d8f1 1320
252b5132
RH
1321 SKIP_WHITESPACE ();
1322 }
1323 while (*input_line_pointer++ == ',');
1324 --input_line_pointer;
1325 }
1326 }
1327
9cfc3331 1328done:
252b5132 1329 demand_empty_rest_of_line ();
9de8d8f1 1330
a8c4d40b
L
1331 obj_elf_change_section (name, type, attr, entsize, &match, linkonce,
1332 push);
6f932bce 1333
df3a023b
AM
1334 if ((gnu_attr & SHF_GNU_MBIND) != 0)
1335 {
1336 struct elf_backend_data *bed;
1337
1338 if ((attr & SHF_ALLOC) == 0)
1339 as_bad (_("SHF_ALLOC isn't set for GNU_MBIND section: %s"), name);
1340
1341 bed = (struct elf_backend_data *) get_elf_backend_data (stdoutput);
1342 if (bed->elf_osabi == ELFOSABI_NONE)
1343 bed->elf_osabi = ELFOSABI_GNU;
1344 else if (bed->elf_osabi != ELFOSABI_GNU
1345 && bed->elf_osabi != ELFOSABI_FREEBSD)
1346 as_bad (_("GNU_MBIND section is supported only by GNU "
1347 "and FreeBSD targets"));
cc364be6 1348 elf_tdata (stdoutput)->has_gnu_osabi |= elf_gnu_osabi_mbind;
df3a023b
AM
1349 }
1350 elf_section_flags (now_seg) |= gnu_attr;
1351
6f932bce
NC
1352 if (push && new_subsection != -1)
1353 subseg_set (now_seg, new_subsection);
252b5132
RH
1354}
1355
1356/* Change to the .data section. */
1357
16b93d88 1358void
dbe2df79 1359obj_elf_data (int i)
252b5132
RH
1360{
1361#ifdef md_flush_pending_output
1362 md_flush_pending_output ();
1363#endif
1364
1365 previous_section = now_seg;
1366 previous_subsection = now_subseg;
1367 s_data (i);
1368
1369#ifdef md_elf_section_change_hook
1370 md_elf_section_change_hook ();
1371#endif
1372}
1373
1374/* Change to the .text section. */
1375
16b93d88 1376void
dbe2df79 1377obj_elf_text (int i)
252b5132
RH
1378{
1379#ifdef md_flush_pending_output
1380 md_flush_pending_output ();
1381#endif
1382
1383 previous_section = now_seg;
1384 previous_subsection = now_subseg;
1385 s_text (i);
1386
1387#ifdef md_elf_section_change_hook
1388 md_elf_section_change_hook ();
1389#endif
1390}
1391
8fe53b44
JB
1392/* Change to the *ABS* section. */
1393
1394void
1395obj_elf_struct (int i)
1396{
1397#ifdef md_flush_pending_output
1398 md_flush_pending_output ();
1399#endif
1400
1401 previous_section = now_seg;
1402 previous_subsection = now_subseg;
1403 s_struct (i);
1404
1405#ifdef md_elf_section_change_hook
1406 md_elf_section_change_hook ();
1407#endif
1408}
1409
252b5132 1410static void
dbe2df79 1411obj_elf_subsection (int ignore ATTRIBUTE_UNUSED)
252b5132 1412{
6f932bce 1413 int temp;
252b5132
RH
1414
1415#ifdef md_flush_pending_output
1416 md_flush_pending_output ();
1417#endif
1418
1419 previous_section = now_seg;
1420 previous_subsection = now_subseg;
1421
1422 temp = get_absolute_expression ();
1423 subseg_set (now_seg, (subsegT) temp);
1424 demand_empty_rest_of_line ();
1425
1426#ifdef md_elf_section_change_hook
1427 md_elf_section_change_hook ();
1428#endif
1429}
1430
1431/* This can be called from the processor backends if they change
1432 sections. */
1433
1434void
dbe2df79 1435obj_elf_section_change_hook (void)
252b5132
RH
1436{
1437 previous_section = now_seg;
1438 previous_subsection = now_subseg;
1439}
1440
1441void
dbe2df79 1442obj_elf_previous (int ignore ATTRIBUTE_UNUSED)
252b5132 1443{
9de8d8f1
RH
1444 segT new_section;
1445 int new_subsection;
1446
252b5132
RH
1447 if (previous_section == 0)
1448 {
6ce8b369 1449 as_warn (_(".previous without corresponding .section; ignored"));
252b5132
RH
1450 return;
1451 }
1452
1453#ifdef md_flush_pending_output
1454 md_flush_pending_output ();
1455#endif
1456
9de8d8f1
RH
1457 new_section = previous_section;
1458 new_subsection = previous_subsection;
1459 previous_section = now_seg;
1460 previous_subsection = now_subseg;
1461 subseg_set (new_section, new_subsection);
1462
1463#ifdef md_elf_section_change_hook
1464 md_elf_section_change_hook ();
1465#endif
1466}
1467
1468static void
dbe2df79 1469obj_elf_popsection (int xxx ATTRIBUTE_UNUSED)
9de8d8f1
RH
1470{
1471 struct section_stack *top = section_stack;
1472
1473 if (top == NULL)
1474 {
6ce8b369 1475 as_warn (_(".popsection without corresponding .pushsection; ignored"));
9de8d8f1
RH
1476 return;
1477 }
1478
1479#ifdef md_flush_pending_output
1480 md_flush_pending_output ();
1481#endif
1482
1483 section_stack = top->next;
1484 previous_section = top->prev_seg;
1485 previous_subsection = top->prev_subseg;
1486 subseg_set (top->seg, top->subseg);
1487 free (top);
252b5132
RH
1488
1489#ifdef md_elf_section_change_hook
1490 md_elf_section_change_hook ();
1491#endif
1492}
1493
1494static void
dbe2df79 1495obj_elf_line (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
1496{
1497 /* Assume delimiter is part of expression. BSD4.2 as fails with
bf514e21 1498 delightful bug, so we are not being incompatible here. */
dbe2df79 1499 new_logical_line (NULL, get_absolute_expression ());
252b5132
RH
1500 demand_empty_rest_of_line ();
1501}
1502
1503/* This handles the .symver pseudo-op, which is used to specify a
1504 symbol version. The syntax is ``.symver NAME,SYMVERNAME''.
1505 SYMVERNAME may contain ELF_VER_CHR ('@') characters. This
1506 pseudo-op causes the assembler to emit a symbol named SYMVERNAME
1507 with the same value as the symbol NAME. */
1508
1509static void
dbe2df79 1510obj_elf_symver (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
1511{
1512 char *name;
1513 char c;
468cced8 1514 char old_lexat;
252b5132
RH
1515 symbolS *sym;
1516
6e8bd58f 1517 sym = get_sym_from_input_line_and_check ();
252b5132 1518
252b5132
RH
1519 if (*input_line_pointer != ',')
1520 {
1521 as_bad (_("expected comma after name in .symver"));
1522 ignore_rest_of_line ();
1523 return;
1524 }
1525
1526 ++input_line_pointer;
eba874d8 1527 SKIP_WHITESPACE ();
468cced8
AM
1528
1529 /* Temporarily include '@' in symbol names. */
1530 old_lexat = lex_type[(unsigned char) '@'];
1531 lex_type[(unsigned char) '@'] |= LEX_NAME;
d02603dc 1532 c = get_symbol_name (& name);
468cced8 1533 lex_type[(unsigned char) '@'] = old_lexat;
252b5132 1534
a3aea05a
L
1535 if (S_IS_COMMON (sym))
1536 {
1537 as_bad (_("`%s' can't be versioned to common symbol '%s'"),
1538 name, S_GET_NAME (sym));
1539 ignore_rest_of_line ();
1540 return;
1541 }
1542
339681c0
L
1543 if (symbol_get_obj (sym)->versioned_name == NULL)
1544 {
1545 symbol_get_obj (sym)->versioned_name = xstrdup (name);
252b5132 1546
d02603dc 1547 (void) restore_line_pointer (c);
252b5132 1548
6f620856
L
1549 if (strchr (symbol_get_obj (sym)->versioned_name,
1550 ELF_VER_CHR) == NULL)
339681c0
L
1551 {
1552 as_bad (_("missing version name in `%s' for symbol `%s'"),
1553 symbol_get_obj (sym)->versioned_name,
1554 S_GET_NAME (sym));
1555 ignore_rest_of_line ();
1556 return;
1557 }
1558 }
1559 else
252b5132 1560 {
339681c0
L
1561 if (strcmp (symbol_get_obj (sym)->versioned_name, name))
1562 {
1563 as_bad (_("multiple versions [`%s'|`%s'] for symbol `%s'"),
1564 name, symbol_get_obj (sym)->versioned_name,
1565 S_GET_NAME (sym));
1566 ignore_rest_of_line ();
1567 return;
1568 }
1569
d02603dc 1570 (void) restore_line_pointer (c);
252b5132
RH
1571 }
1572
1573 demand_empty_rest_of_line ();
1574}
1575
1576/* This handles the .vtable_inherit pseudo-op, which is used to indicate
1577 to the linker the hierarchy in which a particular table resides. The
1578 syntax is ".vtable_inherit CHILDNAME, PARENTNAME". */
1579
904a31bf 1580struct fix *
68d20676 1581obj_elf_get_vtable_inherit (void)
252b5132
RH
1582{
1583 char *cname, *pname;
1584 symbolS *csym, *psym;
1585 char c, bad = 0;
1586
1587 if (*input_line_pointer == '#')
1588 ++input_line_pointer;
1589
d02603dc 1590 c = get_symbol_name (& cname);
252b5132
RH
1591 csym = symbol_find (cname);
1592
1593 /* GCFIXME: should check that we don't have two .vtable_inherits for
1594 the same child symbol. Also, we can currently only do this if the
1595 child symbol is already exists and is placed in a fragment. */
1596
49309057 1597 if (csym == NULL || symbol_get_frag (csym) == NULL)
252b5132 1598 {
bd3ba5d1 1599 as_bad (_("expected `%s' to have already been set for .vtable_inherit"),
252b5132
RH
1600 cname);
1601 bad = 1;
1602 }
1603
1604 *input_line_pointer = c;
1605
d02603dc 1606 SKIP_WHITESPACE_AFTER_NAME ();
252b5132
RH
1607 if (*input_line_pointer != ',')
1608 {
bd3ba5d1 1609 as_bad (_("expected comma after name in .vtable_inherit"));
252b5132 1610 ignore_rest_of_line ();
904a31bf 1611 return NULL;
252b5132
RH
1612 }
1613
1614 ++input_line_pointer;
1615 SKIP_WHITESPACE ();
1616
1617 if (*input_line_pointer == '#')
1618 ++input_line_pointer;
1619
1620 if (input_line_pointer[0] == '0'
1621 && (input_line_pointer[1] == '\0'
3882b010 1622 || ISSPACE (input_line_pointer[1])))
252b5132
RH
1623 {
1624 psym = section_symbol (absolute_section);
1625 ++input_line_pointer;
1626 }
1627 else
1628 {
d02603dc 1629 c = get_symbol_name (& pname);
252b5132 1630 psym = symbol_find_or_make (pname);
d02603dc 1631 restore_line_pointer (c);
252b5132
RH
1632 }
1633
1634 demand_empty_rest_of_line ();
1635
1636 if (bad)
904a31bf 1637 return NULL;
252b5132 1638
9c2799c2 1639 gas_assert (symbol_get_value_expression (csym)->X_op == O_constant);
904a31bf
AM
1640 return fix_new (symbol_get_frag (csym),
1641 symbol_get_value_expression (csym)->X_add_number,
1642 0, psym, 0, 0, BFD_RELOC_VTABLE_INHERIT);
252b5132 1643}
fa306131 1644
68d20676
NC
1645/* This is a version of obj_elf_get_vtable_inherit() that is
1646 suitable for use in struct _pseudo_type tables. */
1647
1648void
1649obj_elf_vtable_inherit (int ignore ATTRIBUTE_UNUSED)
1650{
1651 (void) obj_elf_get_vtable_inherit ();
1652}
1653
252b5132
RH
1654/* This handles the .vtable_entry pseudo-op, which is used to indicate
1655 to the linker that a vtable slot was used. The syntax is
1656 ".vtable_entry tablename, offset". */
1657
904a31bf 1658struct fix *
68d20676 1659obj_elf_get_vtable_entry (void)
252b5132 1660{
252b5132
RH
1661 symbolS *sym;
1662 offsetT offset;
252b5132
RH
1663
1664 if (*input_line_pointer == '#')
1665 ++input_line_pointer;
1666
6e8bd58f 1667 sym = get_sym_from_input_line_and_check ();
252b5132
RH
1668 if (*input_line_pointer != ',')
1669 {
bd3ba5d1 1670 as_bad (_("expected comma after name in .vtable_entry"));
252b5132 1671 ignore_rest_of_line ();
904a31bf 1672 return NULL;
252b5132
RH
1673 }
1674
1675 ++input_line_pointer;
1676 if (*input_line_pointer == '#')
1677 ++input_line_pointer;
1678
1679 offset = get_absolute_expression ();
1680
252b5132 1681 demand_empty_rest_of_line ();
904a31bf
AM
1682
1683 return fix_new (frag_now, frag_now_fix (), 0, sym, offset, 0,
1684 BFD_RELOC_VTABLE_ENTRY);
252b5132
RH
1685}
1686
68d20676
NC
1687/* This is a version of obj_elf_get_vtable_entry() that is
1688 suitable for use in struct _pseudo_type tables. */
1689
1690void
1691obj_elf_vtable_entry (int ignore ATTRIBUTE_UNUSED)
1692{
1693 (void) obj_elf_get_vtable_entry ();
1694}
1695
0420f52b
MR
1696#define skip_whitespace(str) do { if (*(str) == ' ') ++(str); } while (0)
1697
1698static inline int
1699skip_past_char (char ** str, char c)
1700{
1701 if (**str == c)
1702 {
1703 (*str)++;
1704 return 0;
1705 }
1706 else
1707 return -1;
1708}
1709#define skip_past_comma(str) skip_past_char (str, ',')
1710
9440a904
RS
1711/* A list of attributes that have been explicitly set by the assembly code.
1712 VENDOR is the vendor id, BASE is the tag shifted right by the number
1713 of bits in MASK, and bit N of MASK is set if tag BASE+N has been set. */
1714struct recorded_attribute_info {
1715 struct recorded_attribute_info *next;
1716 int vendor;
1717 unsigned int base;
1718 unsigned long mask;
1719};
1720static struct recorded_attribute_info *recorded_attributes;
1721
1722/* Record that we have seen an explicit specification of attribute TAG
1723 for vendor VENDOR. */
1724
1725static void
1726record_attribute (int vendor, unsigned int tag)
1727{
1728 unsigned int base;
1729 unsigned long mask;
1730 struct recorded_attribute_info *rai;
1731
1732 base = tag / (8 * sizeof (rai->mask));
1733 mask = 1UL << (tag % (8 * sizeof (rai->mask)));
1734 for (rai = recorded_attributes; rai; rai = rai->next)
1735 if (rai->vendor == vendor && rai->base == base)
1736 {
1737 rai->mask |= mask;
1738 return;
1739 }
1740
1741 rai = XNEW (struct recorded_attribute_info);
1742 rai->next = recorded_attributes;
1743 rai->vendor = vendor;
1744 rai->base = base;
1745 rai->mask = mask;
1746 recorded_attributes = rai;
1747}
1748
1749/* Return true if we have seen an explicit specification of attribute TAG
1750 for vendor VENDOR. */
1751
1752bfd_boolean
1753obj_elf_seen_attribute (int vendor, unsigned int tag)
1754{
1755 unsigned int base;
1756 unsigned long mask;
1757 struct recorded_attribute_info *rai;
1758
1759 base = tag / (8 * sizeof (rai->mask));
1760 mask = 1UL << (tag % (8 * sizeof (rai->mask)));
1761 for (rai = recorded_attributes; rai; rai = rai->next)
1762 if (rai->vendor == vendor && rai->base == base)
1763 return (rai->mask & mask) != 0;
1764 return FALSE;
1765}
1766
0420f52b
MR
1767/* Parse an attribute directive for VENDOR.
1768 Returns the attribute number read, or zero on error. */
1769
1770int
1771obj_elf_vendor_attribute (int vendor)
1772{
1773 expressionS exp;
1774 int type;
1775 int tag;
1776 unsigned int i = 0;
1777 char *s = NULL;
1778
1779 /* Read the first number or name. */
1780 skip_whitespace (input_line_pointer);
1781 s = input_line_pointer;
1782 if (ISDIGIT (*input_line_pointer))
1783 {
1784 expression (& exp);
1785 if (exp.X_op != O_constant)
1786 goto bad;
1787 tag = exp.X_add_number;
1788 }
1789 else
1790 {
1791 char *name;
1792
1793 /* A name may contain '_', but no other punctuation. */
1794 for (; ISALNUM (*input_line_pointer) || *input_line_pointer == '_';
1795 ++input_line_pointer)
1796 i++;
1797 if (i == 0)
1798 goto bad;
1799
a44e2901 1800 name = xstrndup (s, i);
0420f52b
MR
1801
1802#ifndef CONVERT_SYMBOLIC_ATTRIBUTE
1803#define CONVERT_SYMBOLIC_ATTRIBUTE(a) -1
1804#endif
1805
1806 tag = CONVERT_SYMBOLIC_ATTRIBUTE (name);
1807 if (tag == -1)
1808 {
1809 as_bad (_("Attribute name not recognised: %s"), name);
1810 ignore_rest_of_line ();
e1fa0163 1811 free (name);
0420f52b
MR
1812 return 0;
1813 }
e1fa0163 1814 free (name);
0420f52b
MR
1815 }
1816
1817 type = _bfd_elf_obj_attrs_arg_type (stdoutput, vendor, tag);
1818
1819 if (skip_past_comma (&input_line_pointer) == -1)
1820 goto bad;
1821 if (type & 1)
1822 {
1823 expression (& exp);
1824 if (exp.X_op != O_constant)
1825 {
1826 as_bad (_("expected numeric constant"));
1827 ignore_rest_of_line ();
1828 return 0;
1829 }
1830 i = exp.X_add_number;
1831 }
1832 if ((type & 3) == 3
1833 && skip_past_comma (&input_line_pointer) == -1)
1834 {
1835 as_bad (_("expected comma"));
1836 ignore_rest_of_line ();
1837 return 0;
1838 }
1839 if (type & 2)
1840 {
1841 int len;
1842
1843 skip_whitespace (input_line_pointer);
1844 if (*input_line_pointer != '"')
1845 goto bad_string;
1846 s = demand_copy_C_string (&len);
1847 }
1848
9440a904 1849 record_attribute (vendor, tag);
0420f52b
MR
1850 switch (type & 3)
1851 {
1852 case 3:
1853 bfd_elf_add_obj_attr_int_string (stdoutput, vendor, tag, i, s);
1854 break;
1855 case 2:
1856 bfd_elf_add_obj_attr_string (stdoutput, vendor, tag, s);
1857 break;
1858 case 1:
1859 bfd_elf_add_obj_attr_int (stdoutput, vendor, tag, i);
1860 break;
1861 default:
1862 abort ();
1863 }
1864
1865 demand_empty_rest_of_line ();
1866 return tag;
1867bad_string:
1868 as_bad (_("bad string constant"));
1869 ignore_rest_of_line ();
1870 return 0;
1871bad:
1872 as_bad (_("expected <tag> , <value>"));
1873 ignore_rest_of_line ();
1874 return 0;
1875}
1876
1877/* Parse a .gnu_attribute directive. */
1878
1879static void
1880obj_elf_gnu_attribute (int ignored ATTRIBUTE_UNUSED)
1881{
1882 obj_elf_vendor_attribute (OBJ_ATTR_GNU);
1883}
1884
252b5132 1885void
dbe2df79 1886elf_obj_read_begin_hook (void)
252b5132
RH
1887{
1888#ifdef NEED_ECOFF_DEBUG
1889 if (ECOFF_DEBUGGING)
1890 ecoff_read_begin_hook ();
1891#endif
1892}
1893
1894void
dbe2df79 1895elf_obj_symbol_new_hook (symbolS *symbolP)
252b5132 1896{
49309057
ILT
1897 struct elf_obj_sy *sy_obj;
1898
1899 sy_obj = symbol_get_obj (symbolP);
1900 sy_obj->size = NULL;
1901 sy_obj->versioned_name = NULL;
252b5132
RH
1902
1903#ifdef NEED_ECOFF_DEBUG
1904 if (ECOFF_DEBUGGING)
1905 ecoff_symbol_new_hook (symbolP);
1906#endif
1907}
1908
8fd3e36b
AM
1909/* When setting one symbol equal to another, by default we probably
1910 want them to have the same "size", whatever it means in the current
1911 context. */
1912
1913void
dbe2df79 1914elf_copy_symbol_attributes (symbolS *dest, symbolS *src)
8fd3e36b 1915{
060adf0e
AM
1916 struct elf_obj_sy *srcelf = symbol_get_obj (src);
1917 struct elf_obj_sy *destelf = symbol_get_obj (dest);
1918 if (srcelf->size)
1919 {
1920 if (destelf->size == NULL)
325801bd 1921 destelf->size = XNEW (expressionS);
060adf0e
AM
1922 *destelf->size = *srcelf->size;
1923 }
1924 else
1925 {
1926 if (destelf->size != NULL)
1927 free (destelf->size);
1928 destelf->size = NULL;
1929 }
1930 S_SET_SIZE (dest, S_GET_SIZE (src));
26eb4093
JJ
1931 /* Don't copy visibility. */
1932 S_SET_OTHER (dest, (ELF_ST_VISIBILITY (S_GET_OTHER (dest))
1933 | (S_GET_OTHER (src) & ~ELF_ST_VISIBILITY (-1))));
8fd3e36b
AM
1934}
1935
252b5132 1936void
dbe2df79 1937obj_elf_version (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
1938{
1939 char *name;
1940 unsigned int c;
252b5132
RH
1941 char *p;
1942 asection *seg = now_seg;
1943 subsegT subseg = now_subseg;
1944 Elf_Internal_Note i_note;
1945 Elf_External_Note e_note;
dbe2df79 1946 asection *note_secp = NULL;
252b5132
RH
1947
1948 SKIP_WHITESPACE ();
1949 if (*input_line_pointer == '\"')
1950 {
6afdfa61
NC
1951 unsigned int len;
1952
bf514e21 1953 ++input_line_pointer; /* -> 1st char of string. */
252b5132
RH
1954 name = input_line_pointer;
1955
1956 while (is_a_char (c = next_char_of_string ()))
1957 ;
1958 c = *input_line_pointer;
1959 *input_line_pointer = '\0';
1960 *(input_line_pointer - 1) = '\0';
1961 *input_line_pointer = c;
1962
6afdfa61 1963 /* Create the .note section. */
252b5132 1964 note_secp = subseg_new (".note", 0);
fd361982 1965 bfd_set_section_flags (note_secp, SEC_HAS_CONTENTS | SEC_READONLY);
ed9c7ee0 1966 record_alignment (note_secp, 2);
252b5132 1967
6afdfa61
NC
1968 /* Process the version string. */
1969 len = strlen (name) + 1;
252b5132 1970
6afdfa61
NC
1971 /* PR 3456: Although the name field is padded out to an 4-byte
1972 boundary, the namesz field should not be adjusted. */
1973 i_note.namesz = len;
1974 i_note.descsz = 0; /* No description. */
252b5132
RH
1975 i_note.type = NT_VERSION;
1976 p = frag_more (sizeof (e_note.namesz));
dbe2df79 1977 md_number_to_chars (p, i_note.namesz, sizeof (e_note.namesz));
252b5132 1978 p = frag_more (sizeof (e_note.descsz));
dbe2df79 1979 md_number_to_chars (p, i_note.descsz, sizeof (e_note.descsz));
252b5132 1980 p = frag_more (sizeof (e_note.type));
dbe2df79 1981 md_number_to_chars (p, i_note.type, sizeof (e_note.type));
6afdfa61 1982 p = frag_more (len);
5ab504f9 1983 memcpy (p, name, len);
252b5132 1984
252b5132
RH
1985 frag_align (2, 0, 0);
1986
1987 subseg_set (seg, subseg);
1988 }
1989 else
6afdfa61
NC
1990 as_bad (_("expected quoted string"));
1991
252b5132
RH
1992 demand_empty_rest_of_line ();
1993}
1994
1995static void
dbe2df79 1996obj_elf_size (int ignore ATTRIBUTE_UNUSED)
252b5132 1997{
d02603dc
NC
1998 char *name;
1999 char c = get_symbol_name (&name);
252b5132
RH
2000 char *p;
2001 expressionS exp;
2002 symbolS *sym;
2003
2004 p = input_line_pointer;
2005 *p = c;
d02603dc 2006 SKIP_WHITESPACE_AFTER_NAME ();
252b5132
RH
2007 if (*input_line_pointer != ',')
2008 {
2009 *p = 0;
2010 as_bad (_("expected comma after name `%s' in .size directive"), name);
2011 *p = c;
2012 ignore_rest_of_line ();
2013 return;
2014 }
2015 input_line_pointer++;
2016 expression (&exp);
2017 if (exp.X_op == O_absent)
2018 {
2019 as_bad (_("missing expression in .size directive"));
2020 exp.X_op = O_constant;
2021 exp.X_add_number = 0;
2022 }
2023 *p = 0;
2024 sym = symbol_find_or_make (name);
2025 *p = c;
2026 if (exp.X_op == O_constant)
c538998c
JJ
2027 {
2028 S_SET_SIZE (sym, exp.X_add_number);
2029 if (symbol_get_obj (sym)->size)
2030 {
2031 xfree (symbol_get_obj (sym)->size);
2032 symbol_get_obj (sym)->size = NULL;
2033 }
2034 }
252b5132
RH
2035 else
2036 {
325801bd 2037 symbol_get_obj (sym)->size = XNEW (expressionS);
49309057 2038 *symbol_get_obj (sym)->size = exp;
252b5132
RH
2039 }
2040 demand_empty_rest_of_line ();
2041}
2042
2043/* Handle the ELF .type pseudo-op. This sets the type of a symbol.
44bf2362 2044 There are six syntaxes:
fa306131 2045
252b5132
RH
2046 The first (used on Solaris) is
2047 .type SYM,#function
2048 The second (used on UnixWare) is
2049 .type SYM,@function
2050 The third (reportedly to be used on Irix 6.0) is
2051 .type SYM STT_FUNC
2052 The fourth (used on NetBSD/Arm and Linux/ARM) is
2053 .type SYM,%function
aa8c34c3
JE
2054 The fifth (used on SVR4/860) is
2055 .type SYM,"function"
44bf2362
NC
2056 The sixth (emitted by recent SunPRO under Solaris) is
2057 .type SYM,[0-9]
2058 where the integer is the STT_* value.
252b5132
RH
2059 */
2060
44bf2362
NC
2061static char *
2062obj_elf_type_name (char *cp)
2063{
2064 char *p;
2065
2066 p = input_line_pointer;
2067 if (*input_line_pointer >= '0'
2068 && *input_line_pointer <= '9')
2069 {
2070 while (*input_line_pointer >= '0'
2071 && *input_line_pointer <= '9')
2072 ++input_line_pointer;
2073 *cp = *input_line_pointer;
2074 *input_line_pointer = '\0';
2075 }
2076 else
d02603dc 2077 *cp = get_symbol_name (&p);
44bf2362
NC
2078
2079 return p;
2080}
2081
252b5132 2082static void
dbe2df79 2083obj_elf_type (int ignore ATTRIBUTE_UNUSED)
252b5132 2084{
252b5132
RH
2085 char c;
2086 int type;
1e9cc1c2 2087 const char *type_name;
252b5132 2088 symbolS *sym;
904a31bf 2089 elf_symbol_type *elfsym;
252b5132 2090
6e8bd58f
NS
2091 sym = get_sym_from_input_line_and_check ();
2092 c = *input_line_pointer;
904a31bf 2093 elfsym = (elf_symbol_type *) symbol_get_bfdsym (sym);
252b5132 2094
252b5132
RH
2095 if (*input_line_pointer == ',')
2096 ++input_line_pointer;
2097
2098 SKIP_WHITESPACE ();
2099 if ( *input_line_pointer == '#'
2100 || *input_line_pointer == '@'
aa8c34c3 2101 || *input_line_pointer == '"'
252b5132
RH
2102 || *input_line_pointer == '%')
2103 ++input_line_pointer;
2104
1e9cc1c2 2105 type_name = obj_elf_type_name (& c);
252b5132
RH
2106
2107 type = 0;
1e9cc1c2
NC
2108 if (strcmp (type_name, "function") == 0
2109 || strcmp (type_name, "2") == 0
2110 || strcmp (type_name, "STT_FUNC") == 0)
252b5132 2111 type = BSF_FUNCTION;
1e9cc1c2
NC
2112 else if (strcmp (type_name, "object") == 0
2113 || strcmp (type_name, "1") == 0
2114 || strcmp (type_name, "STT_OBJECT") == 0)
252b5132 2115 type = BSF_OBJECT;
1e9cc1c2
NC
2116 else if (strcmp (type_name, "tls_object") == 0
2117 || strcmp (type_name, "6") == 0
2118 || strcmp (type_name, "STT_TLS") == 0)
b9734f35 2119 type = BSF_OBJECT | BSF_THREAD_LOCAL;
1e9cc1c2
NC
2120 else if (strcmp (type_name, "notype") == 0
2121 || strcmp (type_name, "0") == 0
2122 || strcmp (type_name, "STT_NOTYPE") == 0)
e7b9a8c1 2123 ;
1e9cc1c2
NC
2124 else if (strcmp (type_name, "common") == 0
2125 || strcmp (type_name, "5") == 0
2126 || strcmp (type_name, "STT_COMMON") == 0)
504b7d20
NC
2127 {
2128 type = BSF_OBJECT;
2129
2130 if (! S_IS_COMMON (sym))
2131 {
2132 if (S_IS_VOLATILE (sym))
2133 {
2134 sym = symbol_clone (sym, 1);
2135 S_SET_SEGMENT (sym, bfd_com_section_ptr);
2136 S_SET_VALUE (sym, 0);
2137 S_SET_EXTERNAL (sym);
2138 symbol_set_frag (sym, &zero_address_frag);
2139 S_CLEAR_VOLATILE (sym);
2140 }
2141 else if (S_IS_DEFINED (sym) || symbol_equated_p (sym))
2142 as_bad (_("symbol '%s' is already defined"), S_GET_NAME (sym));
2143 else
2144 {
2145 /* FIXME: Is it safe to just change the section ? */
2146 S_SET_SEGMENT (sym, bfd_com_section_ptr);
2147 S_SET_VALUE (sym, 0);
2148 S_SET_EXTERNAL (sym);
2149 }
2150 }
2151 }
1e9cc1c2
NC
2152 else if (strcmp (type_name, "gnu_indirect_function") == 0
2153 || strcmp (type_name, "10") == 0
2154 || strcmp (type_name, "STT_GNU_IFUNC") == 0)
d8045f23 2155 {
df3a023b
AM
2156 struct elf_backend_data *bed;
2157
2158 bed = (struct elf_backend_data *) get_elf_backend_data (stdoutput);
2159 if (bed->elf_osabi == ELFOSABI_NONE)
2160 bed->elf_osabi = ELFOSABI_GNU;
2161 else if (bed->elf_osabi != ELFOSABI_GNU
2162 && bed->elf_osabi != ELFOSABI_FREEBSD)
2163 as_bad (_("symbol type \"%s\" is supported only by GNU "
2164 "and FreeBSD targets"), type_name);
cc364be6 2165 elf_tdata (stdoutput)->has_gnu_osabi |= elf_gnu_osabi_ifunc;
d8045f23
NC
2166 type = BSF_FUNCTION | BSF_GNU_INDIRECT_FUNCTION;
2167 }
1e9cc1c2 2168 else if (strcmp (type_name, "gnu_unique_object") == 0)
3e7a7d11 2169 {
d3ce72d0 2170 struct elf_backend_data *bed;
3e7a7d11 2171
d3ce72d0 2172 bed = (struct elf_backend_data *) get_elf_backend_data (stdoutput);
df3a023b
AM
2173 if (bed->elf_osabi == ELFOSABI_NONE)
2174 bed->elf_osabi = ELFOSABI_GNU;
2175 else if (bed->elf_osabi != ELFOSABI_GNU)
3e7a7d11 2176 as_bad (_("symbol type \"%s\" is supported only by GNU targets"),
1e9cc1c2 2177 type_name);
cc364be6 2178 elf_tdata (stdoutput)->has_gnu_osabi |= elf_gnu_osabi_unique;
3e7a7d11
NC
2179 type = BSF_OBJECT | BSF_GNU_UNIQUE;
2180 }
904a31bf 2181#ifdef md_elf_symbol_type
1e9cc1c2 2182 else if ((type = md_elf_symbol_type (type_name, sym, elfsym)) != -1)
904a31bf
AM
2183 ;
2184#endif
252b5132 2185 else
1e9cc1c2 2186 as_bad (_("unrecognized symbol type \"%s\""), type_name);
252b5132
RH
2187
2188 *input_line_pointer = c;
2189
aa8c34c3
JE
2190 if (*input_line_pointer == '"')
2191 ++input_line_pointer;
2192
f2d4ba38
JB
2193#ifdef md_elf_symbol_type_change
2194 if (!md_elf_symbol_type_change (sym, elfsym, type))
2195#endif
2196 {
2197 flagword mask = BSF_FUNCTION | BSF_OBJECT;
2198
2199 if (type != BSF_FUNCTION)
2200 mask |= BSF_GNU_INDIRECT_FUNCTION;
2201 if (type != BSF_OBJECT)
2202 {
2203 mask |= BSF_GNU_UNIQUE | BSF_THREAD_LOCAL;
2204
2205 if (S_IS_COMMON (sym))
2206 {
2207 as_bad (_("cannot change type of common symbol '%s'"),
2208 S_GET_NAME (sym));
2209 mask = type = 0;
2210 }
2211 }
2212
2213 /* Don't warn when changing to STT_NOTYPE. */
2214 if (type)
2215 {
2216 flagword new = (elfsym->symbol.flags & ~mask) | type;
2217
2218 if (new != (elfsym->symbol.flags | type))
2219 as_warn (_("symbol '%s' already has its type set"), S_GET_NAME (sym));
2220 elfsym->symbol.flags = new;
2221 }
2222 else
2223 elfsym->symbol.flags &= ~mask;
2224 }
252b5132
RH
2225
2226 demand_empty_rest_of_line ();
2227}
2228
2229static void
dbe2df79 2230obj_elf_ident (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
2231{
2232 static segT comment_section;
2233 segT old_section = now_seg;
2234 int old_subsection = now_subseg;
2235
5f91fe03
ILT
2236#ifdef md_flush_pending_output
2237 md_flush_pending_output ();
2238#endif
2239
252b5132
RH
2240 if (!comment_section)
2241 {
2242 char *p;
2243 comment_section = subseg_new (".comment", 0);
fd361982
AM
2244 bfd_set_section_flags (comment_section, (SEC_READONLY | SEC_HAS_CONTENTS
2245 | SEC_MERGE | SEC_STRINGS));
01fb1836 2246 comment_section->entsize = 1;
cd000bff
DJ
2247#ifdef md_elf_section_change_hook
2248 md_elf_section_change_hook ();
2249#endif
252b5132
RH
2250 p = frag_more (1);
2251 *p = 0;
2252 }
2253 else
2254 subseg_set (comment_section, 0);
38a57ae7 2255 stringer (8 + 1);
252b5132
RH
2256 subseg_set (old_section, old_subsection);
2257}
2258
2259#ifdef INIT_STAB_SECTION
2260
2261/* The first entry in a .stabs section is special. */
2262
2263void
dbe2df79 2264obj_elf_init_stab_section (segT seg)
252b5132 2265{
3b4dbbbf 2266 const char *file;
252b5132
RH
2267 char *p;
2268 char *stabstr_name;
2269 unsigned int stroff;
2270
2271 /* Force the section to align to a longword boundary. Without this,
2272 UnixWare ar crashes. */
fd361982 2273 bfd_set_section_alignment (seg, 2);
252b5132 2274
bf514e21 2275 /* Make space for this first symbol. */
252b5132 2276 p = frag_more (12);
bf514e21 2277 /* Zero it out. */
252b5132 2278 memset (p, 0, 12);
3b4dbbbf 2279 file = as_where (NULL);
29a2809e 2280 stabstr_name = concat (segment_name (seg), "str", (char *) NULL);
0acc7632 2281 stroff = get_stab_string_offset (file, stabstr_name, TRUE);
91952a06 2282 know (stroff == 1 || (stroff == 0 && file[0] == '\0'));
252b5132
RH
2283 md_number_to_chars (p, stroff, 4);
2284 seg_info (seg)->stabu.p = p;
2285}
2286
2287#endif
2288
2289/* Fill in the counts in the first entry in a .stabs section. */
2290
2291static void
dbe2df79 2292adjust_stab_sections (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
252b5132
RH
2293{
2294 char *name;
2295 asection *strsec;
2296 char *p;
2297 int strsz, nsyms;
2298
2299 if (strncmp (".stab", sec->name, 5))
2300 return;
2301 if (!strcmp ("str", sec->name + strlen (sec->name) - 3))
2302 return;
2303
e1fa0163 2304 name = concat (sec->name, "str", NULL);
252b5132
RH
2305 strsec = bfd_get_section_by_name (abfd, name);
2306 if (strsec)
fd361982 2307 strsz = bfd_section_size (strsec);
252b5132
RH
2308 else
2309 strsz = 0;
fd361982 2310 nsyms = bfd_section_size (sec) / 12 - 1;
252b5132
RH
2311
2312 p = seg_info (sec)->stabu.p;
9c2799c2 2313 gas_assert (p != 0);
252b5132 2314
dbe2df79
AM
2315 bfd_h_put_16 (abfd, nsyms, p + 6);
2316 bfd_h_put_32 (abfd, strsz, p + 8);
e1fa0163 2317 free (name);
252b5132
RH
2318}
2319
2320#ifdef NEED_ECOFF_DEBUG
2321
2322/* This function is called by the ECOFF code. It is supposed to
2323 record the external symbol information so that the backend can
2324 write it out correctly. The ELF backend doesn't actually handle
2325 this at the moment, so we do it ourselves. We save the information
2326 in the symbol. */
2327
ae4a729b
AM
2328#ifdef OBJ_MAYBE_ELF
2329static
2330#endif
252b5132 2331void
dbe2df79 2332elf_ecoff_set_ext (symbolS *sym, struct ecoff_extr *ext)
252b5132 2333{
dbe2df79 2334 symbol_get_bfdsym (sym)->udata.p = ext;
252b5132
RH
2335}
2336
2337/* This function is called by bfd_ecoff_debug_externals. It is
2338 supposed to *EXT to the external symbol information, and return
2339 whether the symbol should be used at all. */
2340
b34976b6 2341static bfd_boolean
dbe2df79 2342elf_get_extr (asymbol *sym, EXTR *ext)
252b5132
RH
2343{
2344 if (sym->udata.p == NULL)
b34976b6 2345 return FALSE;
252b5132 2346 *ext = *(EXTR *) sym->udata.p;
b34976b6 2347 return TRUE;
252b5132
RH
2348}
2349
2350/* This function is called by bfd_ecoff_debug_externals. It has
2351 nothing to do for ELF. */
2352
252b5132 2353static void
dbe2df79
AM
2354elf_set_index (asymbol *sym ATTRIBUTE_UNUSED,
2355 bfd_size_type indx ATTRIBUTE_UNUSED)
252b5132
RH
2356{
2357}
2358
2359#endif /* NEED_ECOFF_DEBUG */
2360
2361void
dbe2df79 2362elf_frob_symbol (symbolS *symp, int *puntp)
252b5132 2363{
49309057 2364 struct elf_obj_sy *sy_obj;
49002d7f 2365 expressionS *size;
49309057 2366
252b5132
RH
2367#ifdef NEED_ECOFF_DEBUG
2368 if (ECOFF_DEBUGGING)
2369 ecoff_frob_symbol (symp);
2370#endif
2371
49309057
ILT
2372 sy_obj = symbol_get_obj (symp);
2373
49002d7f
L
2374 size = sy_obj->size;
2375 if (size != NULL)
252b5132 2376 {
49002d7f
L
2377 if (resolve_expression (size)
2378 && size->X_op == O_constant)
2379 S_SET_SIZE (symp, size->X_add_number);
e1e90034 2380 else
49002d7f 2381 {
a90fb5e3 2382 if (!flag_allow_nonconst_size)
869fe6ea
AM
2383 as_bad (_(".size expression for %s "
2384 "does not evaluate to a constant"), S_GET_NAME (symp));
21be61f5 2385 else
869fe6ea
AM
2386 as_warn (_(".size expression for %s "
2387 "does not evaluate to a constant"), S_GET_NAME (symp));
49002d7f 2388 }
49309057
ILT
2389 free (sy_obj->size);
2390 sy_obj->size = NULL;
252b5132
RH
2391 }
2392
49309057 2393 if (sy_obj->versioned_name != NULL)
252b5132 2394 {
79082ff0
L
2395 char *p;
2396
2397 p = strchr (sy_obj->versioned_name, ELF_VER_CHR);
85024cd8
AM
2398 if (p == NULL)
2399 /* We will have already reported an error about a missing version. */
2400 *puntp = TRUE;
79082ff0 2401
252b5132
RH
2402 /* This symbol was given a new name with the .symver directive.
2403
13c56984
AM
2404 If this is an external reference, just rename the symbol to
2405 include the version string. This will make the relocs be
2406 against the correct versioned symbol.
252b5132
RH
2407
2408 If this is a definition, add an alias. FIXME: Using an alias
2409 will permit the debugging information to refer to the right
2410 symbol. However, it's not clear whether it is the best
2411 approach. */
2412
85024cd8 2413 else if (! S_IS_DEFINED (symp))
252b5132 2414 {
252b5132 2415 /* Verify that the name isn't using the @@ syntax--this is
13c56984
AM
2416 reserved for definitions of the default version to link
2417 against. */
252b5132
RH
2418 if (p[1] == ELF_VER_CHR)
2419 {
85024cd8
AM
2420 as_bad (_("invalid attempt to declare external version name"
2421 " as default in symbol `%s'"),
49309057 2422 sy_obj->versioned_name);
b34976b6 2423 *puntp = TRUE;
252b5132 2424 }
49309057 2425 S_SET_NAME (symp, sy_obj->versioned_name);
252b5132
RH
2426 }
2427 else
2428 {
dbe2df79 2429 if (p[1] == ELF_VER_CHR && p[2] == ELF_VER_CHR)
79082ff0
L
2430 {
2431 size_t l;
2432
2433 /* The @@@ syntax is a special case. It renames the
2434 symbol name to versioned_name with one `@' removed. */
2435 l = strlen (&p[3]) + 1;
dbe2df79 2436 memmove (&p[2], &p[3], l);
79082ff0
L
2437 S_SET_NAME (symp, sy_obj->versioned_name);
2438 }
2439 else
2440 {
2441 symbolS *symp2;
252b5132 2442
79082ff0
L
2443 /* FIXME: Creating a new symbol here is risky. We're
2444 in the final loop over the symbol table. We can
2445 get away with it only because the symbol goes to
2446 the end of the list, where the loop will still see
2447 it. It would probably be better to do this in
2448 obj_frob_file_before_adjust. */
252b5132 2449
79082ff0 2450 symp2 = symbol_find_or_make (sy_obj->versioned_name);
252b5132 2451
79082ff0 2452 /* Now we act as though we saw symp2 = sym. */
a3aea05a
L
2453 if (S_IS_COMMON (symp))
2454 {
2455 as_bad (_("`%s' can't be versioned to common symbol '%s'"),
2456 sy_obj->versioned_name, S_GET_NAME (symp));
2457 *puntp = TRUE;
2458 return;
2459 }
252b5132 2460
79082ff0 2461 S_SET_SEGMENT (symp2, S_GET_SEGMENT (symp));
252b5132 2462
79082ff0
L
2463 /* Subtracting out the frag address here is a hack
2464 because we are in the middle of the final loop. */
2465 S_SET_VALUE (symp2,
2466 (S_GET_VALUE (symp)
2467 - symbol_get_frag (symp)->fr_address));
252b5132 2468
79082ff0 2469 symbol_set_frag (symp2, symbol_get_frag (symp));
252b5132 2470
79082ff0
L
2471 /* This will copy over the size information. */
2472 copy_symbol_attributes (symp2, symp);
252b5132 2473
26eb4093
JJ
2474 S_SET_OTHER (symp2, S_GET_OTHER (symp));
2475
79082ff0
L
2476 if (S_IS_WEAK (symp))
2477 S_SET_WEAK (symp2);
252b5132 2478
79082ff0
L
2479 if (S_IS_EXTERNAL (symp))
2480 S_SET_EXTERNAL (symp2);
2481 }
252b5132
RH
2482 }
2483 }
2484
2485 /* Double check weak symbols. */
49309057 2486 if (S_IS_WEAK (symp))
252b5132
RH
2487 {
2488 if (S_IS_COMMON (symp))
6ce8b369 2489 as_bad (_("symbol `%s' can not be both weak and common"),
252b5132
RH
2490 S_GET_NAME (symp));
2491 }
252b5132
RH
2492}
2493
060adf0e
AM
2494struct group_list
2495{
2496 asection **head; /* Section lists. */
060adf0e 2497 unsigned int num_group; /* Number of lists. */
1e9cc1c2 2498 struct hash_control *indexes; /* Maps group name to index in head array. */
060adf0e
AM
2499};
2500
db4677b8
AM
2501static struct group_list groups;
2502
060adf0e
AM
2503/* Called via bfd_map_over_sections. If SEC is a member of a group,
2504 add it to a list of sections belonging to the group. INF is a
2505 pointer to a struct group_list, which is where we store the head of
b7d07216
L
2506 each list. If its link_to_symbol_name isn't NULL, set up its
2507 linked-to section. */
060adf0e
AM
2508
2509static void
b7d07216
L
2510build_additional_section_info (bfd *abfd ATTRIBUTE_UNUSED,
2511 asection *sec, void *inf)
060adf0e 2512{
1e9cc1c2 2513 struct group_list *list = (struct group_list *) inf;
aa1f4858 2514 const char *group_name = elf_group_name (sec);
060adf0e 2515 unsigned int i;
1e9cc1c2
NC
2516 unsigned int *elem_idx;
2517 unsigned int *idx_ptr;
060adf0e 2518
b7d07216
L
2519 if (sec->map_head.linked_to_symbol_name)
2520 {
2521 symbolS *linked_to_sym;
2522 linked_to_sym = symbol_find (sec->map_head.linked_to_symbol_name);
2523 if (!linked_to_sym || !S_IS_DEFINED (linked_to_sym))
2524 as_bad (_("undefined linked-to symbol `%s' on section `%s'"),
2525 sec->map_head.linked_to_symbol_name,
2526 bfd_section_name (sec));
2527 else
2528 elf_linked_to_section (sec) = S_GET_SEGMENT (linked_to_sym);
2529 }
2530
060adf0e
AM
2531 if (group_name == NULL)
2532 return;
2533
2534 /* If this group already has a list, add the section to the head of
2535 the list. */
1e9cc1c2
NC
2536 elem_idx = (unsigned int *) hash_find (list->indexes, group_name);
2537 if (elem_idx != NULL)
060adf0e 2538 {
1e9cc1c2
NC
2539 elf_next_in_group (sec) = list->head[*elem_idx];
2540 list->head[*elem_idx] = sec;
1e9cc1c2 2541 return;
060adf0e
AM
2542 }
2543
2544 /* New group. Make the arrays bigger in chunks to minimize calls to
2545 realloc. */
2546 i = list->num_group;
2547 if ((i & 127) == 0)
2548 {
2549 unsigned int newsize = i + 128;
add39d23 2550 list->head = XRESIZEVEC (asection *, list->head, newsize);
060adf0e
AM
2551 }
2552 list->head[i] = sec;
060adf0e 2553 list->num_group += 1;
1e9cc1c2
NC
2554
2555 /* Add index to hash. */
325801bd 2556 idx_ptr = XNEW (unsigned int);
1e9cc1c2
NC
2557 *idx_ptr = i;
2558 hash_insert (list->indexes, group_name, idx_ptr);
2559}
2560
2561static void free_section_idx (const char *key ATTRIBUTE_UNUSED, void *val)
2562{
2563 free ((unsigned int *) val);
060adf0e
AM
2564}
2565
db4677b8
AM
2566/* Create symbols for group signature. */
2567
252b5132 2568void
709001e9 2569elf_adjust_symtab (void)
252b5132 2570{
060adf0e
AM
2571 unsigned int i;
2572
060adf0e 2573 /* Go find section groups. */
db4677b8
AM
2574 groups.num_group = 0;
2575 groups.head = NULL;
2576 groups.indexes = hash_new ();
b7d07216
L
2577 bfd_map_over_sections (stdoutput, build_additional_section_info,
2578 &groups);
3739860c 2579
060adf0e
AM
2580 /* Make the SHT_GROUP sections that describe each section group. We
2581 can't set up the section contents here yet, because elf section
2582 indices have yet to be calculated. elf.c:set_group_contents does
2583 the rest of the work. */
db4677b8 2584 for (i = 0; i < groups.num_group; i++)
060adf0e 2585 {
db4677b8 2586 const char *group_name = elf_group_name (groups.head[i]);
9758f3fc 2587 const char *sec_name;
060adf0e
AM
2588 asection *s;
2589 flagword flags;
9758f3fc 2590 struct symbol *sy;
060adf0e 2591
060adf0e 2592 flags = SEC_READONLY | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_GROUP;
db4677b8 2593 for (s = groups.head[i]; s != NULL; s = elf_next_in_group (s))
68bfbfcc 2594 if ((s->flags ^ flags) & SEC_LINK_ONCE)
d2dab548
AM
2595 {
2596 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
db4677b8 2597 if (s != groups.head[i])
d2dab548
AM
2598 {
2599 as_warn (_("assuming all members of group `%s' are COMDAT"),
2600 group_name);
2601 break;
2602 }
2603 }
2604
709001e9 2605 sec_name = ".group";
9758f3fc 2606 s = subseg_force_new (sec_name, 0);
060adf0e 2607 if (s == NULL
fd361982
AM
2608 || !bfd_set_section_flags (s, flags)
2609 || !bfd_set_section_alignment (s, 2))
060adf0e
AM
2610 {
2611 as_fatal (_("can't create group: %s"),
2612 bfd_errmsg (bfd_get_error ()));
2613 }
2f89ff8d 2614 elf_section_type (s) = SHT_GROUP;
060adf0e 2615
aa1f4858 2616 /* Pass a pointer to the first section in this group. */
db4677b8
AM
2617 elf_next_in_group (s) = groups.head[i];
2618 elf_sec_group (groups.head[i]) = s;
709001e9
MM
2619 /* Make sure that the signature symbol for the group has the
2620 name of the group. */
2621 sy = symbol_find_exact (group_name);
8d1015a8 2622 if (!sy || !symbol_on_chain (sy, symbol_rootP, symbol_lastP))
709001e9
MM
2623 {
2624 /* Create the symbol now. */
2625 sy = symbol_new (group_name, now_seg, (valueT) 0, frag_now);
69b70cfe
RO
2626#ifdef TE_SOLARIS
2627 /* Before Solaris 11 build 154, Sun ld rejects local group
2628 signature symbols, so make them weak hidden instead. */
2629 symbol_get_bfdsym (sy)->flags |= BSF_WEAK;
2630 S_SET_OTHER (sy, STV_HIDDEN);
2631#else
709001e9 2632 symbol_get_obj (sy)->local = 1;
69b70cfe 2633#endif
709001e9
MM
2634 symbol_table_insert (sy);
2635 }
2636 elf_group_id (s) = symbol_get_bfdsym (sy);
060adf0e 2637 }
252b5132
RH
2638}
2639
709001e9
MM
2640void
2641elf_frob_file (void)
2642{
2643 bfd_map_over_sections (stdoutput, adjust_stab_sections, NULL);
2644
2645#ifdef elf_tc_final_processing
2646 elf_tc_final_processing ();
2647#endif
2648}
2649
4a1805b1 2650/* It removes any unneeded versioned symbols from the symbol table. */
339681c0
L
2651
2652void
dbe2df79 2653elf_frob_file_before_adjust (void)
339681c0
L
2654{
2655 if (symbol_rootP)
2656 {
2657 symbolS *symp;
2658
2659 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
00e6e13d 2660 if (!S_IS_DEFINED (symp))
79082ff0 2661 {
00e6e13d 2662 if (symbol_get_obj (symp)->versioned_name)
79082ff0
L
2663 {
2664 char *p;
2665
2666 /* The @@@ syntax is a special case. If the symbol is
2667 not defined, 2 `@'s will be removed from the
2668 versioned_name. */
2669
2670 p = strchr (symbol_get_obj (symp)->versioned_name,
2671 ELF_VER_CHR);
85024cd8 2672 if (p != NULL && p[1] == ELF_VER_CHR && p[2] == ELF_VER_CHR)
79082ff0
L
2673 {
2674 size_t l = strlen (&p[3]) + 1;
dbe2df79 2675 memmove (&p[1], &p[3], l);
79082ff0
L
2676 }
2677 if (symbol_used_p (symp) == 0
2678 && symbol_used_in_reloc_p (symp) == 0)
2679 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
2680 }
00e6e13d
JJ
2681
2682 /* If there was .weak foo, but foo was neither defined nor
2683 used anywhere, remove it. */
2684
2685 else if (S_IS_WEAK (symp)
2686 && symbol_used_p (symp) == 0
2687 && symbol_used_in_reloc_p (symp) == 0)
2688 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
79082ff0 2689 }
339681c0
L
2690 }
2691}
2692
252b5132
RH
2693/* It is required that we let write_relocs have the opportunity to
2694 optimize away fixups before output has begun, since it is possible
2695 to eliminate all fixups for a section and thus we never should
2696 have generated the relocation section. */
2697
2698void
dbe2df79 2699elf_frob_file_after_relocs (void)
252b5132 2700{
db4677b8
AM
2701 unsigned int i;
2702
2703 /* Set SHT_GROUP section size. */
2704 for (i = 0; i < groups.num_group; i++)
2705 {
2706 asection *s, *head, *group;
2707 bfd_size_type size;
2708
2709 head = groups.head[i];
2710 size = 4;
2711 for (s = head; s != NULL; s = elf_next_in_group (s))
2712 size += (s->flags & SEC_RELOC) != 0 ? 8 : 4;
2713
2714 group = elf_sec_group (head);
2715 subseg_set (group, 0);
fd361982 2716 bfd_set_section_size (group, size);
db4677b8
AM
2717 group->contents = (unsigned char *) frag_more (size);
2718 frag_now->fr_fix = frag_now_fix_octets ();
2719 frag_wane (frag_now);
2720 }
2721
2722 /* Cleanup hash. */
2723 hash_traverse (groups.indexes, free_section_idx);
2724 hash_die (groups.indexes);
2725
252b5132
RH
2726#ifdef NEED_ECOFF_DEBUG
2727 if (ECOFF_DEBUGGING)
2728 /* Generate the ECOFF debugging information. */
2729 {
2730 const struct ecoff_debug_swap *debug_swap;
2731 struct ecoff_debug_info debug;
2732 char *buf;
2733 asection *sec;
2734
2735 debug_swap
2736 = get_elf_backend_data (stdoutput)->elf_backend_ecoff_debug_swap;
dbe2df79 2737 know (debug_swap != NULL);
252b5132
RH
2738 ecoff_build_debug (&debug.symbolic_header, &buf, debug_swap);
2739
2740 /* Set up the pointers in debug. */
2741#define SET(ptr, offset, type) \
2742 debug.ptr = (type) (buf + debug.symbolic_header.offset)
2743
2744 SET (line, cbLineOffset, unsigned char *);
dbe2df79
AM
2745 SET (external_dnr, cbDnOffset, void *);
2746 SET (external_pdr, cbPdOffset, void *);
2747 SET (external_sym, cbSymOffset, void *);
2748 SET (external_opt, cbOptOffset, void *);
252b5132
RH
2749 SET (external_aux, cbAuxOffset, union aux_ext *);
2750 SET (ss, cbSsOffset, char *);
dbe2df79
AM
2751 SET (external_fdr, cbFdOffset, void *);
2752 SET (external_rfd, cbRfdOffset, void *);
252b5132
RH
2753 /* ssext and external_ext are set up just below. */
2754
2755#undef SET
2756
2757 /* Set up the external symbols. */
2758 debug.ssext = debug.ssext_end = NULL;
2759 debug.external_ext = debug.external_ext_end = NULL;
b34976b6 2760 if (! bfd_ecoff_debug_externals (stdoutput, &debug, debug_swap, TRUE,
252b5132 2761 elf_get_extr, elf_set_index))
6ce8b369 2762 as_fatal (_("failed to set up debugging information: %s"),
252b5132
RH
2763 bfd_errmsg (bfd_get_error ()));
2764
2765 sec = bfd_get_section_by_name (stdoutput, ".mdebug");
9c2799c2 2766 gas_assert (sec != NULL);
252b5132 2767
b34976b6 2768 know (!stdoutput->output_has_begun);
252b5132
RH
2769
2770 /* We set the size of the section, call bfd_set_section_contents
2771 to force the ELF backend to allocate a file position, and then
2772 write out the data. FIXME: Is this really the best way to do
2773 this? */
fd361982
AM
2774 bfd_set_section_size (sec, bfd_ecoff_debug_size (stdoutput, &debug,
2775 debug_swap));
252b5132 2776
5f91fe03 2777 /* Pass BUF to bfd_set_section_contents because this will
13c56984
AM
2778 eventually become a call to fwrite, and ISO C prohibits
2779 passing a NULL pointer to a stdio function even if the
2780 pointer will not be used. */
dbe2df79 2781 if (! bfd_set_section_contents (stdoutput, sec, buf, 0, 0))
6ce8b369 2782 as_fatal (_("can't start writing .mdebug section: %s"),
252b5132
RH
2783 bfd_errmsg (bfd_get_error ()));
2784
b34976b6 2785 know (stdoutput->output_has_begun);
252b5132
RH
2786 know (sec->filepos != 0);
2787
2788 if (! bfd_ecoff_write_debug (stdoutput, &debug, debug_swap,
2789 sec->filepos))
6ce8b369 2790 as_fatal (_("could not write .mdebug section: %s"),
252b5132
RH
2791 bfd_errmsg (bfd_get_error ()));
2792 }
2793#endif /* NEED_ECOFF_DEBUG */
2794}
2795
bc6b4acc
RO
2796static void
2797elf_generate_asm_lineno (void)
2798{
2799#ifdef NEED_ECOFF_DEBUG
2800 if (ECOFF_DEBUGGING)
2801 ecoff_generate_asm_lineno ();
2802#endif
2803}
2804
2805static void
bd937d21
L
2806elf_process_stab (segT sec ATTRIBUTE_UNUSED,
2807 int what ATTRIBUTE_UNUSED,
2808 const char *string ATTRIBUTE_UNUSED,
2809 int type ATTRIBUTE_UNUSED,
2810 int other ATTRIBUTE_UNUSED,
2811 int desc ATTRIBUTE_UNUSED)
bc6b4acc
RO
2812{
2813#ifdef NEED_ECOFF_DEBUG
2814 if (ECOFF_DEBUGGING)
2815 ecoff_stab (sec, what, string, type, other, desc);
2816#endif
2817}
2818
5110c57e 2819static int
dbe2df79 2820elf_separate_stab_sections (void)
5110c57e
HPN
2821{
2822#ifdef NEED_ECOFF_DEBUG
2823 return (!ECOFF_DEBUGGING);
2824#else
2825 return 1;
2826#endif
2827}
2828
2829static void
dbe2df79 2830elf_init_stab_section (segT seg)
5110c57e
HPN
2831{
2832#ifdef NEED_ECOFF_DEBUG
2833 if (!ECOFF_DEBUGGING)
2834#endif
2835 obj_elf_init_stab_section (seg);
2836}
2837
252b5132
RH
2838const struct format_ops elf_format_ops =
2839{
2840 bfd_target_elf_flavour,
4c63da97
AM
2841 0, /* dfl_leading_underscore */
2842 1, /* emit_section_symbols */
5110c57e
HPN
2843 elf_begin,
2844 elf_file_symbol,
252b5132
RH
2845 elf_frob_symbol,
2846 elf_frob_file,
339681c0 2847 elf_frob_file_before_adjust,
a161fe53 2848 0, /* obj_frob_file_before_fix */
252b5132
RH
2849 elf_frob_file_after_relocs,
2850 elf_s_get_size, elf_s_set_size,
2851 elf_s_get_align, elf_s_set_align,
4c63da97 2852 elf_s_get_other,
5110c57e 2853 elf_s_set_other,
4c63da97 2854 0, /* s_get_desc */
5110c57e
HPN
2855 0, /* s_set_desc */
2856 0, /* s_get_type */
2857 0, /* s_set_type */
252b5132 2858 elf_copy_symbol_attributes,
bc6b4acc
RO
2859 elf_generate_asm_lineno,
2860 elf_process_stab,
5110c57e
HPN
2861 elf_separate_stab_sections,
2862 elf_init_stab_section,
252b5132
RH
2863 elf_sec_sym_ok_for_reloc,
2864 elf_pop_insert,
2865#ifdef NEED_ECOFF_DEBUG
2866 elf_ecoff_set_ext,
2867#else
4c63da97 2868 0, /* ecoff_set_ext */
252b5132 2869#endif
4c63da97 2870 elf_obj_read_begin_hook,
4cae74aa 2871 elf_obj_symbol_new_hook,
645ea3ea
AM
2872 0,
2873 elf_adjust_symtab
252b5132 2874};
This page took 1.195241 seconds and 4 git commands to generate.