]> git.sur5r.net Git - cc65/blob - src/cc65/symentry.h
a43356cc9e0ac73af5a6a532114b8f6d0903ef42
[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-2008 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 "inline.h"
45
46 /* cc65 */
47 #include "datatype.h"
48
49
50
51 /*****************************************************************************/
52 /*                                  Forwards                                 */
53 /*****************************************************************************/
54
55
56
57 struct Segments;
58
59
60
61 /*****************************************************************************/
62 /*                              struct SymEntry                              */
63 /*****************************************************************************/
64
65
66
67 /* Storage classes and flags */
68 #define SC_AUTO         0x0001U
69 #define SC_REGISTER     0x0002U /* Register variable, is in static storage */
70 #define SC_STATIC       0x0004U
71 #define SC_EXTERN       0x0008U
72
73 #define SC_ENUM         0x0030U /* An enum (numeric constant) */
74 #define SC_CONST        0x0020U /* A numeric constant with a type */
75 #define SC_LABEL        0x0040U /* A goto label */
76 #define SC_PARAM        0x0080U /* This is a function parameter */
77 #define SC_FUNC         0x0100U /* Function entry */
78
79 #define SC_DEFTYPE      0x0200U /* Parameter has default type (=int, old style) */
80 #define SC_STORAGE      0x0400U /* Symbol with associated storage */
81 #define SC_DEFAULT      0x0800U /* Flag: default storage class was used */
82
83 #define SC_DEF          0x1000U /* Symbol is defined */
84 #define SC_REF          0x2000U /* Symbol is referenced */
85
86 #define SC_TYPE         0x4000U /* This is a type, struct, typedef, etc. */
87 #define SC_STRUCT       0x4001U /* Struct or union */
88 #define SC_STRUCTFIELD  0x4002U /* Struct or union field */
89 #define SC_TYPEDEF      0x4003U /* A typedef */
90
91 #define SC_ZEROPAGE     0x8000U /* Symbol marked as zeropage */
92
93
94
95 /* Symbol table entry */
96 typedef struct SymEntry SymEntry;
97 struct SymEntry {
98     SymEntry*                   NextHash; /* Next entry in hash list */
99     SymEntry*                   PrevSym;  /* Previous symbol in dl list */
100     SymEntry*                   NextSym;  /* Next symbol double linked list */
101     SymEntry*                   Link;     /* General purpose single linked list */
102     struct SymTable*            Owner;    /* Symbol table the symbol is in */
103     unsigned                    Flags;    /* Symbol flags */
104     Type*                       Type;     /* Symbol type */
105     char*                       AsmName;  /* Assembler name if any */
106
107     /* Data that differs for the different symbol types */
108     union {
109
110         /* Offset for locals or struct members */
111         int                     Offs;
112
113         /* Label name for static symbols */
114         unsigned                Label;
115
116         /* Register bank offset and offset of the saved copy on stack for
117          * register variables.
118          */
119         struct {
120             int                 RegOffs;
121             int                 SaveOffs;
122         } R;
123
124         /* Value for constants (including enums) */
125         long                    ConstVal;
126
127         /* Data for structs/unions */
128         struct {
129             struct SymTable*    SymTab;   /* Member symbol table */
130             unsigned            Size;     /* Size of the union/struct */
131         } S;
132
133         /* Data for functions */
134         struct {
135             struct FuncDesc*    Func;     /* Function descriptor */
136             struct Segments*    Seg;      /* Segments for this function */
137         } F;
138
139     } V;
140     char                       Name[1]; /* Name, dynamically allocated */
141 };
142
143
144
145 /*****************************************************************************/
146 /*                                   Code                                    */
147 /*****************************************************************************/
148
149
150
151 SymEntry* NewSymEntry (const char* Name, unsigned Flags);
152 /* Create a new symbol table with the given name */
153
154 void FreeSymEntry (SymEntry* E);
155 /* Free a symbol entry */
156
157 void DumpSymEntry (FILE* F, const SymEntry* E);
158 /* Dump the given symbol table entry to the file in readable form */
159
160 #if defined(HAVE_INLINE)
161 INLINE int SymIsTypeDef (const SymEntry* Sym)
162 /* Return true if the given entry is a typedef entry */
163 {
164     return ((Sym->Flags & SC_TYPEDEF) == SC_TYPEDEF);
165 }
166 #else
167 #  define SymIsTypeDef(Sym)     (((Sym)->Flags & SC_TYPEDEF) == SC_TYPEDEF)
168 #endif
169
170 #if defined(HAVE_INLINE)
171 INLINE int SymIsDef (const SymEntry* Sym)
172 /* Return true if the given entry is defined */
173 {
174     return ((Sym->Flags & SC_DEF) == SC_DEF);
175 }
176 #else
177 #  define SymIsDef(Sym)     (((Sym)->Flags & SC_DEF) == SC_DEF)
178 #endif
179
180 #if defined(HAVE_INLINE)
181 INLINE int SymIsRef (const SymEntry* Sym)
182 /* Return true if the given entry is referenced */
183 {
184     return ((Sym->Flags & SC_REF) == SC_REF);
185 }
186 #else
187 #  define SymIsRef(Sym)     (((Sym)->Flags & SC_REF) == SC_REF)
188 #endif
189
190 #if defined(HAVE_INLINE)
191 INLINE int SymIsRegVar (const SymEntry* Sym)
192 /* Return true if the given entry is a register variable */
193 /* ### HACK! Fix the ugly type flags! */
194 {
195     return ((Sym->Flags & (SC_REGISTER|SC_TYPE)) == SC_REGISTER);
196 }
197 #else
198 #  define SymIsRegVar(Sym)      (((Sym)->Flags & (SC_REGISTER|SC_TYPE)) == SC_REGISTER)
199 #endif
200
201 #if defined(HAVE_INLINE)
202 INLINE const char* SymGetAsmName (const SymEntry* Sym)
203 /* Return the assembler label name for the symbol (beware: may be NULL!) */
204 {
205     return Sym->AsmName;
206 }
207 #else
208 #  define SymGetAsmName(Sym)      ((Sym)->AsmName)
209 #endif
210
211 void CvtRegVarToAuto (SymEntry* Sym);
212 /* Convert a register variable to an auto variable */
213
214 void ChangeSymType (SymEntry* Entry, Type* T);
215 /* Change the type of the given symbol */
216
217 void ChangeAsmName (SymEntry* Entry, const char* NewAsmName);
218 /* Change the assembler name of the symbol */
219
220 int HasAnonName (const SymEntry* Entry);
221 /* Return true if the symbol entry has an anonymous name */
222
223
224
225 /* End of symentry.h */
226 #endif
227
228
229