]> git.sur5r.net Git - cc65/blob - src/ca65/symtab.h
Fixes for the watcom makefiles:
[cc65] / src / ca65 / symtab.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 symtab.h                                  */
4 /*                                                                           */
5 /*                 Symbol table for the ca65 macroassembler                  */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-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 SYMTAB_H
37 #define SYMTAB_H
38
39
40
41 #include <stdio.h>
42
43 /* common */
44 #include "exprdefs.h"
45 #include "inline.h"
46
47 /* ca65 */
48 #include "segrange.h"
49 #include "symentry.h"
50
51
52
53 /*****************************************************************************/
54 /*                                   Data                                    */
55 /*****************************************************************************/
56
57
58
59 /* Symbol table flags */
60 #define ST_NONE         0x00            /* No flags */
61 #define ST_DEFINED      0x01            /* Scope has been defined */
62
63 /* Symbol table types */
64 enum {
65     ST_GLOBAL,                          /* Root level */
66     ST_PROC,                            /* .PROC */
67     ST_SCOPE,                           /* .SCOPE */
68     ST_SCOPE_HAS_DATA = ST_SCOPE,       /* Last scope that contains data */
69     ST_STRUCT,                          /* .STRUCT/.UNION */
70     ST_ENUM,                            /* .ENUM */
71     ST_UNDEF    = 0xFF
72 };
73
74 /* A symbol table */
75 typedef struct SymTable SymTable;
76 struct SymTable {
77     SymTable*           Left;           /* Pointer to smaller entry */
78     SymTable*           Right;          /* Pointer to greater entry */
79     SymTable*           Parent;         /* Link to enclosing scope if any */
80     SymTable*           Childs;         /* Pointer to child scopes */
81     Collection          SegRanges;      /* Segment ranges for this scope */
82     unsigned short      Flags;          /* Symbol table flags */
83     unsigned char       AddrSize;       /* Address size */
84     unsigned char       Type;           /* Type of the scope */
85     unsigned            Level;          /* Lexical level */
86     unsigned            TableSlots;     /* Number of hash table slots */
87     unsigned            TableEntries;   /* Number of entries in the table */
88     unsigned            Name;           /* Name of the scope */
89     SymEntry*           Table[1];       /* Dynamic allocation */
90 };
91
92 /* Symbol tables */
93 extern SymTable*        CurrentScope;   /* Pointer to current symbol table */
94 extern SymTable*        RootScope;      /* Root symbol table */
95
96
97
98 /*****************************************************************************/
99 /*                                   Code                                    */
100 /*****************************************************************************/
101
102
103
104 void SymEnterLevel (const StrBuf* ScopeName, unsigned char Type, unsigned char AddrSize);
105 /* Enter a new lexical level */
106
107 void SymLeaveLevel (void);
108 /* Leave the current lexical level */
109
110 SymTable* SymFindScope (SymTable* Parent, const StrBuf* Name, int AllocNew);
111 /* Find a scope in the given enclosing scope */
112
113 SymTable* SymFindAnyScope (SymTable* Parent, const StrBuf* Name);
114 /* Find a scope in the given or any of its parent scopes. The function will
115  * never create a new symbol, since this can only be done in one specific
116  * scope.
117  */
118
119 SymEntry* SymFindLocal (SymEntry* Parent, const StrBuf* StrBuf, int AllocNew);
120 /* Find a cheap local symbol. If AllocNew is given and the entry is not
121  * found, create a new one. Return the entry found, or the new entry created,
122  * or - in case AllocNew is zero - return 0.
123  */
124
125 SymEntry* SymFind (SymTable* Scope, const StrBuf* Name, int AllocNew);
126 /* Find a new symbol table entry in the given table. If AllocNew is given and
127  * the entry is not found, create a new one. Return the entry found, or the
128  * new entry created, or - in case AllocNew is zero - return 0.
129  */
130
131 SymEntry* SymFindAny (SymTable* Scope, const StrBuf* Name);
132 /* Find a symbol in the given or any of its parent scopes. The function will
133  * never create a new symbol, since this can only be done in one specific
134  * scope.
135  */
136
137 #if defined(HAVE_INLINE)
138 INLINE unsigned char GetSymTabType (const SymTable* S)
139 /* Return the type of the given symbol table */
140 {
141     return S->Type;
142 }
143 #else
144 #  define GetSymTabType(S)      ((S)->Type)
145 #endif
146
147 unsigned char GetCurrentSymTabType ();
148 /* Return the type of the current symbol table */
149
150 void SymCheck (void);
151 /* Run through all symbols and check for anomalies and errors */
152
153 void SymDump (FILE* F);
154 /* Dump the symbol table */
155
156 void WriteImports (void);
157 /* Write the imports list to the object file */
158
159 void WriteExports (void);
160 /* Write the exports list to the object file */
161
162 void WriteDbgSyms (void);
163 /* Write a list of all symbols to the object file */
164
165
166
167 /* End of symtab.h */
168
169 #endif
170
171
172