]> git.sur5r.net Git - cc65/blob - src/cc65/compile.c
Introduce a -E flag that activates just the preprocessor.
[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        Buf[20];
275     char        DateStr[20];
276     char        TimeStr[20];
277     time_t      Time;
278     struct tm*  TM;
279
280     /* Since strftime is locale dependent, we need the abbreviated month names
281      * in english.
282      */
283     static const char MonthNames[12][4] = {
284         "Jan", "Feb", "Mar", "Apr", "May", "Jun",
285         "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
286     };
287
288     /* Add macros that are always defined */
289     DefineNumericMacro ("__CC65__", VERSION);
290
291     /* Language standard that is supported */
292     DefineNumericMacro ("__CC65_STD_C89__", STD_C89);
293     DefineNumericMacro ("__CC65_STD_C99__", STD_C99);
294     DefineNumericMacro ("__CC65_STD_CC65__", STD_CC65);
295     DefineNumericMacro ("__CC65_STD__", IS_Get (&Standard));
296
297     /* Optimization macros. Since no source code has been parsed for now, the
298      * IS_Get functions access the values in effect now, regardless of any
299      * changes using #pragma later.
300      */
301     if (IS_Get (&Optimize)) {
302         long CodeSize = IS_Get (&CodeSizeFactor);
303         DefineNumericMacro ("__OPT__", 1);
304         if (CodeSize > 100) {
305             DefineNumericMacro ("__OPT_i__", CodeSize);
306         }
307         if (IS_Get (&EnableRegVars)) {
308             DefineNumericMacro ("__OPT_r__", 1);
309         }
310         if (IS_Get (&InlineStdFuncs)) {
311             DefineNumericMacro ("__OPT_s__", 1);
312         }
313     }
314
315     /* __TIME__ and __DATE__ macros */
316     Time = time (0);
317     TM   = localtime (&Time);
318     strftime (Buf, sizeof (Buf), "%e %Y", TM);
319     xsprintf (DateStr, sizeof (DateStr), "\"%s %s\"", MonthNames[TM->tm_mon], Buf);
320     strftime (TimeStr, sizeof (TimeStr), "\"%H:%M:%S\"", TM);
321     DefineTextMacro ("__DATE__", DateStr);
322     DefineTextMacro ("__TIME__", TimeStr);
323
324     /* Initialize the literal pool */
325     InitLiteralPool ();
326
327     /* Create the base lexical level */
328     EnterGlobalLevel ();
329
330     /* Generate the code generator preamble */
331     g_preamble ();
332
333     /* Open the input file */
334     OpenMainFile (FileName);
335
336     /* Are we supposed to compile or just preprocess the input? */
337     if (PreprocessOnly) {
338
339         while (NextLine ()) {
340             Preprocess ();
341             printf ("%.*s\n", SB_GetLen (Line), SB_GetConstBuf (Line));
342         }
343
344         if (Debug) {
345             PrintMacroStats (stdout);
346         }
347
348     } else {
349
350         /* Ok, start the ball rolling... */
351         Parse ();
352
353         /* Dump the literal pool. */
354         DumpLiteralPool ();
355
356         /* Write imported/exported symbols */
357         EmitExternals ();
358
359         if (Debug) {
360             PrintLiteralPoolStats (stdout);
361             PrintMacroStats (stdout);
362         }
363
364     }
365
366     /* Leave the main lexical level */
367     LeaveGlobalLevel ();
368
369     /* Print an error report */
370     ErrorReport ();
371 }
372
373
374
375