]> git.sur5r.net Git - cc65/blob - src/cc65/compile.c
Fixed two compiler warnings.
[cc65] / src / cc65 / compile.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 compile.c                                 */
4 /*                                                                           */
5 /*                       Top level compiler subroutine                       */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2009, 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 #include <stdlib.h>
37 #include <time.h>
38
39 /* common */
40 #include "debugflag.h"
41 #include "version.h"
42 #include "xmalloc.h"
43 #include "xsprintf.h"
44
45 /* cc65 */
46 #include "asmlabel.h"
47 #include "asmstmt.h"
48 #include "codegen.h"
49 #include "codeopt.h"
50 #include "compile.h"
51 #include "declare.h"
52 #include "error.h"
53 #include "expr.h"
54 #include "function.h"
55 #include "global.h"
56 #include "input.h"
57 #include "litpool.h"
58 #include "macrotab.h"
59 #include "output.h"
60 #include "pragma.h"
61 #include "preproc.h"
62 #include "standard.h"
63 #include "symtab.h"
64
65
66
67 /*****************************************************************************/
68 /*                                   Code                                    */
69 /*****************************************************************************/
70
71
72
73 static void Parse (void)
74 /* Top level parser routine. */
75 {
76     int comma;
77     SymEntry* Entry;
78
79     /* Go... */
80     NextToken ();
81     NextToken ();
82
83     /* Parse until end of input */
84     while (CurTok.Tok != TOK_CEOF) {
85
86         DeclSpec        Spec;
87
88         /* Check for empty statements */
89         if (CurTok.Tok == TOK_SEMI) {
90             NextToken ();
91             continue;
92         }
93
94         /* Disallow ASM statements on global level */
95         if (CurTok.Tok == TOK_ASM) {
96             Error ("__asm__ is not allowed here");                 
97             /* Parse and remove the statement for error recovery */
98             AsmStatement ();
99             ConsumeSemi ();
100             RemoveGlobalCode ();
101             continue;
102         }
103
104         /* Check for a #pragma */
105         if (CurTok.Tok == TOK_PRAGMA) {
106             DoPragma ();
107             continue;
108         }
109
110         /* Read variable defs and functions */
111         ParseDeclSpec (&Spec, SC_EXTERN | SC_STATIC, T_INT);
112
113         /* Don't accept illegal storage classes */
114         if ((Spec.StorageClass & SC_TYPE) == 0) {
115             if ((Spec.StorageClass & SC_AUTO) != 0 ||
116                 (Spec.StorageClass & SC_REGISTER) != 0) {
117                 Error ("Illegal storage class");
118                 Spec.StorageClass = SC_EXTERN | SC_STATIC;
119             }
120         }
121
122         /* Check if this is only a type declaration */
123         if (CurTok.Tok == TOK_SEMI) {
124             CheckEmptyDecl (&Spec);
125             NextToken ();
126             continue;
127         }
128
129         /* Read declarations for this type */
130         Entry = 0;
131         comma = 0;
132         while (1) {
133
134             Declaration         Decl;
135
136             /* Read the next declaration */
137             ParseDecl (&Spec, &Decl, DM_NEED_IDENT);
138             if (Decl.Ident[0] == '\0') {
139                 NextToken ();
140                 break;
141             }
142
143             /* Check if we must reserve storage for the variable. We do this,
144              *
145              *   - if it is not a typedef or function,
146              *   - if we don't had a storage class given ("int i")
147              *   - if the storage class is explicitly specified as static,
148              *   - or if there is an initialization.
149              *
150              * This means that "extern int i;" will not get storage allocated.
151              */
152             if ((Decl.StorageClass & SC_FUNC) != SC_FUNC          &&
153                 (Decl.StorageClass & SC_TYPEDEF) != SC_TYPEDEF    &&
154                 ((Spec.Flags & DS_DEF_STORAGE) != 0         ||
155                  (Decl.StorageClass & (SC_EXTERN|SC_STATIC)) == SC_STATIC ||
156                  ((Decl.StorageClass & SC_EXTERN) != 0 &&
157                   CurTok.Tok == TOK_ASSIGN))) {
158
159                 /* We will allocate storage */
160                 Decl.StorageClass |= SC_STORAGE | SC_DEF;
161             }
162
163             /* If this is a function declarator that is not followed by a comma
164              * or semicolon, it must be followed by a function body. If this is
165              * the case, convert an empty parameter list into one accepting no
166              * parameters (same as void) as required by the standard.
167              */
168             if ((Decl.StorageClass & SC_FUNC) != 0 &&
169                 (CurTok.Tok != TOK_COMMA)          &&
170                 (CurTok.Tok != TOK_SEMI)) {
171
172                 FuncDesc* D = GetFuncDesc (Decl.Type);
173                 if (D->Flags & FD_EMPTY) {
174                     D->Flags = (D->Flags & ~(FD_EMPTY | FD_VARIADIC)) | FD_VOID_PARAM;
175                 }
176             }
177
178             /* Add an entry to the symbol table */
179             Entry = AddGlobalSym (Decl.Ident, Decl.Type, Decl.StorageClass);
180
181             /* Add declaration attributes */
182             SymUseAttr (Entry, &Decl);
183
184             /* Reserve storage for the variable if we need to */
185             if (Decl.StorageClass & SC_STORAGE) {
186
187                 /* Get the size of the variable */
188                 unsigned Size = SizeOf (Decl.Type);
189
190                 /* Allow initialization */
191                 if (CurTok.Tok == TOK_ASSIGN) {
192
193                     /* We cannot initialize types of unknown size, or
194                      * void types in non ANSI mode.
195                      */
196                     if (Size == 0) {
197                         if (!IsTypeVoid (Decl.Type)) {
198                             if (!IsTypeArray (Decl.Type)) {
199                                 /* Size is unknown and not an array */
200                                 Error ("Variable `%s' has unknown size", Decl.Ident);
201                             }
202                         } else if (IS_Get (&Standard) != STD_CC65) {
203                             /* We cannot declare variables of type void */
204                             Error ("Illegal type for variable `%s'", Decl.Ident);
205                         }
206                     }
207
208                     /* Switch to the data or rodata segment. For arrays, check
209                       * the element qualifiers, since not the array but its
210                       * elements are const.
211                       */
212                     if (IsQualConst (Decl.Type) ||
213                         (IsTypeArray (Decl.Type) &&
214                          IsQualConst (GetElementType (Decl.Type)))) {
215                         g_userodata ();
216                     } else {
217                         g_usedata ();
218                     }
219
220                     /* Define a label */
221                     g_defgloblabel (Entry->Name);
222
223                     /* Skip the '=' */
224                     NextToken ();
225
226                     /* Parse the initialization */
227                     ParseInit (Entry->Type);
228                 } else {
229
230                     if (IsTypeVoid (Decl.Type)) {
231                         /* We cannot declare variables of type void */
232                         Error ("Illegal type for variable `%s'", Decl.Ident);
233                         Entry->Flags &= ~(SC_STORAGE | SC_DEF);
234                     } else if (Size == 0) {
235                         /* Size is unknown. Is it an array? */
236                         if (!IsTypeArray (Decl.Type)) {
237                             Error ("Variable `%s' has unknown size", Decl.Ident);
238                         }
239                         Entry->Flags &= ~(SC_STORAGE | SC_DEF);
240                     }
241
242                     /* Allocate storage if it is still needed */
243                     if (Entry->Flags & SC_STORAGE) {
244
245                         /* Switch to the BSS segment */
246                         g_usebss ();
247
248                         /* Define a label */
249                         g_defgloblabel (Entry->Name);
250
251                         /* Allocate space for uninitialized variable */
252                         g_res (Size);
253                     }
254                 }
255
256             }
257
258             /* Check for end of declaration list */
259             if (CurTok.Tok == TOK_COMMA) {
260                 NextToken ();
261                 comma = 1;
262             } else {
263                 break;
264             }
265         }
266
267         /* Function declaration? */
268         if (Entry && IsTypeFunc (Entry->Type)) {
269
270             /* Function */
271             if (!comma) {
272                 if (CurTok.Tok == TOK_SEMI) {
273                     /* Prototype only */
274                     NextToken ();
275                 } else {
276
277                     /* Function body. Check for duplicate function definitions */
278                     if (SymIsDef (Entry)) {
279                         Error ("Body for function `%s' has already been defined",
280                                Entry->Name);
281                     }
282
283                     /* Parse the function body */
284                     NewFunc (Entry);
285                 }
286             }
287
288         } else {
289
290             /* Must be followed by a semicolon */
291             ConsumeSemi ();
292
293         }
294     }
295 }
296
297
298
299 void Compile (const char* FileName)
300 /* Top level compile routine. Will setup things and call the parser. */
301 {
302     char        DateStr[32];
303     char        TimeStr[32];
304     time_t      Time;
305     struct tm*  TM;
306
307     /* Since strftime is locale dependent, we need the abbreviated month names
308      * in english.
309      */
310     static const char MonthNames[12][4] = {
311         "Jan", "Feb", "Mar", "Apr", "May", "Jun",
312         "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
313     };
314
315     /* Add macros that are always defined */
316     DefineNumericMacro ("__CC65__", GetVersionAsNumber ());
317
318     /* Language standard that is supported */
319     DefineNumericMacro ("__CC65_STD_C89__", STD_C89);
320     DefineNumericMacro ("__CC65_STD_C99__", STD_C99);
321     DefineNumericMacro ("__CC65_STD_CC65__", STD_CC65);
322     DefineNumericMacro ("__CC65_STD__", IS_Get (&Standard));
323
324     /* Optimization macros. Since no source code has been parsed for now, the
325      * IS_Get functions access the values in effect now, regardless of any
326      * changes using #pragma later.
327      */
328     if (IS_Get (&Optimize)) {
329         long CodeSize = IS_Get (&CodeSizeFactor);
330         DefineNumericMacro ("__OPT__", 1);
331         if (CodeSize > 100) {
332             DefineNumericMacro ("__OPT_i__", CodeSize);
333         }
334         if (IS_Get (&EnableRegVars)) {
335             DefineNumericMacro ("__OPT_r__", 1);
336         }
337         if (IS_Get (&InlineStdFuncs)) {
338             DefineNumericMacro ("__OPT_s__", 1);
339         }
340     }
341
342     /* __TIME__ and __DATE__ macros */
343     Time = time (0);
344     TM   = localtime (&Time);
345     xsprintf (DateStr, sizeof (DateStr), "\"%s %2d %d\"",
346               MonthNames[TM->tm_mon], TM->tm_mday, TM->tm_year + 1900);
347     strftime (TimeStr, sizeof (TimeStr), "\"%H:%M:%S\"", TM);
348     DefineTextMacro ("__DATE__", DateStr);
349     DefineTextMacro ("__TIME__", TimeStr);
350
351     /* Other standard macros */
352     /* DefineNumericMacro ("__STDC__", 1);      <- not now */
353     DefineNumericMacro ("__STDC_HOSTED__", 1);
354
355     /* Create the base lexical level */
356     EnterGlobalLevel ();
357
358     /* Create the global code and data segments */
359     CreateGlobalSegments ();
360
361     /* Initialize the literal pool */
362     InitLiteralPool ();
363
364     /* Generate the code generator preamble */
365     g_preamble ();
366
367     /* Open the input file */
368     OpenMainFile (FileName);
369
370     /* Are we supposed to compile or just preprocess the input? */
371     if (PreprocessOnly) {
372
373         /* Open the file */
374         OpenOutputFile ();
375
376         /* Preprocess each line and write it to the output file */
377         while (NextLine ()) {
378             Preprocess ();
379             WriteOutput ("%.*s\n", (int) SB_GetLen (Line), SB_GetConstBuf (Line));
380         }
381
382         /* Close the output file */
383         CloseOutputFile ();
384
385     } else {
386
387         /* Ok, start the ball rolling... */
388         Parse ();
389
390     }
391
392     if (Debug) {
393         PrintMacroStats (stdout);
394     }
395
396     /* Print an error report */
397     ErrorReport ();
398 }
399
400
401
402 void FinishCompile (void)
403 /* Emit literals, externals, debug info, do cleanup and optimizations */
404 {
405     SymTable* SymTab;
406     SymEntry* Func;
407
408     /* Walk over all functions, doing cleanup, optimizations ... */
409     SymTab = GetGlobalSymTab ();
410     Func   = SymTab->SymHead;
411     while (Func) {
412         if (SymIsOutputFunc (Func)) {
413             /* Function which is defined and referenced or extern */
414             MoveLiteralPool (Func->V.F.LitPool);
415             CS_MergeLabels (Func->V.F.Seg->Code);
416             RunOpt (Func->V.F.Seg->Code);
417         }
418         Func = Func->NextSym;
419     }
420
421     /* Output the literal pool */
422     OutputLiteralPool ();
423
424     /* Emit debug infos if enabled */
425     EmitDebugInfo ();
426
427     /* Write imported/exported symbols */
428     EmitExternals ();
429
430     /* Leave the main lexical level */
431     LeaveGlobalLevel ();
432 }
433
434
435