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