bfd/
[deliverable/binutils-gdb.git] / gas / symbols.h
CommitLineData
252b5132 1/* symbols.h -
9758f3fc 2 Copyright 1987, 1990, 1992, 1993, 1994, 1995, 1997, 1999, 2000, 2001,
be95a9c1 3 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
252b5132
RH
4
5 This file is part of GAS, the GNU Assembler.
6
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.
11
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.
16
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
4b4da160
NC
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
252b5132 21
a01b9fa4 22extern struct obstack notes; /* eg FixS live here. */
252b5132
RH
23
24extern struct obstack cond_obstack; /* this is where we track .ifdef/.endif
25 (if we do that at all). */
26
27extern symbolS *symbol_rootP; /* all the symbol nodes */
28extern symbolS *symbol_lastP; /* last struct symbol we made, or NULL */
29
30extern symbolS abs_symbol;
31
32extern int symbol_table_frozen;
33
34/* This is non-zero if symbols are case sensitive, which is the
35 default. */
36extern int symbols_case_sensitive;
37
74937d39
KH
38char *decode_local_label_name (char *s);
39symbolS *symbol_find (const char *name);
40symbolS *symbol_find_exact (const char *name);
74937d39
KH
41symbolS *symbol_find_or_make (const char *name);
42symbolS *symbol_make (const char *name);
43symbolS *symbol_new (const char *name, segT segment, valueT value,
44 fragS * frag);
45symbolS *symbol_create (const char *name, segT segment, valueT value,
46 fragS * frag);
9497f5ac
NC
47symbolS *symbol_clone (symbolS *, int);
48#undef symbol_clone_if_forward_ref
49symbolS *symbol_clone_if_forward_ref (symbolS *, int);
50#define symbol_clone_if_forward_ref(s) symbol_clone_if_forward_ref (s, 0)
74937d39
KH
51symbolS *symbol_temp_new (segT, valueT, fragS *);
52symbolS *symbol_temp_new_now (void);
53symbolS *symbol_temp_make (void);
54
55symbolS *colon (const char *sym_name);
56void local_colon (int n);
57void symbol_begin (void);
58void symbol_print_statistics (FILE *);
59void symbol_table_insert (symbolS * symbolP);
60valueT resolve_symbol_value (symbolS *);
61void resolve_local_symbol_values (void);
9497f5ac 62int snapshot_symbol (symbolS *, valueT *, segT *, fragS **);
74937d39
KH
63
64void print_symbol_value (symbolS *);
65void print_expr (expressionS *);
66void print_expr_1 (FILE *, expressionS *);
67void print_symbol_value_1 (FILE *, symbolS *);
68
69int dollar_label_defined (long l);
70void dollar_label_clear (void);
71void define_dollar_label (long l);
72char *dollar_label_name (long l, int augend);
73
74void fb_label_instance_inc (long label);
75char *fb_label_name (long n, long augend);
76
77extern void copy_symbol_attributes (symbolS *, symbolS *);
252b5132
RH
78
79/* Get and set the values of symbols. These used to be macros. */
74937d39
KH
80extern valueT S_GET_VALUE (symbolS *);
81extern void S_SET_VALUE (symbolS *, valueT);
252b5132 82
74937d39
KH
83extern int S_IS_FUNCTION (symbolS *);
84extern int S_IS_EXTERNAL (symbolS *);
85extern int S_IS_WEAK (symbolS *);
86extern int S_IS_COMMON (symbolS *);
87extern int S_IS_DEFINED (symbolS *);
88extern int S_FORCE_RELOC (symbolS *, int);
89extern int S_IS_DEBUG (symbolS *);
90extern int S_IS_LOCAL (symbolS *);
74937d39 91extern int S_IS_STABD (symbolS *);
9497f5ac
NC
92extern int S_IS_VOLATILE (const symbolS *);
93extern int S_IS_FORWARD_REF (const symbolS *);
74937d39
KH
94extern const char *S_GET_NAME (symbolS *);
95extern segT S_GET_SEGMENT (symbolS *);
96extern void S_SET_SEGMENT (symbolS *, segT);
97extern void S_SET_EXTERNAL (symbolS *);
977cdf5a 98extern void S_SET_NAME (symbolS *, const char *);
74937d39
KH
99extern void S_CLEAR_EXTERNAL (symbolS *);
100extern void S_SET_WEAK (symbolS *);
101extern void S_SET_THREAD_LOCAL (symbolS *);
9497f5ac
NC
102extern void S_SET_VOLATILE (symbolS *);
103extern void S_SET_FORWARD_REF (symbolS *);
252b5132 104
49309057
ILT
105#ifndef WORKING_DOT_WORD
106struct broken_word
107 {
108 /* Linked list -- one of these structures per ".word x-y+C"
109 expression. */
110 struct broken_word *next_broken_word;
111 /* Segment and subsegment for broken word. */
112 segT seg;
113 subsegT subseg;
114 /* Which frag is this broken word in? */
115 fragS *frag;
116 /* Where in the frag is it? */
117 char *word_goes_here;
118 /* Where to add the break. */
119 fragS *dispfrag; /* where to add the break */
120 /* Operands of expression. */
121 symbolS *add;
122 symbolS *sub;
123 offsetT addnum;
124
47eebc20 125 int added; /* nasty thing happened yet? */
49309057
ILT
126 /* 1: added and has a long-jump */
127 /* 2: added but uses someone elses long-jump */
128
129 /* Pointer to broken_word with a similar long-jump. */
130 struct broken_word *use_jump;
131 };
132extern struct broken_word *broken_words;
133#endif /* ndef WORKING_DOT_WORD */
134
135/*
136 * Current means for getting from symbols to segments and vice verse.
137 * This will change for infinite-segments support (e.g. COFF).
138 */
139extern const segT N_TYPE_seg[]; /* subseg.c */
140
141#define SEGMENT_TO_SYMBOL_TYPE(seg) ( seg_N_TYPE [(int) (seg)] )
142extern const short seg_N_TYPE[];/* subseg.c */
143
144#define N_REGISTER 30 /* Fake N_TYPE value for SEG_REGISTER */
145
74937d39 146void symbol_clear_list_pointers (symbolS * symbolP);
49309057 147
74937d39
KH
148void symbol_insert (symbolS * addme, symbolS * target,
149 symbolS ** rootP, symbolS ** lastP);
150void symbol_remove (symbolS * symbolP, symbolS ** rootP,
151 symbolS ** lastP);
49309057 152
74937d39 153extern symbolS *symbol_previous (symbolS *);
49309057 154
74937d39 155void verify_symbol_chain (symbolS * rootP, symbolS * lastP);
74937d39
KH
156
157void symbol_append (symbolS * addme, symbolS * target,
158 symbolS ** rootP, symbolS ** lastP);
159
160extern symbolS *symbol_next (symbolS *);
161
162extern expressionS *symbol_get_value_expression (symbolS *);
163extern void symbol_set_value_expression (symbolS *, const expressionS *);
514d955d 164extern offsetT *symbol_X_add_number (symbolS *);
74937d39
KH
165extern void symbol_set_value_now (symbolS *);
166extern void symbol_set_frag (symbolS *, fragS *);
167extern fragS *symbol_get_frag (symbolS *);
168extern void symbol_mark_used (symbolS *);
169extern void symbol_clear_used (symbolS *);
170extern int symbol_used_p (symbolS *);
171extern void symbol_mark_used_in_reloc (symbolS *);
172extern void symbol_clear_used_in_reloc (symbolS *);
173extern int symbol_used_in_reloc_p (symbolS *);
174extern void symbol_mark_mri_common (symbolS *);
175extern void symbol_clear_mri_common (symbolS *);
176extern int symbol_mri_common_p (symbolS *);
177extern void symbol_mark_written (symbolS *);
178extern void symbol_clear_written (symbolS *);
179extern int symbol_written_p (symbolS *);
180extern void symbol_mark_resolved (symbolS *);
181extern int symbol_resolved_p (symbolS *);
182extern int symbol_section_p (symbolS *);
183extern int symbol_equated_p (symbolS *);
184extern int symbol_equated_reloc_p (symbolS *);
185extern int symbol_constant_p (symbolS *);
74937d39
KH
186extern asymbol *symbol_get_bfdsym (symbolS *);
187extern void symbol_set_bfdsym (symbolS *, asymbol *);
49309057
ILT
188
189#ifdef OBJ_SYMFIELD_TYPE
74937d39
KH
190OBJ_SYMFIELD_TYPE *symbol_get_obj (symbolS *);
191void symbol_set_obj (symbolS *, OBJ_SYMFIELD_TYPE *);
49309057
ILT
192#endif
193
194#ifdef TC_SYMFIELD_TYPE
74937d39
KH
195TC_SYMFIELD_TYPE *symbol_get_tc (symbolS *);
196void symbol_set_tc (symbolS *, TC_SYMFIELD_TYPE *);
49309057 197#endif
This page took 0.333986 seconds and 4 git commands to generate.