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