binutils/testsuite/
[binutils.git] / gas / struc-symbol.h
blob2326ee4f06fb9bd968fc70b73261472c831851e7
1 /* struct_symbol.h - Internal symbol structure
2 Copyright 1987, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2005
3 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
22 #ifndef __struc_symbol_h__
23 #define __struc_symbol_h__
25 /* The information we keep for a symbol. Note that the symbol table
26 holds pointers both to this and to local_symbol structures. See
27 below. */
29 struct symbol
31 /* BFD symbol */
32 asymbol *bsym;
34 /* The value of the symbol. */
35 expressionS sy_value;
37 /* Forwards and (optionally) backwards chain pointers. */
38 struct symbol *sy_next;
39 struct symbol *sy_previous;
41 /* Pointer to the frag this symbol is attached to, if any.
42 Otherwise, NULL. */
43 struct frag *sy_frag;
45 unsigned int written : 1;
46 /* Whether symbol value has been completely resolved (used during
47 final pass over symbol table). */
48 unsigned int sy_resolved : 1;
49 /* Whether the symbol value is currently being resolved (used to
50 detect loops in symbol dependencies). */
51 unsigned int sy_resolving : 1;
52 /* Whether the symbol value is used in a reloc. This is used to
53 ensure that symbols used in relocs are written out, even if they
54 are local and would otherwise not be. */
55 unsigned int sy_used_in_reloc : 1;
57 /* Whether the symbol is used as an operand or in an expression.
58 NOTE: Not all the backends keep this information accurate;
59 backends which use this bit are responsible for setting it when
60 a symbol is used in backend routines. */
61 unsigned int sy_used : 1;
63 /* Whether the symbol can be re-defined. */
64 unsigned int sy_volatile : 1;
66 /* Whether the symbol is a forward reference. */
67 unsigned int sy_forward_ref : 1;
69 /* This is set if the symbol is defined in an MRI common section.
70 We handle such sections as single common symbols, so symbols
71 defined within them must be treated specially by the relocation
72 routines. */
73 unsigned int sy_mri_common : 1;
75 #ifdef OBJ_SYMFIELD_TYPE
76 OBJ_SYMFIELD_TYPE sy_obj;
77 #endif
79 #ifdef TC_SYMFIELD_TYPE
80 TC_SYMFIELD_TYPE sy_tc;
81 #endif
83 #ifdef TARGET_SYMBOL_FIELDS
84 TARGET_SYMBOL_FIELDS
85 #endif
88 /* A pointer in the symbol may point to either a complete symbol
89 (struct symbol above) or to a local symbol (struct local_symbol
90 defined here). The symbol code can detect the case by examining
91 the first field. It is always NULL for a local symbol.
93 We do this because we ordinarily only need a small amount of
94 information for a local symbol. The symbol table takes up a lot of
95 space, and storing less information for a local symbol can make a
96 big difference in assembler memory usage when assembling a large
97 file. */
99 struct local_symbol
101 /* This pointer is always NULL to indicate that this is a local
102 symbol. */
103 asymbol *lsy_marker;
105 /* The symbol section. This also serves as a flag. If this is
106 reg_section, then this symbol has been converted into a regular
107 symbol, and lsy_sym points to it. */
108 segT lsy_section;
110 /* The symbol name. */
111 const char *lsy_name;
113 /* The symbol frag or the real symbol, depending upon the value in
114 lsy_section. If the symbol has been fully resolved, lsy_frag is
115 set to NULL. */
116 union
118 fragS *lsy_frag;
119 symbolS *lsy_sym;
120 } u;
122 /* The value of the symbol. */
123 valueT lsy_value;
125 #ifdef TC_LOCAL_SYMFIELD_TYPE
126 TC_LOCAL_SYMFIELD_TYPE lsy_tc;
127 #endif
130 #define local_symbol_converted_p(l) ((l)->lsy_section == reg_section)
131 #define local_symbol_mark_converted(l) ((l)->lsy_section = reg_section)
132 #define local_symbol_resolved_p(l) ((l)->u.lsy_frag == NULL)
133 #define local_symbol_mark_resolved(l) ((l)->u.lsy_frag = NULL)
134 #define local_symbol_get_frag(l) ((l)->u.lsy_frag)
135 #define local_symbol_set_frag(l, f) ((l)->u.lsy_frag = (f))
136 #define local_symbol_get_real_symbol(l) ((l)->u.lsy_sym)
137 #define local_symbol_set_real_symbol(l, s) ((l)->u.lsy_sym = (s))
139 #endif /* __struc_symbol_h__ */