]> git.sur5r.net Git - cc65/blob - src/cc65/symentry.h
Make __fixargs__ an actual symbol table entry. Add a new pseudo variable
[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     Ullrich von Bassewitz                                        */
10 /*              Wacholderweg 14                                              */
11 /*              D-70597 Stuttgart                                            */
12 /* EMail:       uz@musoftware.de                                             */
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 #include "datatype.h"
44
45
46
47 /*****************************************************************************/
48 /*                              struct SymEntry                              */
49 /*****************************************************************************/
50
51
52
53 /* Storage classes and flags */
54 #define SC_AUTO         0x0001U
55 #define SC_REGISTER     0x0002U /* Register variable, is in static storage */
56 #define SC_STATIC       0x0004U
57 #define SC_EXTERN       0x0008U
58
59 #define SC_ENUM         0x0030U /* An enum (numeric constant) */    
60 #define SC_CONST        0x0020U /* A numeric constant with a type */
61 #define SC_LABEL        0x0040U /* A goto label */
62 #define SC_PARAM        0x0080U /* This is a function parameter */
63 #define SC_FUNC         0x0100U /* Function entry */
64
65 #define SC_STORAGE      0x0400U /* Symbol with associated storage */
66 #define SC_DEFAULT      0x0800U /* Flag: default storage class was used */
67
68 #define SC_DEF          0x1000U /* Symbol is defined */
69 #define SC_REF          0x2000U /* Symbol is referenced */
70
71 #define SC_TYPE         0x4000U /* This is a type, struct, typedef, etc. */
72 #define SC_STRUCT       0x4001U /* Struct or union */
73 #define SC_SFLD         0x4002U /* Struct or union field */
74 #define SC_TYPEDEF      0x4003U /* A typedef */
75
76 #define SC_ZEROPAGE     0x8000U /* Symbol marked as zeropage */
77
78
79
80 /* Symbol table entry */
81 typedef struct SymEntry SymEntry;
82 struct SymEntry {
83     SymEntry*                   NextHash; /* Next entry in hash list */
84     SymEntry*                   PrevSym;  /* Previous symbol in dl list */
85     SymEntry*                   NextSym;  /* Next symbol double linked list */
86     SymEntry*                   Link;     /* General purpose single linked list */
87     struct SymTable*            Owner;    /* Symbol table the symbol is in */
88     unsigned                    Flags;    /* Symbol flags */
89     type*                       Type;     /* Symbol type */
90
91     /* Data that differs for the different symbol types */
92     union {
93
94         /* Offset for locals or struct members */
95         int                     Offs;
96
97         /* Label name for static symbols */
98         unsigned                Label;
99
100         /* Value for enums */
101         int                     EnumVal;
102
103         /* Data for structs/unions */
104         struct {
105             struct SymTable*    SymTab;   /* Member symbol table */
106             unsigned            Size;     /* Size of the union/struct */
107         } S;
108
109         /* Data for functions */
110         struct FuncDesc*        Func;     /* Function descriptor */
111
112     } V;
113     char                       Name[1]; /* Name, dynamically allocated */
114 };
115
116
117
118 /*****************************************************************************/
119 /*                                   Code                                    */
120 /*****************************************************************************/
121
122
123
124 SymEntry* NewSymEntry (const char* Name, unsigned Flags);
125 /* Create a new symbol table with the given name */
126
127 void FreeSymEntry (SymEntry* E);
128 /* Free a symbol entry */
129
130 void DumpSymEntry (FILE* F, const SymEntry* E);
131 /* Dump the given symbol table entry to the file in readable form */
132
133 int IsTypeDef (const SymEntry* E);
134 /* Return true if the given entry is a typedef entry */
135
136 void ChangeSymType (SymEntry* Entry, type* Type);
137 /* Change the type of the given symbol */
138
139
140
141 /* End of symentry.h */
142 #endif
143
144
145