1 /* symbols.c -symbol table-
2 Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 Free Software Foundation, Inc.
6 This file is part of GAS, the GNU Assembler.
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 2, 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, 59 Temple Place - Suite 330, Boston, MA
23 /* #define DEBUG_SYMS / * to debug symbol list maintenance. */
29 #include "obstack.h" /* For "symbols.h" */
32 #include "struc-symbol.h"
34 /* This is non-zero if symbols are case sensitive, which is the
36 int symbols_case_sensitive
= 1;
38 #ifndef WORKING_DOT_WORD
39 extern int new_broken_words
;
42 /* symbol-name => struct symbol pointer */
43 static struct hash_control
*sy_hash
;
45 /* Table of local symbols. */
46 static struct hash_control
*local_hash
;
48 /* Below are commented in "symbols.h". */
49 symbolS
*symbol_rootP
;
50 symbolS
*symbol_lastP
;
54 #define debug_verify_symchain verify_symbol_chain
56 #define debug_verify_symchain(root, last) ((void) 0)
59 #define DOLLAR_LABEL_CHAR '\001'
60 #define LOCAL_LABEL_CHAR '\002'
64 static void fb_label_init
PARAMS ((void));
65 static long dollar_label_instance
PARAMS ((long));
66 static long fb_label_instance
PARAMS ((long));
68 static void print_binary
PARAMS ((FILE *, const char *, expressionS
*));
70 /* Return a pointer to a new symbol. Die if we can't make a new
71 symbol. Fill in the symbol's values. Add symbol to end of symbol
74 This function should be called in the general case of creating a
75 symbol. However, if the output file symbol table has already been
76 set, and you are certain that this symbol won't be wanted in the
77 output file, you can call symbol_create. */
80 symbol_new (name
, segment
, valu
, frag
)
86 symbolS
*symbolP
= symbol_create (name
, segment
, valu
, frag
);
88 /* Link to end of symbol chain. */
91 extern int symbol_table_frozen
;
92 if (symbol_table_frozen
)
96 symbol_append (symbolP
, symbol_lastP
, &symbol_rootP
, &symbol_lastP
);
101 /* Save a symbol name on a permanent obstack, and convert it according
102 to the object file format. */
105 save_symbol_name (name
)
108 unsigned int name_length
;
111 name_length
= strlen (name
) + 1; /* +1 for \0. */
112 obstack_grow (¬es
, name
, name_length
);
113 ret
= obstack_finish (¬es
);
115 #ifdef STRIP_UNDERSCORE
120 #ifdef tc_canonicalize_symbol_name
121 ret
= tc_canonicalize_symbol_name (ret
);
124 if (! symbols_case_sensitive
)
128 for (s
= (unsigned char *) ret
; *s
!= '\0'; s
++)
137 symbol_create (name
, segment
, valu
, frag
)
138 const char *name
; /* It is copied, the caller can destroy/modify. */
139 segT segment
; /* Segment identifier (SEG_<something>). */
140 valueT valu
; /* Symbol value. */
141 fragS
*frag
; /* Associated fragment. */
143 char *preserved_copy_of_name
;
146 preserved_copy_of_name
= save_symbol_name (name
);
148 symbolP
= (symbolS
*) obstack_alloc (¬es
, sizeof (symbolS
));
150 /* symbol must be born in some fixed state. This seems as good as any. */
151 memset (symbolP
, 0, sizeof (symbolS
));
154 symbolP
->bsym
= bfd_make_empty_symbol (stdoutput
);
155 if (symbolP
->bsym
== NULL
)
156 as_perror ("%s", "bfd_make_empty_symbol");
157 symbolP
->bsym
->udata
.p
= (PTR
) symbolP
;
159 S_SET_NAME (symbolP
, preserved_copy_of_name
);
161 S_SET_SEGMENT (symbolP
, segment
);
162 S_SET_VALUE (symbolP
, valu
);
163 symbol_clear_list_pointers (symbolP
);
165 symbolP
->sy_frag
= frag
;
166 #ifndef BFD_ASSEMBLER
167 symbolP
->sy_number
= ~0;
168 symbolP
->sy_name_offset
= (unsigned int) ~0;
171 obj_symbol_new_hook (symbolP
);
173 #ifdef tc_symbol_new_hook
174 tc_symbol_new_hook (symbolP
);
182 /* Local symbol support. If we can get away with it, we keep only a
183 small amount of information for local symbols. */
185 static struct local_symbol
*local_symbol_make
PARAMS ((const char *, segT
,
187 static symbolS
*local_symbol_convert
PARAMS ((struct local_symbol
*));
189 /* Used for statistics. */
191 static unsigned long local_symbol_count
;
192 static unsigned long local_symbol_conversion_count
;
194 /* This macro is called with a symbol argument passed by reference.
195 It returns whether this is a local symbol. If necessary, it
196 changes its argument to the real symbol. */
198 #define LOCAL_SYMBOL_CHECK(s) \
200 ? (local_symbol_converted_p ((struct local_symbol *) s) \
201 ? (s = local_symbol_get_real_symbol ((struct local_symbol *) s), \
206 /* Create a local symbol and insert it into the local hash table. */
208 static struct local_symbol
*
209 local_symbol_make (name
, section
, offset
, frag
)
216 struct local_symbol
*ret
;
218 ++local_symbol_count
;
220 name_copy
= save_symbol_name (name
);
222 ret
= (struct local_symbol
*) obstack_alloc (¬es
, sizeof *ret
);
223 ret
->lsy_marker
= NULL
;
224 ret
->lsy_name
= name_copy
;
225 ret
->lsy_section
= section
;
226 local_symbol_set_frag (ret
, frag
);
227 ret
->lsy_offset
= offset
;
229 hash_jam (local_hash
, name_copy
, (PTR
) ret
);
234 /* Convert a local symbol into a real symbol. Note that we do not
235 reclaim the space used by the local symbol. */
238 local_symbol_convert (locsym
)
239 struct local_symbol
*locsym
;
243 assert (locsym
->lsy_marker
== NULL
);
244 if (local_symbol_converted_p (locsym
))
245 return local_symbol_get_real_symbol (locsym
);
247 ++local_symbol_conversion_count
;
249 ret
= symbol_new (locsym
->lsy_name
, locsym
->lsy_section
, locsym
->lsy_offset
,
250 local_symbol_get_frag (locsym
));
252 if (local_symbol_resolved_p (locsym
))
253 ret
->sy_resolved
= 1;
255 /* Local symbols are always either defined or used. */
258 #ifdef TC_LOCAL_SYMFIELD_CONVERT
259 TC_LOCAL_SYMFIELD_CONVERT (locsym
, ret
);
262 symbol_table_insert (ret
);
264 local_symbol_mark_converted (locsym
);
265 local_symbol_set_real_symbol (locsym
, ret
);
267 hash_jam (local_hash
, locsym
->lsy_name
, NULL
);
272 #else /* ! BFD_ASSEMBLER */
274 #define LOCAL_SYMBOL_CHECK(s) 0
275 #define local_symbol_convert(s) ((symbolS *) s)
277 #endif /* ! BFD_ASSEMBLER */
279 /* We have just seen "<name>:".
280 Creates a struct symbol unless it already exists.
282 Gripes if we are redefining a symbol incompatibly (and ignores it). */
285 colon (sym_name
) /* Just seen "x:" - rattle symbols & frags. */
286 const char *sym_name
; /* Symbol name, as a cannonical string. */
287 /* We copy this string: OK to alter later. */
289 register symbolS
*symbolP
; /* Symbol we are working with. */
291 /* Sun local labels go out of scope whenever a non-local symbol is
293 if (LOCAL_LABELS_DOLLAR
)
298 local
= bfd_is_local_label_name (stdoutput
, sym_name
);
300 local
= LOCAL_LABEL (sym_name
);
304 dollar_label_clear ();
307 #ifndef WORKING_DOT_WORD
308 if (new_broken_words
)
310 struct broken_word
*a
;
315 extern const int md_short_jump_size
;
316 extern const int md_long_jump_size
;
317 possible_bytes
= (md_short_jump_size
318 + new_broken_words
* md_long_jump_size
);
321 frag_opcode
= frag_var (rs_broken_word
,
325 (symbolS
*) broken_words
,
329 /* We want to store the pointer to where to insert the jump
330 table in the fr_opcode of the rs_broken_word frag. This
331 requires a little hackery. */
333 && (frag_tmp
->fr_type
!= rs_broken_word
334 || frag_tmp
->fr_opcode
))
335 frag_tmp
= frag_tmp
->fr_next
;
337 frag_tmp
->fr_opcode
= frag_opcode
;
338 new_broken_words
= 0;
340 for (a
= broken_words
; a
&& a
->dispfrag
== 0; a
= a
->next_broken_word
)
341 a
->dispfrag
= frag_tmp
;
343 #endif /* WORKING_DOT_WORD */
345 if ((symbolP
= symbol_find (sym_name
)) != 0)
347 #ifdef RESOLVE_SYMBOL_REDEFINITION
348 if (RESOLVE_SYMBOL_REDEFINITION (symbolP
))
351 /* Now check for undefined symbols. */
352 if (LOCAL_SYMBOL_CHECK (symbolP
))
355 struct local_symbol
*locsym
= (struct local_symbol
*) symbolP
;
357 if (locsym
->lsy_section
!= undefined_section
358 && (local_symbol_get_frag (locsym
) != frag_now
359 || locsym
->lsy_section
!= now_seg
360 || locsym
->lsy_offset
!= frag_now_fix ()))
362 as_bad (_("Symbol %s already defined."), sym_name
);
366 locsym
->lsy_section
= now_seg
;
367 local_symbol_set_frag (locsym
, frag_now
);
368 locsym
->lsy_offset
= frag_now_fix ();
371 else if (!S_IS_DEFINED (symbolP
) || S_IS_COMMON (symbolP
))
373 if (S_GET_VALUE (symbolP
) == 0)
375 symbolP
->sy_frag
= frag_now
;
377 S_SET_OTHER (symbolP
, const_flag
);
379 S_SET_VALUE (symbolP
, (valueT
) frag_now_fix ());
380 S_SET_SEGMENT (symbolP
, now_seg
);
383 #endif /* if we have one, it better be zero. */
388 /* There are still several cases to check:
390 A .comm/.lcomm symbol being redefined as initialized
393 A .comm/.lcomm symbol being redefined with a larger
396 This only used to be allowed on VMS gas, but Sun cc
397 on the sparc also depends on it. */
399 if (((!S_IS_DEBUG (symbolP
)
400 && (!S_IS_DEFINED (symbolP
) || S_IS_COMMON (symbolP
))
401 && S_IS_EXTERNAL (symbolP
))
402 || S_GET_SEGMENT (symbolP
) == bss_section
)
403 && (now_seg
== data_section
404 || now_seg
== S_GET_SEGMENT (symbolP
)))
406 /* Select which of the 2 cases this is. */
407 if (now_seg
!= data_section
)
409 /* New .comm for prev .comm symbol.
411 If the new size is larger we just change its
412 value. If the new size is smaller, we ignore
414 if (S_GET_VALUE (symbolP
)
415 < ((unsigned) frag_now_fix ()))
417 S_SET_VALUE (symbolP
, (valueT
) frag_now_fix ());
422 /* It is a .comm/.lcomm being converted to initialized
424 symbolP
->sy_frag
= frag_now
;
426 S_SET_OTHER (symbolP
, const_flag
);
428 S_SET_VALUE (symbolP
, (valueT
) frag_now_fix ());
429 S_SET_SEGMENT (symbolP
, now_seg
); /* Keep N_EXT bit. */
434 #if (!defined (OBJ_AOUT) && !defined (OBJ_MAYBE_AOUT) \
435 && !defined (OBJ_BOUT) && !defined (OBJ_MAYBE_BOUT))
436 static const char *od_buf
= "";
441 if (OUTPUT_FLAVOR
== bfd_target_aout_flavour
)
443 sprintf(od_buf
, "%d.%d.",
444 S_GET_OTHER (symbolP
),
445 S_GET_DESC (symbolP
));
447 as_bad (_("Symbol \"%s\" is already defined as \"%s\"/%s%ld."),
449 segment_name (S_GET_SEGMENT (symbolP
)),
451 (long) S_GET_VALUE (symbolP
));
453 } /* if the undefined symbol has no value */
457 /* Don't blow up if the definition is the same. */
458 if (!(frag_now
== symbolP
->sy_frag
459 && S_GET_VALUE (symbolP
) == frag_now_fix ()
460 && S_GET_SEGMENT (symbolP
) == now_seg
))
461 as_bad (_("Symbol %s already defined."), sym_name
);
466 else if (! flag_keep_locals
&& bfd_is_local_label_name (stdoutput
, sym_name
))
468 symbolP
= (symbolS
*) local_symbol_make (sym_name
, now_seg
,
469 (valueT
) frag_now_fix (),
472 #endif /* BFD_ASSEMBLER */
475 symbolP
= symbol_new (sym_name
, now_seg
, (valueT
) frag_now_fix (),
478 S_SET_OTHER (symbolP
, const_flag
);
481 symbol_table_insert (symbolP
);
484 if (mri_common_symbol
!= NULL
)
486 /* This symbol is actually being defined within an MRI common
487 section. This requires special handling. */
488 if (LOCAL_SYMBOL_CHECK (symbolP
))
489 symbolP
= local_symbol_convert ((struct local_symbol
*) symbolP
);
490 symbolP
->sy_value
.X_op
= O_symbol
;
491 symbolP
->sy_value
.X_add_symbol
= mri_common_symbol
;
492 symbolP
->sy_value
.X_add_number
= S_GET_VALUE (mri_common_symbol
);
493 symbolP
->sy_frag
= &zero_address_frag
;
494 S_SET_SEGMENT (symbolP
, expr_section
);
495 symbolP
->sy_mri_common
= 1;
499 tc_frob_label (symbolP
);
501 #ifdef obj_frob_label
502 obj_frob_label (symbolP
);
508 /* Die if we can't insert the symbol. */
511 symbol_table_insert (symbolP
)
514 register const char *error_string
;
517 know (S_GET_NAME (symbolP
));
519 if (LOCAL_SYMBOL_CHECK (symbolP
))
521 error_string
= hash_jam (local_hash
, S_GET_NAME (symbolP
),
523 if (error_string
!= NULL
)
524 as_fatal (_("Inserting \"%s\" into symbol table failed: %s"),
525 S_GET_NAME (symbolP
), error_string
);
529 if ((error_string
= hash_jam (sy_hash
, S_GET_NAME (symbolP
), (PTR
) symbolP
)))
531 as_fatal (_("Inserting \"%s\" into symbol table failed: %s"),
532 S_GET_NAME (symbolP
), error_string
);
536 /* If a symbol name does not exist, create it as undefined, and insert
537 it into the symbol table. Return a pointer to it. */
540 symbol_find_or_make (name
)
543 register symbolS
*symbolP
;
545 symbolP
= symbol_find (name
);
550 if (! flag_keep_locals
&& bfd_is_local_label_name (stdoutput
, name
))
552 symbolP
= md_undefined_symbol ((char *) name
);
556 symbolP
= (symbolS
*) local_symbol_make (name
, undefined_section
,
563 symbolP
= symbol_make (name
);
565 symbol_table_insert (symbolP
);
566 } /* if symbol wasn't found */
577 /* Let the machine description default it, e.g. for register names. */
578 symbolP
= md_undefined_symbol ((char *) name
);
581 symbolP
= symbol_new (name
, undefined_section
, (valueT
) 0, &zero_address_frag
);
586 /* Implement symbol table lookup.
587 In: A symbol's name as a string: '\0' can't be part of a symbol name.
588 Out: NULL if the name was not in the symbol table, else the address
589 of a struct symbol associated with that name. */
595 #ifdef STRIP_UNDERSCORE
596 return (symbol_find_base (name
, 1));
597 #else /* STRIP_UNDERSCORE */
598 return (symbol_find_base (name
, 0));
599 #endif /* STRIP_UNDERSCORE */
603 symbol_find_base (name
, strip_underscore
)
605 int strip_underscore
;
607 if (strip_underscore
&& *name
== '_')
610 #ifdef tc_canonicalize_symbol_name
613 size_t len
= strlen (name
) + 1;
615 copy
= (char *) alloca (len
);
616 memcpy (copy
, name
, len
);
617 name
= tc_canonicalize_symbol_name (copy
);
621 if (! symbols_case_sensitive
)
628 name
= copy
= (char *) alloca (strlen (name
) + 1);
630 while ((c
= *orig
++) != '\0')
641 struct local_symbol
*locsym
;
643 locsym
= (struct local_symbol
*) hash_find (local_hash
, name
);
645 return (symbolS
*) locsym
;
649 return ((symbolS
*) hash_find (sy_hash
, name
));
652 /* Once upon a time, symbols were kept in a singly linked list. At
653 least coff needs to be able to rearrange them from time to time, for
654 which a doubly linked list is much more convenient. Loic did these
655 as macros which seemed dangerous to me so they're now functions.
658 /* Link symbol ADDME after symbol TARGET in the chain. */
661 symbol_append (addme
, target
, rootPP
, lastPP
)
667 if (LOCAL_SYMBOL_CHECK (addme
))
669 if (target
!= NULL
&& LOCAL_SYMBOL_CHECK (target
))
674 know (*rootPP
== NULL
);
675 know (*lastPP
== NULL
);
676 addme
->sy_next
= NULL
;
677 #ifdef SYMBOLS_NEED_BACKPOINTERS
678 addme
->sy_previous
= NULL
;
683 } /* if the list is empty */
685 if (target
->sy_next
!= NULL
)
687 #ifdef SYMBOLS_NEED_BACKPOINTERS
688 target
->sy_next
->sy_previous
= addme
;
689 #endif /* SYMBOLS_NEED_BACKPOINTERS */
693 know (*lastPP
== target
);
695 } /* if we have a next */
697 addme
->sy_next
= target
->sy_next
;
698 target
->sy_next
= addme
;
700 #ifdef SYMBOLS_NEED_BACKPOINTERS
701 addme
->sy_previous
= target
;
702 #endif /* SYMBOLS_NEED_BACKPOINTERS */
704 debug_verify_symchain (symbol_rootP
, symbol_lastP
);
707 /* Set the chain pointers of SYMBOL to null. */
710 symbol_clear_list_pointers (symbolP
)
713 if (LOCAL_SYMBOL_CHECK (symbolP
))
715 symbolP
->sy_next
= NULL
;
716 #ifdef SYMBOLS_NEED_BACKPOINTERS
717 symbolP
->sy_previous
= NULL
;
721 #ifdef SYMBOLS_NEED_BACKPOINTERS
722 /* Remove SYMBOLP from the list. */
725 symbol_remove (symbolP
, rootPP
, lastPP
)
730 if (LOCAL_SYMBOL_CHECK (symbolP
))
733 if (symbolP
== *rootPP
)
735 *rootPP
= symbolP
->sy_next
;
736 } /* if it was the root */
738 if (symbolP
== *lastPP
)
740 *lastPP
= symbolP
->sy_previous
;
741 } /* if it was the tail */
743 if (symbolP
->sy_next
!= NULL
)
745 symbolP
->sy_next
->sy_previous
= symbolP
->sy_previous
;
748 if (symbolP
->sy_previous
!= NULL
)
750 symbolP
->sy_previous
->sy_next
= symbolP
->sy_next
;
753 debug_verify_symchain (*rootPP
, *lastPP
);
756 /* Link symbol ADDME before symbol TARGET in the chain. */
759 symbol_insert (addme
, target
, rootPP
, lastPP
)
763 symbolS
**lastPP ATTRIBUTE_UNUSED
;
765 if (LOCAL_SYMBOL_CHECK (addme
))
767 if (LOCAL_SYMBOL_CHECK (target
))
770 if (target
->sy_previous
!= NULL
)
772 target
->sy_previous
->sy_next
= addme
;
776 know (*rootPP
== target
);
780 addme
->sy_previous
= target
->sy_previous
;
781 target
->sy_previous
= addme
;
782 addme
->sy_next
= target
;
784 debug_verify_symchain (*rootPP
, *lastPP
);
787 #endif /* SYMBOLS_NEED_BACKPOINTERS */
790 verify_symbol_chain (rootP
, lastP
)
794 symbolS
*symbolP
= rootP
;
799 for (; symbol_next (symbolP
) != NULL
; symbolP
= symbol_next (symbolP
))
802 assert (symbolP
->bsym
!= NULL
);
804 #ifdef SYMBOLS_NEED_BACKPOINTERS
805 assert (symbolP
->sy_next
->sy_previous
== symbolP
);
807 /* Walk the list anyways, to make sure pointers are still good. */
809 #endif /* SYMBOLS_NEED_BACKPOINTERS */
812 assert (lastP
== symbolP
);
816 verify_symbol_chain_2 (sym
)
819 symbolS
*p
= sym
, *n
= sym
;
820 #ifdef SYMBOLS_NEED_BACKPOINTERS
821 while (symbol_previous (p
))
822 p
= symbol_previous (p
);
824 while (symbol_next (n
))
826 verify_symbol_chain (p
, n
);
829 /* Resolve the value of a symbol. This is called during the final
830 pass over the symbol table to resolve any symbols with complex
834 resolve_symbol_value (symp
, finalize
)
843 if (LOCAL_SYMBOL_CHECK (symp
))
845 struct local_symbol
*locsym
= (struct local_symbol
*) symp
;
847 if (local_symbol_resolved_p (locsym
))
848 return locsym
->lsy_offset
/ bfd_octets_per_byte (stdoutput
);
850 final_val
= (local_symbol_get_frag (locsym
)->fr_address
851 + locsym
->lsy_offset
) / bfd_octets_per_byte (stdoutput
);
855 locsym
->lsy_offset
= final_val
;
856 local_symbol_mark_resolved (locsym
);
863 if (symp
->sy_resolved
)
865 if (symp
->sy_value
.X_op
== O_constant
)
866 return (valueT
) symp
->sy_value
.X_add_number
;
872 final_seg
= S_GET_SEGMENT (symp
);
873 /* Expressions aren't really symbols, so don't finalize their values
874 until relaxation is complete. */
875 if (final_seg
== expr_section
&& finalize
!= 2)
878 if (symp
->sy_resolving
)
881 as_bad (_("Symbol definition loop encountered at %s"),
888 symbolS
*add_symbol
, *op_symbol
;
890 segT seg_left
, seg_right
;
893 symp
->sy_resolving
= 1;
895 /* Help out with CSE. */
896 add_symbol
= symp
->sy_value
.X_add_symbol
;
897 op_symbol
= symp
->sy_value
.X_op_symbol
;
898 final_val
= symp
->sy_value
.X_add_number
;
899 op
= symp
->sy_value
.X_op
;
912 final_val
+= symp
->sy_frag
->fr_address
/ OCTETS_PER_BYTE
;
913 if (final_seg
== expr_section
)
914 final_seg
= absolute_section
;
920 left
= resolve_symbol_value (add_symbol
, finalize
);
923 if (symp
->sy_mri_common
)
925 /* This is a symbol inside an MRI common section. The
926 relocation routines are going to handle it specially.
927 Don't change the value. */
928 resolved
= symbol_resolved_p (add_symbol
);
932 if (finalize
&& final_val
== 0)
934 if (LOCAL_SYMBOL_CHECK (add_symbol
))
935 add_symbol
= local_symbol_convert ((struct local_symbol
*)
937 copy_symbol_attributes (symp
, add_symbol
);
940 /* If we have equated this symbol to an undefined symbol, we
941 keep X_op set to O_symbol, and we don't change
942 X_add_number. This permits the routine which writes out
943 relocation to detect this case, and convert the
944 relocation to be against the symbol to which this symbol
946 if (! S_IS_DEFINED (add_symbol
) || S_IS_COMMON (add_symbol
))
950 S_SET_SEGMENT (symp
, S_GET_SEGMENT (add_symbol
));
951 symp
->sy_value
.X_op
= O_symbol
;
952 symp
->sy_value
.X_add_symbol
= add_symbol
;
953 symp
->sy_value
.X_add_number
= final_val
;
956 resolved
= symbol_resolved_p (add_symbol
);
957 goto exit_dont_set_value
;
961 final_val
+= symp
->sy_frag
->fr_address
+ left
;
962 if (final_seg
== expr_section
|| final_seg
== undefined_section
)
963 final_seg
= S_GET_SEGMENT (add_symbol
);
966 resolved
= symbol_resolved_p (add_symbol
);
972 left
= resolve_symbol_value (add_symbol
, finalize
);
976 else if (op
== O_logical_not
)
981 final_val
+= left
+ symp
->sy_frag
->fr_address
;
982 if (final_seg
== expr_section
|| final_seg
== undefined_section
)
983 final_seg
= absolute_section
;
985 resolved
= symbol_resolved_p (add_symbol
);
993 case O_bit_inclusive_or
:
995 case O_bit_exclusive_or
:
1007 left
= resolve_symbol_value (add_symbol
, finalize
);
1008 right
= resolve_symbol_value (op_symbol
, finalize
);
1009 seg_left
= S_GET_SEGMENT (add_symbol
);
1010 seg_right
= S_GET_SEGMENT (op_symbol
);
1012 /* Simplify addition or subtraction of a constant by folding the
1013 constant into X_add_number. */
1014 if (op
== O_add
|| op
== O_subtract
)
1016 if (seg_right
== absolute_section
)
1026 else if (seg_left
== absolute_section
&& op
== O_add
)
1030 add_symbol
= op_symbol
;
1037 /* Subtraction is permitted if both operands are in the same
1038 section. Otherwise, both operands must be absolute. We
1039 already handled the case of addition or subtraction of a
1040 constant above. This will probably need to be changed
1041 for an object file format which supports arbitrary
1042 expressions, such as IEEE-695. */
1043 /* Don't emit messages unless we're finalizing the symbol value,
1044 otherwise we may get the same message multiple times. */
1045 if ((seg_left
!= absolute_section
1046 || seg_right
!= absolute_section
)
1047 && (op
!= O_subtract
1048 || seg_left
!= seg_right
1049 || seg_left
== undefined_section
)
1055 if (expr_symbol_where (symp
, &file
, &line
))
1057 if (seg_left
== undefined_section
)
1058 as_bad_where (file
, line
,
1059 _("undefined symbol %s in operation"),
1060 S_GET_NAME (symp
->sy_value
.X_add_symbol
));
1061 if (seg_right
== undefined_section
)
1062 as_bad_where (file
, line
,
1063 _("undefined symbol %s in operation"),
1064 S_GET_NAME (symp
->sy_value
.X_op_symbol
));
1065 if (seg_left
!= undefined_section
1066 && seg_right
!= undefined_section
)
1067 as_bad_where (file
, line
,
1068 _("invalid section for operation"));
1072 if (seg_left
== undefined_section
)
1073 as_bad (_("undefined symbol %s in operation setting %s"),
1074 S_GET_NAME (symp
->sy_value
.X_add_symbol
),
1076 if (seg_right
== undefined_section
)
1077 as_bad (_("undefined symbol %s in operation setting %s"),
1078 S_GET_NAME (symp
->sy_value
.X_op_symbol
),
1080 if (seg_left
!= undefined_section
1081 && seg_right
!= undefined_section
)
1082 as_bad (_("invalid section for operation setting %s"),
1087 /* Check for division by zero. */
1088 if ((op
== O_divide
|| op
== O_modulus
) && right
== 0)
1090 /* If seg_right is not absolute_section, then we've
1091 already issued a warning about using a bad symbol. */
1092 if (seg_right
== absolute_section
&& finalize
)
1097 if (expr_symbol_where (symp
, &file
, &line
))
1098 as_bad_where (file
, line
, _("division by zero"));
1100 as_bad (_("division by zero when setting %s"),
1107 switch (symp
->sy_value
.X_op
)
1109 case O_multiply
: left
*= right
; break;
1110 case O_divide
: left
/= right
; break;
1111 case O_modulus
: left
%= right
; break;
1112 case O_left_shift
: left
<<= right
; break;
1113 case O_right_shift
: left
>>= right
; break;
1114 case O_bit_inclusive_or
: left
|= right
; break;
1115 case O_bit_or_not
: left
|= ~right
; break;
1116 case O_bit_exclusive_or
: left
^= right
; break;
1117 case O_bit_and
: left
&= right
; break;
1118 case O_add
: left
+= right
; break;
1119 case O_subtract
: left
-= right
; break;
1120 case O_eq
: left
= left
== right
? ~ (offsetT
) 0 : 0; break;
1121 case O_ne
: left
= left
!= right
? ~ (offsetT
) 0 : 0; break;
1122 case O_lt
: left
= left
< right
? ~ (offsetT
) 0 : 0; break;
1123 case O_le
: left
= left
<= right
? ~ (offsetT
) 0 : 0; break;
1124 case O_ge
: left
= left
>= right
? ~ (offsetT
) 0 : 0; break;
1125 case O_gt
: left
= left
> right
? ~ (offsetT
) 0 : 0; break;
1126 case O_logical_and
: left
= left
&& right
; break;
1127 case O_logical_or
: left
= left
|| right
; break;
1131 final_val
+= symp
->sy_frag
->fr_address
+ left
;
1132 if (final_seg
== expr_section
|| final_seg
== undefined_section
)
1133 final_seg
= absolute_section
;
1134 resolved
= (symbol_resolved_p (add_symbol
)
1135 && symbol_resolved_p (op_symbol
));
1141 /* Give an error (below) if not in expr_section. We don't
1142 want to worry about expr_section symbols, because they
1143 are fictional (they are created as part of expression
1144 resolution), and any problems may not actually mean
1149 symp
->sy_resolving
= 0;
1154 S_SET_VALUE (symp
, final_val
);
1156 #if defined (OBJ_AOUT) && ! defined (BFD_ASSEMBLER)
1157 /* The old a.out backend does not handle S_SET_SEGMENT correctly
1158 for a stab symbol, so we use this bad hack. */
1159 if (final_seg
!= S_GET_SEGMENT (symp
))
1161 S_SET_SEGMENT (symp
, final_seg
);
1164 exit_dont_set_value
:
1165 /* Don't worry if we can't resolve an expr_section symbol. */
1169 symp
->sy_resolved
= 1;
1170 else if (S_GET_SEGMENT (symp
) != expr_section
)
1172 as_bad (_("can't resolve value for symbol \"%s\""),
1174 symp
->sy_resolved
= 1;
1181 #ifdef BFD_ASSEMBLER
1183 static void resolve_local_symbol
PARAMS ((const char *, PTR
));
1185 /* A static function passed to hash_traverse. */
1188 resolve_local_symbol (key
, value
)
1189 const char *key ATTRIBUTE_UNUSED
;
1193 resolve_symbol_value (value
, finalize_syms
);
1198 /* Resolve all local symbols. */
1201 resolve_local_symbol_values ()
1203 #ifdef BFD_ASSEMBLER
1204 hash_traverse (local_hash
, resolve_local_symbol
);
1208 /* Dollar labels look like a number followed by a dollar sign. Eg, "42$".
1209 They are *really* local. That is, they go out of scope whenever we see a
1210 label that isn't local. Also, like fb labels, there can be multiple
1211 instances of a dollar label. Therefor, we name encode each instance with
1212 the instance number, keep a list of defined symbols separate from the real
1213 symbol table, and we treat these buggers as a sparse array. */
1215 static long *dollar_labels
;
1216 static long *dollar_label_instances
;
1217 static char *dollar_label_defines
;
1218 static unsigned long dollar_label_count
;
1219 static unsigned long dollar_label_max
;
1222 dollar_label_defined (label
)
1227 know ((dollar_labels
!= NULL
) || (dollar_label_count
== 0));
1229 for (i
= dollar_labels
; i
< dollar_labels
+ dollar_label_count
; ++i
)
1231 return dollar_label_defines
[i
- dollar_labels
];
1233 /* If we get here, label isn't defined. */
1238 dollar_label_instance (label
)
1243 know ((dollar_labels
!= NULL
) || (dollar_label_count
== 0));
1245 for (i
= dollar_labels
; i
< dollar_labels
+ dollar_label_count
; ++i
)
1247 return (dollar_label_instances
[i
- dollar_labels
]);
1249 /* If we get here, we haven't seen the label before.
1250 Therefore its instance count is zero. */
1255 dollar_label_clear ()
1257 memset (dollar_label_defines
, '\0', (unsigned int) dollar_label_count
);
1260 #define DOLLAR_LABEL_BUMP_BY 10
1263 define_dollar_label (label
)
1268 for (i
= dollar_labels
; i
< dollar_labels
+ dollar_label_count
; ++i
)
1271 ++dollar_label_instances
[i
- dollar_labels
];
1272 dollar_label_defines
[i
- dollar_labels
] = 1;
1276 /* If we get to here, we don't have label listed yet. */
1278 if (dollar_labels
== NULL
)
1280 dollar_labels
= (long *) xmalloc (DOLLAR_LABEL_BUMP_BY
* sizeof (long));
1281 dollar_label_instances
= (long *) xmalloc (DOLLAR_LABEL_BUMP_BY
* sizeof (long));
1282 dollar_label_defines
= xmalloc (DOLLAR_LABEL_BUMP_BY
);
1283 dollar_label_max
= DOLLAR_LABEL_BUMP_BY
;
1284 dollar_label_count
= 0;
1286 else if (dollar_label_count
== dollar_label_max
)
1288 dollar_label_max
+= DOLLAR_LABEL_BUMP_BY
;
1289 dollar_labels
= (long *) xrealloc ((char *) dollar_labels
,
1290 dollar_label_max
* sizeof (long));
1291 dollar_label_instances
= (long *) xrealloc ((char *) dollar_label_instances
,
1292 dollar_label_max
* sizeof (long));
1293 dollar_label_defines
= xrealloc (dollar_label_defines
, dollar_label_max
);
1294 } /* if we needed to grow */
1296 dollar_labels
[dollar_label_count
] = label
;
1297 dollar_label_instances
[dollar_label_count
] = 1;
1298 dollar_label_defines
[dollar_label_count
] = 1;
1299 ++dollar_label_count
;
1302 /* Caller must copy returned name: we re-use the area for the next name.
1304 The mth occurence of label n: is turned into the symbol "Ln^Am"
1305 where n is the label number and m is the instance number. "L" makes
1306 it a label discarded unless debugging and "^A"('\1') ensures no
1307 ordinary symbol SHOULD get the same name as a local label
1308 symbol. The first "4:" is "L4^A1" - the m numbers begin at 1.
1310 fb labels get the same treatment, except that ^B is used in place
1313 char * /* Return local label name. */
1314 dollar_label_name (n
, augend
)
1315 register long n
; /* we just saw "n$:" : n a number. */
1316 register int augend
; /* 0 for current instance, 1 for new instance. */
1319 /* Returned to caller, then copied. Used for created names ("4f"). */
1320 static char symbol_name_build
[24];
1323 char symbol_name_temporary
[20]; /* Build up a number, BACKWARDS. */
1326 know (augend
== 0 || augend
== 1);
1327 p
= symbol_name_build
;
1328 #ifdef LOCAL_LABEL_PREFIX
1329 *p
++ = LOCAL_LABEL_PREFIX
;
1333 /* Next code just does sprintf( {}, "%d", n); */
1335 q
= symbol_name_temporary
;
1336 for (*q
++ = 0, i
= n
; i
; ++q
)
1341 while ((*p
= *--q
) != '\0')
1344 *p
++ = DOLLAR_LABEL_CHAR
; /* ^A */
1346 /* Instance number. */
1347 q
= symbol_name_temporary
;
1348 for (*q
++ = 0, i
= dollar_label_instance (n
) + augend
; i
; ++q
)
1353 while ((*p
++ = *--q
) != '\0');;
1355 /* The label, as a '\0' ended string, starts at symbol_name_build. */
1356 return symbol_name_build
;
1359 /* Sombody else's idea of local labels. They are made by "n:" where n
1360 is any decimal digit. Refer to them with
1361 "nb" for previous (backward) n:
1362 or "nf" for next (forward) n:.
1364 We do a little better and let n be any number, not just a single digit, but
1365 since the other guy's assembler only does ten, we treat the first ten
1368 Like someone else's assembler, we have one set of local label counters for
1369 entire assembly, not one set per (sub)segment like in most assemblers. This
1370 implies that one can refer to a label in another segment, and indeed some
1371 crufty compilers have done just that.
1373 Since there could be a LOT of these things, treat them as a sparse
1376 #define FB_LABEL_SPECIAL (10)
1378 static long fb_low_counter
[FB_LABEL_SPECIAL
];
1379 static long *fb_labels
;
1380 static long *fb_label_instances
;
1381 static long fb_label_count
;
1382 static long fb_label_max
;
1384 /* This must be more than FB_LABEL_SPECIAL. */
1385 #define FB_LABEL_BUMP_BY (FB_LABEL_SPECIAL + 6)
1390 memset ((void *) fb_low_counter
, '\0', sizeof (fb_low_counter
));
1393 /* Add one to the instance number of this fb label. */
1396 fb_label_instance_inc (label
)
1401 if (label
< FB_LABEL_SPECIAL
)
1403 ++fb_low_counter
[label
];
1407 if (fb_labels
!= NULL
)
1409 for (i
= fb_labels
+ FB_LABEL_SPECIAL
;
1410 i
< fb_labels
+ fb_label_count
; ++i
)
1414 ++fb_label_instances
[i
- fb_labels
];
1416 } /* if we find it */
1417 } /* for each existing label */
1420 /* If we get to here, we don't have label listed yet. */
1422 if (fb_labels
== NULL
)
1424 fb_labels
= (long *) xmalloc (FB_LABEL_BUMP_BY
* sizeof (long));
1425 fb_label_instances
= (long *) xmalloc (FB_LABEL_BUMP_BY
* sizeof (long));
1426 fb_label_max
= FB_LABEL_BUMP_BY
;
1427 fb_label_count
= FB_LABEL_SPECIAL
;
1430 else if (fb_label_count
== fb_label_max
)
1432 fb_label_max
+= FB_LABEL_BUMP_BY
;
1433 fb_labels
= (long *) xrealloc ((char *) fb_labels
,
1434 fb_label_max
* sizeof (long));
1435 fb_label_instances
= (long *) xrealloc ((char *) fb_label_instances
,
1436 fb_label_max
* sizeof (long));
1437 } /* if we needed to grow */
1439 fb_labels
[fb_label_count
] = label
;
1440 fb_label_instances
[fb_label_count
] = 1;
1445 fb_label_instance (label
)
1450 if (label
< FB_LABEL_SPECIAL
)
1452 return (fb_low_counter
[label
]);
1455 if (fb_labels
!= NULL
)
1457 for (i
= fb_labels
+ FB_LABEL_SPECIAL
;
1458 i
< fb_labels
+ fb_label_count
; ++i
)
1462 return (fb_label_instances
[i
- fb_labels
]);
1463 } /* if we find it */
1464 } /* for each existing label */
1467 /* We didn't find the label, so this must be a reference to the
1472 /* Caller must copy returned name: we re-use the area for the next name.
1474 The mth occurence of label n: is turned into the symbol "Ln^Bm"
1475 where n is the label number and m is the instance number. "L" makes
1476 it a label discarded unless debugging and "^B"('\2') ensures no
1477 ordinary symbol SHOULD get the same name as a local label
1478 symbol. The first "4:" is "L4^B1" - the m numbers begin at 1.
1480 dollar labels get the same treatment, except that ^A is used in
1483 char * /* Return local label name. */
1484 fb_label_name (n
, augend
)
1485 long n
; /* We just saw "n:", "nf" or "nb" : n a number. */
1486 long augend
; /* 0 for nb, 1 for n:, nf. */
1489 /* Returned to caller, then copied. Used for created names ("4f"). */
1490 static char symbol_name_build
[24];
1493 char symbol_name_temporary
[20]; /* Build up a number, BACKWARDS. */
1496 know (augend
== 0 || augend
== 1);
1497 p
= symbol_name_build
;
1498 #ifdef LOCAL_LABEL_PREFIX
1499 *p
++ = LOCAL_LABEL_PREFIX
;
1503 /* Next code just does sprintf( {}, "%d", n); */
1505 q
= symbol_name_temporary
;
1506 for (*q
++ = 0, i
= n
; i
; ++q
)
1511 while ((*p
= *--q
) != '\0')
1514 *p
++ = LOCAL_LABEL_CHAR
; /* ^B */
1516 /* Instance number. */
1517 q
= symbol_name_temporary
;
1518 for (*q
++ = 0, i
= fb_label_instance (n
) + augend
; i
; ++q
)
1523 while ((*p
++ = *--q
) != '\0');;
1525 /* The label, as a '\0' ended string, starts at symbol_name_build. */
1526 return (symbol_name_build
);
1529 /* Decode name that may have been generated by foo_label_name() above.
1530 If the name wasn't generated by foo_label_name(), then return it
1531 unaltered. This is used for error messages. */
1534 decode_local_label_name (s
)
1538 char *symbol_decode
;
1540 int instance_number
;
1542 const char *message_format
;
1545 #ifdef LOCAL_LABEL_PREFIX
1546 if (s
[index
] == LOCAL_LABEL_PREFIX
)
1550 if (s
[index
] != 'L')
1553 for (label_number
= 0, p
= s
+ index
+ 1; isdigit ((unsigned char) *p
); ++p
)
1554 label_number
= (10 * label_number
) + *p
- '0';
1556 if (*p
== DOLLAR_LABEL_CHAR
)
1558 else if (*p
== LOCAL_LABEL_CHAR
)
1563 for (instance_number
= 0, p
++; isdigit ((unsigned char) *p
); ++p
)
1564 instance_number
= (10 * instance_number
) + *p
- '0';
1566 message_format
= _("\"%d\" (instance number %d of a %s label)");
1567 symbol_decode
= obstack_alloc (¬es
, strlen (message_format
) + 30);
1568 sprintf (symbol_decode
, message_format
, label_number
, instance_number
, type
);
1570 return symbol_decode
;
1573 /* Get the value of a symbol. */
1579 #ifdef BFD_ASSEMBLER
1580 if (LOCAL_SYMBOL_CHECK (s
))
1581 return ((struct local_symbol
*) s
)->lsy_offset
;
1584 if (!s
->sy_resolved
&& s
->sy_value
.X_op
!= O_constant
)
1586 valueT val
= resolve_symbol_value (s
, finalize_syms
);
1587 if (finalize_syms
!= 2 && S_GET_SEGMENT (s
) == expr_section
)
1590 if (s
->sy_value
.X_op
!= O_constant
)
1592 static symbolS
*recur
;
1594 /* FIXME: In non BFD assemblers, S_IS_DEFINED and S_IS_COMMON
1595 may call S_GET_VALUE. We use a static symbol to avoid the
1596 immediate recursion. */
1598 return (valueT
) s
->sy_value
.X_add_number
;
1600 if (! s
->sy_resolved
1601 || s
->sy_value
.X_op
!= O_symbol
1602 || (S_IS_DEFINED (s
) && ! S_IS_COMMON (s
)))
1603 as_bad (_("Attempt to get value of unresolved symbol %s"),
1607 return (valueT
) s
->sy_value
.X_add_number
;
1610 /* Set the value of a symbol. */
1613 S_SET_VALUE (s
, val
)
1617 #ifdef BFD_ASSEMBLER
1618 if (LOCAL_SYMBOL_CHECK (s
))
1620 ((struct local_symbol
*) s
)->lsy_offset
= val
;
1625 s
->sy_value
.X_op
= O_constant
;
1626 s
->sy_value
.X_add_number
= (offsetT
) val
;
1627 s
->sy_value
.X_unsigned
= 0;
1631 copy_symbol_attributes (dest
, src
)
1632 symbolS
*dest
, *src
;
1634 if (LOCAL_SYMBOL_CHECK (dest
))
1635 dest
= local_symbol_convert ((struct local_symbol
*) dest
);
1636 if (LOCAL_SYMBOL_CHECK (src
))
1637 src
= local_symbol_convert ((struct local_symbol
*) src
);
1639 #ifdef BFD_ASSEMBLER
1640 /* In an expression, transfer the settings of these flags.
1641 The user can override later, of course. */
1642 #define COPIED_SYMFLAGS (BSF_FUNCTION | BSF_OBJECT)
1643 dest
->bsym
->flags
|= src
->bsym
->flags
& COPIED_SYMFLAGS
;
1646 #ifdef OBJ_COPY_SYMBOL_ATTRIBUTES
1647 OBJ_COPY_SYMBOL_ATTRIBUTES (dest
, src
);
1651 #ifdef BFD_ASSEMBLER
1659 if (LOCAL_SYMBOL_CHECK (s
))
1662 flags
= s
->bsym
->flags
;
1664 return (flags
& BSF_FUNCTION
) != 0;
1673 if (LOCAL_SYMBOL_CHECK (s
))
1676 flags
= s
->bsym
->flags
;
1679 if ((flags
& BSF_LOCAL
) && (flags
& BSF_GLOBAL
))
1682 return (flags
& BSF_GLOBAL
) != 0;
1689 if (LOCAL_SYMBOL_CHECK (s
))
1691 return (s
->bsym
->flags
& BSF_WEAK
) != 0;
1698 if (LOCAL_SYMBOL_CHECK (s
))
1700 return bfd_is_com_section (s
->bsym
->section
);
1707 if (LOCAL_SYMBOL_CHECK (s
))
1708 return ((struct local_symbol
*) s
)->lsy_section
!= undefined_section
;
1709 return s
->bsym
->section
!= undefined_section
;
1716 if (LOCAL_SYMBOL_CHECK (s
))
1718 if (s
->bsym
->flags
& BSF_DEBUGGING
)
1730 if (LOCAL_SYMBOL_CHECK (s
))
1733 flags
= s
->bsym
->flags
;
1736 if ((flags
& BSF_LOCAL
) && (flags
& BSF_GLOBAL
))
1739 if (bfd_get_section (s
->bsym
) == reg_section
)
1742 if (flag_strip_local_absolute
1743 && (flags
& BSF_GLOBAL
) == 0
1744 && bfd_get_section (s
->bsym
) == absolute_section
)
1747 name
= S_GET_NAME (s
);
1748 return (name
!= NULL
1750 && (strchr (name
, DOLLAR_LABEL_CHAR
)
1751 || strchr (name
, LOCAL_LABEL_CHAR
)
1752 || (! flag_keep_locals
1753 && (bfd_is_local_label (stdoutput
, s
->bsym
)
1756 && name
[1] == '?')))));
1763 return S_IS_EXTERNAL (s
);
1770 return S_GET_NAME (s
) == 0;
1777 if (LOCAL_SYMBOL_CHECK (s
))
1778 return ((struct local_symbol
*) s
)->lsy_name
;
1779 return s
->bsym
->name
;
1786 if (LOCAL_SYMBOL_CHECK (s
))
1787 return ((struct local_symbol
*) s
)->lsy_section
;
1788 return s
->bsym
->section
;
1792 S_SET_SEGMENT (s
, seg
)
1796 /* Don't reassign section symbols. The direct reason is to prevent seg
1797 faults assigning back to const global symbols such as *ABS*, but it
1798 shouldn't happen anyway. */
1800 if (LOCAL_SYMBOL_CHECK (s
))
1802 if (seg
== reg_section
)
1803 s
= local_symbol_convert ((struct local_symbol
*) s
);
1806 ((struct local_symbol
*) s
)->lsy_section
= seg
;
1811 if (s
->bsym
->flags
& BSF_SECTION_SYM
)
1813 if (s
->bsym
->section
!= seg
)
1817 s
->bsym
->section
= seg
;
1824 if (LOCAL_SYMBOL_CHECK (s
))
1825 s
= local_symbol_convert ((struct local_symbol
*) s
);
1826 if ((s
->bsym
->flags
& BSF_WEAK
) != 0)
1828 /* Let .weak override .global. */
1831 s
->bsym
->flags
|= BSF_GLOBAL
;
1832 s
->bsym
->flags
&= ~(BSF_LOCAL
| BSF_WEAK
);
1836 S_CLEAR_EXTERNAL (s
)
1839 if (LOCAL_SYMBOL_CHECK (s
))
1841 if ((s
->bsym
->flags
& BSF_WEAK
) != 0)
1843 /* Let .weak override. */
1846 s
->bsym
->flags
|= BSF_LOCAL
;
1847 s
->bsym
->flags
&= ~(BSF_GLOBAL
| BSF_WEAK
);
1854 if (LOCAL_SYMBOL_CHECK (s
))
1855 s
= local_symbol_convert ((struct local_symbol
*) s
);
1856 s
->bsym
->flags
|= BSF_WEAK
;
1857 s
->bsym
->flags
&= ~(BSF_GLOBAL
| BSF_LOCAL
);
1861 S_SET_NAME (s
, name
)
1865 if (LOCAL_SYMBOL_CHECK (s
))
1867 ((struct local_symbol
*) s
)->lsy_name
= name
;
1870 s
->bsym
->name
= name
;
1872 #endif /* BFD_ASSEMBLER */
1874 #ifdef SYMBOLS_NEED_BACKPOINTERS
1876 /* Return the previous symbol in a chain. */
1882 if (LOCAL_SYMBOL_CHECK (s
))
1884 return s
->sy_previous
;
1887 #endif /* SYMBOLS_NEED_BACKPOINTERS */
1889 /* Return the next symbol in a chain. */
1895 if (LOCAL_SYMBOL_CHECK (s
))
1900 /* Return a pointer to the value of a symbol as an expression. */
1903 symbol_get_value_expression (s
)
1906 if (LOCAL_SYMBOL_CHECK (s
))
1907 s
= local_symbol_convert ((struct local_symbol
*) s
);
1908 return &s
->sy_value
;
1911 /* Set the value of a symbol to an expression. */
1914 symbol_set_value_expression (s
, exp
)
1916 const expressionS
*exp
;
1918 if (LOCAL_SYMBOL_CHECK (s
))
1919 s
= local_symbol_convert ((struct local_symbol
*) s
);
1923 /* Set the frag of a symbol. */
1926 symbol_set_frag (s
, f
)
1930 #ifdef BFD_ASSEMBLER
1931 if (LOCAL_SYMBOL_CHECK (s
))
1933 local_symbol_set_frag ((struct local_symbol
*) s
, f
);
1940 /* Return the frag of a symbol. */
1946 #ifdef BFD_ASSEMBLER
1947 if (LOCAL_SYMBOL_CHECK (s
))
1948 return local_symbol_get_frag ((struct local_symbol
*) s
);
1953 /* Mark a symbol as having been used. */
1956 symbol_mark_used (s
)
1959 if (LOCAL_SYMBOL_CHECK (s
))
1964 /* Clear the mark of whether a symbol has been used. */
1967 symbol_clear_used (s
)
1970 if (LOCAL_SYMBOL_CHECK (s
))
1971 s
= local_symbol_convert ((struct local_symbol
*) s
);
1975 /* Return whether a symbol has been used. */
1981 if (LOCAL_SYMBOL_CHECK (s
))
1986 /* Mark a symbol as having been used in a reloc. */
1989 symbol_mark_used_in_reloc (s
)
1992 if (LOCAL_SYMBOL_CHECK (s
))
1993 s
= local_symbol_convert ((struct local_symbol
*) s
);
1994 s
->sy_used_in_reloc
= 1;
1997 /* Clear the mark of whether a symbol has been used in a reloc. */
2000 symbol_clear_used_in_reloc (s
)
2003 if (LOCAL_SYMBOL_CHECK (s
))
2005 s
->sy_used_in_reloc
= 0;
2008 /* Return whether a symbol has been used in a reloc. */
2011 symbol_used_in_reloc_p (s
)
2014 if (LOCAL_SYMBOL_CHECK (s
))
2016 return s
->sy_used_in_reloc
;
2019 /* Mark a symbol as an MRI common symbol. */
2022 symbol_mark_mri_common (s
)
2025 if (LOCAL_SYMBOL_CHECK (s
))
2026 s
= local_symbol_convert ((struct local_symbol
*) s
);
2027 s
->sy_mri_common
= 1;
2030 /* Clear the mark of whether a symbol is an MRI common symbol. */
2033 symbol_clear_mri_common (s
)
2036 if (LOCAL_SYMBOL_CHECK (s
))
2038 s
->sy_mri_common
= 0;
2041 /* Return whether a symbol is an MRI common symbol. */
2044 symbol_mri_common_p (s
)
2047 if (LOCAL_SYMBOL_CHECK (s
))
2049 return s
->sy_mri_common
;
2052 /* Mark a symbol as having been written. */
2055 symbol_mark_written (s
)
2058 if (LOCAL_SYMBOL_CHECK (s
))
2063 /* Clear the mark of whether a symbol has been written. */
2066 symbol_clear_written (s
)
2069 if (LOCAL_SYMBOL_CHECK (s
))
2074 /* Return whether a symbol has been written. */
2077 symbol_written_p (s
)
2080 if (LOCAL_SYMBOL_CHECK (s
))
2085 /* Mark a symbol has having been resolved. */
2088 symbol_mark_resolved (s
)
2091 #ifdef BFD_ASSEMBLER
2092 if (LOCAL_SYMBOL_CHECK (s
))
2094 local_symbol_mark_resolved ((struct local_symbol
*) s
);
2101 /* Return whether a symbol has been resolved. */
2104 symbol_resolved_p (s
)
2107 #ifdef BFD_ASSEMBLER
2108 if (LOCAL_SYMBOL_CHECK (s
))
2109 return local_symbol_resolved_p ((struct local_symbol
*) s
);
2111 return s
->sy_resolved
;
2114 /* Return whether a symbol is a section symbol. */
2117 symbol_section_p (s
)
2118 symbolS
*s ATTRIBUTE_UNUSED
;
2120 if (LOCAL_SYMBOL_CHECK (s
))
2122 #ifdef BFD_ASSEMBLER
2123 return (s
->bsym
->flags
& BSF_SECTION_SYM
) != 0;
2130 /* Return whether a symbol is equated to another symbol. */
2133 symbol_equated_p (s
)
2136 if (LOCAL_SYMBOL_CHECK (s
))
2138 return s
->sy_value
.X_op
== O_symbol
;
2141 /* Return whether a symbol has a constant value. */
2144 symbol_constant_p (s
)
2147 if (LOCAL_SYMBOL_CHECK (s
))
2149 return s
->sy_value
.X_op
== O_constant
;
2152 #ifdef BFD_ASSEMBLER
2154 /* Return the BFD symbol for a symbol. */
2157 symbol_get_bfdsym (s
)
2160 if (LOCAL_SYMBOL_CHECK (s
))
2161 s
= local_symbol_convert ((struct local_symbol
*) s
);
2165 /* Set the BFD symbol for a symbol. */
2168 symbol_set_bfdsym (s
, bsym
)
2172 if (LOCAL_SYMBOL_CHECK (s
))
2173 s
= local_symbol_convert ((struct local_symbol
*) s
);
2177 #endif /* BFD_ASSEMBLER */
2179 #ifdef OBJ_SYMFIELD_TYPE
2181 /* Get a pointer to the object format information for a symbol. */
2187 if (LOCAL_SYMBOL_CHECK (s
))
2188 s
= local_symbol_convert ((struct local_symbol
*) s
);
2192 /* Set the object format information for a symbol. */
2195 symbol_set_obj (s
, o
)
2197 OBJ_SYMFIELD_TYPE
*o
;
2199 if (LOCAL_SYMBOL_CHECK (s
))
2200 s
= local_symbol_convert ((struct local_symbol
*) s
);
2204 #endif /* OBJ_SYMFIELD_TYPE */
2206 #ifdef TC_SYMFIELD_TYPE
2208 /* Get a pointer to the processor information for a symbol. */
2214 if (LOCAL_SYMBOL_CHECK (s
))
2215 s
= local_symbol_convert ((struct local_symbol
*) s
);
2219 /* Set the processor information for a symbol. */
2222 symbol_set_tc (s
, o
)
2224 TC_SYMFIELD_TYPE
*o
;
2226 if (LOCAL_SYMBOL_CHECK (s
))
2227 s
= local_symbol_convert ((struct local_symbol
*) s
);
2231 #endif /* TC_SYMFIELD_TYPE */
2236 symbol_lastP
= NULL
;
2237 symbol_rootP
= NULL
; /* In case we have 0 symbols (!!) */
2238 sy_hash
= hash_new ();
2239 #ifdef BFD_ASSEMBLER
2240 local_hash
= hash_new ();
2243 memset ((char *) (&abs_symbol
), '\0', sizeof (abs_symbol
));
2244 #ifdef BFD_ASSEMBLER
2245 #if defined (EMIT_SECTION_SYMBOLS) || !defined (RELOC_REQUIRES_SYMBOL)
2246 abs_symbol
.bsym
= bfd_abs_section
.symbol
;
2249 /* Can't initialise a union. Sigh. */
2250 S_SET_SEGMENT (&abs_symbol
, absolute_section
);
2252 abs_symbol
.sy_value
.X_op
= O_constant
;
2253 abs_symbol
.sy_frag
= &zero_address_frag
;
2255 if (LOCAL_LABELS_FB
)
2261 /* Maximum indent level.
2262 Available for modification inside a gdb session. */
2263 int max_indent_level
= 8;
2270 printf ("%*s", indent_level
* 4, "");
2276 print_symbol_value_1 (file
, sym
)
2280 const char *name
= S_GET_NAME (sym
);
2281 if (!name
|| !name
[0])
2283 fprintf (file
, "sym %lx %s", (unsigned long) sym
, name
);
2285 if (LOCAL_SYMBOL_CHECK (sym
))
2287 #ifdef BFD_ASSEMBLER
2288 struct local_symbol
*locsym
= (struct local_symbol
*) sym
;
2289 if (local_symbol_get_frag (locsym
) != &zero_address_frag
2290 && local_symbol_get_frag (locsym
) != NULL
)
2291 fprintf (file
, " frag %lx", (long) local_symbol_get_frag (locsym
));
2292 if (local_symbol_resolved_p (locsym
))
2293 fprintf (file
, " resolved");
2294 fprintf (file
, " local");
2299 if (sym
->sy_frag
!= &zero_address_frag
)
2300 fprintf (file
, " frag %lx", (long) sym
->sy_frag
);
2302 fprintf (file
, " written");
2303 if (sym
->sy_resolved
)
2304 fprintf (file
, " resolved");
2305 else if (sym
->sy_resolving
)
2306 fprintf (file
, " resolving");
2307 if (sym
->sy_used_in_reloc
)
2308 fprintf (file
, " used-in-reloc");
2310 fprintf (file
, " used");
2311 if (S_IS_LOCAL (sym
))
2312 fprintf (file
, " local");
2313 if (S_IS_EXTERN (sym
))
2314 fprintf (file
, " extern");
2315 if (S_IS_DEBUG (sym
))
2316 fprintf (file
, " debug");
2317 if (S_IS_DEFINED (sym
))
2318 fprintf (file
, " defined");
2320 fprintf (file
, " %s", segment_name (S_GET_SEGMENT (sym
)));
2321 if (symbol_resolved_p (sym
))
2323 segT s
= S_GET_SEGMENT (sym
);
2325 if (s
!= undefined_section
2326 && s
!= expr_section
)
2327 fprintf (file
, " %lx", (long) S_GET_VALUE (sym
));
2329 else if (indent_level
< max_indent_level
2330 && S_GET_SEGMENT (sym
) != undefined_section
)
2333 fprintf (file
, "\n%*s<", indent_level
* 4, "");
2334 #ifdef BFD_ASSEMBLER
2335 if (LOCAL_SYMBOL_CHECK (sym
))
2336 fprintf (file
, "constant %lx",
2337 (long) ((struct local_symbol
*) sym
)->lsy_offset
);
2340 print_expr_1 (file
, &sym
->sy_value
);
2341 fprintf (file
, ">");
2348 print_symbol_value (sym
)
2352 print_symbol_value_1 (stderr
, sym
);
2353 fprintf (stderr
, "\n");
2357 print_binary (file
, name
, exp
)
2363 fprintf (file
, "%s\n%*s<", name
, indent_level
* 4, "");
2364 print_symbol_value_1 (file
, exp
->X_add_symbol
);
2365 fprintf (file
, ">\n%*s<", indent_level
* 4, "");
2366 print_symbol_value_1 (file
, exp
->X_op_symbol
);
2367 fprintf (file
, ">");
2372 print_expr_1 (file
, exp
)
2376 fprintf (file
, "expr %lx ", (long) exp
);
2380 fprintf (file
, "illegal");
2383 fprintf (file
, "absent");
2386 fprintf (file
, "constant %lx", (long) exp
->X_add_number
);
2390 fprintf (file
, "symbol\n%*s<", indent_level
* 4, "");
2391 print_symbol_value_1 (file
, exp
->X_add_symbol
);
2392 fprintf (file
, ">");
2394 if (exp
->X_add_number
)
2395 fprintf (file
, "\n%*s%lx", indent_level
* 4, "",
2396 (long) exp
->X_add_number
);
2400 fprintf (file
, "register #%d", (int) exp
->X_add_number
);
2403 fprintf (file
, "big");
2406 fprintf (file
, "uminus -<");
2408 print_symbol_value_1 (file
, exp
->X_add_symbol
);
2409 fprintf (file
, ">");
2410 goto maybe_print_addnum
;
2412 fprintf (file
, "bit_not");
2415 print_binary (file
, "multiply", exp
);
2418 print_binary (file
, "divide", exp
);
2421 print_binary (file
, "modulus", exp
);
2424 print_binary (file
, "lshift", exp
);
2427 print_binary (file
, "rshift", exp
);
2429 case O_bit_inclusive_or
:
2430 print_binary (file
, "bit_ior", exp
);
2432 case O_bit_exclusive_or
:
2433 print_binary (file
, "bit_xor", exp
);
2436 print_binary (file
, "bit_and", exp
);
2439 print_binary (file
, "eq", exp
);
2442 print_binary (file
, "ne", exp
);
2445 print_binary (file
, "lt", exp
);
2448 print_binary (file
, "le", exp
);
2451 print_binary (file
, "ge", exp
);
2454 print_binary (file
, "gt", exp
);
2457 print_binary (file
, "logical_and", exp
);
2460 print_binary (file
, "logical_or", exp
);
2464 fprintf (file
, "add\n%*s<", indent_level
* 4, "");
2465 print_symbol_value_1 (file
, exp
->X_add_symbol
);
2466 fprintf (file
, ">\n%*s<", indent_level
* 4, "");
2467 print_symbol_value_1 (file
, exp
->X_op_symbol
);
2468 fprintf (file
, ">");
2469 goto maybe_print_addnum
;
2472 fprintf (file
, "subtract\n%*s<", indent_level
* 4, "");
2473 print_symbol_value_1 (file
, exp
->X_add_symbol
);
2474 fprintf (file
, ">\n%*s<", indent_level
* 4, "");
2475 print_symbol_value_1 (file
, exp
->X_op_symbol
);
2476 fprintf (file
, ">");
2477 goto maybe_print_addnum
;
2479 fprintf (file
, "{unknown opcode %d}", (int) exp
->X_op
);
2489 print_expr_1 (stderr
, exp
);
2490 fprintf (stderr
, "\n");
2494 symbol_print_statistics (file
)
2497 hash_print_statistics (file
, "symbol table", sy_hash
);
2498 #ifdef BFD_ASSEMBLER
2499 hash_print_statistics (file
, "mini local symbol table", local_hash
);
2500 fprintf (file
, "%lu mini local symbols created, %lu converted\n",
2501 local_symbol_count
, local_symbol_conversion_count
);