PR 12569
[binutils.git] / gas / symbols.c
blob91d0cdba21de27e031d5e498d212ad7c8073977e
1 /* symbols.c -symbol table-
2 Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 2011 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 3, or (at your option)
11 any later version.
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
21 02110-1301, USA. */
23 /* #define DEBUG_SYMS / * to debug symbol list maintenance. */
25 #include "as.h"
27 #include "safe-ctype.h"
28 #include "obstack.h" /* For "symbols.h" */
29 #include "subsegs.h"
31 #include "struc-symbol.h"
33 /* This is non-zero if symbols are case sensitive, which is the
34 default. */
35 int symbols_case_sensitive = 1;
37 #ifndef WORKING_DOT_WORD
38 extern int new_broken_words;
39 #endif
41 /* symbol-name => struct symbol pointer */
42 static struct hash_control *sy_hash;
44 /* Table of local symbols. */
45 static struct hash_control *local_hash;
47 /* Below are commented in "symbols.h". */
48 symbolS *symbol_rootP;
49 symbolS *symbol_lastP;
50 symbolS abs_symbol;
51 symbolS dot_symbol;
53 #ifdef DEBUG_SYMS
54 #define debug_verify_symchain verify_symbol_chain
55 #else
56 #define debug_verify_symchain(root, last) ((void) 0)
57 #endif
59 #define DOLLAR_LABEL_CHAR '\001'
60 #define LOCAL_LABEL_CHAR '\002'
62 struct obstack notes;
63 #ifdef TE_PE
64 /* The name of an external symbol which is
65 used to make weak PE symbol names unique. */
66 const char * an_external_name;
67 #endif
69 static char *save_symbol_name (const char *);
70 static void fb_label_init (void);
71 static long dollar_label_instance (long);
72 static long fb_label_instance (long);
74 static void print_binary (FILE *, const char *, expressionS *);
76 /* Return a pointer to a new symbol. Die if we can't make a new
77 symbol. Fill in the symbol's values. Add symbol to end of symbol
78 chain.
80 This function should be called in the general case of creating a
81 symbol. However, if the output file symbol table has already been
82 set, and you are certain that this symbol won't be wanted in the
83 output file, you can call symbol_create. */
85 symbolS *
86 symbol_new (const char *name, segT segment, valueT valu, fragS *frag)
88 symbolS *symbolP = symbol_create (name, segment, valu, frag);
90 /* Link to end of symbol chain. */
92 extern int symbol_table_frozen;
93 if (symbol_table_frozen)
94 abort ();
96 symbol_append (symbolP, symbol_lastP, &symbol_rootP, &symbol_lastP);
98 return symbolP;
101 /* Save a symbol name on a permanent obstack, and convert it according
102 to the object file format. */
104 static char *
105 save_symbol_name (const char *name)
107 unsigned int name_length;
108 char *ret;
110 name_length = strlen (name) + 1; /* +1 for \0. */
111 obstack_grow (&notes, name, name_length);
112 ret = (char *) obstack_finish (&notes);
114 #ifdef tc_canonicalize_symbol_name
115 ret = tc_canonicalize_symbol_name (ret);
116 #endif
118 if (! symbols_case_sensitive)
120 char *s;
122 for (s = ret; *s != '\0'; s++)
123 *s = TOUPPER (*s);
126 return ret;
129 symbolS *
130 symbol_create (const char *name, /* It is copied, the caller can destroy/modify. */
131 segT segment, /* Segment identifier (SEG_<something>). */
132 valueT valu, /* Symbol value. */
133 fragS *frag /* Associated fragment. */)
135 char *preserved_copy_of_name;
136 symbolS *symbolP;
138 preserved_copy_of_name = save_symbol_name (name);
140 symbolP = (symbolS *) obstack_alloc (&notes, sizeof (symbolS));
142 /* symbol must be born in some fixed state. This seems as good as any. */
143 memset (symbolP, 0, sizeof (symbolS));
145 symbolP->bsym = bfd_make_empty_symbol (stdoutput);
146 if (symbolP->bsym == NULL)
147 as_fatal ("bfd_make_empty_symbol: %s", bfd_errmsg (bfd_get_error ()));
148 S_SET_NAME (symbolP, preserved_copy_of_name);
150 S_SET_SEGMENT (symbolP, segment);
151 S_SET_VALUE (symbolP, valu);
152 symbol_clear_list_pointers (symbolP);
154 symbolP->sy_frag = frag;
156 obj_symbol_new_hook (symbolP);
158 #ifdef tc_symbol_new_hook
159 tc_symbol_new_hook (symbolP);
160 #endif
162 return symbolP;
166 /* Local symbol support. If we can get away with it, we keep only a
167 small amount of information for local symbols. */
169 static symbolS *local_symbol_convert (struct local_symbol *);
171 /* Used for statistics. */
173 static unsigned long local_symbol_count;
174 static unsigned long local_symbol_conversion_count;
176 /* This macro is called with a symbol argument passed by reference.
177 It returns whether this is a local symbol. If necessary, it
178 changes its argument to the real symbol. */
180 #define LOCAL_SYMBOL_CHECK(s) \
181 (s->bsym == NULL \
182 ? (local_symbol_converted_p ((struct local_symbol *) s) \
183 ? (s = local_symbol_get_real_symbol ((struct local_symbol *) s), \
184 0) \
185 : 1) \
186 : 0)
188 /* Create a local symbol and insert it into the local hash table. */
190 static struct local_symbol *
191 local_symbol_make (const char *name, segT section, valueT val, fragS *frag)
193 char *name_copy;
194 struct local_symbol *ret;
196 ++local_symbol_count;
198 name_copy = save_symbol_name (name);
200 ret = (struct local_symbol *) obstack_alloc (&notes, sizeof *ret);
201 ret->lsy_marker = NULL;
202 ret->lsy_name = name_copy;
203 ret->lsy_section = section;
204 local_symbol_set_frag (ret, frag);
205 ret->lsy_value = val;
207 hash_jam (local_hash, name_copy, (void *) ret);
209 return ret;
212 /* Convert a local symbol into a real symbol. Note that we do not
213 reclaim the space used by the local symbol. */
215 static symbolS *
216 local_symbol_convert (struct local_symbol *locsym)
218 symbolS *ret;
220 gas_assert (locsym->lsy_marker == NULL);
221 if (local_symbol_converted_p (locsym))
222 return local_symbol_get_real_symbol (locsym);
224 ++local_symbol_conversion_count;
226 ret = symbol_new (locsym->lsy_name, locsym->lsy_section, locsym->lsy_value,
227 local_symbol_get_frag (locsym));
229 if (local_symbol_resolved_p (locsym))
230 ret->sy_resolved = 1;
232 /* Local symbols are always either defined or used. */
233 ret->sy_used = 1;
235 #ifdef TC_LOCAL_SYMFIELD_CONVERT
236 TC_LOCAL_SYMFIELD_CONVERT (locsym, ret);
237 #endif
239 symbol_table_insert (ret);
241 local_symbol_mark_converted (locsym);
242 local_symbol_set_real_symbol (locsym, ret);
244 hash_jam (local_hash, locsym->lsy_name, NULL);
246 return ret;
249 static void
250 define_sym_at_dot (symbolS *symbolP)
252 symbolP->sy_frag = frag_now;
253 #ifdef OBJ_VMS
254 S_SET_OTHER (symbolP, const_flag);
255 #endif
256 S_SET_VALUE (symbolP, (valueT) frag_now_fix ());
257 S_SET_SEGMENT (symbolP, now_seg);
260 /* We have just seen "<name>:".
261 Creates a struct symbol unless it already exists.
263 Gripes if we are redefining a symbol incompatibly (and ignores it). */
265 symbolS *
266 colon (/* Just seen "x:" - rattle symbols & frags. */
267 const char *sym_name /* Symbol name, as a cannonical string. */
268 /* We copy this string: OK to alter later. */)
270 register symbolS *symbolP; /* Symbol we are working with. */
272 /* Sun local labels go out of scope whenever a non-local symbol is
273 defined. */
274 if (LOCAL_LABELS_DOLLAR
275 && !bfd_is_local_label_name (stdoutput, sym_name))
276 dollar_label_clear ();
278 #ifndef WORKING_DOT_WORD
279 if (new_broken_words)
281 struct broken_word *a;
282 int possible_bytes;
283 fragS *frag_tmp;
284 char *frag_opcode;
286 if (now_seg == absolute_section)
288 as_bad (_("cannot define symbol `%s' in absolute section"), sym_name);
289 return NULL;
292 possible_bytes = (md_short_jump_size
293 + new_broken_words * md_long_jump_size);
295 frag_tmp = frag_now;
296 frag_opcode = frag_var (rs_broken_word,
297 possible_bytes,
298 possible_bytes,
299 (relax_substateT) 0,
300 (symbolS *) broken_words,
301 (offsetT) 0,
302 NULL);
304 /* We want to store the pointer to where to insert the jump
305 table in the fr_opcode of the rs_broken_word frag. This
306 requires a little hackery. */
307 while (frag_tmp
308 && (frag_tmp->fr_type != rs_broken_word
309 || frag_tmp->fr_opcode))
310 frag_tmp = frag_tmp->fr_next;
311 know (frag_tmp);
312 frag_tmp->fr_opcode = frag_opcode;
313 new_broken_words = 0;
315 for (a = broken_words; a && a->dispfrag == 0; a = a->next_broken_word)
316 a->dispfrag = frag_tmp;
318 #endif /* WORKING_DOT_WORD */
320 if ((symbolP = symbol_find (sym_name)) != 0)
322 S_CLEAR_WEAKREFR (symbolP);
323 #ifdef RESOLVE_SYMBOL_REDEFINITION
324 if (RESOLVE_SYMBOL_REDEFINITION (symbolP))
325 return symbolP;
326 #endif
327 /* Now check for undefined symbols. */
328 if (LOCAL_SYMBOL_CHECK (symbolP))
330 struct local_symbol *locsym = (struct local_symbol *) symbolP;
332 if (locsym->lsy_section != undefined_section
333 && (local_symbol_get_frag (locsym) != frag_now
334 || locsym->lsy_section != now_seg
335 || locsym->lsy_value != frag_now_fix ()))
337 as_bad (_("symbol `%s' is already defined"), sym_name);
338 return symbolP;
341 locsym->lsy_section = now_seg;
342 local_symbol_set_frag (locsym, frag_now);
343 locsym->lsy_value = frag_now_fix ();
345 else if (!(S_IS_DEFINED (symbolP) || symbol_equated_p (symbolP))
346 || S_IS_COMMON (symbolP)
347 || S_IS_VOLATILE (symbolP))
349 if (S_IS_VOLATILE (symbolP))
351 symbolP = symbol_clone (symbolP, 1);
352 S_SET_VALUE (symbolP, 0);
353 S_CLEAR_VOLATILE (symbolP);
355 if (S_GET_VALUE (symbolP) == 0)
357 define_sym_at_dot (symbolP);
358 #ifdef N_UNDF
359 know (N_UNDF == 0);
360 #endif /* if we have one, it better be zero. */
363 else
365 /* There are still several cases to check:
367 A .comm/.lcomm symbol being redefined as initialized
368 data is OK
370 A .comm/.lcomm symbol being redefined with a larger
371 size is also OK
373 This only used to be allowed on VMS gas, but Sun cc
374 on the sparc also depends on it. */
376 if (((!S_IS_DEBUG (symbolP)
377 && (!S_IS_DEFINED (symbolP) || S_IS_COMMON (symbolP))
378 && S_IS_EXTERNAL (symbolP))
379 || S_GET_SEGMENT (symbolP) == bss_section)
380 && (now_seg == data_section
381 || now_seg == bss_section
382 || now_seg == S_GET_SEGMENT (symbolP)))
384 /* Select which of the 2 cases this is. */
385 if (now_seg != data_section)
387 /* New .comm for prev .comm symbol.
389 If the new size is larger we just change its
390 value. If the new size is smaller, we ignore
391 this symbol. */
392 if (S_GET_VALUE (symbolP)
393 < ((unsigned) frag_now_fix ()))
395 S_SET_VALUE (symbolP, (valueT) frag_now_fix ());
398 else
400 /* It is a .comm/.lcomm being converted to initialized
401 data. */
402 define_sym_at_dot (symbolP);
405 else
407 #if (!defined (OBJ_AOUT) && !defined (OBJ_MAYBE_AOUT) \
408 && !defined (OBJ_BOUT) && !defined (OBJ_MAYBE_BOUT))
409 static const char *od_buf = "";
410 #else
411 char od_buf[100];
412 od_buf[0] = '\0';
413 if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
414 sprintf (od_buf, "%d.%d.",
415 S_GET_OTHER (symbolP),
416 S_GET_DESC (symbolP));
417 #endif
418 as_bad (_("symbol `%s' is already defined as \"%s\"/%s%ld"),
419 sym_name,
420 segment_name (S_GET_SEGMENT (symbolP)),
421 od_buf,
422 (long) S_GET_VALUE (symbolP));
424 } /* if the undefined symbol has no value */
426 else
428 /* Don't blow up if the definition is the same. */
429 if (!(frag_now == symbolP->sy_frag
430 && S_GET_VALUE (symbolP) == frag_now_fix ()
431 && S_GET_SEGMENT (symbolP) == now_seg))
433 as_bad (_("symbol `%s' is already defined"), sym_name);
434 symbolP = symbol_clone (symbolP, 0);
435 define_sym_at_dot (symbolP);
440 else if (! flag_keep_locals && bfd_is_local_label_name (stdoutput, sym_name))
442 symbolP = (symbolS *) local_symbol_make (sym_name, now_seg,
443 (valueT) frag_now_fix (),
444 frag_now);
446 else
448 symbolP = symbol_new (sym_name, now_seg, (valueT) frag_now_fix (),
449 frag_now);
450 #ifdef OBJ_VMS
451 S_SET_OTHER (symbolP, const_flag);
452 #endif /* OBJ_VMS */
454 symbol_table_insert (symbolP);
457 if (mri_common_symbol != NULL)
459 /* This symbol is actually being defined within an MRI common
460 section. This requires special handling. */
461 if (LOCAL_SYMBOL_CHECK (symbolP))
462 symbolP = local_symbol_convert ((struct local_symbol *) symbolP);
463 symbolP->sy_value.X_op = O_symbol;
464 symbolP->sy_value.X_add_symbol = mri_common_symbol;
465 symbolP->sy_value.X_add_number = S_GET_VALUE (mri_common_symbol);
466 symbolP->sy_frag = &zero_address_frag;
467 S_SET_SEGMENT (symbolP, expr_section);
468 symbolP->sy_mri_common = 1;
471 #ifdef tc_frob_label
472 tc_frob_label (symbolP);
473 #endif
474 #ifdef obj_frob_label
475 obj_frob_label (symbolP);
476 #endif
478 return symbolP;
481 /* Die if we can't insert the symbol. */
483 void
484 symbol_table_insert (symbolS *symbolP)
486 register const char *error_string;
488 know (symbolP);
489 know (S_GET_NAME (symbolP));
491 if (LOCAL_SYMBOL_CHECK (symbolP))
493 error_string = hash_jam (local_hash, S_GET_NAME (symbolP),
494 (void *) symbolP);
495 if (error_string != NULL)
496 as_fatal (_("inserting \"%s\" into symbol table failed: %s"),
497 S_GET_NAME (symbolP), error_string);
498 return;
501 if ((error_string = hash_jam (sy_hash, S_GET_NAME (symbolP), (void *) symbolP)))
503 as_fatal (_("inserting \"%s\" into symbol table failed: %s"),
504 S_GET_NAME (symbolP), error_string);
505 } /* on error */
508 /* If a symbol name does not exist, create it as undefined, and insert
509 it into the symbol table. Return a pointer to it. */
511 symbolS *
512 symbol_find_or_make (const char *name)
514 register symbolS *symbolP;
516 symbolP = symbol_find (name);
518 if (symbolP == NULL)
520 if (! flag_keep_locals && bfd_is_local_label_name (stdoutput, name))
522 symbolP = md_undefined_symbol ((char *) name);
523 if (symbolP != NULL)
524 return symbolP;
526 symbolP = (symbolS *) local_symbol_make (name, undefined_section,
527 (valueT) 0,
528 &zero_address_frag);
529 return symbolP;
532 symbolP = symbol_make (name);
534 symbol_table_insert (symbolP);
535 } /* if symbol wasn't found */
537 return (symbolP);
540 symbolS *
541 symbol_make (const char *name)
543 symbolS *symbolP;
545 /* Let the machine description default it, e.g. for register names. */
546 symbolP = md_undefined_symbol ((char *) name);
548 if (!symbolP)
549 symbolP = symbol_new (name, undefined_section, (valueT) 0, &zero_address_frag);
551 return (symbolP);
554 symbolS *
555 symbol_clone (symbolS *orgsymP, int replace)
557 symbolS *newsymP;
558 asymbol *bsymorg, *bsymnew;
560 /* Make sure we never clone the dot special symbol. */
561 gas_assert (orgsymP != &dot_symbol);
563 /* Running local_symbol_convert on a clone that's not the one currently
564 in local_hash would incorrectly replace the hash entry. Thus the
565 symbol must be converted here. Note that the rest of the function
566 depends on not encountering an unconverted symbol. */
567 if (LOCAL_SYMBOL_CHECK (orgsymP))
568 orgsymP = local_symbol_convert ((struct local_symbol *) orgsymP);
569 bsymorg = orgsymP->bsym;
571 newsymP = (symbolS *) obstack_alloc (&notes, sizeof (*newsymP));
572 *newsymP = *orgsymP;
573 bsymnew = bfd_make_empty_symbol (bfd_asymbol_bfd (bsymorg));
574 if (bsymnew == NULL)
575 as_fatal ("bfd_make_empty_symbol: %s", bfd_errmsg (bfd_get_error ()));
576 newsymP->bsym = bsymnew;
577 bsymnew->name = bsymorg->name;
578 bsymnew->flags = bsymorg->flags & ~BSF_SECTION_SYM;
579 bsymnew->section = bsymorg->section;
580 bfd_copy_private_symbol_data (bfd_asymbol_bfd (bsymorg), bsymorg,
581 bfd_asymbol_bfd (bsymnew), bsymnew);
583 #ifdef obj_symbol_clone_hook
584 obj_symbol_clone_hook (newsymP, orgsymP);
585 #endif
587 #ifdef tc_symbol_clone_hook
588 tc_symbol_clone_hook (newsymP, orgsymP);
589 #endif
591 if (replace)
593 if (symbol_rootP == orgsymP)
594 symbol_rootP = newsymP;
595 else if (orgsymP->sy_previous)
597 orgsymP->sy_previous->sy_next = newsymP;
598 orgsymP->sy_previous = NULL;
600 if (symbol_lastP == orgsymP)
601 symbol_lastP = newsymP;
602 else if (orgsymP->sy_next)
603 orgsymP->sy_next->sy_previous = newsymP;
605 /* Symbols that won't be output can't be external. */
606 S_CLEAR_EXTERNAL (orgsymP);
607 orgsymP->sy_previous = orgsymP->sy_next = orgsymP;
608 debug_verify_symchain (symbol_rootP, symbol_lastP);
610 symbol_table_insert (newsymP);
612 else
614 /* Symbols that won't be output can't be external. */
615 S_CLEAR_EXTERNAL (newsymP);
616 newsymP->sy_previous = newsymP->sy_next = newsymP;
619 return newsymP;
622 /* Referenced symbols, if they are forward references, need to be cloned
623 (without replacing the original) so that the value of the referenced
624 symbols at the point of use . */
626 #undef symbol_clone_if_forward_ref
627 symbolS *
628 symbol_clone_if_forward_ref (symbolS *symbolP, int is_forward)
630 if (symbolP && !LOCAL_SYMBOL_CHECK (symbolP))
632 symbolS *add_symbol = symbolP->sy_value.X_add_symbol;
633 symbolS *op_symbol = symbolP->sy_value.X_op_symbol;
635 if (symbolP->sy_forward_ref)
636 is_forward = 1;
638 if (is_forward)
640 /* assign_symbol() clones volatile symbols; pre-existing expressions
641 hold references to the original instance, but want the current
642 value. Just repeat the lookup. */
643 if (add_symbol && S_IS_VOLATILE (add_symbol))
644 add_symbol = symbol_find_exact (S_GET_NAME (add_symbol));
645 if (op_symbol && S_IS_VOLATILE (op_symbol))
646 op_symbol = symbol_find_exact (S_GET_NAME (op_symbol));
649 /* Re-using sy_resolving here, as this routine cannot get called from
650 symbol resolution code. */
651 if ((symbolP->bsym->section == expr_section || symbolP->sy_forward_ref)
652 && !symbolP->sy_resolving)
654 symbolP->sy_resolving = 1;
655 add_symbol = symbol_clone_if_forward_ref (add_symbol, is_forward);
656 op_symbol = symbol_clone_if_forward_ref (op_symbol, is_forward);
657 symbolP->sy_resolving = 0;
660 if (symbolP->sy_forward_ref
661 || add_symbol != symbolP->sy_value.X_add_symbol
662 || op_symbol != symbolP->sy_value.X_op_symbol)
664 if (symbolP != &dot_symbol)
666 symbolP = symbol_clone (symbolP, 0);
667 symbolP->sy_resolving = 0;
669 else
671 symbolP = symbol_temp_new_now ();
672 #ifdef tc_new_dot_label
673 tc_new_dot_label (symbolP);
674 #endif
678 symbolP->sy_value.X_add_symbol = add_symbol;
679 symbolP->sy_value.X_op_symbol = op_symbol;
682 return symbolP;
685 symbolS *
686 symbol_temp_new (segT seg, valueT ofs, fragS *frag)
688 return symbol_new (FAKE_LABEL_NAME, seg, ofs, frag);
691 symbolS *
692 symbol_temp_new_now (void)
694 return symbol_temp_new (now_seg, frag_now_fix (), frag_now);
697 symbolS *
698 symbol_temp_make (void)
700 return symbol_make (FAKE_LABEL_NAME);
703 /* Implement symbol table lookup.
704 In: A symbol's name as a string: '\0' can't be part of a symbol name.
705 Out: NULL if the name was not in the symbol table, else the address
706 of a struct symbol associated with that name. */
708 symbolS *
709 symbol_find_exact (const char *name)
711 return symbol_find_exact_noref (name, 0);
714 symbolS *
715 symbol_find_exact_noref (const char *name, int noref)
717 struct local_symbol *locsym;
718 symbolS* sym;
720 locsym = (struct local_symbol *) hash_find (local_hash, name);
721 if (locsym != NULL)
722 return (symbolS *) locsym;
724 sym = ((symbolS *) hash_find (sy_hash, name));
726 /* Any references to the symbol, except for the reference in
727 .weakref, must clear this flag, such that the symbol does not
728 turn into a weak symbol. Note that we don't have to handle the
729 local_symbol case, since a weakrefd is always promoted out of the
730 local_symbol table when it is turned into a weak symbol. */
731 if (sym && ! noref)
732 S_CLEAR_WEAKREFD (sym);
734 return sym;
737 symbolS *
738 symbol_find (const char *name)
740 return symbol_find_noref (name, 0);
743 symbolS *
744 symbol_find_noref (const char *name, int noref)
746 #ifdef tc_canonicalize_symbol_name
748 char *copy;
749 size_t len = strlen (name) + 1;
751 copy = (char *) alloca (len);
752 memcpy (copy, name, len);
753 name = tc_canonicalize_symbol_name (copy);
755 #endif
757 if (! symbols_case_sensitive)
759 char *copy;
760 const char *orig;
761 unsigned char c;
763 orig = name;
764 name = copy = (char *) alloca (strlen (name) + 1);
766 while ((c = *orig++) != '\0')
768 *copy++ = TOUPPER (c);
770 *copy = '\0';
773 return symbol_find_exact_noref (name, noref);
776 /* Once upon a time, symbols were kept in a singly linked list. At
777 least coff needs to be able to rearrange them from time to time, for
778 which a doubly linked list is much more convenient. Loic did these
779 as macros which seemed dangerous to me so they're now functions.
780 xoxorich. */
782 /* Link symbol ADDME after symbol TARGET in the chain. */
784 void
785 symbol_append (symbolS *addme, symbolS *target,
786 symbolS **rootPP, symbolS **lastPP)
788 if (LOCAL_SYMBOL_CHECK (addme))
789 abort ();
790 if (target != NULL && LOCAL_SYMBOL_CHECK (target))
791 abort ();
793 if (target == NULL)
795 know (*rootPP == NULL);
796 know (*lastPP == NULL);
797 addme->sy_next = NULL;
798 addme->sy_previous = NULL;
799 *rootPP = addme;
800 *lastPP = addme;
801 return;
802 } /* if the list is empty */
804 if (target->sy_next != NULL)
806 target->sy_next->sy_previous = addme;
808 else
810 know (*lastPP == target);
811 *lastPP = addme;
812 } /* if we have a next */
814 addme->sy_next = target->sy_next;
815 target->sy_next = addme;
816 addme->sy_previous = target;
818 debug_verify_symchain (symbol_rootP, symbol_lastP);
821 /* Set the chain pointers of SYMBOL to null. */
823 void
824 symbol_clear_list_pointers (symbolS *symbolP)
826 if (LOCAL_SYMBOL_CHECK (symbolP))
827 abort ();
828 symbolP->sy_next = NULL;
829 symbolP->sy_previous = NULL;
832 /* Remove SYMBOLP from the list. */
834 void
835 symbol_remove (symbolS *symbolP, symbolS **rootPP, symbolS **lastPP)
837 if (LOCAL_SYMBOL_CHECK (symbolP))
838 abort ();
840 if (symbolP == *rootPP)
842 *rootPP = symbolP->sy_next;
843 } /* if it was the root */
845 if (symbolP == *lastPP)
847 *lastPP = symbolP->sy_previous;
848 } /* if it was the tail */
850 if (symbolP->sy_next != NULL)
852 symbolP->sy_next->sy_previous = symbolP->sy_previous;
853 } /* if not last */
855 if (symbolP->sy_previous != NULL)
857 symbolP->sy_previous->sy_next = symbolP->sy_next;
858 } /* if not first */
860 debug_verify_symchain (*rootPP, *lastPP);
863 /* Link symbol ADDME before symbol TARGET in the chain. */
865 void
866 symbol_insert (symbolS *addme, symbolS *target,
867 symbolS **rootPP, symbolS **lastPP ATTRIBUTE_UNUSED)
869 if (LOCAL_SYMBOL_CHECK (addme))
870 abort ();
871 if (LOCAL_SYMBOL_CHECK (target))
872 abort ();
874 if (target->sy_previous != NULL)
876 target->sy_previous->sy_next = addme;
878 else
880 know (*rootPP == target);
881 *rootPP = addme;
882 } /* if not first */
884 addme->sy_previous = target->sy_previous;
885 target->sy_previous = addme;
886 addme->sy_next = target;
888 debug_verify_symchain (*rootPP, *lastPP);
891 void
892 verify_symbol_chain (symbolS *rootP, symbolS *lastP)
894 symbolS *symbolP = rootP;
896 if (symbolP == NULL)
897 return;
899 for (; symbol_next (symbolP) != NULL; symbolP = symbol_next (symbolP))
901 gas_assert (symbolP->bsym != NULL);
902 gas_assert (symbolP->sy_next->sy_previous == symbolP);
905 gas_assert (lastP == symbolP);
908 #ifdef OBJ_COMPLEX_RELC
910 static int
911 use_complex_relocs_for (symbolS * symp)
913 switch (symp->sy_value.X_op)
915 case O_constant:
916 return 0;
918 case O_symbol:
919 case O_symbol_rva:
920 case O_uminus:
921 case O_bit_not:
922 case O_logical_not:
923 if ( (S_IS_COMMON (symp->sy_value.X_add_symbol)
924 || S_IS_LOCAL (symp->sy_value.X_add_symbol))
926 (S_IS_DEFINED (symp->sy_value.X_add_symbol)
927 && S_GET_SEGMENT (symp->sy_value.X_add_symbol) != expr_section))
928 return 0;
929 break;
931 case O_multiply:
932 case O_divide:
933 case O_modulus:
934 case O_left_shift:
935 case O_right_shift:
936 case O_bit_inclusive_or:
937 case O_bit_or_not:
938 case O_bit_exclusive_or:
939 case O_bit_and:
940 case O_add:
941 case O_subtract:
942 case O_eq:
943 case O_ne:
944 case O_lt:
945 case O_le:
946 case O_ge:
947 case O_gt:
948 case O_logical_and:
949 case O_logical_or:
951 if ( (S_IS_COMMON (symp->sy_value.X_add_symbol)
952 || S_IS_LOCAL (symp->sy_value.X_add_symbol))
954 (S_IS_COMMON (symp->sy_value.X_op_symbol)
955 || S_IS_LOCAL (symp->sy_value.X_op_symbol))
957 && S_IS_DEFINED (symp->sy_value.X_add_symbol)
958 && S_IS_DEFINED (symp->sy_value.X_op_symbol)
959 && S_GET_SEGMENT (symp->sy_value.X_add_symbol) != expr_section
960 && S_GET_SEGMENT (symp->sy_value.X_op_symbol) != expr_section)
961 return 0;
962 break;
964 default:
965 break;
967 return 1;
969 #endif
971 static void
972 report_op_error (symbolS *symp, symbolS *left, operatorT op, symbolS *right)
974 char *file;
975 unsigned int line;
976 segT seg_left = left ? S_GET_SEGMENT (left) : 0;
977 segT seg_right = S_GET_SEGMENT (right);
978 const char *opname;
980 switch (op)
982 default:
983 abort ();
984 return;
986 case O_uminus: opname = "-"; break;
987 case O_bit_not: opname = "~"; break;
988 case O_logical_not: opname = "!"; break;
989 case O_multiply: opname = "*"; break;
990 case O_divide: opname = "/"; break;
991 case O_modulus: opname = "%"; break;
992 case O_left_shift: opname = "<<"; break;
993 case O_right_shift: opname = ">>"; break;
994 case O_bit_inclusive_or: opname = "|"; break;
995 case O_bit_or_not: opname = "|~"; break;
996 case O_bit_exclusive_or: opname = "^"; break;
997 case O_bit_and: opname = "&"; break;
998 case O_add: opname = "+"; break;
999 case O_subtract: opname = "-"; break;
1000 case O_eq: opname = "=="; break;
1001 case O_ne: opname = "!="; break;
1002 case O_lt: opname = "<"; break;
1003 case O_le: opname = "<="; break;
1004 case O_ge: opname = ">="; break;
1005 case O_gt: opname = ">"; break;
1006 case O_logical_and: opname = "&&"; break;
1007 case O_logical_or: opname = "||"; break;
1010 if (expr_symbol_where (symp, &file, &line))
1012 if (left)
1013 as_bad_where (file, line,
1014 _("invalid operands (%s and %s sections) for `%s'"),
1015 seg_left->name, seg_right->name, opname);
1016 else
1017 as_bad_where (file, line,
1018 _("invalid operand (%s section) for `%s'"),
1019 seg_right->name, opname);
1021 else
1023 const char *sname = S_GET_NAME (symp);
1025 if (left)
1026 as_bad (_("invalid operands (%s and %s sections) for `%s' when setting `%s'"),
1027 seg_left->name, seg_right->name, opname, sname);
1028 else
1029 as_bad (_("invalid operand (%s section) for `%s' when setting `%s'"),
1030 seg_right->name, opname, sname);
1034 /* Resolve the value of a symbol. This is called during the final
1035 pass over the symbol table to resolve any symbols with complex
1036 values. */
1038 valueT
1039 resolve_symbol_value (symbolS *symp)
1041 int resolved;
1042 valueT final_val = 0;
1043 segT final_seg;
1045 if (LOCAL_SYMBOL_CHECK (symp))
1047 struct local_symbol *locsym = (struct local_symbol *) symp;
1049 final_val = locsym->lsy_value;
1050 if (local_symbol_resolved_p (locsym))
1051 return final_val;
1053 final_val += local_symbol_get_frag (locsym)->fr_address / OCTETS_PER_BYTE;
1055 if (finalize_syms)
1057 locsym->lsy_value = final_val;
1058 local_symbol_mark_resolved (locsym);
1061 return final_val;
1064 if (symp->sy_resolved)
1066 if (symp->sy_value.X_op == O_constant)
1067 return (valueT) symp->sy_value.X_add_number;
1068 else
1069 return 0;
1072 resolved = 0;
1073 final_seg = S_GET_SEGMENT (symp);
1075 if (symp->sy_resolving)
1077 if (finalize_syms)
1078 as_bad (_("symbol definition loop encountered at `%s'"),
1079 S_GET_NAME (symp));
1080 final_val = 0;
1081 resolved = 1;
1083 #ifdef OBJ_COMPLEX_RELC
1084 else if (final_seg == expr_section
1085 && use_complex_relocs_for (symp))
1087 symbolS * relc_symbol = NULL;
1088 char * relc_symbol_name = NULL;
1090 relc_symbol_name = symbol_relc_make_expr (& symp->sy_value);
1092 /* For debugging, print out conversion input & output. */
1093 #ifdef DEBUG_SYMS
1094 print_expr (& symp->sy_value);
1095 if (relc_symbol_name)
1096 fprintf (stderr, "-> relc symbol: %s\n", relc_symbol_name);
1097 #endif
1099 if (relc_symbol_name != NULL)
1100 relc_symbol = symbol_new (relc_symbol_name, undefined_section,
1101 0, & zero_address_frag);
1103 if (relc_symbol == NULL)
1105 as_bad (_("cannot convert expression symbol %s to complex relocation"),
1106 S_GET_NAME (symp));
1107 resolved = 0;
1109 else
1111 symbol_table_insert (relc_symbol);
1113 /* S_CLEAR_EXTERNAL (relc_symbol); */
1114 if (symp->bsym->flags & BSF_SRELC)
1115 relc_symbol->bsym->flags |= BSF_SRELC;
1116 else
1117 relc_symbol->bsym->flags |= BSF_RELC;
1118 /* symp->bsym->flags |= BSF_RELC; */
1119 copy_symbol_attributes (symp, relc_symbol);
1120 symp->sy_value.X_op = O_symbol;
1121 symp->sy_value.X_add_symbol = relc_symbol;
1122 symp->sy_value.X_add_number = 0;
1123 resolved = 1;
1126 final_seg = undefined_section;
1127 goto exit_dont_set_value;
1129 #endif
1130 else
1132 symbolS *add_symbol, *op_symbol;
1133 offsetT left, right;
1134 segT seg_left, seg_right;
1135 operatorT op;
1136 int move_seg_ok;
1138 symp->sy_resolving = 1;
1140 /* Help out with CSE. */
1141 add_symbol = symp->sy_value.X_add_symbol;
1142 op_symbol = symp->sy_value.X_op_symbol;
1143 final_val = symp->sy_value.X_add_number;
1144 op = symp->sy_value.X_op;
1146 switch (op)
1148 default:
1149 BAD_CASE (op);
1150 break;
1152 case O_absent:
1153 final_val = 0;
1154 /* Fall through. */
1156 case O_constant:
1157 final_val += symp->sy_frag->fr_address / OCTETS_PER_BYTE;
1158 if (final_seg == expr_section)
1159 final_seg = absolute_section;
1160 /* Fall through. */
1162 case O_register:
1163 resolved = 1;
1164 break;
1166 case O_symbol:
1167 case O_symbol_rva:
1168 left = resolve_symbol_value (add_symbol);
1169 seg_left = S_GET_SEGMENT (add_symbol);
1170 if (finalize_syms)
1171 symp->sy_value.X_op_symbol = NULL;
1173 do_symbol:
1174 if (S_IS_WEAKREFR (symp))
1176 gas_assert (final_val == 0);
1177 if (S_IS_WEAKREFR (add_symbol))
1179 gas_assert (add_symbol->sy_value.X_op == O_symbol
1180 && add_symbol->sy_value.X_add_number == 0);
1181 add_symbol = add_symbol->sy_value.X_add_symbol;
1182 gas_assert (! S_IS_WEAKREFR (add_symbol));
1183 symp->sy_value.X_add_symbol = add_symbol;
1187 if (symp->sy_mri_common)
1189 /* This is a symbol inside an MRI common section. The
1190 relocation routines are going to handle it specially.
1191 Don't change the value. */
1192 resolved = symbol_resolved_p (add_symbol);
1193 break;
1196 if (finalize_syms && final_val == 0)
1198 if (LOCAL_SYMBOL_CHECK (add_symbol))
1199 add_symbol = local_symbol_convert ((struct local_symbol *)
1200 add_symbol);
1201 copy_symbol_attributes (symp, add_symbol);
1204 /* If we have equated this symbol to an undefined or common
1205 symbol, keep X_op set to O_symbol, and don't change
1206 X_add_number. This permits the routine which writes out
1207 relocation to detect this case, and convert the
1208 relocation to be against the symbol to which this symbol
1209 is equated. */
1210 if (! S_IS_DEFINED (add_symbol)
1211 #if defined (OBJ_COFF) && defined (TE_PE)
1212 || S_IS_WEAK (add_symbol)
1213 #endif
1214 || S_IS_COMMON (add_symbol))
1216 if (finalize_syms)
1218 symp->sy_value.X_op = O_symbol;
1219 symp->sy_value.X_add_symbol = add_symbol;
1220 symp->sy_value.X_add_number = final_val;
1221 /* Use X_op_symbol as a flag. */
1222 symp->sy_value.X_op_symbol = add_symbol;
1224 final_seg = seg_left;
1225 final_val = 0;
1226 resolved = symbol_resolved_p (add_symbol);
1227 symp->sy_resolving = 0;
1228 goto exit_dont_set_value;
1230 else if (finalize_syms
1231 && ((final_seg == expr_section && seg_left != expr_section)
1232 || symbol_shadow_p (symp)))
1234 /* If the symbol is an expression symbol, do similarly
1235 as for undefined and common syms above. Handles
1236 "sym +/- expr" where "expr" cannot be evaluated
1237 immediately, and we want relocations to be against
1238 "sym", eg. because it is weak. */
1239 symp->sy_value.X_op = O_symbol;
1240 symp->sy_value.X_add_symbol = add_symbol;
1241 symp->sy_value.X_add_number = final_val;
1242 symp->sy_value.X_op_symbol = add_symbol;
1243 final_seg = seg_left;
1244 final_val += symp->sy_frag->fr_address + left;
1245 resolved = symbol_resolved_p (add_symbol);
1246 symp->sy_resolving = 0;
1247 goto exit_dont_set_value;
1249 else
1251 final_val += symp->sy_frag->fr_address + left;
1252 if (final_seg == expr_section || final_seg == undefined_section)
1253 final_seg = seg_left;
1256 resolved = symbol_resolved_p (add_symbol);
1257 if (S_IS_WEAKREFR (symp))
1258 goto exit_dont_set_value;
1259 break;
1261 case O_uminus:
1262 case O_bit_not:
1263 case O_logical_not:
1264 left = resolve_symbol_value (add_symbol);
1265 seg_left = S_GET_SEGMENT (add_symbol);
1267 /* By reducing these to the relevant dyadic operator, we get
1268 !S -> S == 0 permitted on anything,
1269 -S -> 0 - S only permitted on absolute
1270 ~S -> S ^ ~0 only permitted on absolute */
1271 if (op != O_logical_not && seg_left != absolute_section
1272 && finalize_syms)
1273 report_op_error (symp, NULL, op, add_symbol);
1275 if (final_seg == expr_section || final_seg == undefined_section)
1276 final_seg = absolute_section;
1278 if (op == O_uminus)
1279 left = -left;
1280 else if (op == O_logical_not)
1281 left = !left;
1282 else
1283 left = ~left;
1285 final_val += left + symp->sy_frag->fr_address;
1287 resolved = symbol_resolved_p (add_symbol);
1288 break;
1290 case O_multiply:
1291 case O_divide:
1292 case O_modulus:
1293 case O_left_shift:
1294 case O_right_shift:
1295 case O_bit_inclusive_or:
1296 case O_bit_or_not:
1297 case O_bit_exclusive_or:
1298 case O_bit_and:
1299 case O_add:
1300 case O_subtract:
1301 case O_eq:
1302 case O_ne:
1303 case O_lt:
1304 case O_le:
1305 case O_ge:
1306 case O_gt:
1307 case O_logical_and:
1308 case O_logical_or:
1309 left = resolve_symbol_value (add_symbol);
1310 right = resolve_symbol_value (op_symbol);
1311 seg_left = S_GET_SEGMENT (add_symbol);
1312 seg_right = S_GET_SEGMENT (op_symbol);
1314 /* Simplify addition or subtraction of a constant by folding the
1315 constant into X_add_number. */
1316 if (op == O_add)
1318 if (seg_right == absolute_section)
1320 final_val += right;
1321 goto do_symbol;
1323 else if (seg_left == absolute_section)
1325 final_val += left;
1326 add_symbol = op_symbol;
1327 left = right;
1328 seg_left = seg_right;
1329 goto do_symbol;
1332 else if (op == O_subtract)
1334 if (seg_right == absolute_section)
1336 final_val -= right;
1337 goto do_symbol;
1341 move_seg_ok = 1;
1342 /* Equality and non-equality tests are permitted on anything.
1343 Subtraction, and other comparison operators are permitted if
1344 both operands are in the same section. Otherwise, both
1345 operands must be absolute. We already handled the case of
1346 addition or subtraction of a constant above. This will
1347 probably need to be changed for an object file format which
1348 supports arbitrary expressions, such as IEEE-695. */
1349 if (!(seg_left == absolute_section
1350 && seg_right == absolute_section)
1351 && !(op == O_eq || op == O_ne)
1352 && !((op == O_subtract
1353 || op == O_lt || op == O_le || op == O_ge || op == O_gt)
1354 && seg_left == seg_right
1355 && (seg_left != undefined_section
1356 || add_symbol == op_symbol)))
1358 /* Don't emit messages unless we're finalizing the symbol value,
1359 otherwise we may get the same message multiple times. */
1360 if (finalize_syms)
1361 report_op_error (symp, add_symbol, op, op_symbol);
1362 /* However do not move the symbol into the absolute section
1363 if it cannot currently be resolved - this would confuse
1364 other parts of the assembler into believing that the
1365 expression had been evaluated to zero. */
1366 else
1367 move_seg_ok = 0;
1370 if (move_seg_ok
1371 && (final_seg == expr_section || final_seg == undefined_section))
1372 final_seg = absolute_section;
1374 /* Check for division by zero. */
1375 if ((op == O_divide || op == O_modulus) && right == 0)
1377 /* If seg_right is not absolute_section, then we've
1378 already issued a warning about using a bad symbol. */
1379 if (seg_right == absolute_section && finalize_syms)
1381 char *file;
1382 unsigned int line;
1384 if (expr_symbol_where (symp, &file, &line))
1385 as_bad_where (file, line, _("division by zero"));
1386 else
1387 as_bad (_("division by zero when setting `%s'"),
1388 S_GET_NAME (symp));
1391 right = 1;
1394 switch (symp->sy_value.X_op)
1396 case O_multiply: left *= right; break;
1397 case O_divide: left /= right; break;
1398 case O_modulus: left %= right; break;
1399 case O_left_shift: left <<= right; break;
1400 case O_right_shift: left >>= right; break;
1401 case O_bit_inclusive_or: left |= right; break;
1402 case O_bit_or_not: left |= ~right; break;
1403 case O_bit_exclusive_or: left ^= right; break;
1404 case O_bit_and: left &= right; break;
1405 case O_add: left += right; break;
1406 case O_subtract: left -= right; break;
1407 case O_eq:
1408 case O_ne:
1409 left = (left == right && seg_left == seg_right
1410 && (seg_left != undefined_section
1411 || add_symbol == op_symbol)
1412 ? ~ (offsetT) 0 : 0);
1413 if (symp->sy_value.X_op == O_ne)
1414 left = ~left;
1415 break;
1416 case O_lt: left = left < right ? ~ (offsetT) 0 : 0; break;
1417 case O_le: left = left <= right ? ~ (offsetT) 0 : 0; break;
1418 case O_ge: left = left >= right ? ~ (offsetT) 0 : 0; break;
1419 case O_gt: left = left > right ? ~ (offsetT) 0 : 0; break;
1420 case O_logical_and: left = left && right; break;
1421 case O_logical_or: left = left || right; break;
1422 default: abort ();
1425 final_val += symp->sy_frag->fr_address + left;
1426 if (final_seg == expr_section || final_seg == undefined_section)
1428 if (seg_left == undefined_section
1429 || seg_right == undefined_section)
1430 final_seg = undefined_section;
1431 else if (seg_left == absolute_section)
1432 final_seg = seg_right;
1433 else
1434 final_seg = seg_left;
1436 resolved = (symbol_resolved_p (add_symbol)
1437 && symbol_resolved_p (op_symbol));
1438 break;
1440 case O_big:
1441 case O_illegal:
1442 /* Give an error (below) if not in expr_section. We don't
1443 want to worry about expr_section symbols, because they
1444 are fictional (they are created as part of expression
1445 resolution), and any problems may not actually mean
1446 anything. */
1447 break;
1450 symp->sy_resolving = 0;
1453 if (finalize_syms)
1454 S_SET_VALUE (symp, final_val);
1456 exit_dont_set_value:
1457 /* Always set the segment, even if not finalizing the value.
1458 The segment is used to determine whether a symbol is defined. */
1459 S_SET_SEGMENT (symp, final_seg);
1461 /* Don't worry if we can't resolve an expr_section symbol. */
1462 if (finalize_syms)
1464 if (resolved)
1465 symp->sy_resolved = 1;
1466 else if (S_GET_SEGMENT (symp) != expr_section)
1468 as_bad (_("can't resolve value for symbol `%s'"),
1469 S_GET_NAME (symp));
1470 symp->sy_resolved = 1;
1474 return final_val;
1477 static void resolve_local_symbol (const char *, void *);
1479 /* A static function passed to hash_traverse. */
1481 static void
1482 resolve_local_symbol (const char *key ATTRIBUTE_UNUSED, void *value)
1484 if (value != NULL)
1485 resolve_symbol_value ((symbolS *) value);
1488 /* Resolve all local symbols. */
1490 void
1491 resolve_local_symbol_values (void)
1493 hash_traverse (local_hash, resolve_local_symbol);
1496 /* Obtain the current value of a symbol without changing any
1497 sub-expressions used. */
1500 snapshot_symbol (symbolS **symbolPP, valueT *valueP, segT *segP, fragS **fragPP)
1502 symbolS *symbolP = *symbolPP;
1504 if (LOCAL_SYMBOL_CHECK (symbolP))
1506 struct local_symbol *locsym = (struct local_symbol *) symbolP;
1508 *valueP = locsym->lsy_value;
1509 *segP = locsym->lsy_section;
1510 *fragPP = local_symbol_get_frag (locsym);
1512 else
1514 expressionS exp = symbolP->sy_value;
1516 if (!symbolP->sy_resolved && exp.X_op != O_illegal)
1518 int resolved;
1520 if (symbolP->sy_resolving)
1521 return 0;
1522 symbolP->sy_resolving = 1;
1523 resolved = resolve_expression (&exp);
1524 symbolP->sy_resolving = 0;
1525 if (!resolved)
1526 return 0;
1528 switch (exp.X_op)
1530 case O_constant:
1531 case O_register:
1532 if (!symbol_equated_p (symbolP))
1533 break;
1534 /* Fall thru. */
1535 case O_symbol:
1536 case O_symbol_rva:
1537 symbolP = exp.X_add_symbol;
1538 break;
1539 default:
1540 return 0;
1544 *symbolPP = symbolP;
1545 *valueP = exp.X_add_number;
1546 *segP = symbolP->bsym->section;
1547 *fragPP = symbolP->sy_frag;
1549 if (*segP == expr_section)
1550 switch (exp.X_op)
1552 case O_constant: *segP = absolute_section; break;
1553 case O_register: *segP = reg_section; break;
1554 default: break;
1558 return 1;
1561 /* Dollar labels look like a number followed by a dollar sign. Eg, "42$".
1562 They are *really* local. That is, they go out of scope whenever we see a
1563 label that isn't local. Also, like fb labels, there can be multiple
1564 instances of a dollar label. Therefor, we name encode each instance with
1565 the instance number, keep a list of defined symbols separate from the real
1566 symbol table, and we treat these buggers as a sparse array. */
1568 static long *dollar_labels;
1569 static long *dollar_label_instances;
1570 static char *dollar_label_defines;
1571 static unsigned long dollar_label_count;
1572 static unsigned long dollar_label_max;
1575 dollar_label_defined (long label)
1577 long *i;
1579 know ((dollar_labels != NULL) || (dollar_label_count == 0));
1581 for (i = dollar_labels; i < dollar_labels + dollar_label_count; ++i)
1582 if (*i == label)
1583 return dollar_label_defines[i - dollar_labels];
1585 /* If we get here, label isn't defined. */
1586 return 0;
1589 static long
1590 dollar_label_instance (long label)
1592 long *i;
1594 know ((dollar_labels != NULL) || (dollar_label_count == 0));
1596 for (i = dollar_labels; i < dollar_labels + dollar_label_count; ++i)
1597 if (*i == label)
1598 return (dollar_label_instances[i - dollar_labels]);
1600 /* If we get here, we haven't seen the label before.
1601 Therefore its instance count is zero. */
1602 return 0;
1605 void
1606 dollar_label_clear (void)
1608 memset (dollar_label_defines, '\0', (unsigned int) dollar_label_count);
1611 #define DOLLAR_LABEL_BUMP_BY 10
1613 void
1614 define_dollar_label (long label)
1616 long *i;
1618 for (i = dollar_labels; i < dollar_labels + dollar_label_count; ++i)
1619 if (*i == label)
1621 ++dollar_label_instances[i - dollar_labels];
1622 dollar_label_defines[i - dollar_labels] = 1;
1623 return;
1626 /* If we get to here, we don't have label listed yet. */
1628 if (dollar_labels == NULL)
1630 dollar_labels = (long *) xmalloc (DOLLAR_LABEL_BUMP_BY * sizeof (long));
1631 dollar_label_instances = (long *) xmalloc (DOLLAR_LABEL_BUMP_BY * sizeof (long));
1632 dollar_label_defines = (char *) xmalloc (DOLLAR_LABEL_BUMP_BY);
1633 dollar_label_max = DOLLAR_LABEL_BUMP_BY;
1634 dollar_label_count = 0;
1636 else if (dollar_label_count == dollar_label_max)
1638 dollar_label_max += DOLLAR_LABEL_BUMP_BY;
1639 dollar_labels = (long *) xrealloc ((char *) dollar_labels,
1640 dollar_label_max * sizeof (long));
1641 dollar_label_instances = (long *) xrealloc ((char *) dollar_label_instances,
1642 dollar_label_max * sizeof (long));
1643 dollar_label_defines = (char *) xrealloc (dollar_label_defines, dollar_label_max);
1644 } /* if we needed to grow */
1646 dollar_labels[dollar_label_count] = label;
1647 dollar_label_instances[dollar_label_count] = 1;
1648 dollar_label_defines[dollar_label_count] = 1;
1649 ++dollar_label_count;
1652 /* Caller must copy returned name: we re-use the area for the next name.
1654 The mth occurence of label n: is turned into the symbol "Ln^Am"
1655 where n is the label number and m is the instance number. "L" makes
1656 it a label discarded unless debugging and "^A"('\1') ensures no
1657 ordinary symbol SHOULD get the same name as a local label
1658 symbol. The first "4:" is "L4^A1" - the m numbers begin at 1.
1660 fb labels get the same treatment, except that ^B is used in place
1661 of ^A. */
1663 char * /* Return local label name. */
1664 dollar_label_name (register long n, /* we just saw "n$:" : n a number. */
1665 register int augend /* 0 for current instance, 1 for new instance. */)
1667 long i;
1668 /* Returned to caller, then copied. Used for created names ("4f"). */
1669 static char symbol_name_build[24];
1670 register char *p;
1671 register char *q;
1672 char symbol_name_temporary[20]; /* Build up a number, BACKWARDS. */
1674 know (n >= 0);
1675 know (augend == 0 || augend == 1);
1676 p = symbol_name_build;
1677 #ifdef LOCAL_LABEL_PREFIX
1678 *p++ = LOCAL_LABEL_PREFIX;
1679 #endif
1680 *p++ = 'L';
1682 /* Next code just does sprintf( {}, "%d", n); */
1683 /* Label number. */
1684 q = symbol_name_temporary;
1685 for (*q++ = 0, i = n; i; ++q)
1687 *q = i % 10 + '0';
1688 i /= 10;
1690 while ((*p = *--q) != '\0')
1691 ++p;
1693 *p++ = DOLLAR_LABEL_CHAR; /* ^A */
1695 /* Instance number. */
1696 q = symbol_name_temporary;
1697 for (*q++ = 0, i = dollar_label_instance (n) + augend; i; ++q)
1699 *q = i % 10 + '0';
1700 i /= 10;
1702 while ((*p++ = *--q) != '\0');;
1704 /* The label, as a '\0' ended string, starts at symbol_name_build. */
1705 return symbol_name_build;
1708 /* Somebody else's idea of local labels. They are made by "n:" where n
1709 is any decimal digit. Refer to them with
1710 "nb" for previous (backward) n:
1711 or "nf" for next (forward) n:.
1713 We do a little better and let n be any number, not just a single digit, but
1714 since the other guy's assembler only does ten, we treat the first ten
1715 specially.
1717 Like someone else's assembler, we have one set of local label counters for
1718 entire assembly, not one set per (sub)segment like in most assemblers. This
1719 implies that one can refer to a label in another segment, and indeed some
1720 crufty compilers have done just that.
1722 Since there could be a LOT of these things, treat them as a sparse
1723 array. */
1725 #define FB_LABEL_SPECIAL (10)
1727 static long fb_low_counter[FB_LABEL_SPECIAL];
1728 static long *fb_labels;
1729 static long *fb_label_instances;
1730 static long fb_label_count;
1731 static long fb_label_max;
1733 /* This must be more than FB_LABEL_SPECIAL. */
1734 #define FB_LABEL_BUMP_BY (FB_LABEL_SPECIAL + 6)
1736 static void
1737 fb_label_init (void)
1739 memset ((void *) fb_low_counter, '\0', sizeof (fb_low_counter));
1742 /* Add one to the instance number of this fb label. */
1744 void
1745 fb_label_instance_inc (long label)
1747 long *i;
1749 if (label < FB_LABEL_SPECIAL)
1751 ++fb_low_counter[label];
1752 return;
1755 if (fb_labels != NULL)
1757 for (i = fb_labels + FB_LABEL_SPECIAL;
1758 i < fb_labels + fb_label_count; ++i)
1760 if (*i == label)
1762 ++fb_label_instances[i - fb_labels];
1763 return;
1764 } /* if we find it */
1765 } /* for each existing label */
1768 /* If we get to here, we don't have label listed yet. */
1770 if (fb_labels == NULL)
1772 fb_labels = (long *) xmalloc (FB_LABEL_BUMP_BY * sizeof (long));
1773 fb_label_instances = (long *) xmalloc (FB_LABEL_BUMP_BY * sizeof (long));
1774 fb_label_max = FB_LABEL_BUMP_BY;
1775 fb_label_count = FB_LABEL_SPECIAL;
1778 else if (fb_label_count == fb_label_max)
1780 fb_label_max += FB_LABEL_BUMP_BY;
1781 fb_labels = (long *) xrealloc ((char *) fb_labels,
1782 fb_label_max * sizeof (long));
1783 fb_label_instances = (long *) xrealloc ((char *) fb_label_instances,
1784 fb_label_max * sizeof (long));
1785 } /* if we needed to grow */
1787 fb_labels[fb_label_count] = label;
1788 fb_label_instances[fb_label_count] = 1;
1789 ++fb_label_count;
1792 static long
1793 fb_label_instance (long label)
1795 long *i;
1797 if (label < FB_LABEL_SPECIAL)
1799 return (fb_low_counter[label]);
1802 if (fb_labels != NULL)
1804 for (i = fb_labels + FB_LABEL_SPECIAL;
1805 i < fb_labels + fb_label_count; ++i)
1807 if (*i == label)
1809 return (fb_label_instances[i - fb_labels]);
1810 } /* if we find it */
1811 } /* for each existing label */
1814 /* We didn't find the label, so this must be a reference to the
1815 first instance. */
1816 return 0;
1819 /* Caller must copy returned name: we re-use the area for the next name.
1821 The mth occurence of label n: is turned into the symbol "Ln^Bm"
1822 where n is the label number and m is the instance number. "L" makes
1823 it a label discarded unless debugging and "^B"('\2') ensures no
1824 ordinary symbol SHOULD get the same name as a local label
1825 symbol. The first "4:" is "L4^B1" - the m numbers begin at 1.
1827 dollar labels get the same treatment, except that ^A is used in
1828 place of ^B. */
1830 char * /* Return local label name. */
1831 fb_label_name (long n, /* We just saw "n:", "nf" or "nb" : n a number. */
1832 long augend /* 0 for nb, 1 for n:, nf. */)
1834 long i;
1835 /* Returned to caller, then copied. Used for created names ("4f"). */
1836 static char symbol_name_build[24];
1837 register char *p;
1838 register char *q;
1839 char symbol_name_temporary[20]; /* Build up a number, BACKWARDS. */
1841 know (n >= 0);
1842 #ifdef TC_MMIX
1843 know ((unsigned long) augend <= 2 /* See mmix_fb_label. */);
1844 #else
1845 know ((unsigned long) augend <= 1);
1846 #endif
1847 p = symbol_name_build;
1848 #ifdef LOCAL_LABEL_PREFIX
1849 *p++ = LOCAL_LABEL_PREFIX;
1850 #endif
1851 *p++ = 'L';
1853 /* Next code just does sprintf( {}, "%d", n); */
1854 /* Label number. */
1855 q = symbol_name_temporary;
1856 for (*q++ = 0, i = n; i; ++q)
1858 *q = i % 10 + '0';
1859 i /= 10;
1861 while ((*p = *--q) != '\0')
1862 ++p;
1864 *p++ = LOCAL_LABEL_CHAR; /* ^B */
1866 /* Instance number. */
1867 q = symbol_name_temporary;
1868 for (*q++ = 0, i = fb_label_instance (n) + augend; i; ++q)
1870 *q = i % 10 + '0';
1871 i /= 10;
1873 while ((*p++ = *--q) != '\0');;
1875 /* The label, as a '\0' ended string, starts at symbol_name_build. */
1876 return (symbol_name_build);
1879 /* Decode name that may have been generated by foo_label_name() above.
1880 If the name wasn't generated by foo_label_name(), then return it
1881 unaltered. This is used for error messages. */
1883 char *
1884 decode_local_label_name (char *s)
1886 char *p;
1887 char *symbol_decode;
1888 int label_number;
1889 int instance_number;
1890 char *type;
1891 const char *message_format;
1892 int lindex = 0;
1894 #ifdef LOCAL_LABEL_PREFIX
1895 if (s[lindex] == LOCAL_LABEL_PREFIX)
1896 ++lindex;
1897 #endif
1899 if (s[lindex] != 'L')
1900 return s;
1902 for (label_number = 0, p = s + lindex + 1; ISDIGIT (*p); ++p)
1903 label_number = (10 * label_number) + *p - '0';
1905 if (*p == DOLLAR_LABEL_CHAR)
1906 type = "dollar";
1907 else if (*p == LOCAL_LABEL_CHAR)
1908 type = "fb";
1909 else
1910 return s;
1912 for (instance_number = 0, p++; ISDIGIT (*p); ++p)
1913 instance_number = (10 * instance_number) + *p - '0';
1915 message_format = _("\"%d\" (instance number %d of a %s label)");
1916 symbol_decode = (char *) obstack_alloc (&notes, strlen (message_format) + 30);
1917 sprintf (symbol_decode, message_format, label_number, instance_number, type);
1919 return symbol_decode;
1922 /* Get the value of a symbol. */
1924 valueT
1925 S_GET_VALUE (symbolS *s)
1927 if (LOCAL_SYMBOL_CHECK (s))
1928 return resolve_symbol_value (s);
1930 if (!s->sy_resolved)
1932 valueT val = resolve_symbol_value (s);
1933 if (!finalize_syms)
1934 return val;
1936 if (S_IS_WEAKREFR (s))
1937 return S_GET_VALUE (s->sy_value.X_add_symbol);
1939 if (s->sy_value.X_op != O_constant)
1941 if (! s->sy_resolved
1942 || s->sy_value.X_op != O_symbol
1943 || (S_IS_DEFINED (s) && ! S_IS_COMMON (s)))
1944 as_bad (_("attempt to get value of unresolved symbol `%s'"),
1945 S_GET_NAME (s));
1947 return (valueT) s->sy_value.X_add_number;
1950 /* Set the value of a symbol. */
1952 void
1953 S_SET_VALUE (symbolS *s, valueT val)
1955 if (LOCAL_SYMBOL_CHECK (s))
1957 ((struct local_symbol *) s)->lsy_value = val;
1958 return;
1961 s->sy_value.X_op = O_constant;
1962 s->sy_value.X_add_number = (offsetT) val;
1963 s->sy_value.X_unsigned = 0;
1964 S_CLEAR_WEAKREFR (s);
1967 void
1968 copy_symbol_attributes (symbolS *dest, symbolS *src)
1970 if (LOCAL_SYMBOL_CHECK (dest))
1971 dest = local_symbol_convert ((struct local_symbol *) dest);
1972 if (LOCAL_SYMBOL_CHECK (src))
1973 src = local_symbol_convert ((struct local_symbol *) src);
1975 /* In an expression, transfer the settings of these flags.
1976 The user can override later, of course. */
1977 #define COPIED_SYMFLAGS (BSF_FUNCTION | BSF_OBJECT \
1978 | BSF_GNU_INDIRECT_FUNCTION)
1979 dest->bsym->flags |= src->bsym->flags & COPIED_SYMFLAGS;
1981 #ifdef OBJ_COPY_SYMBOL_ATTRIBUTES
1982 OBJ_COPY_SYMBOL_ATTRIBUTES (dest, src);
1983 #endif
1985 #ifdef TC_COPY_SYMBOL_ATTRIBUTES
1986 TC_COPY_SYMBOL_ATTRIBUTES (dest, src);
1987 #endif
1991 S_IS_FUNCTION (symbolS *s)
1993 flagword flags;
1995 if (LOCAL_SYMBOL_CHECK (s))
1996 return 0;
1998 flags = s->bsym->flags;
2000 return (flags & BSF_FUNCTION) != 0;
2004 S_IS_EXTERNAL (symbolS *s)
2006 flagword flags;
2008 if (LOCAL_SYMBOL_CHECK (s))
2009 return 0;
2011 flags = s->bsym->flags;
2013 /* Sanity check. */
2014 if ((flags & BSF_LOCAL) && (flags & BSF_GLOBAL))
2015 abort ();
2017 return (flags & BSF_GLOBAL) != 0;
2021 S_IS_WEAK (symbolS *s)
2023 if (LOCAL_SYMBOL_CHECK (s))
2024 return 0;
2025 /* Conceptually, a weakrefr is weak if the referenced symbol is. We
2026 could probably handle a WEAKREFR as always weak though. E.g., if
2027 the referenced symbol has lost its weak status, there's no reason
2028 to keep handling the weakrefr as if it was weak. */
2029 if (S_IS_WEAKREFR (s))
2030 return S_IS_WEAK (s->sy_value.X_add_symbol);
2031 return (s->bsym->flags & BSF_WEAK) != 0;
2035 S_IS_WEAKREFR (symbolS *s)
2037 if (LOCAL_SYMBOL_CHECK (s))
2038 return 0;
2039 return s->sy_weakrefr != 0;
2043 S_IS_WEAKREFD (symbolS *s)
2045 if (LOCAL_SYMBOL_CHECK (s))
2046 return 0;
2047 return s->sy_weakrefd != 0;
2051 S_IS_COMMON (symbolS *s)
2053 if (LOCAL_SYMBOL_CHECK (s))
2054 return 0;
2055 return bfd_is_com_section (s->bsym->section);
2059 S_IS_DEFINED (symbolS *s)
2061 if (LOCAL_SYMBOL_CHECK (s))
2062 return ((struct local_symbol *) s)->lsy_section != undefined_section;
2063 return s->bsym->section != undefined_section;
2067 #ifndef EXTERN_FORCE_RELOC
2068 #define EXTERN_FORCE_RELOC IS_ELF
2069 #endif
2071 /* Return true for symbols that should not be reduced to section
2072 symbols or eliminated from expressions, because they may be
2073 overridden by the linker. */
2075 S_FORCE_RELOC (symbolS *s, int strict)
2077 if (LOCAL_SYMBOL_CHECK (s))
2078 return ((struct local_symbol *) s)->lsy_section == undefined_section;
2080 return ((strict
2081 && ((s->bsym->flags & BSF_WEAK) != 0
2082 || (EXTERN_FORCE_RELOC
2083 && (s->bsym->flags & BSF_GLOBAL) != 0)))
2084 || (s->bsym->flags & BSF_GNU_INDIRECT_FUNCTION) != 0
2085 || s->bsym->section == undefined_section
2086 || bfd_is_com_section (s->bsym->section));
2090 S_IS_DEBUG (symbolS *s)
2092 if (LOCAL_SYMBOL_CHECK (s))
2093 return 0;
2094 if (s->bsym->flags & BSF_DEBUGGING)
2095 return 1;
2096 return 0;
2100 S_IS_LOCAL (symbolS *s)
2102 flagword flags;
2103 const char *name;
2105 if (LOCAL_SYMBOL_CHECK (s))
2106 return 1;
2108 flags = s->bsym->flags;
2110 /* Sanity check. */
2111 if ((flags & BSF_LOCAL) && (flags & BSF_GLOBAL))
2112 abort ();
2114 if (bfd_get_section (s->bsym) == reg_section)
2115 return 1;
2117 if (flag_strip_local_absolute
2118 /* Keep BSF_FILE symbols in order to allow debuggers to identify
2119 the source file even when the object file is stripped. */
2120 && (flags & (BSF_GLOBAL | BSF_FILE)) == 0
2121 && bfd_get_section (s->bsym) == absolute_section)
2122 return 1;
2124 name = S_GET_NAME (s);
2125 return (name != NULL
2126 && ! S_IS_DEBUG (s)
2127 && (strchr (name, DOLLAR_LABEL_CHAR)
2128 || strchr (name, LOCAL_LABEL_CHAR)
2129 || (! flag_keep_locals
2130 && (bfd_is_local_label (stdoutput, s->bsym)
2131 || (flag_mri
2132 && name[0] == '?'
2133 && name[1] == '?')))));
2137 S_IS_STABD (symbolS *s)
2139 return S_GET_NAME (s) == 0;
2143 S_IS_VOLATILE (const symbolS *s)
2145 if (LOCAL_SYMBOL_CHECK (s))
2146 return 0;
2147 return s->sy_volatile;
2151 S_IS_FORWARD_REF (const symbolS *s)
2153 if (LOCAL_SYMBOL_CHECK (s))
2154 return 0;
2155 return s->sy_forward_ref;
2158 const char *
2159 S_GET_NAME (symbolS *s)
2161 if (LOCAL_SYMBOL_CHECK (s))
2162 return ((struct local_symbol *) s)->lsy_name;
2163 return s->bsym->name;
2166 segT
2167 S_GET_SEGMENT (symbolS *s)
2169 if (LOCAL_SYMBOL_CHECK (s))
2170 return ((struct local_symbol *) s)->lsy_section;
2171 return s->bsym->section;
2174 void
2175 S_SET_SEGMENT (symbolS *s, segT seg)
2177 /* Don't reassign section symbols. The direct reason is to prevent seg
2178 faults assigning back to const global symbols such as *ABS*, but it
2179 shouldn't happen anyway. */
2181 if (LOCAL_SYMBOL_CHECK (s))
2183 if (seg == reg_section)
2184 s = local_symbol_convert ((struct local_symbol *) s);
2185 else
2187 ((struct local_symbol *) s)->lsy_section = seg;
2188 return;
2192 if (s->bsym->flags & BSF_SECTION_SYM)
2194 if (s->bsym->section != seg)
2195 abort ();
2197 else
2198 s->bsym->section = seg;
2201 void
2202 S_SET_EXTERNAL (symbolS *s)
2204 if (LOCAL_SYMBOL_CHECK (s))
2205 s = local_symbol_convert ((struct local_symbol *) s);
2206 if ((s->bsym->flags & BSF_WEAK) != 0)
2208 /* Let .weak override .global. */
2209 return;
2211 if (s->bsym->flags & BSF_SECTION_SYM)
2213 char * file;
2214 unsigned int line;
2216 /* Do not reassign section symbols. */
2217 as_where (& file, & line);
2218 as_warn_where (file, line,
2219 _("section symbols are already global"));
2220 return;
2222 #ifndef TC_GLOBAL_REGISTER_SYMBOL_OK
2223 if (S_GET_SEGMENT (s) == reg_section)
2225 as_bad ("can't make register symbol `%s' global",
2226 S_GET_NAME (s));
2227 return;
2229 #endif
2230 s->bsym->flags |= BSF_GLOBAL;
2231 s->bsym->flags &= ~(BSF_LOCAL | BSF_WEAK);
2233 #ifdef TE_PE
2234 if (! an_external_name && S_GET_NAME(s)[0] != '.')
2235 an_external_name = S_GET_NAME (s);
2236 #endif
2239 void
2240 S_CLEAR_EXTERNAL (symbolS *s)
2242 if (LOCAL_SYMBOL_CHECK (s))
2243 return;
2244 if ((s->bsym->flags & BSF_WEAK) != 0)
2246 /* Let .weak override. */
2247 return;
2249 s->bsym->flags |= BSF_LOCAL;
2250 s->bsym->flags &= ~(BSF_GLOBAL | BSF_WEAK);
2253 void
2254 S_SET_WEAK (symbolS *s)
2256 if (LOCAL_SYMBOL_CHECK (s))
2257 s = local_symbol_convert ((struct local_symbol *) s);
2258 #ifdef obj_set_weak_hook
2259 obj_set_weak_hook (s);
2260 #endif
2261 s->bsym->flags |= BSF_WEAK;
2262 s->bsym->flags &= ~(BSF_GLOBAL | BSF_LOCAL);
2265 void
2266 S_SET_WEAKREFR (symbolS *s)
2268 if (LOCAL_SYMBOL_CHECK (s))
2269 s = local_symbol_convert ((struct local_symbol *) s);
2270 s->sy_weakrefr = 1;
2271 /* If the alias was already used, make sure we mark the target as
2272 used as well, otherwise it might be dropped from the symbol
2273 table. This may have unintended side effects if the alias is
2274 later redirected to another symbol, such as keeping the unused
2275 previous target in the symbol table. Since it will be weak, it's
2276 not a big deal. */
2277 if (s->sy_used)
2278 symbol_mark_used (s->sy_value.X_add_symbol);
2281 void
2282 S_CLEAR_WEAKREFR (symbolS *s)
2284 if (LOCAL_SYMBOL_CHECK (s))
2285 return;
2286 s->sy_weakrefr = 0;
2289 void
2290 S_SET_WEAKREFD (symbolS *s)
2292 if (LOCAL_SYMBOL_CHECK (s))
2293 s = local_symbol_convert ((struct local_symbol *) s);
2294 s->sy_weakrefd = 1;
2295 S_SET_WEAK (s);
2298 void
2299 S_CLEAR_WEAKREFD (symbolS *s)
2301 if (LOCAL_SYMBOL_CHECK (s))
2302 return;
2303 if (s->sy_weakrefd)
2305 s->sy_weakrefd = 0;
2306 /* If a weakref target symbol is weak, then it was never
2307 referenced directly before, not even in a .global directive,
2308 so decay it to local. If it remains undefined, it will be
2309 later turned into a global, like any other undefined
2310 symbol. */
2311 if (s->bsym->flags & BSF_WEAK)
2313 #ifdef obj_clear_weak_hook
2314 obj_clear_weak_hook (s);
2315 #endif
2316 s->bsym->flags &= ~BSF_WEAK;
2317 s->bsym->flags |= BSF_LOCAL;
2322 void
2323 S_SET_THREAD_LOCAL (symbolS *s)
2325 if (LOCAL_SYMBOL_CHECK (s))
2326 s = local_symbol_convert ((struct local_symbol *) s);
2327 if (bfd_is_com_section (s->bsym->section)
2328 && (s->bsym->flags & BSF_THREAD_LOCAL) != 0)
2329 return;
2330 s->bsym->flags |= BSF_THREAD_LOCAL;
2331 if ((s->bsym->flags & BSF_FUNCTION) != 0)
2332 as_bad (_("Accessing function `%s' as thread-local object"),
2333 S_GET_NAME (s));
2334 else if (! bfd_is_und_section (s->bsym->section)
2335 && (s->bsym->section->flags & SEC_THREAD_LOCAL) == 0)
2336 as_bad (_("Accessing `%s' as thread-local object"),
2337 S_GET_NAME (s));
2340 void
2341 S_SET_NAME (symbolS *s, const char *name)
2343 if (LOCAL_SYMBOL_CHECK (s))
2345 ((struct local_symbol *) s)->lsy_name = name;
2346 return;
2348 s->bsym->name = name;
2351 void
2352 S_SET_VOLATILE (symbolS *s)
2354 if (LOCAL_SYMBOL_CHECK (s))
2355 s = local_symbol_convert ((struct local_symbol *) s);
2356 s->sy_volatile = 1;
2359 void
2360 S_CLEAR_VOLATILE (symbolS *s)
2362 if (!LOCAL_SYMBOL_CHECK (s))
2363 s->sy_volatile = 0;
2366 void
2367 S_SET_FORWARD_REF (symbolS *s)
2369 if (LOCAL_SYMBOL_CHECK (s))
2370 s = local_symbol_convert ((struct local_symbol *) s);
2371 s->sy_forward_ref = 1;
2374 /* Return the previous symbol in a chain. */
2376 symbolS *
2377 symbol_previous (symbolS *s)
2379 if (LOCAL_SYMBOL_CHECK (s))
2380 abort ();
2381 return s->sy_previous;
2384 /* Return the next symbol in a chain. */
2386 symbolS *
2387 symbol_next (symbolS *s)
2389 if (LOCAL_SYMBOL_CHECK (s))
2390 abort ();
2391 return s->sy_next;
2394 /* Return a pointer to the value of a symbol as an expression. */
2396 expressionS *
2397 symbol_get_value_expression (symbolS *s)
2399 if (LOCAL_SYMBOL_CHECK (s))
2400 s = local_symbol_convert ((struct local_symbol *) s);
2401 return &s->sy_value;
2404 /* Set the value of a symbol to an expression. */
2406 void
2407 symbol_set_value_expression (symbolS *s, const expressionS *exp)
2409 if (LOCAL_SYMBOL_CHECK (s))
2410 s = local_symbol_convert ((struct local_symbol *) s);
2411 s->sy_value = *exp;
2412 S_CLEAR_WEAKREFR (s);
2415 /* Return whether 2 symbols are the same. */
2418 symbol_same_p (symbolS *s1, symbolS *s2)
2420 if (s1->bsym == NULL
2421 && local_symbol_converted_p ((struct local_symbol *) s1))
2422 s1 = local_symbol_get_real_symbol ((struct local_symbol *) s1);
2423 if (s2->bsym == NULL
2424 && local_symbol_converted_p ((struct local_symbol *) s2))
2425 s2 = local_symbol_get_real_symbol ((struct local_symbol *) s2);
2426 return s1 == s2;
2429 /* Return a pointer to the X_add_number component of a symbol. */
2431 offsetT *
2432 symbol_X_add_number (symbolS *s)
2434 if (LOCAL_SYMBOL_CHECK (s))
2435 return (offsetT *) &((struct local_symbol *) s)->lsy_value;
2437 return &s->sy_value.X_add_number;
2440 /* Set the value of SYM to the current position in the current segment. */
2442 void
2443 symbol_set_value_now (symbolS *sym)
2445 S_SET_SEGMENT (sym, now_seg);
2446 S_SET_VALUE (sym, frag_now_fix ());
2447 symbol_set_frag (sym, frag_now);
2450 /* Set the frag of a symbol. */
2452 void
2453 symbol_set_frag (symbolS *s, fragS *f)
2455 if (LOCAL_SYMBOL_CHECK (s))
2457 local_symbol_set_frag ((struct local_symbol *) s, f);
2458 return;
2460 s->sy_frag = f;
2461 S_CLEAR_WEAKREFR (s);
2464 /* Return the frag of a symbol. */
2466 fragS *
2467 symbol_get_frag (symbolS *s)
2469 if (LOCAL_SYMBOL_CHECK (s))
2470 return local_symbol_get_frag ((struct local_symbol *) s);
2471 return s->sy_frag;
2474 /* Mark a symbol as having been used. */
2476 void
2477 symbol_mark_used (symbolS *s)
2479 if (LOCAL_SYMBOL_CHECK (s))
2480 return;
2481 s->sy_used = 1;
2482 if (S_IS_WEAKREFR (s))
2483 symbol_mark_used (s->sy_value.X_add_symbol);
2486 /* Clear the mark of whether a symbol has been used. */
2488 void
2489 symbol_clear_used (symbolS *s)
2491 if (LOCAL_SYMBOL_CHECK (s))
2492 s = local_symbol_convert ((struct local_symbol *) s);
2493 s->sy_used = 0;
2496 /* Return whether a symbol has been used. */
2499 symbol_used_p (symbolS *s)
2501 if (LOCAL_SYMBOL_CHECK (s))
2502 return 1;
2503 return s->sy_used;
2506 /* Mark a symbol as having been used in a reloc. */
2508 void
2509 symbol_mark_used_in_reloc (symbolS *s)
2511 if (LOCAL_SYMBOL_CHECK (s))
2512 s = local_symbol_convert ((struct local_symbol *) s);
2513 s->sy_used_in_reloc = 1;
2516 /* Clear the mark of whether a symbol has been used in a reloc. */
2518 void
2519 symbol_clear_used_in_reloc (symbolS *s)
2521 if (LOCAL_SYMBOL_CHECK (s))
2522 return;
2523 s->sy_used_in_reloc = 0;
2526 /* Return whether a symbol has been used in a reloc. */
2529 symbol_used_in_reloc_p (symbolS *s)
2531 if (LOCAL_SYMBOL_CHECK (s))
2532 return 0;
2533 return s->sy_used_in_reloc;
2536 /* Mark a symbol as an MRI common symbol. */
2538 void
2539 symbol_mark_mri_common (symbolS *s)
2541 if (LOCAL_SYMBOL_CHECK (s))
2542 s = local_symbol_convert ((struct local_symbol *) s);
2543 s->sy_mri_common = 1;
2546 /* Clear the mark of whether a symbol is an MRI common symbol. */
2548 void
2549 symbol_clear_mri_common (symbolS *s)
2551 if (LOCAL_SYMBOL_CHECK (s))
2552 return;
2553 s->sy_mri_common = 0;
2556 /* Return whether a symbol is an MRI common symbol. */
2559 symbol_mri_common_p (symbolS *s)
2561 if (LOCAL_SYMBOL_CHECK (s))
2562 return 0;
2563 return s->sy_mri_common;
2566 /* Mark a symbol as having been written. */
2568 void
2569 symbol_mark_written (symbolS *s)
2571 if (LOCAL_SYMBOL_CHECK (s))
2572 return;
2573 s->written = 1;
2576 /* Clear the mark of whether a symbol has been written. */
2578 void
2579 symbol_clear_written (symbolS *s)
2581 if (LOCAL_SYMBOL_CHECK (s))
2582 return;
2583 s->written = 0;
2586 /* Return whether a symbol has been written. */
2589 symbol_written_p (symbolS *s)
2591 if (LOCAL_SYMBOL_CHECK (s))
2592 return 0;
2593 return s->written;
2596 /* Mark a symbol has having been resolved. */
2598 void
2599 symbol_mark_resolved (symbolS *s)
2601 if (LOCAL_SYMBOL_CHECK (s))
2603 local_symbol_mark_resolved ((struct local_symbol *) s);
2604 return;
2606 s->sy_resolved = 1;
2609 /* Return whether a symbol has been resolved. */
2612 symbol_resolved_p (symbolS *s)
2614 if (LOCAL_SYMBOL_CHECK (s))
2615 return local_symbol_resolved_p ((struct local_symbol *) s);
2616 return s->sy_resolved;
2619 /* Return whether a symbol is a section symbol. */
2622 symbol_section_p (symbolS *s ATTRIBUTE_UNUSED)
2624 if (LOCAL_SYMBOL_CHECK (s))
2625 return 0;
2626 return (s->bsym->flags & BSF_SECTION_SYM) != 0;
2629 /* Return whether a symbol is equated to another symbol. */
2632 symbol_equated_p (symbolS *s)
2634 if (LOCAL_SYMBOL_CHECK (s))
2635 return 0;
2636 return s->sy_value.X_op == O_symbol;
2639 /* Return whether a symbol is equated to another symbol, and should be
2640 treated specially when writing out relocs. */
2643 symbol_equated_reloc_p (symbolS *s)
2645 if (LOCAL_SYMBOL_CHECK (s))
2646 return 0;
2647 /* X_op_symbol, normally not used for O_symbol, is set by
2648 resolve_symbol_value to flag expression syms that have been
2649 equated. */
2650 return (s->sy_value.X_op == O_symbol
2651 #if defined (OBJ_COFF) && defined (TE_PE)
2652 && ! S_IS_WEAK (s)
2653 #endif
2654 && ((s->sy_resolved && s->sy_value.X_op_symbol != NULL)
2655 || ! S_IS_DEFINED (s)
2656 || S_IS_COMMON (s)));
2659 /* Return whether a symbol has a constant value. */
2662 symbol_constant_p (symbolS *s)
2664 if (LOCAL_SYMBOL_CHECK (s))
2665 return 1;
2666 return s->sy_value.X_op == O_constant;
2669 /* Return whether a symbol was cloned and thus removed from the global
2670 symbol list. */
2673 symbol_shadow_p (symbolS *s)
2675 if (LOCAL_SYMBOL_CHECK (s))
2676 return 0;
2677 return s->sy_next == s;
2680 /* Return the BFD symbol for a symbol. */
2682 asymbol *
2683 symbol_get_bfdsym (symbolS *s)
2685 if (LOCAL_SYMBOL_CHECK (s))
2686 s = local_symbol_convert ((struct local_symbol *) s);
2687 return s->bsym;
2690 /* Set the BFD symbol for a symbol. */
2692 void
2693 symbol_set_bfdsym (symbolS *s, asymbol *bsym)
2695 if (LOCAL_SYMBOL_CHECK (s))
2696 s = local_symbol_convert ((struct local_symbol *) s);
2697 /* Usually, it is harmless to reset a symbol to a BFD section
2698 symbol. For example, obj_elf_change_section sets the BFD symbol
2699 of an old symbol with the newly created section symbol. But when
2700 we have multiple sections with the same name, the newly created
2701 section may have the same name as an old section. We check if the
2702 old symbol has been already marked as a section symbol before
2703 resetting it. */
2704 if ((s->bsym->flags & BSF_SECTION_SYM) == 0)
2705 s->bsym = bsym;
2706 /* else XXX - What do we do now ? */
2709 #ifdef OBJ_SYMFIELD_TYPE
2711 /* Get a pointer to the object format information for a symbol. */
2713 OBJ_SYMFIELD_TYPE *
2714 symbol_get_obj (symbolS *s)
2716 if (LOCAL_SYMBOL_CHECK (s))
2717 s = local_symbol_convert ((struct local_symbol *) s);
2718 return &s->sy_obj;
2721 /* Set the object format information for a symbol. */
2723 void
2724 symbol_set_obj (symbolS *s, OBJ_SYMFIELD_TYPE *o)
2726 if (LOCAL_SYMBOL_CHECK (s))
2727 s = local_symbol_convert ((struct local_symbol *) s);
2728 s->sy_obj = *o;
2731 #endif /* OBJ_SYMFIELD_TYPE */
2733 #ifdef TC_SYMFIELD_TYPE
2735 /* Get a pointer to the processor information for a symbol. */
2737 TC_SYMFIELD_TYPE *
2738 symbol_get_tc (symbolS *s)
2740 if (LOCAL_SYMBOL_CHECK (s))
2741 s = local_symbol_convert ((struct local_symbol *) s);
2742 return &s->sy_tc;
2745 /* Set the processor information for a symbol. */
2747 void
2748 symbol_set_tc (symbolS *s, TC_SYMFIELD_TYPE *o)
2750 if (LOCAL_SYMBOL_CHECK (s))
2751 s = local_symbol_convert ((struct local_symbol *) s);
2752 s->sy_tc = *o;
2755 #endif /* TC_SYMFIELD_TYPE */
2757 void
2758 symbol_begin (void)
2760 symbol_lastP = NULL;
2761 symbol_rootP = NULL; /* In case we have 0 symbols (!!) */
2762 sy_hash = hash_new ();
2763 local_hash = hash_new ();
2765 memset ((char *) (&abs_symbol), '\0', sizeof (abs_symbol));
2766 #if defined (EMIT_SECTION_SYMBOLS) || !defined (RELOC_REQUIRES_SYMBOL)
2767 abs_symbol.bsym = bfd_abs_section.symbol;
2768 #endif
2769 abs_symbol.sy_value.X_op = O_constant;
2770 abs_symbol.sy_frag = &zero_address_frag;
2772 if (LOCAL_LABELS_FB)
2773 fb_label_init ();
2776 void
2777 dot_symbol_init (void)
2779 dot_symbol.bsym = bfd_make_empty_symbol (stdoutput);
2780 if (dot_symbol.bsym == NULL)
2781 as_fatal ("bfd_make_empty_symbol: %s", bfd_errmsg (bfd_get_error ()));
2782 dot_symbol.bsym->name = ".";
2783 dot_symbol.sy_forward_ref = 1;
2784 dot_symbol.sy_value.X_op = O_constant;
2787 int indent_level;
2789 /* Maximum indent level.
2790 Available for modification inside a gdb session. */
2791 static int max_indent_level = 8;
2793 void
2794 print_symbol_value_1 (FILE *file, symbolS *sym)
2796 const char *name = S_GET_NAME (sym);
2797 if (!name || !name[0])
2798 name = "(unnamed)";
2799 fprintf (file, "sym ");
2800 fprintf_vma (file, (bfd_vma) ((bfd_hostptr_t) sym));
2801 fprintf (file, " %s", name);
2803 if (LOCAL_SYMBOL_CHECK (sym))
2805 struct local_symbol *locsym = (struct local_symbol *) sym;
2807 if (local_symbol_get_frag (locsym) != & zero_address_frag
2808 && local_symbol_get_frag (locsym) != NULL)
2810 fprintf (file, " frag ");
2811 fprintf_vma (file, (bfd_vma) ((bfd_hostptr_t) local_symbol_get_frag (locsym)));
2813 if (local_symbol_resolved_p (locsym))
2814 fprintf (file, " resolved");
2815 fprintf (file, " local");
2817 else
2819 if (sym->sy_frag != &zero_address_frag)
2821 fprintf (file, " frag ");
2822 fprintf_vma (file, (bfd_vma) ((bfd_hostptr_t) sym->sy_frag));
2824 if (sym->written)
2825 fprintf (file, " written");
2826 if (sym->sy_resolved)
2827 fprintf (file, " resolved");
2828 else if (sym->sy_resolving)
2829 fprintf (file, " resolving");
2830 if (sym->sy_used_in_reloc)
2831 fprintf (file, " used-in-reloc");
2832 if (sym->sy_used)
2833 fprintf (file, " used");
2834 if (S_IS_LOCAL (sym))
2835 fprintf (file, " local");
2836 if (S_IS_EXTERNAL (sym))
2837 fprintf (file, " extern");
2838 if (S_IS_WEAK (sym))
2839 fprintf (file, " weak");
2840 if (S_IS_DEBUG (sym))
2841 fprintf (file, " debug");
2842 if (S_IS_DEFINED (sym))
2843 fprintf (file, " defined");
2845 if (S_IS_WEAKREFR (sym))
2846 fprintf (file, " weakrefr");
2847 if (S_IS_WEAKREFD (sym))
2848 fprintf (file, " weakrefd");
2849 fprintf (file, " %s", segment_name (S_GET_SEGMENT (sym)));
2850 if (symbol_resolved_p (sym))
2852 segT s = S_GET_SEGMENT (sym);
2854 if (s != undefined_section
2855 && s != expr_section)
2856 fprintf (file, " %lx", (unsigned long) S_GET_VALUE (sym));
2858 else if (indent_level < max_indent_level
2859 && S_GET_SEGMENT (sym) != undefined_section)
2861 indent_level++;
2862 fprintf (file, "\n%*s<", indent_level * 4, "");
2863 if (LOCAL_SYMBOL_CHECK (sym))
2864 fprintf (file, "constant %lx",
2865 (unsigned long) ((struct local_symbol *) sym)->lsy_value);
2866 else
2867 print_expr_1 (file, &sym->sy_value);
2868 fprintf (file, ">");
2869 indent_level--;
2871 fflush (file);
2874 void
2875 print_symbol_value (symbolS *sym)
2877 indent_level = 0;
2878 print_symbol_value_1 (stderr, sym);
2879 fprintf (stderr, "\n");
2882 static void
2883 print_binary (FILE *file, const char *name, expressionS *exp)
2885 indent_level++;
2886 fprintf (file, "%s\n%*s<", name, indent_level * 4, "");
2887 print_symbol_value_1 (file, exp->X_add_symbol);
2888 fprintf (file, ">\n%*s<", indent_level * 4, "");
2889 print_symbol_value_1 (file, exp->X_op_symbol);
2890 fprintf (file, ">");
2891 indent_level--;
2894 void
2895 print_expr_1 (FILE *file, expressionS *exp)
2897 fprintf (file, "expr ");
2898 fprintf_vma (file, (bfd_vma) ((bfd_hostptr_t) exp));
2899 fprintf (file, " ");
2900 switch (exp->X_op)
2902 case O_illegal:
2903 fprintf (file, "illegal");
2904 break;
2905 case O_absent:
2906 fprintf (file, "absent");
2907 break;
2908 case O_constant:
2909 fprintf (file, "constant %lx", (unsigned long) exp->X_add_number);
2910 break;
2911 case O_symbol:
2912 indent_level++;
2913 fprintf (file, "symbol\n%*s<", indent_level * 4, "");
2914 print_symbol_value_1 (file, exp->X_add_symbol);
2915 fprintf (file, ">");
2916 maybe_print_addnum:
2917 if (exp->X_add_number)
2918 fprintf (file, "\n%*s%lx", indent_level * 4, "",
2919 (unsigned long) exp->X_add_number);
2920 indent_level--;
2921 break;
2922 case O_register:
2923 fprintf (file, "register #%d", (int) exp->X_add_number);
2924 break;
2925 case O_big:
2926 fprintf (file, "big");
2927 break;
2928 case O_uminus:
2929 fprintf (file, "uminus -<");
2930 indent_level++;
2931 print_symbol_value_1 (file, exp->X_add_symbol);
2932 fprintf (file, ">");
2933 goto maybe_print_addnum;
2934 case O_bit_not:
2935 fprintf (file, "bit_not");
2936 break;
2937 case O_multiply:
2938 print_binary (file, "multiply", exp);
2939 break;
2940 case O_divide:
2941 print_binary (file, "divide", exp);
2942 break;
2943 case O_modulus:
2944 print_binary (file, "modulus", exp);
2945 break;
2946 case O_left_shift:
2947 print_binary (file, "lshift", exp);
2948 break;
2949 case O_right_shift:
2950 print_binary (file, "rshift", exp);
2951 break;
2952 case O_bit_inclusive_or:
2953 print_binary (file, "bit_ior", exp);
2954 break;
2955 case O_bit_exclusive_or:
2956 print_binary (file, "bit_xor", exp);
2957 break;
2958 case O_bit_and:
2959 print_binary (file, "bit_and", exp);
2960 break;
2961 case O_eq:
2962 print_binary (file, "eq", exp);
2963 break;
2964 case O_ne:
2965 print_binary (file, "ne", exp);
2966 break;
2967 case O_lt:
2968 print_binary (file, "lt", exp);
2969 break;
2970 case O_le:
2971 print_binary (file, "le", exp);
2972 break;
2973 case O_ge:
2974 print_binary (file, "ge", exp);
2975 break;
2976 case O_gt:
2977 print_binary (file, "gt", exp);
2978 break;
2979 case O_logical_and:
2980 print_binary (file, "logical_and", exp);
2981 break;
2982 case O_logical_or:
2983 print_binary (file, "logical_or", exp);
2984 break;
2985 case O_add:
2986 indent_level++;
2987 fprintf (file, "add\n%*s<", indent_level * 4, "");
2988 print_symbol_value_1 (file, exp->X_add_symbol);
2989 fprintf (file, ">\n%*s<", indent_level * 4, "");
2990 print_symbol_value_1 (file, exp->X_op_symbol);
2991 fprintf (file, ">");
2992 goto maybe_print_addnum;
2993 case O_subtract:
2994 indent_level++;
2995 fprintf (file, "subtract\n%*s<", indent_level * 4, "");
2996 print_symbol_value_1 (file, exp->X_add_symbol);
2997 fprintf (file, ">\n%*s<", indent_level * 4, "");
2998 print_symbol_value_1 (file, exp->X_op_symbol);
2999 fprintf (file, ">");
3000 goto maybe_print_addnum;
3001 default:
3002 fprintf (file, "{unknown opcode %d}", (int) exp->X_op);
3003 break;
3005 fflush (stdout);
3008 void
3009 print_expr (expressionS *exp)
3011 print_expr_1 (stderr, exp);
3012 fprintf (stderr, "\n");
3015 void
3016 symbol_print_statistics (FILE *file)
3018 hash_print_statistics (file, "symbol table", sy_hash);
3019 hash_print_statistics (file, "mini local symbol table", local_hash);
3020 fprintf (file, "%lu mini local symbols created, %lu converted\n",
3021 local_symbol_count, local_symbol_conversion_count);
3024 #ifdef OBJ_COMPLEX_RELC
3026 /* Convert given symbol to a new complex-relocation symbol name. This
3027 may be a recursive function, since it might be called for non-leaf
3028 nodes (plain symbols) in the expression tree. The caller owns the
3029 returning string, so should free it eventually. Errors are
3030 indicated via as_bad and a NULL return value. The given symbol
3031 is marked with sy_used_in_reloc. */
3033 char *
3034 symbol_relc_make_sym (symbolS * sym)
3036 char * terminal = NULL;
3037 const char * sname;
3038 char typetag;
3039 int sname_len;
3041 gas_assert (sym != NULL);
3043 /* Recurse to symbol_relc_make_expr if this symbol
3044 is defined as an expression or a plain value. */
3045 if ( S_GET_SEGMENT (sym) == expr_section
3046 || S_GET_SEGMENT (sym) == absolute_section)
3047 return symbol_relc_make_expr (& sym->sy_value);
3049 /* This may be a "fake symbol" L0\001, referring to ".".
3050 Write out a special null symbol to refer to this position. */
3051 if (! strcmp (S_GET_NAME (sym), FAKE_LABEL_NAME))
3052 return xstrdup (".");
3054 /* We hope this is a plain leaf symbol. Construct the encoding
3055 as {S,s}II...:CCCCCCC....
3056 where 'S'/'s' means section symbol / plain symbol
3057 III is decimal for the symbol name length
3058 CCC is the symbol name itself. */
3059 symbol_mark_used_in_reloc (sym);
3061 sname = S_GET_NAME (sym);
3062 sname_len = strlen (sname);
3063 typetag = symbol_section_p (sym) ? 'S' : 's';
3065 terminal = xmalloc (1 /* S or s */
3066 + 8 /* sname_len in decimal */
3067 + 1 /* _ spacer */
3068 + sname_len /* name itself */
3069 + 1 /* \0 */ );
3071 sprintf (terminal, "%c%d:%s", typetag, sname_len, sname);
3072 return terminal;
3075 /* Convert given value to a new complex-relocation symbol name. This
3076 is a non-recursive function, since it is be called for leaf nodes
3077 (plain values) in the expression tree. The caller owns the
3078 returning string, so should free() it eventually. No errors. */
3080 char *
3081 symbol_relc_make_value (offsetT val)
3083 char * terminal = xmalloc (28); /* Enough for long long. */
3085 terminal[0] = '#';
3086 bfd_sprintf_vma (stdoutput, terminal + 1, val);
3087 return terminal;
3090 /* Convert given expression to a new complex-relocation symbol name.
3091 This is a recursive function, since it traverses the entire given
3092 expression tree. The caller owns the returning string, so should
3093 free() it eventually. Errors are indicated via as_bad() and a NULL
3094 return value. */
3096 char *
3097 symbol_relc_make_expr (expressionS * exp)
3099 char * opstr = NULL; /* Operator prefix string. */
3100 int arity = 0; /* Arity of this operator. */
3101 char * operands[3]; /* Up to three operands. */
3102 char * concat_string = NULL;
3104 operands[0] = operands[1] = operands[2] = NULL;
3106 gas_assert (exp != NULL);
3108 /* Match known operators -> fill in opstr, arity, operands[] and fall
3109 through to construct subexpression fragments; may instead return
3110 string directly for leaf nodes. */
3112 /* See expr.h for the meaning of all these enums. Many operators
3113 have an unnatural arity (X_add_number implicitly added). The
3114 conversion logic expands them to explicit "+" subexpressions. */
3116 switch (exp->X_op)
3118 default:
3119 as_bad ("Unknown expression operator (enum %d)", exp->X_op);
3120 break;
3122 /* Leaf nodes. */
3123 case O_constant:
3124 return symbol_relc_make_value (exp->X_add_number);
3126 case O_symbol:
3127 if (exp->X_add_number)
3129 arity = 2;
3130 opstr = "+";
3131 operands[0] = symbol_relc_make_sym (exp->X_add_symbol);
3132 operands[1] = symbol_relc_make_value (exp->X_add_number);
3133 break;
3135 else
3136 return symbol_relc_make_sym (exp->X_add_symbol);
3138 /* Helper macros for nesting nodes. */
3140 #define HANDLE_XADD_OPT1(str_) \
3141 if (exp->X_add_number) \
3143 arity = 2; \
3144 opstr = "+:" str_; \
3145 operands[0] = symbol_relc_make_sym (exp->X_add_symbol); \
3146 operands[1] = symbol_relc_make_value (exp->X_add_number); \
3147 break; \
3149 else \
3151 arity = 1; \
3152 opstr = str_; \
3153 operands[0] = symbol_relc_make_sym (exp->X_add_symbol); \
3155 break
3157 #define HANDLE_XADD_OPT2(str_) \
3158 if (exp->X_add_number) \
3160 arity = 3; \
3161 opstr = "+:" str_; \
3162 operands[0] = symbol_relc_make_sym (exp->X_add_symbol); \
3163 operands[1] = symbol_relc_make_sym (exp->X_op_symbol); \
3164 operands[2] = symbol_relc_make_value (exp->X_add_number); \
3166 else \
3168 arity = 2; \
3169 opstr = str_; \
3170 operands[0] = symbol_relc_make_sym (exp->X_add_symbol); \
3171 operands[1] = symbol_relc_make_sym (exp->X_op_symbol); \
3173 break
3175 /* Nesting nodes. */
3177 case O_uminus: HANDLE_XADD_OPT1 ("0-");
3178 case O_bit_not: HANDLE_XADD_OPT1 ("~");
3179 case O_logical_not: HANDLE_XADD_OPT1 ("!");
3180 case O_multiply: HANDLE_XADD_OPT2 ("*");
3181 case O_divide: HANDLE_XADD_OPT2 ("/");
3182 case O_modulus: HANDLE_XADD_OPT2 ("%");
3183 case O_left_shift: HANDLE_XADD_OPT2 ("<<");
3184 case O_right_shift: HANDLE_XADD_OPT2 (">>");
3185 case O_bit_inclusive_or: HANDLE_XADD_OPT2 ("|");
3186 case O_bit_exclusive_or: HANDLE_XADD_OPT2 ("^");
3187 case O_bit_and: HANDLE_XADD_OPT2 ("&");
3188 case O_add: HANDLE_XADD_OPT2 ("+");
3189 case O_subtract: HANDLE_XADD_OPT2 ("-");
3190 case O_eq: HANDLE_XADD_OPT2 ("==");
3191 case O_ne: HANDLE_XADD_OPT2 ("!=");
3192 case O_lt: HANDLE_XADD_OPT2 ("<");
3193 case O_le: HANDLE_XADD_OPT2 ("<=");
3194 case O_ge: HANDLE_XADD_OPT2 (">=");
3195 case O_gt: HANDLE_XADD_OPT2 (">");
3196 case O_logical_and: HANDLE_XADD_OPT2 ("&&");
3197 case O_logical_or: HANDLE_XADD_OPT2 ("||");
3200 /* Validate & reject early. */
3201 if (arity >= 1 && ((operands[0] == NULL) || (strlen (operands[0]) == 0)))
3202 opstr = NULL;
3203 if (arity >= 2 && ((operands[1] == NULL) || (strlen (operands[1]) == 0)))
3204 opstr = NULL;
3205 if (arity >= 3 && ((operands[2] == NULL) || (strlen (operands[2]) == 0)))
3206 opstr = NULL;
3208 if (opstr == NULL)
3209 concat_string = NULL;
3210 else
3212 /* Allocate new string; include inter-operand padding gaps etc. */
3213 concat_string = xmalloc (strlen (opstr)
3215 + (arity >= 1 ? (strlen (operands[0]) + 1 ) : 0)
3216 + (arity >= 2 ? (strlen (operands[1]) + 1 ) : 0)
3217 + (arity >= 3 ? (strlen (operands[2]) + 0 ) : 0)
3218 + 1);
3219 gas_assert (concat_string != NULL);
3221 /* Format the thing. */
3222 sprintf (concat_string,
3223 (arity == 0 ? "%s" :
3224 arity == 1 ? "%s:%s" :
3225 arity == 2 ? "%s:%s:%s" :
3226 /* arity == 3 */ "%s:%s:%s:%s"),
3227 opstr, operands[0], operands[1], operands[2]);
3230 /* Free operand strings (not opstr). */
3231 if (arity >= 1) xfree (operands[0]);
3232 if (arity >= 2) xfree (operands[1]);
3233 if (arity >= 3) xfree (operands[2]);
3235 return concat_string;
3238 #endif