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