]> git.sur5r.net Git - cc65/blob - src/cc65/symentry.c
Fixed a bug
[cc65] / src / cc65 / symentry.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                symentry.c                                 */
4 /*                                                                           */
5 /*               Symbol table entries for the cc65 C compiler                */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2002 Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
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 #include <string.h>
37
38 /* common */
39 #include "xmalloc.h"
40
41 /* cc65 */
42 #include "symentry.h"
43
44
45
46 /*****************************************************************************/
47 /*                                   Code                                    */
48 /*****************************************************************************/
49
50
51
52 SymEntry* NewSymEntry (const char* Name, unsigned Flags)
53 /* Create a new symbol table with the given name */
54 {
55     /* Get the length of the name */
56     unsigned Len = strlen (Name);
57
58     /* Allocate memory for the symbol entry */
59     SymEntry* E = xmalloc (sizeof (SymEntry) + Len);
60
61     /* Initialize the entry */
62     E->NextHash = 0;
63     E->PrevSym  = 0;
64     E->NextSym  = 0;
65     E->Link     = 0;
66     E->Owner    = 0;
67     E->Flags    = Flags;
68     E->Type     = 0;
69     E->AsmName  = 0;
70     memcpy (E->Name, Name, Len+1);
71
72     /* Return the new entry */
73     return E;
74 }
75
76
77
78 void FreeSymEntry (SymEntry* E)
79 /* Free a symbol entry */
80 {
81     TypeFree (E->Type);
82     xfree (E->AsmName);
83     xfree (E);
84 }
85
86
87
88 void DumpSymEntry (FILE* F, const SymEntry* E)
89 /* Dump the given symbol table entry to the file in readable form */
90 {
91     static const struct {
92         const char*         Name;
93         unsigned            Val;
94     } Flags [] = {
95         /* Beware: Order is important! */
96         { "SC_TYPEDEF",     SC_TYPEDEF  },
97         { "SC_SFLD",        SC_SFLD     },
98         { "SC_STRUCT",      SC_STRUCT   },
99         { "SC_AUTO",        SC_AUTO     },
100         { "SC_REGISTER",    SC_REGISTER },
101         { "SC_STATIC",      SC_STATIC   },
102         { "SC_EXTERN",      SC_EXTERN   },
103         { "SC_ENUM",        SC_ENUM     },
104         { "SC_CONST",       SC_CONST    },
105         { "SC_LABEL",       SC_LABEL    },
106         { "SC_PARAM",       SC_PARAM    },
107         { "SC_FUNC",        SC_FUNC     },
108         { "SC_STORAGE",     SC_STORAGE  },
109         { "SC_DEF",         SC_DEF      },
110         { "SC_REF",         SC_REF      },
111         { "SC_ZEROPAGE",    SC_ZEROPAGE },
112     };
113
114     unsigned I;
115     unsigned SymFlags;
116
117     /* Print the name */
118     fprintf (F, "%s:\n", E->Name);
119
120     /* Print the assembler name if we have one */
121     if (E->AsmName) {
122         fprintf (F, "    AsmName: %s\n", E->AsmName);
123     }
124
125     /* Print the flags */
126     SymFlags = E->Flags;
127     fprintf (F, "    Flags: ");
128     for (I = 0; I < sizeof (Flags) / sizeof (Flags[0]) && SymFlags != 0; ++I) {
129         if ((SymFlags & Flags[I].Val) == Flags[I].Val) {
130             SymFlags &= ~Flags[I].Val;
131             fprintf (F, "%s ", Flags[I].Name);
132         }
133     }
134     if (SymFlags != 0) {
135         fprintf (F, "%04X", SymFlags);
136     }
137     fprintf (F, "\n");
138
139     /* Print the type */
140     fprintf (F, "    Type:  ");
141     if (E->Type) {
142         PrintType (F, E->Type);
143     } else {
144         fprintf (F, "(none)");
145     }
146     fprintf (F, "\n");
147 }
148
149
150
151 int IsTypeDef (const SymEntry* E)
152 /* Return true if the given entry is a typedef entry */
153 {
154     return ((E->Flags & SC_TYPEDEF) == SC_TYPEDEF);
155 }
156
157
158
159 void ChangeSymType (SymEntry* Entry, type* Type)
160 /* Change the type of the given symbol */
161 {
162     TypeFree (Entry->Type);
163     Entry->Type = TypeDup (Type);
164 }
165
166
167
168 void ChangeAsmName (SymEntry* Entry, const char* NewAsmName)
169 /* Change the assembler name of the symbol */               
170 {
171     xfree (Entry->AsmName);
172     Entry->AsmName = xstrdup (NewAsmName);
173 }
174
175
176