]> git.sur5r.net Git - cc65/blob - src/cc65/symentry.h
2dc731f35f3b4f940f903faed9d81864ef9499d8
[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
102
103
104 /* Label definition or reference */
105 typedef struct DefOrRef DefOrRef;
106 struct DefOrRef {
107     unsigned            Line;
108     long                LocalsBlockId;
109     unsigned            Flags;
110     int                 StackPtr;
111     unsigned            Depth;
112     unsigned            LateSP_Label;
113 };
114
115 /* Symbol table entry */
116 typedef struct SymEntry SymEntry;
117 struct SymEntry {
118     SymEntry*                   NextHash; /* Next entry in hash list */
119     SymEntry*                   PrevSym;  /* Previous symbol in dl list */
120     SymEntry*                   NextSym;  /* Next symbol double linked list */
121     SymEntry*                   Link;     /* General purpose single linked list */
122     struct SymTable*            Owner;    /* Symbol table the symbol is in */
123     unsigned                    Flags;    /* Symbol flags */
124     Type*                       Type;     /* Symbol type */
125     Collection*                 Attr;     /* Attribute list if any */
126     char*                       AsmName;  /* Assembler name if any */
127
128     /* Data that differs for the different symbol types */
129     union {
130
131         /* Offset for locals or struct members */
132         int                     Offs;
133
134         /* Label name for static symbols */
135         struct {
136             unsigned            Label;
137             Collection          *DefsOrRefs;
138         } L;
139
140         /* Register bank offset and offset of the saved copy on stack for
141         ** register variables.
142         */
143         struct {
144             int                 RegOffs;
145             int                 SaveOffs;
146         } R;
147
148         /* Value for constants (including enums) */
149         long                    ConstVal;
150
151         /* Data for structs/unions */
152         struct {
153             struct SymTable*    SymTab;   /* Member symbol table */
154             unsigned            Size;     /* Size of the union/struct */
155         } S;
156
157         /* Data for bit fields */
158         struct {
159             unsigned            Offs;     /* Byte offset into struct */
160             unsigned            BitOffs;  /* Bit offset into storage unit */
161             unsigned            BitWidth; /* Width in bits */
162         } B;
163
164         /* Data for functions */
165         struct {
166             struct FuncDesc*    Func;     /* Function descriptor */
167             struct Segments*    Seg;      /* Segments for this function */
168             struct LiteralPool* LitPool;  /* Literal pool for this function */
169         } F;
170
171         /* Segment name for tentantive global definitions */
172         const char*             BssName;
173     } V;
174     char                       Name[1]; /* Name, dynamically allocated */
175 };
176
177
178
179 /*****************************************************************************/
180 /*                                   Code                                    */
181 /*****************************************************************************/
182
183
184
185 SymEntry* NewSymEntry (const char* Name, unsigned Flags);
186 /* Create a new symbol table with the given name */
187
188 void FreeSymEntry (SymEntry* E);
189 /* Free a symbol entry */
190
191 void DumpSymEntry (FILE* F, const SymEntry* E);
192 /* Dump the given symbol table entry to the file in readable form */
193
194 #if defined(HAVE_INLINE)
195 INLINE int SymIsBitField (const SymEntry* Sym)
196 /* Return true if the given entry is a bit-field entry */
197 {
198     return ((Sym->Flags & SC_BITFIELD) == SC_BITFIELD);
199 }
200 #else
201 #  define SymIsBitField(Sym)    (((Sym)->Flags & SC_BITFIELD) == SC_BITFIELD)
202 #endif
203
204 #if defined(HAVE_INLINE)
205 INLINE int SymIsTypeDef (const SymEntry* Sym)
206 /* Return true if the given entry is a typedef entry */
207 {
208     return ((Sym->Flags & SC_TYPEDEF) == SC_TYPEDEF);
209 }
210 #else
211 #  define SymIsTypeDef(Sym)     (((Sym)->Flags & SC_TYPEDEF) == SC_TYPEDEF)
212 #endif
213
214 #if defined(HAVE_INLINE)
215 INLINE int SymIsDef (const SymEntry* Sym)
216 /* Return true if the given entry is defined */
217 {
218     return ((Sym->Flags & SC_DEF) == SC_DEF);
219 }
220 #else
221 #  define SymIsDef(Sym)     (((Sym)->Flags & SC_DEF) == SC_DEF)
222 #endif
223
224 #if defined(HAVE_INLINE)
225 INLINE int SymIsRef (const SymEntry* Sym)
226 /* Return true if the given entry is referenced */
227 {
228     return ((Sym->Flags & SC_REF) == SC_REF);
229 }
230 #else
231 #  define SymIsRef(Sym)     (((Sym)->Flags & SC_REF) == SC_REF)
232 #endif
233
234 #if defined(HAVE_INLINE)
235 INLINE int SymIsRegVar (const SymEntry* Sym)
236 /* Return true if the given entry is a register variable */
237 /* ### HACK! Fix the ugly type flags! */
238 {
239     return ((Sym->Flags & (SC_REGISTER|SC_TYPE)) == SC_REGISTER);
240 }
241 #else
242 #  define SymIsRegVar(Sym)      (((Sym)->Flags & (SC_REGISTER|SC_TYPE)) == SC_REGISTER)
243 #endif
244
245 int SymIsOutputFunc (const SymEntry* Sym);
246 /* Return true if this is a function that must be output */
247
248 #if defined(HAVE_INLINE)
249 INLINE const char* SymGetAsmName (const SymEntry* Sym)
250 /* Return the assembler label name for the symbol (beware: may be NULL!) */
251 {
252     return Sym->AsmName;
253 }
254 #else
255 #  define SymGetAsmName(Sym)      ((Sym)->AsmName)
256 #endif
257
258 const DeclAttr* SymGetAttr (const SymEntry* Sym, DeclAttrType AttrType);
259 /* Return an attribute for this symbol or NULL if the attribute does not exist */
260
261 #if defined(HAVE_INLINE)
262 INLINE int SymHasAttr (const SymEntry* Sym, DeclAttrType A)
263 /* Return true if the symbol has the given attribute */
264 {
265     return (SymGetAttr (Sym, A) != 0);
266 }
267 #else
268 #  define SymHasAttr(Sym, A)       (SymGetAttr (Sym, A) != 0)
269 #endif
270
271 void SymUseAttr (SymEntry* Sym, struct Declaration* D);
272 /* Use the attributes from the declaration for this symbol */
273
274 void SymSetAsmName (SymEntry* Sym);
275 /* Set the assembler name for an external symbol from the name of the symbol */
276
277 void CvtRegVarToAuto (SymEntry* Sym);
278 /* Convert a register variable to an auto variable */
279
280 void ChangeSymType (SymEntry* Entry, Type* T);
281 /* Change the type of the given symbol */
282
283 void ChangeAsmName (SymEntry* Entry, const char* NewAsmName);
284 /* Change the assembler name of the symbol */
285
286 int HasAnonName (const SymEntry* Entry);
287 /* Return true if the symbol entry has an anonymous name */
288
289
290
291 /* End of symentry.h */
292
293 #endif