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