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