]> git.sur5r.net Git - cc65/blob - src/cc65/compile.c
Some improvements using the new SB_Printf for string buffers
[cc65] / src / cc65 / compile.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 compile.c                                 */
4 /*                                                                           */
5 /*                       Top level compiler subroutine                       */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2004 Ullrich von Bassewitz                                       */
10 /*               Römerstrasse 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 "compile.h"
50 #include "declare.h"
51 #include "error.h"
52 #include "expr.h"
53 #include "function.h"
54 #include "global.h"
55 #include "input.h"
56 #include "litpool.h"
57 #include "macrotab.h"
58 #include "pragma.h"
59 #include "preproc.h"
60 #include "standard.h"
61 #include "symtab.h"
62
63
64
65 /*****************************************************************************/
66 /*                                   Code                                    */
67 /*****************************************************************************/
68
69
70
71 static void Parse (void)
72 /* Top level parser routine. */
73 {
74     int comma;
75     SymEntry* Entry;
76
77     /* Go... */
78     NextToken ();
79     NextToken ();
80
81     /* Parse until end of input */
82     while (CurTok.Tok != TOK_CEOF) {
83
84         DeclSpec        Spec;
85         Declaration     Decl;
86         int             NeedStorage;
87
88         /* Check for empty statements */
89         if (CurTok.Tok == TOK_SEMI) {
90             NextToken ();
91             continue;
92         }
93
94         /* Check for an ASM statement (which is allowed also on global level) */
95         if (CurTok.Tok == TOK_ASM) {
96             AsmStatement ();
97             ConsumeSemi ();
98             continue;
99         }
100
101         /* Check for a #pragma */
102         if (CurTok.Tok == TOK_PRAGMA) {
103             DoPragma ();
104             continue;
105         }
106
107         /* Read variable defs and functions */
108         ParseDeclSpec (&Spec, SC_EXTERN | SC_STATIC, T_INT);
109
110         /* Don't accept illegal storage classes */
111         if ((Spec.StorageClass & SC_TYPE) == 0) {
112             if ((Spec.StorageClass & SC_AUTO) != 0 ||
113                 (Spec.StorageClass & SC_REGISTER) != 0) {
114                 Error ("Illegal storage class");
115                 Spec.StorageClass = SC_EXTERN | SC_STATIC;
116             }
117         }
118
119         /* Check if this is only a type declaration */
120         if (CurTok.Tok == TOK_SEMI) {
121             CheckEmptyDecl (&Spec);
122             NextToken ();
123             continue;
124         }
125
126         /* Check if we must reserve storage for the variable. We do
127          * this if we don't had a storage class given ("int i") or
128          * if the storage class is explicitly specified as static.
129          * This means that "extern int i" will not get storage
130          * allocated.
131          */
132         NeedStorage = (Spec.StorageClass & SC_TYPEDEF) == 0 &&
133                       ((Spec.Flags & DS_DEF_STORAGE) != 0  ||
134                       (Spec.StorageClass & (SC_STATIC | SC_EXTERN)) == SC_STATIC);
135
136         /* Read declarations for this type */
137         Entry = 0;
138         comma = 0;
139         while (1) {
140
141             unsigned SymFlags;
142
143             /* Read the next declaration */
144             ParseDecl (&Spec, &Decl, DM_NEED_IDENT);
145             if (Decl.Ident[0] == '\0') {
146                 NextToken ();
147                 break;
148             }
149
150             /* Get the symbol flags */
151             SymFlags = Spec.StorageClass;
152             if (IsTypeFunc (Decl.Type)) {
153                 SymFlags |= SC_FUNC;
154             } else {
155                 if (NeedStorage) {
156                     /* We will allocate storage, variable is defined */
157                     SymFlags |= SC_STORAGE | SC_DEF;
158                 }
159             }
160
161             /* Add an entry to the symbol table */
162             Entry = AddGlobalSym (Decl.Ident, Decl.Type, SymFlags);
163
164             /* Reserve storage for the variable if we need to */
165             if (SymFlags & SC_STORAGE) {
166
167                 /* Get the size of the variable */
168                 unsigned Size = SizeOf (Decl.Type);
169
170                 /* Allow initialization */
171                 if (CurTok.Tok == TOK_ASSIGN) {
172
173                     /* We cannot initialize types of unknown size, or
174                      * void types in non ANSI mode.
175                      */
176                     if (Size == 0) {
177                         if (!IsTypeVoid (Decl.Type)) {
178                             if (!IsTypeArray (Decl.Type)) {
179                                 /* Size is unknown and not an array */
180                                 Error ("Variable `%s' has unknown size", Decl.Ident);
181                             }
182                         } else if (IS_Get (&Standard) != STD_CC65) {
183                             /* We cannot declare variables of type void */
184                             Error ("Illegal type for variable `%s'", Decl.Ident);
185                         }
186                     }
187
188                     /* Switch to the data or rodata segment */
189                     if (IsQualConst (Decl.Type)) {
190                         g_userodata ();
191                     } else {
192                         g_usedata ();
193                     }
194
195                     /* Define a label */
196                     g_defgloblabel (Entry->Name);
197
198                     /* Skip the '=' */
199                     NextToken ();
200
201                     /* Parse the initialization */
202                     ParseInit (Entry->Type);
203                 } else {
204
205                     if (IsTypeVoid (Decl.Type)) {
206                         /* We cannot declare variables of type void */
207                         Error ("Illegal type for variable `%s'", Decl.Ident);
208                         Entry->Flags &= ~(SC_STORAGE | SC_DEF);
209                     } else if (Size == 0) {
210                         /* Size is unknown. Is it an array? */
211                         if (!IsTypeArray (Decl.Type)) {
212                             Error ("Variable `%s' has unknown size", Decl.Ident);
213                         }
214                         Entry->Flags &= ~(SC_STORAGE | SC_DEF);
215                     }
216
217                     /* Allocate storage if it is still needed */
218                     if (Entry->Flags & SC_STORAGE) {
219
220                         /* Switch to the BSS segment */
221                         g_usebss ();
222
223                         /* Define a label */
224                         g_defgloblabel (Entry->Name);
225
226                         /* Allocate space for uninitialized variable */
227                         g_res (Size);
228                     }
229                 }
230
231             }
232
233             /* Check for end of declaration list */
234             if (CurTok.Tok == TOK_COMMA) {
235                 NextToken ();
236                 comma = 1;
237             } else {
238                 break;
239             }
240         }
241
242         /* Function declaration? */
243         if (Entry && IsTypeFunc (Entry->Type)) {
244
245             /* Function */
246             if (!comma) {
247                 if (CurTok.Tok == TOK_SEMI) {
248                     /* Prototype only */
249                     NextToken ();
250                 } else if (Entry) {
251                     /* Function body definition */
252                     if (SymIsDef (Entry)) {
253                         Error ("Body for function `%s' has already been defined",
254                                Entry->Name);
255                     }
256                     NewFunc (Entry);
257                 }
258             }
259
260         } else {
261
262             /* Must be followed by a semicolon */
263             ConsumeSemi ();
264
265         }
266     }
267 }
268
269
270
271 void Compile (const char* FileName)
272 /* Top level compile routine. Will setup things and call the parser. */
273 {
274     char        DateStr[32];
275     char        TimeStr[32];
276     time_t      Time;
277     struct tm*  TM;
278
279     /* Since strftime is locale dependent, we need the abbreviated month names
280      * in english.
281      */
282     static const char MonthNames[12][4] = {
283         "Jan", "Feb", "Mar", "Apr", "May", "Jun",
284         "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
285     };
286
287     /* Add macros that are always defined */
288     DefineNumericMacro ("__CC65__", VERSION);
289
290     /* Language standard that is supported */
291     DefineNumericMacro ("__CC65_STD_C89__", STD_C89);
292     DefineNumericMacro ("__CC65_STD_C99__", STD_C99);
293     DefineNumericMacro ("__CC65_STD_CC65__", STD_CC65);
294     DefineNumericMacro ("__CC65_STD__", IS_Get (&Standard));
295
296     /* Optimization macros. Since no source code has been parsed for now, the
297      * IS_Get functions access the values in effect now, regardless of any
298      * changes using #pragma later.
299      */
300     if (IS_Get (&Optimize)) {
301         long CodeSize = IS_Get (&CodeSizeFactor);
302         DefineNumericMacro ("__OPT__", 1);
303         if (CodeSize > 100) {
304             DefineNumericMacro ("__OPT_i__", CodeSize);
305         }
306         if (IS_Get (&EnableRegVars)) {
307             DefineNumericMacro ("__OPT_r__", 1);
308         }
309         if (IS_Get (&InlineStdFuncs)) {
310             DefineNumericMacro ("__OPT_s__", 1);
311         }
312     }
313
314     /* __TIME__ and __DATE__ macros */
315     Time = time (0);
316     TM   = localtime (&Time);
317     xsprintf (DateStr, sizeof (DateStr), "\"%s %2d %d\"",
318               MonthNames[TM->tm_mon], TM->tm_mday, TM->tm_year + 1900);
319     strftime (TimeStr, sizeof (TimeStr), "\"%H:%M:%S\"", TM);
320     DefineTextMacro ("__DATE__", DateStr);
321     DefineTextMacro ("__TIME__", TimeStr);
322
323     /* Initialize the literal pool */
324     InitLiteralPool ();
325
326     /* Create the base lexical level */
327     EnterGlobalLevel ();
328
329     /* Generate the code generator preamble */
330     g_preamble ();
331
332     /* Open the input file */
333     OpenMainFile (FileName);
334
335     /* Are we supposed to compile or just preprocess the input? */
336     if (PreprocessOnly) {
337
338         while (NextLine ()) {
339             Preprocess ();
340             printf ("%.*s\n", SB_GetLen (Line), SB_GetConstBuf (Line));
341         }
342
343         if (Debug) {
344             PrintMacroStats (stdout);
345         }
346
347     } else {
348
349         /* Ok, start the ball rolling... */
350         Parse ();
351
352         /* Dump the literal pool. */
353         DumpLiteralPool ();
354
355         /* Write imported/exported symbols */
356         EmitExternals ();
357
358         if (Debug) {
359             PrintLiteralPoolStats (stdout);
360             PrintMacroStats (stdout);
361         }
362
363     }
364
365     /* Leave the main lexical level */
366     LeaveGlobalLevel ();
367
368     /* Print an error report */
369     ErrorReport ();
370 }
371
372
373
374