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