]> git.sur5r.net Git - cc65/blob - src/cc65/symentry.h
Renamed a C header.
[cc65] / src / cc65 / symentry.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                symentry.h                                 */
4 /*                                                                           */
5 /*               Symbol table entries for the cc65 C compiler                */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2013, Ullrich von Bassewitz                                      */
10 /*                Roemerstrasse 52                                           */
11 /*                D-70794 Filderstadt                                        */
12 /* EMail:         uz@cc65.org                                                */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef SYMENTRY_H
37 #define SYMENTRY_H
38
39
40
41 #include <stdio.h>
42
43 /* common */
44 #include "coll.h"
45 #include "inline.h"
46
47 /* cc65 */
48 #include "datatype.h"
49 #include "declattr.h"
50
51
52
53 /*****************************************************************************/
54 /*                                  Forwards                                 */
55 /*****************************************************************************/
56
57
58
59 struct Segments;
60 struct LiteralPool;
61
62
63
64 /*****************************************************************************/
65 /*                              struct SymEntry                              */
66 /*****************************************************************************/
67
68
69
70 /* Storage classes and flags */
71 #define SC_AUTO         0x0001U         /* Auto variable */
72 #define SC_REGISTER     0x0002U         /* Register variable */
73 #define SC_STATIC       0x0004U         /* Static */
74 #define SC_EXTERN       0x0008U         /* Extern linkage */
75
76 #define SC_ENUM         0x0030U         /* An enum */
77 #define SC_CONST        0x0020U         /* A numeric constant with a type */
78 #define SC_LABEL        0x0040U         /* A goto label */
79 #define SC_PARAM        0x0080U         /* A function parameter */
80 #define SC_FUNC         0x0100U         /* A function */
81
82 #define SC_DEFTYPE      0x0200U         /* Parameter has default type (=int, old style) */
83 #define SC_STORAGE      0x0400U         /* Symbol with associated storage */
84 #define SC_DEFAULT      0x0800U         /* Flag: default storage class was used */
85
86 #define SC_DEF          0x1000U         /* Symbol is defined */
87 #define SC_REF          0x2000U         /* Symbol is referenced */
88
89 #define SC_TYPE         0x4000U         /* This is a type, struct, typedef, etc. */
90 #define SC_STRUCT       0x4001U         /* Struct */
91 #define SC_UNION        0x4002U         /* Union */
92 #define SC_STRUCTFIELD  0x4003U         /* Struct or union field */
93 #define SC_BITFIELD     0x4004U         /* A bit-field inside a struct or union */
94 #define SC_TYPEDEF      0x4005U         /* A typedef */
95 #define SC_TYPEMASK     0x400FU         /* Mask for above types */
96
97 #define SC_ZEROPAGE     0x8000U         /* Symbol marked as zeropage */
98
99 #define SC_HAVEATTR     0x10000U        /* Symbol has attributes */
100
101 #define SC_GOTO         0x20000U
102 #define SC_SPADJUSTMENT 0x40000U
103
104
105
106
107 /* Label definition or reference */
108 typedef struct DefOrRef DefOrRef;
109 struct DefOrRef {
110     unsigned            Line;
111     long                LocalsBlockId;
112     unsigned            Flags;
113     int                 StackPtr;
114     unsigned            Depth;
115     unsigned            LateSP_Label;
116 };
117
118 /* Symbol table entry */
119 typedef struct SymEntry SymEntry;
120 struct SymEntry {
121     SymEntry*                   NextHash; /* Next entry in hash list */
122     SymEntry*                   PrevSym;  /* Previous symbol in dl list */
123     SymEntry*                   NextSym;  /* Next symbol double linked list */
124     SymEntry*                   Link;     /* General purpose single linked list */
125     struct SymTable*            Owner;    /* Symbol table the symbol is in */
126     unsigned                    Flags;    /* Symbol flags */
127     Type*                       Type;     /* Symbol type */
128     Collection*                 Attr;     /* Attribute list if any */
129     char*                       AsmName;  /* Assembler name if any */
130
131     /* Data that differs for the different symbol types */
132     union {
133
134         /* Offset for locals or struct members */
135         int                     Offs;
136
137         /* Label name for static symbols */
138         struct {
139             unsigned            Label;
140             Collection          *DefsOrRefs;
141         } L;
142
143         /* Value of SP adjustment needed after forward 'goto' */
144         unsigned short      SPAdjustment;
145
146         /* Register bank offset and offset of the saved copy on stack for
147         ** register variables.
148         */
149         struct {
150             int                 RegOffs;
151             int                 SaveOffs;
152         } R;
153
154         /* Value for constants (including enums) */
155         long                    ConstVal;
156
157         /* Data for structs/unions */
158         struct {
159             struct SymTable*    SymTab;   /* Member symbol table */
160             unsigned            Size;     /* Size of the union/struct */
161         } S;
162
163         /* Data for bit fields */
164         struct {
165             unsigned            Offs;     /* Byte offset into struct */
166             unsigned            BitOffs;  /* Bit offset into storage unit */
167             unsigned            BitWidth; /* Width in bits */
168         } B;
169
170         /* Data for functions */
171         struct {
172             struct FuncDesc*    Func;     /* Function descriptor */
173             struct Segments*    Seg;      /* Segments for this function */
174             struct LiteralPool* LitPool;  /* Literal pool for this function */
175         } F;
176
177         /* Segment name for tentantive global definitions */
178         const char*             BssName;
179     } V;
180     char                       Name[1]; /* Name, dynamically allocated */
181 };
182
183
184
185 /*****************************************************************************/
186 /*                                   Code                                    */
187 /*****************************************************************************/
188
189
190
191 SymEntry* NewSymEntry (const char* Name, unsigned Flags);
192 /* Create a new symbol table with the given name */
193
194 void FreeSymEntry (SymEntry* E);
195 /* Free a symbol entry */
196
197 void DumpSymEntry (FILE* F, const SymEntry* E);
198 /* Dump the given symbol table entry to the file in readable form */
199
200 #if defined(HAVE_INLINE)
201 INLINE int SymIsBitField (const SymEntry* Sym)
202 /* Return true if the given entry is a bit-field entry */
203 {
204     return ((Sym->Flags & SC_BITFIELD) == SC_BITFIELD);
205 }
206 #else
207 #  define SymIsBitField(Sym)    (((Sym)->Flags & SC_BITFIELD) == SC_BITFIELD)
208 #endif
209
210 #if defined(HAVE_INLINE)
211 INLINE int SymIsTypeDef (const SymEntry* Sym)
212 /* Return true if the given entry is a typedef entry */
213 {
214     return ((Sym->Flags & SC_TYPEDEF) == SC_TYPEDEF);
215 }
216 #else
217 #  define SymIsTypeDef(Sym)     (((Sym)->Flags & SC_TYPEDEF) == SC_TYPEDEF)
218 #endif
219
220 #if defined(HAVE_INLINE)
221 INLINE int SymIsDef (const SymEntry* Sym)
222 /* Return true if the given entry is defined */
223 {
224     return ((Sym->Flags & SC_DEF) == SC_DEF);
225 }
226 #else
227 #  define SymIsDef(Sym)     (((Sym)->Flags & SC_DEF) == SC_DEF)
228 #endif
229
230 #if defined(HAVE_INLINE)
231 INLINE int SymIsRef (const SymEntry* Sym)
232 /* Return true if the given entry is referenced */
233 {
234     return ((Sym->Flags & SC_REF) == SC_REF);
235 }
236 #else
237 #  define SymIsRef(Sym)     (((Sym)->Flags & SC_REF) == SC_REF)
238 #endif
239
240 #if defined(HAVE_INLINE)
241 INLINE int SymIsRegVar (const SymEntry* Sym)
242 /* Return true if the given entry is a register variable */
243 /* ### HACK! Fix the ugly type flags! */
244 {
245     return ((Sym->Flags & (SC_REGISTER|SC_TYPE)) == SC_REGISTER);
246 }
247 #else
248 #  define SymIsRegVar(Sym)      (((Sym)->Flags & (SC_REGISTER|SC_TYPE)) == SC_REGISTER)
249 #endif
250
251 int SymIsOutputFunc (const SymEntry* Sym);
252 /* Return true if this is a function that must be output */
253
254 #if defined(HAVE_INLINE)
255 INLINE const char* SymGetAsmName (const SymEntry* Sym)
256 /* Return the assembler label name for the symbol (beware: may be NULL!) */
257 {
258     return Sym->AsmName;
259 }
260 #else
261 #  define SymGetAsmName(Sym)      ((Sym)->AsmName)
262 #endif
263
264 const DeclAttr* SymGetAttr (const SymEntry* Sym, DeclAttrType AttrType);
265 /* Return an attribute for this symbol or NULL if the attribute does not exist */
266
267 #if defined(HAVE_INLINE)
268 INLINE int SymHasAttr (const SymEntry* Sym, DeclAttrType A)
269 /* Return true if the symbol has the given attribute */
270 {
271     return (SymGetAttr (Sym, A) != 0);
272 }
273 #else
274 #  define SymHasAttr(Sym, A)       (SymGetAttr (Sym, A) != 0)
275 #endif
276
277 void SymUseAttr (SymEntry* Sym, struct Declaration* D);
278 /* Use the attributes from the declaration for this symbol */
279
280 void SymSetAsmName (SymEntry* Sym);
281 /* Set the assembler name for an external symbol from the name of the symbol */
282
283 void CvtRegVarToAuto (SymEntry* Sym);
284 /* Convert a register variable to an auto variable */
285
286 void ChangeSymType (SymEntry* Entry, Type* T);
287 /* Change the type of the given symbol */
288
289 void ChangeAsmName (SymEntry* Entry, const char* NewAsmName);
290 /* Change the assembler name of the symbol */
291
292 int HasAnonName (const SymEntry* Entry);
293 /* Return true if the symbol entry has an anonymous name */
294
295
296
297 /* End of symentry.h */
298
299 #endif