1 /*****************************************************************************/
5 /* Local variable handling for the cc65 C compiler */
9 /* (C) 2000 Ullrich von Bassewitz */
11 /* D-70597 Stuttgart */
12 /* EMail: uz@musoftware.de */
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. */
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: */
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 */
32 /*****************************************************************************/
36 #include "../common/xmalloc.h"
51 /*****************************************************************************/
53 /*****************************************************************************/
57 /* Register variable management */
58 unsigned MaxRegSpace = 6; /* Maximum space available */
59 static unsigned RegOffs = 0; /* Offset into register space */
60 static const SymEntry** RegSyms = 0; /* The register variables */
61 static unsigned RegSymCount = 0; /* Number of register variables */
65 /*****************************************************************************/
67 /*****************************************************************************/
71 void InitRegVars (void)
72 /* Initialize register variable control data */
74 /* If the register space is zero, bail out */
75 if (MaxRegSpace == 0) {
79 /* The maximum number of register variables is equal to the register
80 * variable space available. So allocate one pointer per byte. This
81 * will usually waste some space but we don't need to dynamically
84 RegSyms = xmalloc (MaxRegSpace * sizeof (RegSyms[0]));
85 RegOffs = MaxRegSpace;
90 void DoneRegVars (void)
91 /* Free the register variables */
95 RegOffs = MaxRegSpace;
101 static int AllocRegVar (const SymEntry* Sym, const type* tarray)
102 /* Allocate a register variable with the given amount of storage. If the
103 * allocation was successful, return the offset of the register variable in
104 * the register bank (zero page storage). If there is no register space left,
108 /* Maybe register variables are disabled... */
111 /* Get the size of the variable */
112 unsigned Size = SizeOf (tarray);
114 /* Do we have space left? */
115 if (RegOffs >= Size) {
117 /* Space left. We allocate the variables from high to low addresses,
118 * so the adressing is compatible with the saved values on stack.
119 * This allows shorter code when saving/restoring the variables.
122 RegSyms [RegSymCount++] = Sym;
127 /* No space left or no allocation */
133 static void ParseOneDecl (const DeclSpec* Spec)
134 /* Parse one variable declaration */
136 int Size; /* Size of an auto variable */
137 int SC; /* Storage class for symbol */
138 int SymData = 0; /* Symbol data (offset, label name, ...) */
139 unsigned flags = 0; /* Code generator flags */
140 Declaration Decl; /* Declaration data structure */
142 /* Remember the storage class for the new symbol */
143 SC = Spec->StorageClass;
145 /* Read the declaration */
146 ParseDecl (Spec, &Decl, DM_NEED_IDENT);
148 /* Set the correct storage class for functions */
149 if (IsFunc (Decl.Type)) {
150 /* Function prototypes are always external */
151 if ((SC & SC_EXTERN) == 0) {
152 Warning (WARN_FUNC_MUST_BE_EXTERN);
154 SC |= SC_FUNC | SC_EXTERN;
158 /* If we don't have a name, this was flagged as an error earlier.
159 * To avoid problems later, use an anonymous name here.
161 if (Decl.Ident[0] == '\0') {
162 AnonName (Decl.Ident, "param");
165 /* Handle anything that needs storage (no functions, no typdefs) */
166 if ((SC & SC_FUNC) != SC_FUNC && (SC & SC_TYPEDEF) != SC_TYPEDEF) {
168 /* Get the size of the variable */
169 Size = SizeOf (Decl.Type);
171 if (SC & (SC_AUTO | SC_REGISTER)) {
174 if (StaticLocals == 0) {
176 /* Change SC in case it was register */
177 SC = (SC & ~SC_REGISTER) | SC_AUTO;
178 if (curtok == TOK_ASSIGN) {
182 /* Allocate previously reserved local space */
183 AllocLocalSpace (CurrentFunc);
185 /* Switch to the code segment. */
191 /* Setup the type flags for the assignment */
192 flags = Size == 1? CF_FORCECHAR : CF_NONE;
194 /* Get the expression into the primary */
195 if (evalexpr (flags, hie1, &lval) == 0) {
196 /* Constant expression. Adjust the types */
197 assignadjust (Decl.Type, &lval);
200 /* Expression is not constant and in the primary */
201 assignadjust (Decl.Type, &lval);
205 g_push (flags | TypeOf (Decl.Type), lval.e_const);
207 /* Mark the variable as referenced */
210 /* Variable is located at the current SP */
214 /* Non-initialized local variable. Just keep track of
217 SymData = ReserveLocalSpace (CurrentFunc, Size);
222 /* Static local variables. */
223 SC = (SC & ~(SC_REGISTER | SC_AUTO)) | SC_STATIC;
225 /* Put them into the BSS */
228 /* Define the variable label */
229 SymData = GetLabel ();
230 g_defloclabel (SymData);
232 /* Reserve space for the data */
235 /* Allow assignments */
236 if (curtok == TOK_ASSIGN) {
240 /* Switch to the code segment. */
246 /* Get the expression into the primary */
249 /* Make type adjustments if needed */
250 assignadjust (Decl.Type, &lval);
252 /* Setup the type flags for the assignment */
253 flags = TypeOf (Decl.Type);
255 flags |= CF_FORCECHAR;
258 /* Store the value into the variable */
259 g_putstatic (flags, SymData, 0);
261 /* Mark the variable as referenced */
266 } else if ((SC & SC_STATIC) == SC_STATIC) {
269 if (curtok == TOK_ASSIGN) {
271 /* Initialization ahead, switch to data segment */
274 /* Define the variable label */
275 SymData = GetLabel ();
276 g_defloclabel (SymData);
281 /* Allow initialization of static vars */
282 ParseInit (Decl.Type);
284 /* Mark the variable as referenced */
289 /* Uninitialized data, use BSS segment */
292 /* Define the variable label */
293 SymData = GetLabel ();
294 g_defloclabel (SymData);
296 /* Reserve space for the data */
304 /* If the symbol is not marked as external, it will be defined */
305 if ((SC & SC_EXTERN) == 0) {
309 /* Add the symbol to the symbol table */
310 AddLocalSym (Decl.Ident, Decl.Type, SC, SymData);
315 void DeclareLocals (void)
316 /* Declare local variables and types. */
318 /* Loop until we don't find any more variables */
321 /* Check variable declarations. We need to distinguish between a
322 * default int type and the end of variable declarations. So we
323 * will do the following: If there is no explicit storage class
324 * specifier *and* no explicit type given, it is assume that we
325 * have reached the end of declarations.
328 ParseDeclSpec (&Spec, SC_AUTO, T_INT);
329 if ((Spec.Flags & DS_DEF_STORAGE) != 0 && (Spec.Flags & DS_DEF_TYPE) != 0) {
333 /* Accept type only declarations */
334 if (curtok == TOK_SEMI) {
335 /* Type declaration only */
336 CheckEmptyDecl (&Spec);
341 /* Parse a comma separated variable list */
344 /* Parse one declaration */
345 ParseOneDecl (&Spec);
347 /* Check if there is more */
348 if (curtok == TOK_COMMA) {
357 /* A semicolon must follow */
361 /* Be sure to allocate any reserved space for locals */
362 AllocLocalSpace (CurrentFunc);
364 /* In case we switched away from code segment, switch back now */
370 void RestoreRegVars (int HaveResult)
371 /* Restore the register variables for the local function if there are any.
372 * The parameter tells us if there is a return value in ax, in that case,
373 * the accumulator must be saved across the restore.
379 /* If we don't have register variables in this function, bail out early */
380 if (RegSymCount == 0) {
384 /* Save the accumulator if needed */
385 if (!HasVoidReturn (CurrentFunc) && HaveResult) {
386 g_save (CF_CHAR | CF_FORCECHAR);
389 /* Walk through all variables. If there are several variables in a row
390 * (that is, with increasing stack offset), restore them in one chunk.
393 while (I < RegSymCount) {
395 /* Check for more than one variable */
396 const SymEntry* Sym = RegSyms[I];
398 Bytes = SizeOf (Sym->Type);
401 while (J < RegSymCount) {
403 /* Get the next symbol */
404 const SymEntry* NextSym = RegSyms [J];
407 int Size = SizeOf (NextSym->Type);
409 /* Adjacent variable? */
410 if (NextSym->V.Offs + Size != Offs) {
415 /* Adjacent variable */
422 /* Restore the memory range */
423 g_restore_regvars (Offs, Sym->V.Offs, Bytes);
429 /* Restore the accumulator if needed */
430 if (!HasVoidReturn (CurrentFunc) && HaveResult) {
431 g_restore (CF_CHAR | CF_FORCECHAR);