1 /* coff object file format
2 Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GAS.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
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
23 #define OBJ_HEADER "obj-coff.h"
26 #include "safe-ctype.h"
35 #include "coff/xcoff.h"
38 #define streq(a,b) (strcmp ((a), (b)) == 0)
39 #define strneq(a,b,n) (strncmp ((a), (b), (n)) == 0)
41 /* I think this is probably always correct. */
42 #ifndef KEEP_RELOC_INFO
43 #define KEEP_RELOC_INFO
46 /* obj_coff_section will use this macro to set a new section's
47 attributes when a directive has no valid flags or the "w" flag is
48 used. This default should be appropriate for most. */
49 #ifndef TC_COFF_SECTION_DEFAULT_ATTRIBUTES
50 #define TC_COFF_SECTION_DEFAULT_ATTRIBUTES (SEC_LOAD | SEC_DATA)
53 /* This is used to hold the symbol built by a sequence of pseudo-ops
54 from .def and .endef. */
55 static symbolS
*def_symbol_in_progress
;
57 /* PE weak alternate symbols begin with this string. */
58 static const char weak_altprefix
[] = ".weak.";
61 #include "obj-coff-seh.c"
65 unsigned long chunk_size
;
66 unsigned long element_size
;
69 unsigned long pointer
;
77 stack_init (unsigned long chunk_size
,
78 unsigned long element_size
)
82 st
= malloc (sizeof (* st
));
85 st
->data
= malloc (chunk_size
);
92 st
->size
= chunk_size
;
93 st
->chunk_size
= chunk_size
;
94 st
->element_size
= element_size
;
99 stack_push (stack
*st
, char *element
)
101 if (st
->pointer
+ st
->element_size
>= st
->size
)
103 st
->size
+= st
->chunk_size
;
104 if ((st
->data
= xrealloc (st
->data
, st
->size
)) == NULL
)
107 memcpy (st
->data
+ st
->pointer
, element
, st
->element_size
);
108 st
->pointer
+= st
->element_size
;
109 return st
->data
+ st
->pointer
;
113 stack_pop (stack
*st
)
115 if (st
->pointer
< st
->element_size
)
120 st
->pointer
-= st
->element_size
;
121 return st
->data
+ st
->pointer
;
124 /* Maintain a list of the tagnames of the structures. */
126 static struct hash_control
*tag_hash
;
131 tag_hash
= hash_new ();
135 tag_insert (const char *name
, symbolS
*symbolP
)
137 const char *error_string
;
139 if ((error_string
= hash_jam (tag_hash
, name
, (char *) symbolP
)))
140 as_fatal (_("Inserting \"%s\" into structure table failed: %s"),
145 tag_find (char *name
)
147 return (symbolS
*) hash_find (tag_hash
, name
);
151 tag_find_or_make (char *name
)
155 if ((symbolP
= tag_find (name
)) == NULL
)
157 symbolP
= symbol_new (name
, undefined_section
,
158 0, &zero_address_frag
);
160 tag_insert (S_GET_NAME (symbolP
), symbolP
);
161 symbol_table_insert (symbolP
);
167 /* We accept the .bss directive to set the section for backward
168 compatibility with earlier versions of gas. */
171 obj_coff_bss (int ignore ATTRIBUTE_UNUSED
)
173 if (*input_line_pointer
== '\n')
174 subseg_new (".bss", get_absolute_expression ());
180 /* Called from read.c:s_comm after we've parsed .comm symbol, size.
181 Parse a possible alignment value. */
184 obj_coff_common_parse (int ignore ATTRIBUTE_UNUSED
, symbolS
*symbolP
, addressT size
)
188 if (*input_line_pointer
== ',')
190 align
= parse_align (0);
191 if (align
== (addressT
) -1)
195 S_SET_VALUE (symbolP
, size
);
196 S_SET_EXTERNAL (symbolP
);
197 S_SET_SEGMENT (symbolP
, bfd_com_section_ptr
);
199 symbol_get_bfdsym (symbolP
)->flags
|= BSF_OBJECT
;
201 /* There is no S_SET_ALIGN (symbolP, align) in COFF/PE.
202 Instead we must add a note to the .drectve section. */
205 segT current_seg
= now_seg
;
206 subsegT current_subseg
= now_subseg
;
209 size_t pfxlen
, numlen
;
213 sec
= subseg_new (".drectve", 0);
214 oldflags
= bfd_get_section_flags (stdoutput
, sec
);
215 if (oldflags
== SEC_NO_FLAGS
)
217 if (!bfd_set_section_flags (stdoutput
, sec
,
218 TC_COFF_SECTION_DEFAULT_ATTRIBUTES
))
219 as_warn (_("error setting flags for \"%s\": %s"),
220 bfd_section_name (stdoutput
, sec
),
221 bfd_errmsg (bfd_get_error ()));
224 /* Emit a string. Note no NUL-termination. */
225 pfxlen
= strlen (" -aligncomm:") + 2 + strlen (S_GET_NAME (symbolP
)) + 1;
226 numlen
= snprintf (numbuff
, sizeof (numbuff
), "%d", (int) align
);
227 frag
= frag_more (pfxlen
+ numlen
);
228 (void) sprintf (frag
, " -aligncomm:\"%s\",", S_GET_NAME (symbolP
));
229 memcpy (frag
+ pfxlen
, numbuff
, numlen
);
230 /* Restore original subseg. */
231 subseg_set (current_seg
, current_subseg
);
238 obj_coff_comm (int ignore ATTRIBUTE_UNUSED
)
240 s_comm_internal (ignore
, obj_coff_common_parse
);
244 #define GET_FILENAME_STRING(X) \
245 ((char *) (&((X)->sy_symbol.ost_auxent->x_file.x_n.x_offset))[1])
249 fetch_coff_debug_section (void)
251 static segT debug_section
;
257 s
= bfd_make_debug_symbol (stdoutput
, NULL
, 0);
259 debug_section
= s
->section
;
261 return debug_section
;
265 SA_SET_SYM_ENDNDX (symbolS
*sym
, symbolS
*val
)
267 combined_entry_type
*entry
, *p
;
269 entry
= &coffsymbol (symbol_get_bfdsym (sym
))->native
[1];
270 p
= coffsymbol (symbol_get_bfdsym (val
))->native
;
271 entry
->u
.auxent
.x_sym
.x_fcnary
.x_fcn
.x_endndx
.p
= p
;
276 SA_SET_SYM_TAGNDX (symbolS
*sym
, symbolS
*val
)
278 combined_entry_type
*entry
, *p
;
280 entry
= &coffsymbol (symbol_get_bfdsym (sym
))->native
[1];
281 p
= coffsymbol (symbol_get_bfdsym (val
))->native
;
282 entry
->u
.auxent
.x_sym
.x_tagndx
.p
= p
;
287 S_GET_DATA_TYPE (symbolS
*sym
)
289 return coffsymbol (symbol_get_bfdsym (sym
))->native
->u
.syment
.n_type
;
293 S_SET_DATA_TYPE (symbolS
*sym
, int val
)
295 coffsymbol (symbol_get_bfdsym (sym
))->native
->u
.syment
.n_type
= val
;
300 S_GET_STORAGE_CLASS (symbolS
*sym
)
302 return coffsymbol (symbol_get_bfdsym (sym
))->native
->u
.syment
.n_sclass
;
306 S_SET_STORAGE_CLASS (symbolS
*sym
, int val
)
308 coffsymbol (symbol_get_bfdsym (sym
))->native
->u
.syment
.n_sclass
= val
;
312 /* Merge a debug symbol containing debug information into a normal symbol. */
315 c_symbol_merge (symbolS
*debug
, symbolS
*normal
)
317 S_SET_DATA_TYPE (normal
, S_GET_DATA_TYPE (debug
));
318 S_SET_STORAGE_CLASS (normal
, S_GET_STORAGE_CLASS (debug
));
320 if (S_GET_NUMBER_AUXILIARY (debug
) > S_GET_NUMBER_AUXILIARY (normal
))
321 /* Take the most we have. */
322 S_SET_NUMBER_AUXILIARY (normal
, S_GET_NUMBER_AUXILIARY (debug
));
324 if (S_GET_NUMBER_AUXILIARY (debug
) > 0)
325 /* Move all the auxiliary information. */
326 memcpy (SYM_AUXINFO (normal
), SYM_AUXINFO (debug
),
327 (S_GET_NUMBER_AUXILIARY (debug
)
328 * sizeof (*SYM_AUXINFO (debug
))));
330 /* Move the debug flags. */
331 SF_SET_DEBUG_FIELD (normal
, SF_GET_DEBUG_FIELD (debug
));
335 c_dot_file_symbol (const char *filename
, int appfile ATTRIBUTE_UNUSED
)
339 /* BFD converts filename to a .file symbol with an aux entry. It
340 also handles chaining. */
341 symbolP
= symbol_new (filename
, bfd_abs_section_ptr
, 0, &zero_address_frag
);
343 S_SET_STORAGE_CLASS (symbolP
, C_FILE
);
344 S_SET_NUMBER_AUXILIARY (symbolP
, 1);
346 symbol_get_bfdsym (symbolP
)->flags
= BSF_DEBUGGING
;
353 listing_source_file (filename
);
357 /* Make sure that the symbol is first on the symbol chain. */
358 if (symbol_rootP
!= symbolP
)
360 symbol_remove (symbolP
, &symbol_rootP
, &symbol_lastP
);
361 symbol_insert (symbolP
, symbol_rootP
, &symbol_rootP
, &symbol_lastP
);
365 /* Line number handling. */
369 struct line_no
*next
;
376 /* Symbol of last function, which we should hang line#s off of. */
377 static symbolS
*line_fsym
;
379 #define in_function() (line_fsym != 0)
380 #define clear_function() (line_fsym = 0)
381 #define set_function(F) (line_fsym = (F), coff_add_linesym (F))
385 coff_obj_symbol_new_hook (symbolS
*symbolP
)
387 long sz
= (OBJ_COFF_MAX_AUXENTRIES
+ 1) * sizeof (combined_entry_type
);
388 char * s
= xmalloc (sz
);
391 coffsymbol (symbol_get_bfdsym (symbolP
))->native
= (combined_entry_type
*) s
;
393 S_SET_DATA_TYPE (symbolP
, T_NULL
);
394 S_SET_STORAGE_CLASS (symbolP
, 0);
395 S_SET_NUMBER_AUXILIARY (symbolP
, 0);
397 if (S_IS_STRING (symbolP
))
398 SF_SET_STRING (symbolP
);
400 if (S_IS_LOCAL (symbolP
))
401 SF_SET_LOCAL (symbolP
);
405 coff_obj_symbol_clone_hook (symbolS
*newsymP
, symbolS
*orgsymP
)
407 long sz
= (OBJ_COFF_MAX_AUXENTRIES
+ 1) * sizeof (combined_entry_type
);
408 combined_entry_type
* s
= xmalloc (sz
);
410 memcpy (s
, coffsymbol (symbol_get_bfdsym (orgsymP
))->native
, sz
);
411 coffsymbol (symbol_get_bfdsym (newsymP
))->native
= s
;
413 SF_SET (newsymP
, SF_GET (orgsymP
));
417 /* Handle .ln directives. */
419 static symbolS
*current_lineno_sym
;
420 static struct line_no
*line_nos
;
421 /* FIXME: Blindly assume all .ln directives will be in the .text section. */
425 add_lineno (fragS
* frag
, addressT offset
, int num
)
427 struct line_no
* new_line
= xmalloc (sizeof (* new_line
));
429 if (!current_lineno_sym
)
433 /* The native aix assembler accepts negative line number. */
437 /* Zero is used as an end marker in the file. */
438 as_warn (_("Line numbers must be positive integers\n"));
441 #endif /* OBJ_XCOFF */
442 new_line
->next
= line_nos
;
443 new_line
->frag
= frag
;
444 new_line
->l
.line_number
= num
;
445 new_line
->l
.u
.offset
= offset
;
451 coff_add_linesym (symbolS
*sym
)
455 coffsymbol (symbol_get_bfdsym (current_lineno_sym
))->lineno
=
460 current_lineno_sym
= sym
;
464 obj_coff_ln (int appline
)
468 if (! appline
&& def_symbol_in_progress
!= NULL
)
470 as_warn (_(".ln pseudo-op inside .def/.endef: ignored."));
471 demand_empty_rest_of_line ();
475 l
= get_absolute_expression ();
477 /* If there is no lineno symbol, treat a .ln
478 directive as if it were a .appline directive. */
479 if (appline
|| current_lineno_sym
== NULL
)
480 new_logical_line ((char *) NULL
, l
- 1);
482 add_lineno (frag_now
, frag_now_fix (), l
);
491 l
+= coff_line_base
- 1;
492 listing_source_line (l
);
497 demand_empty_rest_of_line ();
500 /* .loc is essentially the same as .ln; parse it for assembler
504 obj_coff_loc (int ignore ATTRIBUTE_UNUSED
)
508 /* FIXME: Why do we need this check? We need it for ECOFF, but why
509 do we need it for COFF? */
510 if (now_seg
!= text_section
)
512 as_warn (_(".loc outside of .text"));
513 demand_empty_rest_of_line ();
517 if (def_symbol_in_progress
!= NULL
)
519 as_warn (_(".loc pseudo-op inside .def/.endef: ignored."));
520 demand_empty_rest_of_line ();
524 /* Skip the file number. */
526 get_absolute_expression ();
529 lineno
= get_absolute_expression ();
537 lineno
+= coff_line_base
- 1;
538 listing_source_line (lineno
);
543 demand_empty_rest_of_line ();
545 add_lineno (frag_now
, frag_now_fix (), lineno
);
548 /* Handle the .ident pseudo-op. */
551 obj_coff_ident (int ignore ATTRIBUTE_UNUSED
)
553 segT current_seg
= now_seg
;
554 subsegT current_subseg
= now_subseg
;
560 /* We could put it in .comment, but that creates an extra section
561 that shouldn't be loaded into memory, which requires linker
562 changes... For now, until proven otherwise, use .rdata. */
563 sec
= subseg_new (".rdata$zzz", 0);
564 bfd_set_section_flags (stdoutput
, sec
,
565 ((SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
| SEC_DATA
)
566 & bfd_applicable_section_flags (stdoutput
)));
569 subseg_new (".comment", 0);
573 subseg_set (current_seg
, current_subseg
);
576 /* Handle .def directives.
578 One might ask : why can't we symbol_new if the symbol does not
579 already exist and fill it with debug information. Because of
580 the C_EFCN special symbol. It would clobber the value of the
581 function symbol before we have a chance to notice that it is
582 a C_EFCN. And a second reason is that the code is more clear this
583 way. (at least I think it is :-). */
585 #define SKIP_SEMI_COLON() while (*input_line_pointer++ != ';')
586 #define SKIP_WHITESPACES() while (*input_line_pointer == ' ' || \
587 *input_line_pointer == '\t') \
588 input_line_pointer++;
591 obj_coff_def (int what ATTRIBUTE_UNUSED
)
593 char name_end
; /* Char after the end of name. */
594 char *symbol_name
; /* Name of the debug symbol. */
595 char *symbol_name_copy
; /* Temporary copy of the name. */
596 unsigned int symbol_name_length
;
598 if (def_symbol_in_progress
!= NULL
)
600 as_warn (_(".def pseudo-op used inside of .def/.endef: ignored."));
601 demand_empty_rest_of_line ();
607 symbol_name
= input_line_pointer
;
608 name_end
= get_symbol_end ();
609 symbol_name_length
= strlen (symbol_name
);
610 symbol_name_copy
= xmalloc (symbol_name_length
+ 1);
611 strcpy (symbol_name_copy
, symbol_name
);
612 #ifdef tc_canonicalize_symbol_name
613 symbol_name_copy
= tc_canonicalize_symbol_name (symbol_name_copy
);
616 /* Initialize the new symbol. */
617 def_symbol_in_progress
= symbol_make (symbol_name_copy
);
618 symbol_set_frag (def_symbol_in_progress
, &zero_address_frag
);
619 S_SET_VALUE (def_symbol_in_progress
, 0);
621 if (S_IS_STRING (def_symbol_in_progress
))
622 SF_SET_STRING (def_symbol_in_progress
);
624 *input_line_pointer
= name_end
;
626 demand_empty_rest_of_line ();
630 obj_coff_endef (int ignore ATTRIBUTE_UNUSED
)
632 symbolS
*symbolP
= NULL
;
634 if (def_symbol_in_progress
== NULL
)
636 as_warn (_(".endef pseudo-op used outside of .def/.endef: ignored."));
637 demand_empty_rest_of_line ();
641 /* Set the section number according to storage class. */
642 switch (S_GET_STORAGE_CLASS (def_symbol_in_progress
))
647 SF_SET_TAG (def_symbol_in_progress
);
651 SF_SET_DEBUG (def_symbol_in_progress
);
652 S_SET_SEGMENT (def_symbol_in_progress
, fetch_coff_debug_section ());
656 SF_SET_LOCAL (def_symbol_in_progress
); /* Do not emit this symbol. */
659 SF_SET_PROCESS (def_symbol_in_progress
); /* Will need processing before writing. */
665 S_SET_SEGMENT (def_symbol_in_progress
, text_section
);
667 name
= S_GET_NAME (def_symbol_in_progress
);
668 if (name
[0] == '.' && name
[2] == 'f' && name
[3] == '\0')
674 if (! in_function ())
675 as_warn (_("`%s' symbol without preceding function"), name
);
676 /* Will need relocating. */
677 SF_SET_PROCESS (def_symbol_in_progress
);
683 /* The MS compilers output the actual endline, not the
684 function-relative one... we want to match without
685 changing the assembler input. */
686 SA_SET_SYM_LNNO (def_symbol_in_progress
,
687 (SA_GET_SYM_LNNO (def_symbol_in_progress
)
698 #endif /* C_AUTOARG */
705 /* According to the COFF documentation:
707 http://osr5doc.sco.com:1996/topics/COFF_SectNumFld.html
709 A special section number (-2) marks symbolic debugging symbols,
710 including structure/union/enumeration tag names, typedefs, and
711 the name of the file. A section number of -1 indicates that the
712 symbol has a value but is not relocatable. Examples of
713 absolute-valued symbols include automatic and register variables,
714 function arguments, and .eos symbols.
716 But from Ian Lance Taylor:
718 http://sources.redhat.com/ml/binutils/2000-08/msg00202.html
720 the actual tools all marked them as section -1. So the GNU COFF
721 assembler follows historical COFF assemblers.
723 However, it causes problems for djgpp
725 http://sources.redhat.com/ml/binutils/2000-08/msg00210.html
727 By defining STRICTCOFF, a COFF port can make the assembler to
728 follow the documented behavior. */
735 SF_SET_DEBUG (def_symbol_in_progress
);
736 S_SET_SEGMENT (def_symbol_in_progress
, absolute_section
);
744 S_SET_SEGMENT (def_symbol_in_progress
, absolute_section
);
755 /* Valid but set somewhere else (s_comm, s_lcomm, colon). */
762 as_warn (_("unexpected storage class %d"),
763 S_GET_STORAGE_CLASS (def_symbol_in_progress
));
767 /* Now that we have built a debug symbol, try to find if we should
768 merge with an existing symbol or not. If a symbol is C_EFCN or
769 absolute_section or untagged SEG_DEBUG it never merges. We also
770 don't merge labels, which are in a different namespace, nor
771 symbols which have not yet been defined since they are typically
772 unique, nor do we merge tags with non-tags. */
774 /* Two cases for functions. Either debug followed by definition or
775 definition followed by debug. For definition first, we will
776 merge the debug symbol into the definition. For debug first, the
777 lineno entry MUST point to the definition function or else it
778 will point off into space when obj_crawl_symbol_chain() merges
779 the debug symbol into the real symbol. Therefor, let's presume
780 the debug symbol is a real function reference. */
782 /* FIXME-SOON If for some reason the definition label/symbol is
783 never seen, this will probably leave an undefined symbol at link
786 if (S_GET_STORAGE_CLASS (def_symbol_in_progress
) == C_EFCN
787 || S_GET_STORAGE_CLASS (def_symbol_in_progress
) == C_LABEL
788 || (streq (bfd_get_section_name (stdoutput
,
789 S_GET_SEGMENT (def_symbol_in_progress
)),
791 && !SF_GET_TAG (def_symbol_in_progress
))
792 || S_GET_SEGMENT (def_symbol_in_progress
) == absolute_section
793 || ! symbol_constant_p (def_symbol_in_progress
)
794 || (symbolP
= symbol_find (S_GET_NAME (def_symbol_in_progress
))) == NULL
795 || SF_GET_TAG (def_symbol_in_progress
) != SF_GET_TAG (symbolP
))
797 /* If it already is at the end of the symbol list, do nothing */
798 if (def_symbol_in_progress
!= symbol_lastP
)
800 symbol_remove (def_symbol_in_progress
, &symbol_rootP
, &symbol_lastP
);
801 symbol_append (def_symbol_in_progress
, symbol_lastP
, &symbol_rootP
,
807 /* This symbol already exists, merge the newly created symbol
808 into the old one. This is not mandatory. The linker can
809 handle duplicate symbols correctly. But I guess that it save
810 a *lot* of space if the assembly file defines a lot of
813 /* The debug entry (def_symbol_in_progress) is merged into the
814 previous definition. */
816 c_symbol_merge (def_symbol_in_progress
, symbolP
);
817 symbol_remove (def_symbol_in_progress
, &symbol_rootP
, &symbol_lastP
);
819 def_symbol_in_progress
= symbolP
;
821 if (SF_GET_FUNCTION (def_symbol_in_progress
)
822 || SF_GET_TAG (def_symbol_in_progress
)
823 || S_GET_STORAGE_CLASS (def_symbol_in_progress
) == C_STAT
)
825 /* For functions, and tags, and static symbols, the symbol
826 *must* be where the debug symbol appears. Move the
827 existing symbol to the current place. */
828 /* If it already is at the end of the symbol list, do nothing. */
829 if (def_symbol_in_progress
!= symbol_lastP
)
831 symbol_remove (def_symbol_in_progress
, &symbol_rootP
, &symbol_lastP
);
832 symbol_append (def_symbol_in_progress
, symbol_lastP
, &symbol_rootP
, &symbol_lastP
);
837 if (SF_GET_TAG (def_symbol_in_progress
))
841 oldtag
= symbol_find (S_GET_NAME (def_symbol_in_progress
));
842 if (oldtag
== NULL
|| ! SF_GET_TAG (oldtag
))
843 tag_insert (S_GET_NAME (def_symbol_in_progress
),
844 def_symbol_in_progress
);
847 if (SF_GET_FUNCTION (def_symbol_in_progress
))
849 set_function (def_symbol_in_progress
);
850 SF_SET_PROCESS (def_symbol_in_progress
);
853 /* That is, if this is the first time we've seen the
855 symbol_table_insert (def_symbol_in_progress
);
859 def_symbol_in_progress
= NULL
;
860 demand_empty_rest_of_line ();
864 obj_coff_dim (int ignore ATTRIBUTE_UNUSED
)
868 if (def_symbol_in_progress
== NULL
)
870 as_warn (_(".dim pseudo-op used outside of .def/.endef: ignored."));
871 demand_empty_rest_of_line ();
875 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress
, 1);
877 for (d_index
= 0; d_index
< DIMNUM
; d_index
++)
880 SA_SET_SYM_DIMEN (def_symbol_in_progress
, d_index
,
881 get_absolute_expression ());
883 switch (*input_line_pointer
)
886 input_line_pointer
++;
890 as_warn (_("badly formed .dim directive ignored"));
899 demand_empty_rest_of_line ();
903 obj_coff_line (int ignore ATTRIBUTE_UNUSED
)
907 if (def_symbol_in_progress
== NULL
)
909 /* Probably stabs-style line? */
914 this_base
= get_absolute_expression ();
915 if (streq (".bf", S_GET_NAME (def_symbol_in_progress
)))
916 coff_line_base
= this_base
;
918 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress
, 1);
919 SA_SET_SYM_LNNO (def_symbol_in_progress
, this_base
);
921 demand_empty_rest_of_line ();
924 if (streq (".bf", S_GET_NAME (def_symbol_in_progress
)))
929 listing_source_line ((unsigned int) this_base
);
935 obj_coff_size (int ignore ATTRIBUTE_UNUSED
)
937 if (def_symbol_in_progress
== NULL
)
939 as_warn (_(".size pseudo-op used outside of .def/.endef ignored."));
940 demand_empty_rest_of_line ();
944 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress
, 1);
945 SA_SET_SYM_SIZE (def_symbol_in_progress
, get_absolute_expression ());
946 demand_empty_rest_of_line ();
950 obj_coff_scl (int ignore ATTRIBUTE_UNUSED
)
952 if (def_symbol_in_progress
== NULL
)
954 as_warn (_(".scl pseudo-op used outside of .def/.endef ignored."));
955 demand_empty_rest_of_line ();
959 S_SET_STORAGE_CLASS (def_symbol_in_progress
, get_absolute_expression ());
960 demand_empty_rest_of_line ();
964 obj_coff_tag (int ignore ATTRIBUTE_UNUSED
)
969 if (def_symbol_in_progress
== NULL
)
971 as_warn (_(".tag pseudo-op used outside of .def/.endef ignored."));
972 demand_empty_rest_of_line ();
976 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress
, 1);
977 symbol_name
= input_line_pointer
;
978 name_end
= get_symbol_end ();
980 #ifdef tc_canonicalize_symbol_name
981 symbol_name
= tc_canonicalize_symbol_name (symbol_name
);
984 /* Assume that the symbol referred to by .tag is always defined.
985 This was a bad assumption. I've added find_or_make. xoxorich. */
986 SA_SET_SYM_TAGNDX (def_symbol_in_progress
,
987 tag_find_or_make (symbol_name
));
988 if (SA_GET_SYM_TAGNDX (def_symbol_in_progress
) == 0L)
989 as_warn (_("tag not found for .tag %s"), symbol_name
);
991 SF_SET_TAGGED (def_symbol_in_progress
);
992 *input_line_pointer
= name_end
;
994 demand_empty_rest_of_line ();
998 obj_coff_type (int ignore ATTRIBUTE_UNUSED
)
1000 if (def_symbol_in_progress
== NULL
)
1002 as_warn (_(".type pseudo-op used outside of .def/.endef ignored."));
1003 demand_empty_rest_of_line ();
1007 S_SET_DATA_TYPE (def_symbol_in_progress
, get_absolute_expression ());
1009 if (ISFCN (S_GET_DATA_TYPE (def_symbol_in_progress
)) &&
1010 S_GET_STORAGE_CLASS (def_symbol_in_progress
) != C_TPDEF
)
1011 SF_SET_FUNCTION (def_symbol_in_progress
);
1013 demand_empty_rest_of_line ();
1017 obj_coff_val (int ignore ATTRIBUTE_UNUSED
)
1019 if (def_symbol_in_progress
== NULL
)
1021 as_warn (_(".val pseudo-op used outside of .def/.endef ignored."));
1022 demand_empty_rest_of_line ();
1026 if (is_name_beginner (*input_line_pointer
))
1028 char *symbol_name
= input_line_pointer
;
1029 char name_end
= get_symbol_end ();
1031 #ifdef tc_canonicalize_symbol_name
1032 symbol_name
= tc_canonicalize_symbol_name (symbol_name
);
1034 if (streq (symbol_name
, "."))
1036 /* If the .val is != from the .def (e.g. statics). */
1037 symbol_set_frag (def_symbol_in_progress
, frag_now
);
1038 S_SET_VALUE (def_symbol_in_progress
, (valueT
) frag_now_fix ());
1040 else if (! streq (S_GET_NAME (def_symbol_in_progress
), symbol_name
))
1044 exp
.X_op
= O_symbol
;
1045 exp
.X_add_symbol
= symbol_find_or_make (symbol_name
);
1046 exp
.X_op_symbol
= NULL
;
1047 exp
.X_add_number
= 0;
1048 symbol_set_value_expression (def_symbol_in_progress
, &exp
);
1050 /* If the segment is undefined when the forward reference is
1051 resolved, then copy the segment id from the forward
1053 SF_SET_GET_SEGMENT (def_symbol_in_progress
);
1055 /* FIXME: gcc can generate address expressions here in
1056 unusual cases (search for "obscure" in sdbout.c). We
1057 just ignore the offset here, thus generating incorrect
1058 debugging information. We ignore the rest of the line
1061 /* Otherwise, it is the name of a non debug symbol and its value
1062 will be calculated later. */
1063 *input_line_pointer
= name_end
;
1067 S_SET_VALUE (def_symbol_in_progress
, get_absolute_expression ());
1070 demand_empty_rest_of_line ();
1075 /* Return nonzero if name begins with weak alternate symbol prefix. */
1078 weak_is_altname (const char * name
)
1080 return strneq (name
, weak_altprefix
, sizeof (weak_altprefix
) - 1);
1083 /* Return the name of the alternate symbol
1084 name corresponding to a weak symbol's name. */
1087 weak_name2altname (const char * name
)
1091 alt_name
= xmalloc (sizeof (weak_altprefix
) + strlen (name
));
1092 strcpy (alt_name
, weak_altprefix
);
1093 return strcat (alt_name
, name
);
1096 /* Return the name of the weak symbol corresponding to an
1097 alternate symbol. */
1100 weak_altname2name (const char * name
)
1102 gas_assert (weak_is_altname (name
));
1103 return xstrdup (name
+ 6);
1106 /* Make a weak symbol name unique by
1107 appending the name of an external symbol. */
1110 weak_uniquify (const char * name
)
1113 const char * unique
= "";
1116 if (an_external_name
!= NULL
)
1117 unique
= an_external_name
;
1119 gas_assert (weak_is_altname (name
));
1121 ret
= xmalloc (strlen (name
) + strlen (unique
) + 2);
1124 strcat (ret
, unique
);
1129 pecoff_obj_set_weak_hook (symbolS
*symbolP
)
1131 symbolS
*alternateP
;
1133 /* See _Microsoft Portable Executable and Common Object
1134 File Format Specification_, section 5.5.3.
1135 Create a symbol representing the alternate value.
1136 coff_frob_symbol will set the value of this symbol from
1137 the value of the weak symbol itself. */
1138 S_SET_STORAGE_CLASS (symbolP
, C_NT_WEAK
);
1139 S_SET_NUMBER_AUXILIARY (symbolP
, 1);
1140 SA_SET_SYM_FSIZE (symbolP
, IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY
);
1142 alternateP
= symbol_find_or_make (weak_name2altname (S_GET_NAME (symbolP
)));
1143 S_SET_EXTERNAL (alternateP
);
1144 S_SET_STORAGE_CLASS (alternateP
, C_NT_WEAK
);
1146 SA_SET_SYM_TAGNDX (symbolP
, alternateP
);
1150 pecoff_obj_clear_weak_hook (symbolS
*symbolP
)
1152 symbolS
*alternateP
;
1154 S_SET_STORAGE_CLASS (symbolP
, 0);
1155 SA_SET_SYM_FSIZE (symbolP
, 0);
1157 alternateP
= symbol_find (weak_name2altname (S_GET_NAME (symbolP
)));
1158 S_CLEAR_EXTERNAL (alternateP
);
1163 /* Handle .weak. This is a GNU extension in formats other than PE. */
1166 obj_coff_weak (int ignore ATTRIBUTE_UNUSED
)
1174 name
= input_line_pointer
;
1175 c
= get_symbol_end ();
1178 as_warn (_("badly formed .weak directive ignored"));
1179 ignore_rest_of_line ();
1183 symbolP
= symbol_find_or_make (name
);
1184 *input_line_pointer
= c
;
1186 S_SET_WEAK (symbolP
);
1190 input_line_pointer
++;
1192 if (*input_line_pointer
== '\n')
1199 demand_empty_rest_of_line ();
1203 coff_obj_read_begin_hook (void)
1205 /* These had better be the same. Usually 18 bytes. */
1206 know (sizeof (SYMENT
) == sizeof (AUXENT
));
1207 know (SYMESZ
== AUXESZ
);
1211 symbolS
*coff_last_function
;
1213 static symbolS
*coff_last_bf
;
1217 coff_frob_symbol (symbolS
*symp
, int *punt
)
1219 static symbolS
*last_tagP
;
1220 static stack
*block_stack
;
1221 static symbolS
*set_end
;
1222 symbolS
*next_set_end
= NULL
;
1224 if (symp
== &abs_symbol
)
1230 if (current_lineno_sym
)
1231 coff_add_linesym (NULL
);
1234 block_stack
= stack_init (512, sizeof (symbolS
*));
1237 if (S_GET_STORAGE_CLASS (symp
) == C_NT_WEAK
1238 && ! S_IS_WEAK (symp
)
1239 && weak_is_altname (S_GET_NAME (symp
)))
1241 /* This is a weak alternate symbol. All processing of
1242 PECOFFweak symbols is done here, through the alternate. */
1243 symbolS
*weakp
= symbol_find_noref (weak_altname2name
1244 (S_GET_NAME (symp
)), 1);
1247 gas_assert (S_GET_NUMBER_AUXILIARY (weakp
) == 1);
1249 if (! S_IS_WEAK (weakp
))
1251 /* The symbol was turned from weak to strong. Discard altname. */
1255 else if (symbol_equated_p (weakp
))
1257 /* The weak symbol has an alternate specified; symp is unneeded. */
1258 S_SET_STORAGE_CLASS (weakp
, C_NT_WEAK
);
1259 SA_SET_SYM_TAGNDX (weakp
,
1260 symbol_get_value_expression (weakp
)->X_add_symbol
);
1262 S_CLEAR_EXTERNAL (symp
);
1268 /* The weak symbol has been assigned an alternate value.
1269 Copy this value to symp, and set symp as weakp's alternate. */
1270 if (S_GET_STORAGE_CLASS (weakp
) != C_NT_WEAK
)
1272 S_SET_STORAGE_CLASS (symp
, S_GET_STORAGE_CLASS (weakp
));
1273 S_SET_STORAGE_CLASS (weakp
, C_NT_WEAK
);
1276 if (S_IS_DEFINED (weakp
))
1278 /* This is a defined weak symbol. Copy value information
1279 from the weak symbol itself to the alternate symbol. */
1280 symbol_set_value_expression (symp
,
1281 symbol_get_value_expression (weakp
));
1282 symbol_set_frag (symp
, symbol_get_frag (weakp
));
1283 S_SET_SEGMENT (symp
, S_GET_SEGMENT (weakp
));
1287 /* This is an undefined weak symbol.
1288 Define the alternate symbol to zero. */
1289 S_SET_VALUE (symp
, 0);
1290 S_SET_SEGMENT (symp
, absolute_section
);
1293 S_SET_NAME (symp
, weak_uniquify (S_GET_NAME (symp
)));
1294 S_SET_STORAGE_CLASS (symp
, C_EXT
);
1296 S_SET_VALUE (weakp
, 0);
1297 S_SET_SEGMENT (weakp
, undefined_section
);
1301 if (S_IS_WEAK (symp
))
1302 S_SET_STORAGE_CLASS (symp
, C_WEAKEXT
);
1305 if (!S_IS_DEFINED (symp
)
1306 && !S_IS_WEAK (symp
)
1307 && S_GET_STORAGE_CLASS (symp
) != C_STAT
)
1308 S_SET_STORAGE_CLASS (symp
, C_EXT
);
1310 if (!SF_GET_DEBUG (symp
))
1314 if (!SF_GET_LOCAL (symp
)
1315 && !SF_GET_STATICS (symp
)
1316 && S_GET_STORAGE_CLASS (symp
) != C_LABEL
1317 && symbol_constant_p (symp
)
1318 && (real
= symbol_find_noref (S_GET_NAME (symp
), 1))
1319 && S_GET_STORAGE_CLASS (real
) == C_NULL
1322 c_symbol_merge (symp
, real
);
1327 if (!S_IS_DEFINED (symp
) && !SF_GET_LOCAL (symp
))
1329 gas_assert (S_GET_VALUE (symp
) == 0);
1330 if (S_IS_WEAKREFD (symp
))
1333 S_SET_EXTERNAL (symp
);
1335 else if (S_GET_STORAGE_CLASS (symp
) == C_NULL
)
1337 if (S_GET_SEGMENT (symp
) == text_section
1338 && symp
!= seg_info (text_section
)->sym
)
1339 S_SET_STORAGE_CLASS (symp
, C_LABEL
);
1341 S_SET_STORAGE_CLASS (symp
, C_STAT
);
1344 if (SF_GET_PROCESS (symp
))
1346 if (S_GET_STORAGE_CLASS (symp
) == C_BLOCK
)
1348 if (streq (S_GET_NAME (symp
), ".bb"))
1349 stack_push (block_stack
, (char *) &symp
);
1354 begin
= *(symbolS
**) stack_pop (block_stack
);
1356 as_warn (_("mismatched .eb"));
1358 next_set_end
= begin
;
1362 if (coff_last_function
== 0 && SF_GET_FUNCTION (symp
))
1364 union internal_auxent
*auxp
;
1366 coff_last_function
= symp
;
1367 if (S_GET_NUMBER_AUXILIARY (symp
) < 1)
1368 S_SET_NUMBER_AUXILIARY (symp
, 1);
1369 auxp
= SYM_AUXENT (symp
);
1370 memset (auxp
->x_sym
.x_fcnary
.x_ary
.x_dimen
, 0,
1371 sizeof (auxp
->x_sym
.x_fcnary
.x_ary
.x_dimen
));
1374 if (S_GET_STORAGE_CLASS (symp
) == C_EFCN
)
1376 if (coff_last_function
== 0)
1377 as_fatal (_("C_EFCN symbol for %s out of scope"),
1379 SA_SET_SYM_FSIZE (coff_last_function
,
1380 (long) (S_GET_VALUE (symp
)
1381 - S_GET_VALUE (coff_last_function
)));
1382 next_set_end
= coff_last_function
;
1383 coff_last_function
= 0;
1387 if (S_IS_EXTERNAL (symp
))
1388 S_SET_STORAGE_CLASS (symp
, C_EXT
);
1389 else if (SF_GET_LOCAL (symp
))
1392 if (SF_GET_FUNCTION (symp
))
1393 symbol_get_bfdsym (symp
)->flags
|= BSF_FUNCTION
;
1396 /* Double check weak symbols. */
1397 if (S_IS_WEAK (symp
) && S_IS_COMMON (symp
))
1398 as_bad (_("Symbol `%s' can not be both weak and common"),
1401 if (SF_GET_TAG (symp
))
1403 else if (S_GET_STORAGE_CLASS (symp
) == C_EOS
)
1404 next_set_end
= last_tagP
;
1407 /* This is pretty horrible, but we have to set *punt correctly in
1408 order to call SA_SET_SYM_ENDNDX correctly. */
1409 if (! symbol_used_in_reloc_p (symp
)
1410 && ((symbol_get_bfdsym (symp
)->flags
& BSF_SECTION_SYM
) != 0
1411 || (! (S_IS_EXTERNAL (symp
) || S_IS_WEAK (symp
))
1412 && ! symbol_get_tc (symp
)->output
1413 && S_GET_STORAGE_CLASS (symp
) != C_FILE
)))
1417 if (set_end
!= (symbolS
*) NULL
1419 && ((symbol_get_bfdsym (symp
)->flags
& BSF_NOT_AT_END
) != 0
1420 || (S_IS_DEFINED (symp
)
1421 && ! S_IS_COMMON (symp
)
1422 && (! S_IS_EXTERNAL (symp
) || SF_GET_FUNCTION (symp
)))))
1424 SA_SET_SYM_ENDNDX (set_end
, symp
);
1428 if (next_set_end
!= NULL
)
1430 if (set_end
!= NULL
)
1431 as_warn (_("Warning: internal error: forgetting to set endndx of %s"),
1432 S_GET_NAME (set_end
));
1433 set_end
= next_set_end
;
1438 && S_GET_STORAGE_CLASS (symp
) == C_FCN
1439 && streq (S_GET_NAME (symp
), ".bf"))
1441 if (coff_last_bf
!= NULL
)
1442 SA_SET_SYM_ENDNDX (coff_last_bf
, symp
);
1443 coff_last_bf
= symp
;
1446 if (coffsymbol (symbol_get_bfdsym (symp
))->lineno
)
1449 struct line_no
*lptr
;
1452 lptr
= (struct line_no
*) coffsymbol (symbol_get_bfdsym (symp
))->lineno
;
1453 for (i
= 0; lptr
; lptr
= lptr
->next
)
1455 lptr
= (struct line_no
*) coffsymbol (symbol_get_bfdsym (symp
))->lineno
;
1457 /* We need i entries for line numbers, plus 1 for the first
1458 entry which BFD will override, plus 1 for the last zero
1459 entry (a marker for BFD). */
1460 l
= xmalloc ((i
+ 2) * sizeof (* l
));
1461 coffsymbol (symbol_get_bfdsym (symp
))->lineno
= l
;
1462 l
[i
+ 1].line_number
= 0;
1463 l
[i
+ 1].u
.sym
= NULL
;
1467 lptr
->l
.u
.offset
+= lptr
->frag
->fr_address
/ OCTETS_PER_BYTE
;
1475 coff_adjust_section_syms (bfd
*abfd ATTRIBUTE_UNUSED
,
1477 void * x ATTRIBUTE_UNUSED
)
1480 segment_info_type
*seginfo
= seg_info (sec
);
1481 int nlnno
, nrelocs
= 0;
1483 /* RS/6000 gas creates a .debug section manually in ppc_frob_file in
1484 tc-ppc.c. Do not get confused by it. */
1485 if (seginfo
== NULL
)
1488 if (streq (sec
->name
, ".text"))
1489 nlnno
= coff_n_line_nos
;
1493 /* @@ Hope that none of the fixups expand to more than one reloc
1495 fixS
*fixp
= seginfo
->fix_root
;
1498 if (! fixp
->fx_done
)
1500 fixp
= fixp
->fx_next
;
1503 if (bfd_get_section_size (sec
) == 0
1506 && sec
!= text_section
1507 && sec
!= data_section
1508 && sec
!= bss_section
)
1511 secsym
= section_symbol (sec
);
1512 /* This is an estimate; we'll plug in the real value using
1513 SET_SECTION_RELOCS later */
1514 SA_SET_SCN_NRELOC (secsym
, nrelocs
);
1515 SA_SET_SCN_NLINNO (secsym
, nlnno
);
1519 coff_frob_file_after_relocs (void)
1521 bfd_map_over_sections (stdoutput
, coff_adjust_section_syms
, NULL
);
1524 /* Implement the .section pseudo op:
1525 .section name {, "flags"}
1527 | +--- optional flags: 'b' for bss
1529 +-- section name 'l' for lib
1533 'd' (apparently m88k for data)
1535 'r' for read-only data
1536 's' for shared data (PE)
1538 '0' - '9' for power-of-two alignment (GNU extension).
1539 But if the argument is not a quoted string, treat it as a
1542 Note the 'a' flag is silently ignored. This allows the same
1543 .section directive to be parsed in both ELF and COFF formats. */
1546 obj_coff_section (int ignore ATTRIBUTE_UNUSED
)
1548 /* Strip out the section name. */
1554 flagword flags
, oldflags
;
1565 section_name
= input_line_pointer
;
1566 c
= get_symbol_end ();
1568 name
= xmalloc (input_line_pointer
- section_name
+ 1);
1569 strcpy (name
, section_name
);
1571 *input_line_pointer
= c
;
1576 flags
= SEC_NO_FLAGS
;
1578 if (*input_line_pointer
== ',')
1580 ++input_line_pointer
;
1582 if (*input_line_pointer
!= '"')
1583 exp
= get_absolute_expression ();
1587 int readonly_removed
= 0;
1588 int load_removed
= 0;
1590 while (attr
= *++input_line_pointer
,
1592 && ! is_end_of_line
[attr
])
1596 alignment
= attr
- '0';
1602 /* Uninitialised data section. */
1608 /* Section not loaded. */
1610 flags
|= SEC_NEVER_LOAD
;
1615 /* Shared section. */
1616 flags
|= SEC_COFF_SHARED
;
1623 flags
&=~ SEC_READONLY
;
1627 /* Writable section. */
1628 flags
&=~ SEC_READONLY
;
1629 readonly_removed
= 1;
1633 /* Ignore. Here for compatibility with ELF. */
1636 case 'r': /* Read-only section. Implies a data section. */
1637 readonly_removed
= 0;
1639 case 'x': /* Executable section. */
1640 /* If we are setting the 'x' attribute or if the 'r'
1641 attribute is being used to restore the readonly status
1642 of a code section (eg "wxr") then set the SEC_CODE flag,
1643 otherwise set the SEC_DATA flag. */
1644 flags
|= (attr
== 'x' || (flags
& SEC_CODE
) ? SEC_CODE
: SEC_DATA
);
1647 /* Note - the READONLY flag is set here, even for the 'x'
1648 attribute in order to be compatible with the MSVC
1650 if (! readonly_removed
)
1651 flags
|= SEC_READONLY
;
1655 flags
|= SEC_COFF_NOREAD
| SEC_READONLY
;
1658 case 'i': /* STYP_INFO */
1659 case 'l': /* STYP_LIB */
1660 case 'o': /* STYP_OVER */
1661 as_warn (_("unsupported section attribute '%c'"), attr
);
1665 as_warn (_("unknown section attribute '%c'"), attr
);
1670 ++input_line_pointer
;
1674 sec
= subseg_new (name
, (subsegT
) exp
);
1676 sec
->alignment_power
= alignment
;
1678 oldflags
= bfd_get_section_flags (stdoutput
, sec
);
1679 if (oldflags
== SEC_NO_FLAGS
)
1681 /* Set section flags for a new section just created by subseg_new.
1682 Provide a default if no flags were parsed. */
1683 if (flags
== SEC_NO_FLAGS
)
1684 flags
= TC_COFF_SECTION_DEFAULT_ATTRIBUTES
;
1686 #ifdef COFF_LONG_SECTION_NAMES
1687 /* Add SEC_LINK_ONCE and SEC_LINK_DUPLICATES_DISCARD to .gnu.linkonce
1688 sections so adjust_reloc_syms in write.c will correctly handle
1689 relocs which refer to non-local symbols in these sections. */
1690 if (strneq (name
, ".gnu.linkonce", sizeof (".gnu.linkonce") - 1))
1691 flags
|= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
;
1694 if (! bfd_set_section_flags (stdoutput
, sec
, flags
))
1695 as_warn (_("error setting flags for \"%s\": %s"),
1696 bfd_section_name (stdoutput
, sec
),
1697 bfd_errmsg (bfd_get_error ()));
1699 else if (flags
!= SEC_NO_FLAGS
)
1701 /* This section's attributes have already been set. Warn if the
1702 attributes don't match. */
1703 flagword matchflags
= (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
| SEC_CODE
1704 | SEC_DATA
| SEC_COFF_SHARED
| SEC_NEVER_LOAD
1706 if ((flags
^ oldflags
) & matchflags
)
1707 as_warn (_("Ignoring changed section attributes for %s"), name
);
1710 demand_empty_rest_of_line ();
1714 coff_adjust_symtab (void)
1716 if (symbol_rootP
== NULL
1717 || S_GET_STORAGE_CLASS (symbol_rootP
) != C_FILE
)
1718 c_dot_file_symbol ("fake", 0);
1722 coff_frob_section (segT sec
)
1729 /* The COFF back end in BFD requires that all section sizes be
1730 rounded up to multiples of the corresponding section alignments,
1731 supposedly because standard COFF has no other way of encoding alignment
1732 for sections. If your COFF flavor has a different way of encoding
1733 section alignment, then skip this step, as TICOFF does. */
1734 bfd_vma size
= bfd_get_section_size (sec
);
1735 #if !defined(TICOFF)
1736 bfd_vma align_power
= (bfd_vma
) sec
->alignment_power
+ OCTETS_PER_BYTE_POWER
;
1737 bfd_vma mask
= ((bfd_vma
) 1 << align_power
) - 1;
1744 new_size
= (size
+ mask
) & ~mask
;
1745 bfd_set_section_size (stdoutput
, sec
, new_size
);
1747 /* If the size had to be rounded up, add some padding in
1748 the last non-empty frag. */
1749 fragp
= seg_info (sec
)->frchainP
->frch_root
;
1750 last
= seg_info (sec
)->frchainP
->frch_last
;
1751 while (fragp
->fr_next
!= last
)
1752 fragp
= fragp
->fr_next
;
1753 last
->fr_address
= size
;
1754 fragp
->fr_offset
+= new_size
- size
;
1758 /* If the section size is non-zero, the section symbol needs an aux
1759 entry associated with it, indicating the size. We don't know
1760 all the values yet; coff_frob_symbol will fill them in later. */
1763 || sec
== text_section
1764 || sec
== data_section
1765 || sec
== bss_section
)
1768 symbolS
*secsym
= section_symbol (sec
);
1769 unsigned char sclass
= C_STAT
;
1772 if (bfd_get_section_flags (stdoutput
, sec
) & SEC_DEBUGGING
)
1775 S_SET_STORAGE_CLASS (secsym
, sclass
);
1776 S_SET_NUMBER_AUXILIARY (secsym
, 1);
1777 SF_SET_STATICS (secsym
);
1778 SA_SET_SCN_SCNLEN (secsym
, size
);
1780 /* FIXME: These should be in a "stabs.h" file, or maybe as.h. */
1781 #ifndef STAB_SECTION_NAME
1782 #define STAB_SECTION_NAME ".stab"
1784 #ifndef STAB_STRING_SECTION_NAME
1785 #define STAB_STRING_SECTION_NAME ".stabstr"
1787 if (! streq (STAB_STRING_SECTION_NAME
, sec
->name
))
1791 sec
= subseg_get (STAB_SECTION_NAME
, 0);
1792 /* size is already rounded up, since other section will be listed first */
1793 size
= bfd_get_section_size (strsec
);
1795 n_entries
= bfd_get_section_size (sec
) / 12 - 1;
1797 /* Find first non-empty frag. It should be large enough. */
1798 fragp
= seg_info (sec
)->frchainP
->frch_root
;
1799 while (fragp
&& fragp
->fr_fix
== 0)
1800 fragp
= fragp
->fr_next
;
1801 gas_assert (fragp
!= 0 && fragp
->fr_fix
>= 12);
1803 /* Store the values. */
1804 p
= fragp
->fr_literal
;
1805 bfd_h_put_16 (stdoutput
, n_entries
, (bfd_byte
*) p
+ 6);
1806 bfd_h_put_32 (stdoutput
, size
, (bfd_byte
*) p
+ 8);
1810 obj_coff_init_stab_section (segT seg
)
1815 unsigned int stroff
;
1817 /* Make space for this first symbol. */
1821 as_where (&file
, (unsigned int *) NULL
);
1822 stabstr_name
= xmalloc (strlen (seg
->name
) + 4);
1823 strcpy (stabstr_name
, seg
->name
);
1824 strcat (stabstr_name
, "str");
1825 stroff
= get_stab_string_offset (file
, stabstr_name
);
1827 md_number_to_chars (p
, stroff
, 4);
1831 const char * s_get_name (symbolS
*);
1834 s_get_name (symbolS
*s
)
1836 return ((s
== NULL
) ? "(NULL)" : S_GET_NAME (s
));
1839 void symbol_dump (void);
1846 for (symbolP
= symbol_rootP
; symbolP
; symbolP
= symbol_next (symbolP
))
1847 printf (_("0x%lx: \"%s\" type = %ld, class = %d, segment = %d\n"),
1848 (unsigned long) symbolP
,
1849 S_GET_NAME (symbolP
),
1850 (long) S_GET_DATA_TYPE (symbolP
),
1851 S_GET_STORAGE_CLASS (symbolP
),
1852 (int) S_GET_SEGMENT (symbolP
));
1857 const pseudo_typeS coff_pseudo_table
[] =
1859 {"ABORT", s_abort
, 0},
1860 {"appline", obj_coff_ln
, 1},
1861 /* We accept the .bss directive for backward compatibility with
1862 earlier versions of gas. */
1863 {"bss", obj_coff_bss
, 0},
1865 /* PE provides an enhanced version of .comm with alignment. */
1866 {"comm", obj_coff_comm
, 0},
1868 {"def", obj_coff_def
, 0},
1869 {"dim", obj_coff_dim
, 0},
1870 {"endef", obj_coff_endef
, 0},
1871 {"ident", obj_coff_ident
, 0},
1872 {"line", obj_coff_line
, 0},
1873 {"ln", obj_coff_ln
, 0},
1874 {"scl", obj_coff_scl
, 0},
1875 {"sect", obj_coff_section
, 0},
1876 {"sect.s", obj_coff_section
, 0},
1877 {"section", obj_coff_section
, 0},
1878 {"section.s", obj_coff_section
, 0},
1879 /* FIXME: We ignore the MRI short attribute. */
1880 {"size", obj_coff_size
, 0},
1881 {"tag", obj_coff_tag
, 0},
1882 {"type", obj_coff_type
, 0},
1883 {"val", obj_coff_val
, 0},
1884 {"version", s_ignore
, 0},
1885 {"loc", obj_coff_loc
, 0},
1886 {"optim", s_ignore
, 0}, /* For sun386i cc (?) */
1887 {"weak", obj_coff_weak
, 0},
1888 #if defined TC_TIC4X
1889 /* The tic4x uses sdef instead of def. */
1890 {"sdef", obj_coff_def
, 0},
1892 #if defined(SEH_CMDS)
1899 /* Support for a COFF emulation. */
1902 coff_pop_insert (void)
1904 pop_insert (coff_pseudo_table
);
1908 coff_separate_stab_sections (void)
1913 const struct format_ops coff_format_ops
=
1915 bfd_target_coff_flavour
,
1916 0, /* dfl_leading_underscore */
1917 1, /* emit_section_symbols */
1922 0, /* frob_file_before_adjust */
1923 0, /* frob_file_before_fix */
1924 coff_frob_file_after_relocs
,
1927 0, /* s_get_align */
1928 0, /* s_set_align */
1929 0, /* s_get_other */
1930 0, /* s_set_other */
1935 0, /* copy_symbol_attributes */
1936 0, /* generate_asm_lineno */
1937 0, /* process_stab */
1938 coff_separate_stab_sections
,
1939 obj_coff_init_stab_section
,
1940 0, /* sec_sym_ok_for_reloc */
1942 0, /* ecoff_set_ext */
1943 coff_obj_read_begin_hook
,
1944 coff_obj_symbol_new_hook
,
1945 coff_obj_symbol_clone_hook
,