]> git.sur5r.net Git - cc65/blob - src/cc65/compile.c
The -A and --ansi switches are gone, together with the __STRICT_ANSI__
[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 "standard.h"
60 #include "symtab.h"
61
62
63
64 /*****************************************************************************/
65 /*                                   Code                                    */
66 /*****************************************************************************/
67
68
69
70 static void Parse (void)
71 /* Top level parser routine. */
72 {
73     int comma;
74     SymEntry* Entry;
75
76     /* Go... */
77     NextToken ();
78     NextToken ();
79
80     /* Parse until end of input */
81     while (CurTok.Tok != TOK_CEOF) {
82
83         DeclSpec        Spec;
84         Declaration     Decl;
85         int             NeedStorage;
86
87         /* Check for empty statements */
88         if (CurTok.Tok == TOK_SEMI) {
89             NextToken ();
90             continue;
91         }
92
93         /* Check for an ASM statement (which is allowed also on global level) */
94         if (CurTok.Tok == TOK_ASM) {
95             AsmStatement ();
96             ConsumeSemi ();
97             continue;
98         }
99
100         /* Check for a #pragma */
101         if (CurTok.Tok == TOK_PRAGMA) {
102             DoPragma ();
103             continue;
104         }
105
106         /* Read variable defs and functions */
107         ParseDeclSpec (&Spec, SC_EXTERN | SC_STATIC, T_INT);
108
109         /* Don't accept illegal storage classes */
110         if ((Spec.StorageClass & SC_TYPE) == 0) {
111             if ((Spec.StorageClass & SC_AUTO) != 0 ||
112                 (Spec.StorageClass & SC_REGISTER) != 0) {
113                 Error ("Illegal storage class");
114                 Spec.StorageClass = SC_EXTERN | SC_STATIC;
115             }
116         }
117
118         /* Check if this is only a type declaration */
119         if (CurTok.Tok == TOK_SEMI) {
120             CheckEmptyDecl (&Spec);
121             NextToken ();
122             continue;
123         }
124
125         /* Check if we must reserve storage for the variable. We do
126          * this if we don't had a storage class given ("int i") or
127          * if the storage class is explicitly specified as static.
128          * This means that "extern int i" will not get storage
129          * allocated.
130          */
131         NeedStorage = (Spec.StorageClass & SC_TYPEDEF) == 0 &&
132                       ((Spec.Flags & DS_DEF_STORAGE) != 0  ||
133                       (Spec.StorageClass & (SC_STATIC | SC_EXTERN)) == SC_STATIC);
134
135         /* Read declarations for this type */
136         Entry = 0;
137         comma = 0;
138         while (1) {
139
140             unsigned SymFlags;
141
142             /* Read the next declaration */
143             ParseDecl (&Spec, &Decl, DM_NEED_IDENT);
144             if (Decl.Ident[0] == '\0') {
145                 NextToken ();
146                 break;
147             }
148
149             /* Get the symbol flags */
150             SymFlags = Spec.StorageClass;
151             if (IsTypeFunc (Decl.Type)) {
152                 SymFlags |= SC_FUNC;
153             } else {
154                 if (NeedStorage) {
155                     /* We will allocate storage, variable is defined */
156                     SymFlags |= SC_STORAGE | SC_DEF;
157                 }
158             }
159
160             /* Add an entry to the symbol table */
161             Entry = AddGlobalSym (Decl.Ident, Decl.Type, SymFlags);
162
163             /* Reserve storage for the variable if we need to */
164             if (SymFlags & SC_STORAGE) {
165
166                 /* Get the size of the variable */
167                 unsigned Size = SizeOf (Decl.Type);
168
169                 /* Allow initialization */
170                 if (CurTok.Tok == TOK_ASSIGN) {
171
172                     /* We cannot initialize types of unknown size, or
173                      * void types in non ANSI mode.
174                      */
175                     if (Size == 0) {
176                         if (!IsTypeVoid (Decl.Type)) {
177                             if (!IsTypeArray (Decl.Type)) {
178                                 /* Size is unknown and not an array */
179                                 Error ("Variable `%s' has unknown size", Decl.Ident);
180                             }
181                         } else if (ANSI) {
182                             /* We cannot declare variables of type void */
183                             Error ("Illegal type for variable `%s'", Decl.Ident);
184                         }
185                     }
186
187                     /* Switch to the data or rodata segment */
188                     if (IsQualConst (Decl.Type)) {
189                         g_userodata ();
190                     } else {
191                         g_usedata ();
192                     }
193
194                     /* Define a label */
195                     g_defgloblabel (Entry->Name);
196
197                     /* Skip the '=' */
198                     NextToken ();
199
200                     /* Parse the initialization */
201                     ParseInit (Entry->Type);
202                 } else {
203
204                     if (IsTypeVoid (Decl.Type)) {
205                         /* We cannot declare variables of type void */
206                         Error ("Illegal type for variable `%s'", Decl.Ident);
207                         Entry->Flags &= ~(SC_STORAGE | SC_DEF);
208                     } else if (Size == 0) {
209                         /* Size is unknown. Is it an array? */
210                         if (!IsTypeArray (Decl.Type)) {
211                             Error ("Variable `%s' has unknown size", Decl.Ident);
212                         }
213                         Entry->Flags &= ~(SC_STORAGE | SC_DEF);
214                     }
215
216                     /* Allocate storage if it is still needed */
217                     if (Entry->Flags & SC_STORAGE) {
218
219                         /* Switch to the BSS segment */
220                         g_usebss ();
221
222                         /* Define a label */
223                         g_defgloblabel (Entry->Name);
224
225                         /* Allocate space for uninitialized variable */
226                         g_res (Size);
227                     }
228                 }
229
230             }
231
232             /* Check for end of declaration list */
233             if (CurTok.Tok == TOK_COMMA) {
234                 NextToken ();
235                 comma = 1;
236             } else {
237                 break;
238             }
239         }
240
241         /* Function declaration? */
242         if (Entry && IsTypeFunc (Entry->Type)) {
243
244             /* Function */
245             if (!comma) {
246                 if (CurTok.Tok == TOK_SEMI) {
247                     /* Prototype only */
248                     NextToken ();
249                 } else if (Entry) {
250                     /* Function body definition */
251                     if (SymIsDef (Entry)) {
252                         Error ("Body for function `%s' has already been defined",
253                                Entry->Name);
254                     }
255                     NewFunc (Entry);
256                 }
257             }
258
259         } else {
260
261             /* Must be followed by a semicolon */
262             ConsumeSemi ();
263
264         }
265     }
266 }
267
268
269
270 void Compile (const char* FileName)
271 /* Top level compile routine. Will setup things and call the parser. */
272 {
273     char        Buf[20];
274     char        DateStr[20];
275     char        TimeStr[20];
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     strftime (Buf, sizeof (Buf), "%e %Y", TM);
318     xsprintf (DateStr, sizeof (DateStr), "\"%s %s\"", MonthNames[TM->tm_mon], Buf);
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     /* Ok, start the ball rolling... */
336     Parse ();
337
338     /* Dump the literal pool. */
339     DumpLiteralPool ();
340
341     /* Write imported/exported symbols */
342     EmitExternals ();
343
344     if (Debug) {
345         PrintLiteralPoolStats (stdout);
346         PrintMacroStats (stdout);
347     }
348
349     /* Leave the main lexical level */
350     LeaveGlobalLevel ();
351
352     /* Print an error report */
353     ErrorReport ();
354 }
355
356
357
358