gas/
[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,
ae4a729b
AM
3 2001, 2002, 2003, 2004, 2005, 2006, 2007
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
2e13b764 462 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
L
498 const char *group_name = elf_group_name (sec);
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,
527 int attr,
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
8d28c9d7 723static int
dbe2df79 724obj_elf_parse_section_letters (char *str, size_t len)
9de8d8f1
RH
725{
726 int attr = 0;
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
RH
768#ifdef md_elf_section_letter
769 int md_attr = md_elf_section_letter (*str, &bad_msg);
770 if (md_attr >= 0)
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
dbe2df79 785obj_elf_section_word (char *str, size_t len)
9de8d8f1
RH
786{
787 if (len == 5 && strncmp (str, "write", 5) == 0)
788 return SHF_WRITE;
789 if (len == 5 && strncmp (str, "alloc", 5) == 0)
790 return SHF_ALLOC;
791 if (len == 9 && strncmp (str, "execinstr", 9) == 0)
792 return SHF_EXECINSTR;
b9734f35
JJ
793 if (len == 3 && strncmp (str, "tls", 3) == 0)
794 return SHF_TLS;
9de8d8f1
RH
795
796#ifdef md_elf_section_word
797 {
798 int md_attr = md_elf_section_word (str, len);
799 if (md_attr >= 0)
800 return md_attr;
801 }
802#endif
803
6ce8b369 804 as_warn (_("unrecognized section attribute"));
9de8d8f1
RH
805 return 0;
806}
807
8d28c9d7 808static int
dbe2df79 809obj_elf_section_type (char *str, size_t len)
9de8d8f1
RH
810{
811 if (len == 8 && strncmp (str, "progbits", 8) == 0)
812 return SHT_PROGBITS;
813 if (len == 6 && strncmp (str, "nobits", 6) == 0)
814 return SHT_NOBITS;
34f70875
L
815 if (len == 4 && strncmp (str, "note", 4) == 0)
816 return SHT_NOTE;
10b016c2
PB
817 if (len == 10 && strncmp (str, "init_array", 10) == 0)
818 return SHT_INIT_ARRAY;
819 if (len == 10 && strncmp (str, "fini_array", 10) == 0)
820 return SHT_FINI_ARRAY;
821 if (len == 13 && strncmp (str, "preinit_array", 13) == 0)
822 return SHT_PREINIT_ARRAY;
9de8d8f1
RH
823
824#ifdef md_elf_section_type
825 {
826 int md_type = md_elf_section_type (str, len);
827 if (md_type >= 0)
828 return md_type;
829 }
830#endif
831
6ce8b369 832 as_warn (_("unrecognized section type"));
9de8d8f1
RH
833 return 0;
834}
835
6ce8b369
AM
836/* Get name of section. */
837static char *
dbe2df79 838obj_elf_section_name (void)
6ce8b369
AM
839{
840 char *name;
841
842 SKIP_WHITESPACE ();
843 if (*input_line_pointer == '"')
844 {
845 int dummy;
846
847 name = demand_copy_C_string (&dummy);
848 if (name == NULL)
849 {
850 ignore_rest_of_line ();
851 return NULL;
852 }
853 }
854 else
855 {
856 char *end = input_line_pointer;
857
858 while (0 == strchr ("\n\t,; ", *end))
859 end++;
860 if (end == input_line_pointer)
861 {
c95b35a9 862 as_bad (_("missing name"));
6ce8b369
AM
863 ignore_rest_of_line ();
864 return NULL;
865 }
866
867 name = xmalloc (end - input_line_pointer + 1);
868 memcpy (name, input_line_pointer, end - input_line_pointer);
869 name[end - input_line_pointer] = '\0';
612d7b83
L
870#ifdef tc_canonicalize_section_name
871 name = tc_canonicalize_section_name (name);
872#endif
6ce8b369
AM
873 input_line_pointer = end;
874 }
875 SKIP_WHITESPACE ();
876 return name;
877}
878
9de8d8f1 879void
dbe2df79 880obj_elf_section (int push)
9de8d8f1 881{
aa1f4858 882 char *name, *group_name, *beg;
9de8d8f1 883 int type, attr, dummy;
f5fa8ca2 884 int entsize;
d2dab548 885 int linkonce;
6f932bce 886 subsegT new_subsection = -1;
9de8d8f1 887
5b93d8bb 888#ifndef TC_I370
252b5132
RH
889 if (flag_mri)
890 {
891 char mri_type;
892
9de8d8f1 893#ifdef md_flush_pending_output
60bcf0fa 894 md_flush_pending_output ();
9de8d8f1
RH
895#endif
896
252b5132
RH
897 previous_section = now_seg;
898 previous_subsection = now_subseg;
899
900 s_mri_sect (&mri_type);
901
902#ifdef md_elf_section_change_hook
903 md_elf_section_change_hook ();
904#endif
905
906 return;
907 }
5b93d8bb 908#endif /* ! defined (TC_I370) */
252b5132 909
6ce8b369
AM
910 name = obj_elf_section_name ();
911 if (name == NULL)
912 return;
252b5132
RH
913 type = SHT_NULL;
914 attr = 0;
aa1f4858 915 group_name = NULL;
f5fa8ca2 916 entsize = 0;
d2dab548 917 linkonce = 0;
252b5132
RH
918
919 if (*input_line_pointer == ',')
920 {
921 /* Skip the comma. */
922 ++input_line_pointer;
252b5132
RH
923 SKIP_WHITESPACE ();
924
9cfc3331 925 if (push && ISDIGIT (*input_line_pointer))
6f932bce 926 {
9cfc3331 927 /* .pushsection has an optional subsection. */
6f932bce 928 new_subsection = (subsegT) get_absolute_expression ();
9cfc3331
L
929
930 SKIP_WHITESPACE ();
931
932 /* Stop if we don't see a comma. */
933 if (*input_line_pointer != ',')
934 goto done;
935
936 /* Skip the comma. */
937 ++input_line_pointer;
938 SKIP_WHITESPACE ();
6f932bce 939 }
9cfc3331
L
940
941 if (*input_line_pointer == '"')
252b5132 942 {
9de8d8f1
RH
943 beg = demand_copy_C_string (&dummy);
944 if (beg == NULL)
252b5132 945 {
9de8d8f1
RH
946 ignore_rest_of_line ();
947 return;
252b5132 948 }
9de8d8f1 949 attr |= obj_elf_parse_section_letters (beg, strlen (beg));
252b5132
RH
950
951 SKIP_WHITESPACE ();
952 if (*input_line_pointer == ',')
953 {
9de8d8f1 954 char c;
060adf0e
AM
955 char *save = input_line_pointer;
956
252b5132
RH
957 ++input_line_pointer;
958 SKIP_WHITESPACE ();
9de8d8f1
RH
959 c = *input_line_pointer;
960 if (c == '"')
252b5132 961 {
9de8d8f1
RH
962 beg = demand_copy_C_string (&dummy);
963 if (beg == NULL)
252b5132 964 {
9de8d8f1
RH
965 ignore_rest_of_line ();
966 return;
252b5132 967 }
9de8d8f1 968 type = obj_elf_section_type (beg, strlen (beg));
9de8d8f1
RH
969 }
970 else if (c == '@' || c == '%')
971 {
972 beg = ++input_line_pointer;
973 c = get_symbol_end ();
974 *input_line_pointer = c;
975 type = obj_elf_section_type (beg, input_line_pointer - beg);
252b5132 976 }
060adf0e
AM
977 else
978 input_line_pointer = save;
252b5132 979 }
f5fa8ca2
JJ
980
981 SKIP_WHITESPACE ();
6ce8b369 982 if ((attr & SHF_MERGE) != 0 && *input_line_pointer == ',')
f5fa8ca2
JJ
983 {
984 ++input_line_pointer;
985 SKIP_WHITESPACE ();
986 entsize = get_absolute_expression ();
6ce8b369 987 SKIP_WHITESPACE ();
f5fa8ca2
JJ
988 if (entsize < 0)
989 {
6ce8b369 990 as_warn (_("invalid merge entity size"));
f5fa8ca2
JJ
991 attr &= ~SHF_MERGE;
992 entsize = 0;
993 }
994 }
6ce8b369
AM
995 else if ((attr & SHF_MERGE) != 0)
996 {
997 as_warn (_("entity size for SHF_MERGE not specified"));
998 attr &= ~SHF_MERGE;
999 }
060adf0e
AM
1000
1001 if ((attr & SHF_GROUP) != 0 && *input_line_pointer == ',')
1002 {
1003 ++input_line_pointer;
aa1f4858
AM
1004 group_name = obj_elf_section_name ();
1005 if (group_name == NULL)
060adf0e 1006 attr &= ~SHF_GROUP;
d2dab548
AM
1007 else if (strncmp (input_line_pointer, ",comdat", 7) == 0)
1008 {
1009 input_line_pointer += 7;
1010 linkonce = 1;
1011 }
1012 else if (strncmp (name, ".gnu.linkonce", 13) == 0)
1013 linkonce = 1;
060adf0e
AM
1014 }
1015 else if ((attr & SHF_GROUP) != 0)
1016 {
1017 as_warn (_("group name for SHF_GROUP not specified"));
1018 attr &= ~SHF_GROUP;
1019 }
252b5132
RH
1020 }
1021 else
1022 {
1023 do
1024 {
9de8d8f1
RH
1025 char c;
1026
252b5132
RH
1027 SKIP_WHITESPACE ();
1028 if (*input_line_pointer != '#')
1029 {
c95b35a9 1030 as_bad (_("character following name is not '#'"));
252b5132
RH
1031 ignore_rest_of_line ();
1032 return;
1033 }
9de8d8f1
RH
1034 beg = ++input_line_pointer;
1035 c = get_symbol_end ();
1036 *input_line_pointer = c;
1037
1038 attr |= obj_elf_section_word (beg, input_line_pointer - beg);
1039
252b5132
RH
1040 SKIP_WHITESPACE ();
1041 }
1042 while (*input_line_pointer++ == ',');
1043 --input_line_pointer;
1044 }
1045 }
1046
9cfc3331 1047done:
252b5132 1048 demand_empty_rest_of_line ();
9de8d8f1 1049
d2dab548 1050 obj_elf_change_section (name, type, attr, entsize, group_name, linkonce, push);
6f932bce
NC
1051
1052 if (push && new_subsection != -1)
1053 subseg_set (now_seg, new_subsection);
252b5132
RH
1054}
1055
1056/* Change to the .data section. */
1057
16b93d88 1058void
dbe2df79 1059obj_elf_data (int i)
252b5132
RH
1060{
1061#ifdef md_flush_pending_output
1062 md_flush_pending_output ();
1063#endif
1064
1065 previous_section = now_seg;
1066 previous_subsection = now_subseg;
1067 s_data (i);
1068
1069#ifdef md_elf_section_change_hook
1070 md_elf_section_change_hook ();
1071#endif
1072}
1073
1074/* Change to the .text section. */
1075
16b93d88 1076void
dbe2df79 1077obj_elf_text (int i)
252b5132
RH
1078{
1079#ifdef md_flush_pending_output
1080 md_flush_pending_output ();
1081#endif
1082
1083 previous_section = now_seg;
1084 previous_subsection = now_subseg;
1085 s_text (i);
1086
1087#ifdef md_elf_section_change_hook
1088 md_elf_section_change_hook ();
1089#endif
1090}
1091
8fe53b44
JB
1092/* Change to the *ABS* section. */
1093
1094void
1095obj_elf_struct (int i)
1096{
1097#ifdef md_flush_pending_output
1098 md_flush_pending_output ();
1099#endif
1100
1101 previous_section = now_seg;
1102 previous_subsection = now_subseg;
1103 s_struct (i);
1104
1105#ifdef md_elf_section_change_hook
1106 md_elf_section_change_hook ();
1107#endif
1108}
1109
252b5132 1110static void
dbe2df79 1111obj_elf_subsection (int ignore ATTRIBUTE_UNUSED)
252b5132 1112{
6f932bce 1113 int temp;
252b5132
RH
1114
1115#ifdef md_flush_pending_output
1116 md_flush_pending_output ();
1117#endif
1118
1119 previous_section = now_seg;
1120 previous_subsection = now_subseg;
1121
1122 temp = get_absolute_expression ();
1123 subseg_set (now_seg, (subsegT) temp);
1124 demand_empty_rest_of_line ();
1125
1126#ifdef md_elf_section_change_hook
1127 md_elf_section_change_hook ();
1128#endif
1129}
1130
1131/* This can be called from the processor backends if they change
1132 sections. */
1133
1134void
dbe2df79 1135obj_elf_section_change_hook (void)
252b5132
RH
1136{
1137 previous_section = now_seg;
1138 previous_subsection = now_subseg;
1139}
1140
1141void
dbe2df79 1142obj_elf_previous (int ignore ATTRIBUTE_UNUSED)
252b5132 1143{
9de8d8f1
RH
1144 segT new_section;
1145 int new_subsection;
1146
252b5132
RH
1147 if (previous_section == 0)
1148 {
6ce8b369 1149 as_warn (_(".previous without corresponding .section; ignored"));
252b5132
RH
1150 return;
1151 }
1152
1153#ifdef md_flush_pending_output
1154 md_flush_pending_output ();
1155#endif
1156
9de8d8f1
RH
1157 new_section = previous_section;
1158 new_subsection = previous_subsection;
1159 previous_section = now_seg;
1160 previous_subsection = now_subseg;
1161 subseg_set (new_section, new_subsection);
1162
1163#ifdef md_elf_section_change_hook
1164 md_elf_section_change_hook ();
1165#endif
1166}
1167
1168static void
dbe2df79 1169obj_elf_popsection (int xxx ATTRIBUTE_UNUSED)
9de8d8f1
RH
1170{
1171 struct section_stack *top = section_stack;
1172
1173 if (top == NULL)
1174 {
6ce8b369 1175 as_warn (_(".popsection without corresponding .pushsection; ignored"));
9de8d8f1
RH
1176 return;
1177 }
1178
1179#ifdef md_flush_pending_output
1180 md_flush_pending_output ();
1181#endif
1182
1183 section_stack = top->next;
1184 previous_section = top->prev_seg;
1185 previous_subsection = top->prev_subseg;
1186 subseg_set (top->seg, top->subseg);
1187 free (top);
252b5132
RH
1188
1189#ifdef md_elf_section_change_hook
1190 md_elf_section_change_hook ();
1191#endif
1192}
1193
1194static void
dbe2df79 1195obj_elf_line (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
1196{
1197 /* Assume delimiter is part of expression. BSD4.2 as fails with
bf514e21 1198 delightful bug, so we are not being incompatible here. */
dbe2df79 1199 new_logical_line (NULL, get_absolute_expression ());
252b5132
RH
1200 demand_empty_rest_of_line ();
1201}
1202
1203/* This handles the .symver pseudo-op, which is used to specify a
1204 symbol version. The syntax is ``.symver NAME,SYMVERNAME''.
1205 SYMVERNAME may contain ELF_VER_CHR ('@') characters. This
1206 pseudo-op causes the assembler to emit a symbol named SYMVERNAME
1207 with the same value as the symbol NAME. */
1208
1209static void
dbe2df79 1210obj_elf_symver (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
1211{
1212 char *name;
1213 char c;
468cced8 1214 char old_lexat;
252b5132
RH
1215 symbolS *sym;
1216
1217 name = input_line_pointer;
1218 c = get_symbol_end ();
1219
1220 sym = symbol_find_or_make (name);
1221
1222 *input_line_pointer = c;
1223
252b5132
RH
1224 SKIP_WHITESPACE ();
1225 if (*input_line_pointer != ',')
1226 {
1227 as_bad (_("expected comma after name in .symver"));
1228 ignore_rest_of_line ();
1229 return;
1230 }
1231
1232 ++input_line_pointer;
eba874d8 1233 SKIP_WHITESPACE ();
252b5132 1234 name = input_line_pointer;
468cced8
AM
1235
1236 /* Temporarily include '@' in symbol names. */
1237 old_lexat = lex_type[(unsigned char) '@'];
1238 lex_type[(unsigned char) '@'] |= LEX_NAME;
1239 c = get_symbol_end ();
1240 lex_type[(unsigned char) '@'] = old_lexat;
252b5132 1241
339681c0
L
1242 if (symbol_get_obj (sym)->versioned_name == NULL)
1243 {
1244 symbol_get_obj (sym)->versioned_name = xstrdup (name);
252b5132 1245
339681c0 1246 *input_line_pointer = c;
252b5132 1247
6f620856
L
1248 if (strchr (symbol_get_obj (sym)->versioned_name,
1249 ELF_VER_CHR) == NULL)
339681c0
L
1250 {
1251 as_bad (_("missing version name in `%s' for symbol `%s'"),
1252 symbol_get_obj (sym)->versioned_name,
1253 S_GET_NAME (sym));
1254 ignore_rest_of_line ();
1255 return;
1256 }
1257 }
1258 else
252b5132 1259 {
339681c0
L
1260 if (strcmp (symbol_get_obj (sym)->versioned_name, name))
1261 {
1262 as_bad (_("multiple versions [`%s'|`%s'] for symbol `%s'"),
1263 name, symbol_get_obj (sym)->versioned_name,
1264 S_GET_NAME (sym));
1265 ignore_rest_of_line ();
1266 return;
1267 }
1268
1269 *input_line_pointer = c;
252b5132
RH
1270 }
1271
1272 demand_empty_rest_of_line ();
1273}
1274
1275/* This handles the .vtable_inherit pseudo-op, which is used to indicate
1276 to the linker the hierarchy in which a particular table resides. The
1277 syntax is ".vtable_inherit CHILDNAME, PARENTNAME". */
1278
904a31bf 1279struct fix *
dbe2df79 1280obj_elf_vtable_inherit (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
1281{
1282 char *cname, *pname;
1283 symbolS *csym, *psym;
1284 char c, bad = 0;
1285
1286 if (*input_line_pointer == '#')
1287 ++input_line_pointer;
1288
1289 cname = input_line_pointer;
1290 c = get_symbol_end ();
1291 csym = symbol_find (cname);
1292
1293 /* GCFIXME: should check that we don't have two .vtable_inherits for
1294 the same child symbol. Also, we can currently only do this if the
1295 child symbol is already exists and is placed in a fragment. */
1296
49309057 1297 if (csym == NULL || symbol_get_frag (csym) == NULL)
252b5132 1298 {
bd3ba5d1 1299 as_bad (_("expected `%s' to have already been set for .vtable_inherit"),
252b5132
RH
1300 cname);
1301 bad = 1;
1302 }
1303
1304 *input_line_pointer = c;
1305
1306 SKIP_WHITESPACE ();
1307 if (*input_line_pointer != ',')
1308 {
bd3ba5d1 1309 as_bad (_("expected comma after name in .vtable_inherit"));
252b5132 1310 ignore_rest_of_line ();
904a31bf 1311 return NULL;
252b5132
RH
1312 }
1313
1314 ++input_line_pointer;
1315 SKIP_WHITESPACE ();
1316
1317 if (*input_line_pointer == '#')
1318 ++input_line_pointer;
1319
1320 if (input_line_pointer[0] == '0'
1321 && (input_line_pointer[1] == '\0'
3882b010 1322 || ISSPACE (input_line_pointer[1])))
252b5132
RH
1323 {
1324 psym = section_symbol (absolute_section);
1325 ++input_line_pointer;
1326 }
1327 else
1328 {
1329 pname = input_line_pointer;
1330 c = get_symbol_end ();
1331 psym = symbol_find_or_make (pname);
1332 *input_line_pointer = c;
1333 }
1334
1335 demand_empty_rest_of_line ();
1336
1337 if (bad)
904a31bf 1338 return NULL;
252b5132 1339
49309057 1340 assert (symbol_get_value_expression (csym)->X_op == O_constant);
904a31bf
AM
1341 return fix_new (symbol_get_frag (csym),
1342 symbol_get_value_expression (csym)->X_add_number,
1343 0, psym, 0, 0, BFD_RELOC_VTABLE_INHERIT);
252b5132 1344}
fa306131 1345
252b5132
RH
1346/* This handles the .vtable_entry pseudo-op, which is used to indicate
1347 to the linker that a vtable slot was used. The syntax is
1348 ".vtable_entry tablename, offset". */
1349
904a31bf 1350struct fix *
dbe2df79 1351obj_elf_vtable_entry (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
1352{
1353 char *name;
1354 symbolS *sym;
1355 offsetT offset;
1356 char c;
1357
1358 if (*input_line_pointer == '#')
1359 ++input_line_pointer;
1360
1361 name = input_line_pointer;
1362 c = get_symbol_end ();
1363 sym = symbol_find_or_make (name);
1364 *input_line_pointer = c;
1365
1366 SKIP_WHITESPACE ();
1367 if (*input_line_pointer != ',')
1368 {
bd3ba5d1 1369 as_bad (_("expected comma after name in .vtable_entry"));
252b5132 1370 ignore_rest_of_line ();
904a31bf 1371 return NULL;
252b5132
RH
1372 }
1373
1374 ++input_line_pointer;
1375 if (*input_line_pointer == '#')
1376 ++input_line_pointer;
1377
1378 offset = get_absolute_expression ();
1379
252b5132 1380 demand_empty_rest_of_line ();
904a31bf
AM
1381
1382 return fix_new (frag_now, frag_now_fix (), 0, sym, offset, 0,
1383 BFD_RELOC_VTABLE_ENTRY);
252b5132
RH
1384}
1385
1386void
dbe2df79 1387elf_obj_read_begin_hook (void)
252b5132
RH
1388{
1389#ifdef NEED_ECOFF_DEBUG
1390 if (ECOFF_DEBUGGING)
1391 ecoff_read_begin_hook ();
1392#endif
1393}
1394
1395void
dbe2df79 1396elf_obj_symbol_new_hook (symbolS *symbolP)
252b5132 1397{
49309057
ILT
1398 struct elf_obj_sy *sy_obj;
1399
1400 sy_obj = symbol_get_obj (symbolP);
1401 sy_obj->size = NULL;
1402 sy_obj->versioned_name = NULL;
252b5132
RH
1403
1404#ifdef NEED_ECOFF_DEBUG
1405 if (ECOFF_DEBUGGING)
1406 ecoff_symbol_new_hook (symbolP);
1407#endif
1408}
1409
8fd3e36b
AM
1410/* When setting one symbol equal to another, by default we probably
1411 want them to have the same "size", whatever it means in the current
1412 context. */
1413
1414void
dbe2df79 1415elf_copy_symbol_attributes (symbolS *dest, symbolS *src)
8fd3e36b 1416{
060adf0e
AM
1417 struct elf_obj_sy *srcelf = symbol_get_obj (src);
1418 struct elf_obj_sy *destelf = symbol_get_obj (dest);
1419 if (srcelf->size)
1420 {
1421 if (destelf->size == NULL)
dbe2df79 1422 destelf->size = xmalloc (sizeof (expressionS));
060adf0e
AM
1423 *destelf->size = *srcelf->size;
1424 }
1425 else
1426 {
1427 if (destelf->size != NULL)
1428 free (destelf->size);
1429 destelf->size = NULL;
1430 }
1431 S_SET_SIZE (dest, S_GET_SIZE (src));
26eb4093
JJ
1432 /* Don't copy visibility. */
1433 S_SET_OTHER (dest, (ELF_ST_VISIBILITY (S_GET_OTHER (dest))
1434 | (S_GET_OTHER (src) & ~ELF_ST_VISIBILITY (-1))));
8fd3e36b
AM
1435}
1436
252b5132 1437void
dbe2df79 1438obj_elf_version (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
1439{
1440 char *name;
1441 unsigned int c;
252b5132
RH
1442 char *p;
1443 asection *seg = now_seg;
1444 subsegT subseg = now_subseg;
1445 Elf_Internal_Note i_note;
1446 Elf_External_Note e_note;
dbe2df79 1447 asection *note_secp = NULL;
252b5132
RH
1448
1449 SKIP_WHITESPACE ();
1450 if (*input_line_pointer == '\"')
1451 {
6afdfa61
NC
1452 unsigned int len;
1453
bf514e21 1454 ++input_line_pointer; /* -> 1st char of string. */
252b5132
RH
1455 name = input_line_pointer;
1456
1457 while (is_a_char (c = next_char_of_string ()))
1458 ;
1459 c = *input_line_pointer;
1460 *input_line_pointer = '\0';
1461 *(input_line_pointer - 1) = '\0';
1462 *input_line_pointer = c;
1463
6afdfa61 1464 /* Create the .note section. */
252b5132
RH
1465 note_secp = subseg_new (".note", 0);
1466 bfd_set_section_flags (stdoutput,
1467 note_secp,
1468 SEC_HAS_CONTENTS | SEC_READONLY);
1469
6afdfa61
NC
1470 /* Process the version string. */
1471 len = strlen (name) + 1;
252b5132 1472
6afdfa61
NC
1473 /* PR 3456: Although the name field is padded out to an 4-byte
1474 boundary, the namesz field should not be adjusted. */
1475 i_note.namesz = len;
1476 i_note.descsz = 0; /* No description. */
252b5132
RH
1477 i_note.type = NT_VERSION;
1478 p = frag_more (sizeof (e_note.namesz));
dbe2df79 1479 md_number_to_chars (p, i_note.namesz, sizeof (e_note.namesz));
252b5132 1480 p = frag_more (sizeof (e_note.descsz));
dbe2df79 1481 md_number_to_chars (p, i_note.descsz, sizeof (e_note.descsz));
252b5132 1482 p = frag_more (sizeof (e_note.type));
dbe2df79 1483 md_number_to_chars (p, i_note.type, sizeof (e_note.type));
6afdfa61 1484 p = frag_more (len);
5ab504f9 1485 memcpy (p, name, len);
252b5132 1486
252b5132
RH
1487 frag_align (2, 0, 0);
1488
1489 subseg_set (seg, subseg);
1490 }
1491 else
6afdfa61
NC
1492 as_bad (_("expected quoted string"));
1493
252b5132
RH
1494 demand_empty_rest_of_line ();
1495}
1496
1497static void
dbe2df79 1498obj_elf_size (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
1499{
1500 char *name = input_line_pointer;
1501 char c = get_symbol_end ();
1502 char *p;
1503 expressionS exp;
1504 symbolS *sym;
1505
1506 p = input_line_pointer;
1507 *p = c;
1508 SKIP_WHITESPACE ();
1509 if (*input_line_pointer != ',')
1510 {
1511 *p = 0;
1512 as_bad (_("expected comma after name `%s' in .size directive"), name);
1513 *p = c;
1514 ignore_rest_of_line ();
1515 return;
1516 }
1517 input_line_pointer++;
1518 expression (&exp);
1519 if (exp.X_op == O_absent)
1520 {
1521 as_bad (_("missing expression in .size directive"));
1522 exp.X_op = O_constant;
1523 exp.X_add_number = 0;
1524 }
1525 *p = 0;
1526 sym = symbol_find_or_make (name);
1527 *p = c;
1528 if (exp.X_op == O_constant)
c538998c
JJ
1529 {
1530 S_SET_SIZE (sym, exp.X_add_number);
1531 if (symbol_get_obj (sym)->size)
1532 {
1533 xfree (symbol_get_obj (sym)->size);
1534 symbol_get_obj (sym)->size = NULL;
1535 }
1536 }
252b5132
RH
1537 else
1538 {
dbe2df79 1539 symbol_get_obj (sym)->size = xmalloc (sizeof (expressionS));
49309057 1540 *symbol_get_obj (sym)->size = exp;
252b5132
RH
1541 }
1542 demand_empty_rest_of_line ();
1543}
1544
1545/* Handle the ELF .type pseudo-op. This sets the type of a symbol.
aa8c34c3 1546 There are five syntaxes:
fa306131 1547
252b5132
RH
1548 The first (used on Solaris) is
1549 .type SYM,#function
1550 The second (used on UnixWare) is
1551 .type SYM,@function
1552 The third (reportedly to be used on Irix 6.0) is
1553 .type SYM STT_FUNC
1554 The fourth (used on NetBSD/Arm and Linux/ARM) is
1555 .type SYM,%function
aa8c34c3
JE
1556 The fifth (used on SVR4/860) is
1557 .type SYM,"function"
252b5132
RH
1558 */
1559
1560static void
dbe2df79 1561obj_elf_type (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
1562{
1563 char *name;
1564 char c;
1565 int type;
1566 const char *typename;
1567 symbolS *sym;
904a31bf 1568 elf_symbol_type *elfsym;
252b5132
RH
1569
1570 name = input_line_pointer;
1571 c = get_symbol_end ();
1572 sym = symbol_find_or_make (name);
904a31bf 1573 elfsym = (elf_symbol_type *) symbol_get_bfdsym (sym);
252b5132
RH
1574 *input_line_pointer = c;
1575
1576 SKIP_WHITESPACE ();
1577 if (*input_line_pointer == ',')
1578 ++input_line_pointer;
1579
1580 SKIP_WHITESPACE ();
1581 if ( *input_line_pointer == '#'
1582 || *input_line_pointer == '@'
aa8c34c3 1583 || *input_line_pointer == '"'
252b5132
RH
1584 || *input_line_pointer == '%')
1585 ++input_line_pointer;
1586
1587 typename = input_line_pointer;
1588 c = get_symbol_end ();
1589
1590 type = 0;
1591 if (strcmp (typename, "function") == 0
1592 || strcmp (typename, "STT_FUNC") == 0)
1593 type = BSF_FUNCTION;
1594 else if (strcmp (typename, "object") == 0
1595 || strcmp (typename, "STT_OBJECT") == 0)
1596 type = BSF_OBJECT;
b9734f35
JJ
1597 else if (strcmp (typename, "tls_object") == 0
1598 || strcmp (typename, "STT_TLS") == 0)
1599 type = BSF_OBJECT | BSF_THREAD_LOCAL;
e7b9a8c1
L
1600 else if (strcmp (typename, "notype") == 0
1601 || strcmp (typename, "STT_NOTYPE") == 0)
1602 ;
504b7d20
NC
1603 else if (strcmp (typename, "common") == 0
1604 || strcmp (typename, "STT_COMMON") == 0)
1605 {
1606 type = BSF_OBJECT;
1607
1608 if (! S_IS_COMMON (sym))
1609 {
1610 if (S_IS_VOLATILE (sym))
1611 {
1612 sym = symbol_clone (sym, 1);
1613 S_SET_SEGMENT (sym, bfd_com_section_ptr);
1614 S_SET_VALUE (sym, 0);
1615 S_SET_EXTERNAL (sym);
1616 symbol_set_frag (sym, &zero_address_frag);
1617 S_CLEAR_VOLATILE (sym);
1618 }
1619 else if (S_IS_DEFINED (sym) || symbol_equated_p (sym))
1620 as_bad (_("symbol '%s' is already defined"), S_GET_NAME (sym));
1621 else
1622 {
1623 /* FIXME: Is it safe to just change the section ? */
1624 S_SET_SEGMENT (sym, bfd_com_section_ptr);
1625 S_SET_VALUE (sym, 0);
1626 S_SET_EXTERNAL (sym);
1627 }
1628 }
1629 }
904a31bf
AM
1630#ifdef md_elf_symbol_type
1631 else if ((type = md_elf_symbol_type (typename, sym, elfsym)) != -1)
1632 ;
1633#endif
252b5132 1634 else
6ce8b369 1635 as_bad (_("unrecognized symbol type \"%s\""), typename);
252b5132
RH
1636
1637 *input_line_pointer = c;
1638
aa8c34c3
JE
1639 if (*input_line_pointer == '"')
1640 ++input_line_pointer;
1641
904a31bf 1642 elfsym->symbol.flags |= type;
252b5132
RH
1643
1644 demand_empty_rest_of_line ();
1645}
1646
1647static void
dbe2df79 1648obj_elf_ident (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
1649{
1650 static segT comment_section;
1651 segT old_section = now_seg;
1652 int old_subsection = now_subseg;
1653
5f91fe03
ILT
1654#ifdef md_flush_pending_output
1655 md_flush_pending_output ();
1656#endif
1657
252b5132
RH
1658 if (!comment_section)
1659 {
1660 char *p;
1661 comment_section = subseg_new (".comment", 0);
1662 bfd_set_section_flags (stdoutput, comment_section,
1663 SEC_READONLY | SEC_HAS_CONTENTS);
1664 p = frag_more (1);
1665 *p = 0;
1666 }
1667 else
1668 subseg_set (comment_section, 0);
38a57ae7 1669 stringer (8 + 1);
252b5132
RH
1670 subseg_set (old_section, old_subsection);
1671}
1672
1673#ifdef INIT_STAB_SECTION
1674
1675/* The first entry in a .stabs section is special. */
1676
1677void
dbe2df79 1678obj_elf_init_stab_section (segT seg)
252b5132
RH
1679{
1680 char *file;
1681 char *p;
1682 char *stabstr_name;
1683 unsigned int stroff;
1684
1685 /* Force the section to align to a longword boundary. Without this,
1686 UnixWare ar crashes. */
1687 bfd_set_section_alignment (stdoutput, seg, 2);
1688
bf514e21 1689 /* Make space for this first symbol. */
252b5132 1690 p = frag_more (12);
bf514e21 1691 /* Zero it out. */
252b5132 1692 memset (p, 0, 12);
dbe2df79
AM
1693 as_where (&file, NULL);
1694 stabstr_name = xmalloc (strlen (segment_name (seg)) + 4);
252b5132
RH
1695 strcpy (stabstr_name, segment_name (seg));
1696 strcat (stabstr_name, "str");
1697 stroff = get_stab_string_offset (file, stabstr_name);
1698 know (stroff == 1);
1699 md_number_to_chars (p, stroff, 4);
1700 seg_info (seg)->stabu.p = p;
1701}
1702
1703#endif
1704
1705/* Fill in the counts in the first entry in a .stabs section. */
1706
1707static void
dbe2df79 1708adjust_stab_sections (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
252b5132
RH
1709{
1710 char *name;
1711 asection *strsec;
1712 char *p;
1713 int strsz, nsyms;
1714
1715 if (strncmp (".stab", sec->name, 5))
1716 return;
1717 if (!strcmp ("str", sec->name + strlen (sec->name) - 3))
1718 return;
1719
dbe2df79 1720 name = alloca (strlen (sec->name) + 4);
252b5132
RH
1721 strcpy (name, sec->name);
1722 strcat (name, "str");
1723 strsec = bfd_get_section_by_name (abfd, name);
1724 if (strsec)
1725 strsz = bfd_section_size (abfd, strsec);
1726 else
1727 strsz = 0;
1728 nsyms = bfd_section_size (abfd, sec) / 12 - 1;
1729
1730 p = seg_info (sec)->stabu.p;
1731 assert (p != 0);
1732
dbe2df79
AM
1733 bfd_h_put_16 (abfd, nsyms, p + 6);
1734 bfd_h_put_32 (abfd, strsz, p + 8);
252b5132
RH
1735}
1736
1737#ifdef NEED_ECOFF_DEBUG
1738
1739/* This function is called by the ECOFF code. It is supposed to
1740 record the external symbol information so that the backend can
1741 write it out correctly. The ELF backend doesn't actually handle
1742 this at the moment, so we do it ourselves. We save the information
1743 in the symbol. */
1744
ae4a729b
AM
1745#ifdef OBJ_MAYBE_ELF
1746static
1747#endif
252b5132 1748void
dbe2df79 1749elf_ecoff_set_ext (symbolS *sym, struct ecoff_extr *ext)
252b5132 1750{
dbe2df79 1751 symbol_get_bfdsym (sym)->udata.p = ext;
252b5132
RH
1752}
1753
1754/* This function is called by bfd_ecoff_debug_externals. It is
1755 supposed to *EXT to the external symbol information, and return
1756 whether the symbol should be used at all. */
1757
b34976b6 1758static bfd_boolean
dbe2df79 1759elf_get_extr (asymbol *sym, EXTR *ext)
252b5132
RH
1760{
1761 if (sym->udata.p == NULL)
b34976b6 1762 return FALSE;
252b5132 1763 *ext = *(EXTR *) sym->udata.p;
b34976b6 1764 return TRUE;
252b5132
RH
1765}
1766
1767/* This function is called by bfd_ecoff_debug_externals. It has
1768 nothing to do for ELF. */
1769
252b5132 1770static void
dbe2df79
AM
1771elf_set_index (asymbol *sym ATTRIBUTE_UNUSED,
1772 bfd_size_type indx ATTRIBUTE_UNUSED)
252b5132
RH
1773{
1774}
1775
1776#endif /* NEED_ECOFF_DEBUG */
1777
1778void
dbe2df79 1779elf_frob_symbol (symbolS *symp, int *puntp)
252b5132 1780{
49309057
ILT
1781 struct elf_obj_sy *sy_obj;
1782
252b5132
RH
1783#ifdef NEED_ECOFF_DEBUG
1784 if (ECOFF_DEBUGGING)
1785 ecoff_frob_symbol (symp);
1786#endif
1787
49309057
ILT
1788 sy_obj = symbol_get_obj (symp);
1789
1790 if (sy_obj->size != NULL)
252b5132 1791 {
49309057 1792 switch (sy_obj->size->X_op)
252b5132
RH
1793 {
1794 case O_subtract:
1795 S_SET_SIZE (symp,
49309057
ILT
1796 (S_GET_VALUE (sy_obj->size->X_add_symbol)
1797 + sy_obj->size->X_add_number
1798 - S_GET_VALUE (sy_obj->size->X_op_symbol)));
252b5132
RH
1799 break;
1800 case O_constant:
1801 S_SET_SIZE (symp,
49309057
ILT
1802 (S_GET_VALUE (sy_obj->size->X_add_symbol)
1803 + sy_obj->size->X_add_number));
252b5132
RH
1804 break;
1805 default:
1806 as_bad (_(".size expression too complicated to fix up"));
1807 break;
1808 }
49309057
ILT
1809 free (sy_obj->size);
1810 sy_obj->size = NULL;
252b5132
RH
1811 }
1812
49309057 1813 if (sy_obj->versioned_name != NULL)
252b5132 1814 {
79082ff0
L
1815 char *p;
1816
1817 p = strchr (sy_obj->versioned_name, ELF_VER_CHR);
1818 know (p != NULL);
1819
252b5132
RH
1820 /* This symbol was given a new name with the .symver directive.
1821
13c56984
AM
1822 If this is an external reference, just rename the symbol to
1823 include the version string. This will make the relocs be
1824 against the correct versioned symbol.
252b5132
RH
1825
1826 If this is a definition, add an alias. FIXME: Using an alias
1827 will permit the debugging information to refer to the right
1828 symbol. However, it's not clear whether it is the best
1829 approach. */
1830
1831 if (! S_IS_DEFINED (symp))
1832 {
252b5132 1833 /* Verify that the name isn't using the @@ syntax--this is
13c56984
AM
1834 reserved for definitions of the default version to link
1835 against. */
252b5132
RH
1836 if (p[1] == ELF_VER_CHR)
1837 {
1838 as_bad (_("invalid attempt to declare external version name as default in symbol `%s'"),
49309057 1839 sy_obj->versioned_name);
b34976b6 1840 *puntp = TRUE;
252b5132 1841 }
49309057 1842 S_SET_NAME (symp, sy_obj->versioned_name);
252b5132
RH
1843 }
1844 else
1845 {
dbe2df79 1846 if (p[1] == ELF_VER_CHR && p[2] == ELF_VER_CHR)
79082ff0
L
1847 {
1848 size_t l;
1849
1850 /* The @@@ syntax is a special case. It renames the
1851 symbol name to versioned_name with one `@' removed. */
1852 l = strlen (&p[3]) + 1;
dbe2df79 1853 memmove (&p[2], &p[3], l);
79082ff0
L
1854 S_SET_NAME (symp, sy_obj->versioned_name);
1855 }
1856 else
1857 {
1858 symbolS *symp2;
252b5132 1859
79082ff0
L
1860 /* FIXME: Creating a new symbol here is risky. We're
1861 in the final loop over the symbol table. We can
1862 get away with it only because the symbol goes to
1863 the end of the list, where the loop will still see
1864 it. It would probably be better to do this in
1865 obj_frob_file_before_adjust. */
252b5132 1866
79082ff0 1867 symp2 = symbol_find_or_make (sy_obj->versioned_name);
252b5132 1868
79082ff0 1869 /* Now we act as though we saw symp2 = sym. */
252b5132 1870
79082ff0 1871 S_SET_SEGMENT (symp2, S_GET_SEGMENT (symp));
252b5132 1872
79082ff0
L
1873 /* Subtracting out the frag address here is a hack
1874 because we are in the middle of the final loop. */
1875 S_SET_VALUE (symp2,
1876 (S_GET_VALUE (symp)
1877 - symbol_get_frag (symp)->fr_address));
252b5132 1878
79082ff0 1879 symbol_set_frag (symp2, symbol_get_frag (symp));
252b5132 1880
79082ff0
L
1881 /* This will copy over the size information. */
1882 copy_symbol_attributes (symp2, symp);
252b5132 1883
26eb4093
JJ
1884 S_SET_OTHER (symp2, S_GET_OTHER (symp));
1885
79082ff0
L
1886 if (S_IS_WEAK (symp))
1887 S_SET_WEAK (symp2);
252b5132 1888
79082ff0
L
1889 if (S_IS_EXTERNAL (symp))
1890 S_SET_EXTERNAL (symp2);
1891 }
252b5132
RH
1892 }
1893 }
1894
1895 /* Double check weak symbols. */
49309057 1896 if (S_IS_WEAK (symp))
252b5132
RH
1897 {
1898 if (S_IS_COMMON (symp))
6ce8b369 1899 as_bad (_("symbol `%s' can not be both weak and common"),
252b5132
RH
1900 S_GET_NAME (symp));
1901 }
1902
1903#ifdef TC_MIPS
1904 /* The Irix 5 and 6 assemblers set the type of any common symbol and
1905 any undefined non-function symbol to STT_OBJECT. We try to be
1906 compatible, since newer Irix 5 and 6 linkers care. However, we
1907 only set undefined symbols to be STT_OBJECT if we are on Irix,
1908 because that is the only time gcc will generate the necessary
1909 .global directives to mark functions. */
1910
1911 if (S_IS_COMMON (symp))
49309057 1912 symbol_get_bfdsym (symp)->flags |= BSF_OBJECT;
252b5132
RH
1913
1914 if (strstr (TARGET_OS, "irix") != NULL
49309057
ILT
1915 && ! S_IS_DEFINED (symp)
1916 && (symbol_get_bfdsym (symp)->flags & BSF_FUNCTION) == 0)
1917 symbol_get_bfdsym (symp)->flags |= BSF_OBJECT;
252b5132 1918#endif
252b5132
RH
1919}
1920
060adf0e
AM
1921struct group_list
1922{
1923 asection **head; /* Section lists. */
1924 unsigned int *elt_count; /* Number of sections in each list. */
1925 unsigned int num_group; /* Number of lists. */
1926};
1927
1928/* Called via bfd_map_over_sections. If SEC is a member of a group,
1929 add it to a list of sections belonging to the group. INF is a
1930 pointer to a struct group_list, which is where we store the head of
1931 each list. */
1932
1933static void
dbe2df79 1934build_group_lists (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, void *inf)
060adf0e 1935{
dbe2df79 1936 struct group_list *list = inf;
aa1f4858 1937 const char *group_name = elf_group_name (sec);
060adf0e
AM
1938 unsigned int i;
1939
1940 if (group_name == NULL)
1941 return;
1942
1943 /* If this group already has a list, add the section to the head of
1944 the list. */
1945 for (i = 0; i < list->num_group; i++)
1946 {
aa1f4858 1947 if (strcmp (group_name, elf_group_name (list->head[i])) == 0)
060adf0e 1948 {
aa1f4858 1949 elf_next_in_group (sec) = list->head[i];
060adf0e
AM
1950 list->head[i] = sec;
1951 list->elt_count[i] += 1;
1952 return;
1953 }
1954 }
1955
1956 /* New group. Make the arrays bigger in chunks to minimize calls to
1957 realloc. */
1958 i = list->num_group;
1959 if ((i & 127) == 0)
1960 {
1961 unsigned int newsize = i + 128;
1962 list->head = xrealloc (list->head, newsize * sizeof (*list->head));
1963 list->elt_count = xrealloc (list->elt_count,
1964 newsize * sizeof (*list->elt_count));
1965 }
1966 list->head[i] = sec;
1967 list->elt_count[i] = 1;
1968 list->num_group += 1;
1969}
1970
252b5132 1971void
dbe2df79 1972elf_frob_file (void)
252b5132 1973{
060adf0e
AM
1974 struct group_list list;
1975 unsigned int i;
1976
dbe2df79 1977 bfd_map_over_sections (stdoutput, adjust_stab_sections, NULL);
252b5132 1978
060adf0e
AM
1979 /* Go find section groups. */
1980 list.num_group = 0;
1981 list.head = NULL;
1982 list.elt_count = NULL;
dbe2df79 1983 bfd_map_over_sections (stdoutput, build_group_lists, &list);
060adf0e
AM
1984
1985 /* Make the SHT_GROUP sections that describe each section group. We
1986 can't set up the section contents here yet, because elf section
1987 indices have yet to be calculated. elf.c:set_group_contents does
1988 the rest of the work. */
1989 for (i = 0; i < list.num_group; i++)
1990 {
aa1f4858 1991 const char *group_name = elf_group_name (list.head[i]);
9758f3fc 1992 const char *sec_name;
060adf0e
AM
1993 asection *s;
1994 flagword flags;
9758f3fc
AM
1995 struct symbol *sy;
1996 int has_sym;
587aac4e 1997 bfd_size_type size;
060adf0e 1998
060adf0e 1999 flags = SEC_READONLY | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_GROUP;
d2dab548 2000 for (s = list.head[i]; s != NULL; s = elf_next_in_group (s))
68bfbfcc 2001 if ((s->flags ^ flags) & SEC_LINK_ONCE)
d2dab548
AM
2002 {
2003 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
2004 if (s != list.head[i])
2005 {
2006 as_warn (_("assuming all members of group `%s' are COMDAT"),
2007 group_name);
2008 break;
2009 }
2010 }
2011
9758f3fc
AM
2012 sec_name = group_name;
2013 sy = symbol_find_exact (group_name);
2014 has_sym = 0;
2015 if (sy != NULL
2016 && (sy == symbol_lastP
2017 || (sy->sy_next != NULL
2018 && sy->sy_next->sy_previous == sy)))
2019 {
2020 has_sym = 1;
2021 sec_name = ".group";
2022 }
2023 s = subseg_force_new (sec_name, 0);
060adf0e
AM
2024 if (s == NULL
2025 || !bfd_set_section_flags (stdoutput, s, flags)
2026 || !bfd_set_section_alignment (stdoutput, s, 2))
2027 {
2028 as_fatal (_("can't create group: %s"),
2029 bfd_errmsg (bfd_get_error ()));
2030 }
2f89ff8d 2031 elf_section_type (s) = SHT_GROUP;
060adf0e 2032
aa1f4858
AM
2033 /* Pass a pointer to the first section in this group. */
2034 elf_next_in_group (s) = list.head[i];
9758f3fc
AM
2035 if (has_sym)
2036 elf_group_id (s) = sy->bsym;
060adf0e 2037
587aac4e
AM
2038 size = 4 * (list.elt_count[i] + 1);
2039 bfd_set_section_size (stdoutput, s, size);
b7712f8d 2040 s->contents = (unsigned char *) frag_more (size);
060adf0e 2041 frag_now->fr_fix = frag_now_fix_octets ();
07cb2078 2042 frag_wane (frag_now);
060adf0e
AM
2043 }
2044
252b5132
RH
2045#ifdef elf_tc_final_processing
2046 elf_tc_final_processing ();
2047#endif
2048}
2049
4a1805b1 2050/* It removes any unneeded versioned symbols from the symbol table. */
339681c0
L
2051
2052void
dbe2df79 2053elf_frob_file_before_adjust (void)
339681c0
L
2054{
2055 if (symbol_rootP)
2056 {
2057 symbolS *symp;
2058
2059 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
00e6e13d 2060 if (!S_IS_DEFINED (symp))
79082ff0 2061 {
00e6e13d 2062 if (symbol_get_obj (symp)->versioned_name)
79082ff0
L
2063 {
2064 char *p;
2065
2066 /* The @@@ syntax is a special case. If the symbol is
2067 not defined, 2 `@'s will be removed from the
2068 versioned_name. */
2069
2070 p = strchr (symbol_get_obj (symp)->versioned_name,
2071 ELF_VER_CHR);
2072 know (p != NULL);
dbe2df79 2073 if (p[1] == ELF_VER_CHR && p[2] == ELF_VER_CHR)
79082ff0
L
2074 {
2075 size_t l = strlen (&p[3]) + 1;
dbe2df79 2076 memmove (&p[1], &p[3], l);
79082ff0
L
2077 }
2078 if (symbol_used_p (symp) == 0
2079 && symbol_used_in_reloc_p (symp) == 0)
2080 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
2081 }
00e6e13d
JJ
2082
2083 /* If there was .weak foo, but foo was neither defined nor
2084 used anywhere, remove it. */
2085
2086 else if (S_IS_WEAK (symp)
2087 && symbol_used_p (symp) == 0
2088 && symbol_used_in_reloc_p (symp) == 0)
2089 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
79082ff0 2090 }
339681c0
L
2091 }
2092}
2093
252b5132
RH
2094/* It is required that we let write_relocs have the opportunity to
2095 optimize away fixups before output has begun, since it is possible
2096 to eliminate all fixups for a section and thus we never should
2097 have generated the relocation section. */
2098
2099void
dbe2df79 2100elf_frob_file_after_relocs (void)
252b5132
RH
2101{
2102#ifdef NEED_ECOFF_DEBUG
2103 if (ECOFF_DEBUGGING)
2104 /* Generate the ECOFF debugging information. */
2105 {
2106 const struct ecoff_debug_swap *debug_swap;
2107 struct ecoff_debug_info debug;
2108 char *buf;
2109 asection *sec;
2110
2111 debug_swap
2112 = get_elf_backend_data (stdoutput)->elf_backend_ecoff_debug_swap;
dbe2df79 2113 know (debug_swap != NULL);
252b5132
RH
2114 ecoff_build_debug (&debug.symbolic_header, &buf, debug_swap);
2115
2116 /* Set up the pointers in debug. */
2117#define SET(ptr, offset, type) \
2118 debug.ptr = (type) (buf + debug.symbolic_header.offset)
2119
2120 SET (line, cbLineOffset, unsigned char *);
dbe2df79
AM
2121 SET (external_dnr, cbDnOffset, void *);
2122 SET (external_pdr, cbPdOffset, void *);
2123 SET (external_sym, cbSymOffset, void *);
2124 SET (external_opt, cbOptOffset, void *);
252b5132
RH
2125 SET (external_aux, cbAuxOffset, union aux_ext *);
2126 SET (ss, cbSsOffset, char *);
dbe2df79
AM
2127 SET (external_fdr, cbFdOffset, void *);
2128 SET (external_rfd, cbRfdOffset, void *);
252b5132
RH
2129 /* ssext and external_ext are set up just below. */
2130
2131#undef SET
2132
2133 /* Set up the external symbols. */
2134 debug.ssext = debug.ssext_end = NULL;
2135 debug.external_ext = debug.external_ext_end = NULL;
b34976b6 2136 if (! bfd_ecoff_debug_externals (stdoutput, &debug, debug_swap, TRUE,
252b5132 2137 elf_get_extr, elf_set_index))
6ce8b369 2138 as_fatal (_("failed to set up debugging information: %s"),
252b5132
RH
2139 bfd_errmsg (bfd_get_error ()));
2140
2141 sec = bfd_get_section_by_name (stdoutput, ".mdebug");
2142 assert (sec != NULL);
2143
b34976b6 2144 know (!stdoutput->output_has_begun);
252b5132
RH
2145
2146 /* We set the size of the section, call bfd_set_section_contents
2147 to force the ELF backend to allocate a file position, and then
2148 write out the data. FIXME: Is this really the best way to do
2149 this? */
587aac4e
AM
2150 bfd_set_section_size
2151 (stdoutput, sec, bfd_ecoff_debug_size (stdoutput, &debug, debug_swap));
252b5132 2152
5f91fe03 2153 /* Pass BUF to bfd_set_section_contents because this will
13c56984
AM
2154 eventually become a call to fwrite, and ISO C prohibits
2155 passing a NULL pointer to a stdio function even if the
2156 pointer will not be used. */
dbe2df79 2157 if (! bfd_set_section_contents (stdoutput, sec, buf, 0, 0))
6ce8b369 2158 as_fatal (_("can't start writing .mdebug section: %s"),
252b5132
RH
2159 bfd_errmsg (bfd_get_error ()));
2160
b34976b6 2161 know (stdoutput->output_has_begun);
252b5132
RH
2162 know (sec->filepos != 0);
2163
2164 if (! bfd_ecoff_write_debug (stdoutput, &debug, debug_swap,
2165 sec->filepos))
6ce8b369 2166 as_fatal (_("could not write .mdebug section: %s"),
252b5132
RH
2167 bfd_errmsg (bfd_get_error ()));
2168 }
2169#endif /* NEED_ECOFF_DEBUG */
2170}
2171
2172#ifdef SCO_ELF
2173
aaa2624b 2174/* Heavily plagiarized from obj_elf_version. The idea is to emit the
252b5132
RH
2175 SCO specific identifier in the .notes section to satisfy the SCO
2176 linker.
2177
2178 This looks more complicated than it really is. As opposed to the
2179 "obvious" solution, this should handle the cross dev cases
2180 correctly. (i.e, hosting on a 64 bit big endian processor, but
2181 generating SCO Elf code) Efficiency isn't a concern, as there
2182 should be exactly one of these sections per object module.
2183
2184 SCO OpenServer 5 identifies it's ELF modules with a standard ELF
2185 .note section.
2186
fa306131
AM
2187 int_32 namesz = 4 ; Name size
2188 int_32 descsz = 12 ; Descriptive information
2189 int_32 type = 1 ;
2190 char name[4] = "SCO" ; Originator name ALWAYS SCO + NULL
252b5132
RH
2191 int_32 version = (major ver # << 16) | version of tools ;
2192 int_32 source = (tool_id << 16 ) | 1 ;
2193 int_32 info = 0 ; These are set by the SCO tools, but we
13c56984 2194 don't know enough about the source
252b5132
RH
2195 environment to set them. SCO ld currently
2196 ignores them, and recommends we set them
2197 to zero. */
2198
2199#define SCO_MAJOR_VERSION 0x1
2200#define SCO_MINOR_VERSION 0x1
2201
2202void
dbe2df79 2203sco_id (void)
252b5132
RH
2204{
2205
2206 char *name;
2207 unsigned int c;
2208 char ch;
2209 char *p;
2210 asection *seg = now_seg;
2211 subsegT subseg = now_subseg;
2212 Elf_Internal_Note i_note;
2213 Elf_External_Note e_note;
dbe2df79 2214 asection *note_secp = NULL;
252b5132
RH
2215 int i, len;
2216
2217 /* create the .note section */
2218
2219 note_secp = subseg_new (".note", 0);
2220 bfd_set_section_flags (stdoutput,
2221 note_secp,
2222 SEC_HAS_CONTENTS | SEC_READONLY);
2223
2224 /* process the version string */
2225
fa306131 2226 i_note.namesz = 4;
252b5132
RH
2227 i_note.descsz = 12; /* 12 descriptive bytes */
2228 i_note.type = NT_VERSION; /* Contains a version string */
2229
2230 p = frag_more (sizeof (i_note.namesz));
dbe2df79 2231 md_number_to_chars (p, i_note.namesz, 4);
252b5132
RH
2232
2233 p = frag_more (sizeof (i_note.descsz));
dbe2df79 2234 md_number_to_chars (p, i_note.descsz, 4);
252b5132
RH
2235
2236 p = frag_more (sizeof (i_note.type));
dbe2df79 2237 md_number_to_chars (p, i_note.type, 4);
252b5132
RH
2238
2239 p = frag_more (4);
fa306131 2240 strcpy (p, "SCO");
252b5132
RH
2241
2242 /* Note: this is the version number of the ELF we're representing */
2243 p = frag_more (4);
2244 md_number_to_chars (p, (SCO_MAJOR_VERSION << 16) | (SCO_MINOR_VERSION), 4);
2245
2246 /* Here, we pick a magic number for ourselves (yes, I "registered"
2247 it with SCO. The bottom bit shows that we are compat with the
2248 SCO ABI. */
2249 p = frag_more (4);
2250 md_number_to_chars (p, 0x4c520000 | 0x0001, 4);
2251
2252 /* If we knew (or cared) what the source language options were, we'd
2253 fill them in here. SCO has given us permission to ignore these
2254 and just set them to zero. */
2255 p = frag_more (4);
2256 md_number_to_chars (p, 0x0000, 4);
fa306131 2257
252b5132
RH
2258 frag_align (2, 0, 0);
2259
2260 /* We probably can't restore the current segment, for there likely
2261 isn't one yet... */
2262 if (seg && subseg)
2263 subseg_set (seg, subseg);
2264
2265}
2266
2267#endif /* SCO_ELF */
2268
5110c57e 2269static int
dbe2df79 2270elf_separate_stab_sections (void)
5110c57e
HPN
2271{
2272#ifdef NEED_ECOFF_DEBUG
2273 return (!ECOFF_DEBUGGING);
2274#else
2275 return 1;
2276#endif
2277}
2278
2279static void
dbe2df79 2280elf_init_stab_section (segT seg)
5110c57e
HPN
2281{
2282#ifdef NEED_ECOFF_DEBUG
2283 if (!ECOFF_DEBUGGING)
2284#endif
2285 obj_elf_init_stab_section (seg);
2286}
2287
252b5132
RH
2288const struct format_ops elf_format_ops =
2289{
2290 bfd_target_elf_flavour,
4c63da97
AM
2291 0, /* dfl_leading_underscore */
2292 1, /* emit_section_symbols */
5110c57e
HPN
2293 elf_begin,
2294 elf_file_symbol,
252b5132
RH
2295 elf_frob_symbol,
2296 elf_frob_file,
339681c0 2297 elf_frob_file_before_adjust,
a161fe53 2298 0, /* obj_frob_file_before_fix */
252b5132
RH
2299 elf_frob_file_after_relocs,
2300 elf_s_get_size, elf_s_set_size,
2301 elf_s_get_align, elf_s_set_align,
4c63da97 2302 elf_s_get_other,
5110c57e 2303 elf_s_set_other,
4c63da97 2304 0, /* s_get_desc */
5110c57e
HPN
2305 0, /* s_set_desc */
2306 0, /* s_get_type */
2307 0, /* s_set_type */
252b5132
RH
2308 elf_copy_symbol_attributes,
2309#ifdef NEED_ECOFF_DEBUG
2310 ecoff_generate_asm_lineno,
2311 ecoff_stab,
2312#else
4c63da97
AM
2313 0, /* generate_asm_lineno */
2314 0, /* process_stab */
252b5132 2315#endif
5110c57e
HPN
2316 elf_separate_stab_sections,
2317 elf_init_stab_section,
252b5132
RH
2318 elf_sec_sym_ok_for_reloc,
2319 elf_pop_insert,
2320#ifdef NEED_ECOFF_DEBUG
2321 elf_ecoff_set_ext,
2322#else
4c63da97 2323 0, /* ecoff_set_ext */
252b5132 2324#endif
4c63da97 2325 elf_obj_read_begin_hook,
5110c57e 2326 elf_obj_symbol_new_hook
252b5132 2327};
This page took 0.589585 seconds and 4 git commands to generate.