]> git.sur5r.net Git - cc65/blob - src/cc65/compile.c
Added .gitattributes to force LF line endings on commit.
[cc65] / src / cc65 / compile.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 compile.c                                 */
4 /*                                                                           */
5 /*                       Top level compiler subroutine                       */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2013, 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_TYPEMASK) != 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 ISO modes.
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 (GetBaseElementType (Decl.Type))) {
213                         g_userodata ();
214                     } else {
215                         g_usedata ();
216                     }
217
218                     /* Define a label */
219                     g_defgloblabel (Entry->Name);
220
221                     /* Skip the '=' */
222                     NextToken ();
223
224                     /* Parse the initialization */
225                     ParseInit (Entry->Type);
226                 } else {
227
228                     if (IsTypeVoid (Decl.Type)) {
229                         /* We cannot declare variables of type void */
230                         Error ("Illegal type for variable `%s'", Decl.Ident);
231                         Entry->Flags &= ~(SC_STORAGE | SC_DEF);
232                     } else if (Size == 0) {
233                         /* Size is unknown. Is it an array? */
234                         if (!IsTypeArray (Decl.Type)) {
235                             Error ("Variable `%s' has unknown size", Decl.Ident);
236                         }
237                         Entry->Flags &= ~(SC_STORAGE | SC_DEF);
238                     }
239
240                     /* Allocate storage if it is still needed */
241                     if (Entry->Flags & SC_STORAGE) {
242
243                         /* Switch to the BSS segment */
244                         g_usebss ();
245
246                         /* Define a label */
247                         g_defgloblabel (Entry->Name);
248
249                         /* Allocate space for uninitialized variable */
250                         g_res (Size);
251                     }
252                 }
253
254             }
255
256             /* Check for end of declaration list */
257             if (CurTok.Tok == TOK_COMMA) {
258                 NextToken ();
259                 comma = 1;
260             } else {
261                 break;
262             }
263         }
264
265         /* Function declaration? */
266         if (Entry && IsTypeFunc (Entry->Type)) {
267
268             /* Function */
269             if (!comma) {
270                 if (CurTok.Tok == TOK_SEMI) {
271                     /* Prototype only */
272                     NextToken ();
273                 } else {
274
275                     /* Function body. Check for duplicate function definitions */
276                     if (SymIsDef (Entry)) {
277                         Error ("Body for function `%s' has already been defined",
278                                Entry->Name);
279                     }
280
281                     /* Parse the function body */
282                     NewFunc (Entry);
283                 }
284             }
285
286         } else {
287
288             /* Must be followed by a semicolon */
289             ConsumeSemi ();
290
291         }
292     }
293 }
294
295
296
297 void Compile (const char* FileName)
298 /* Top level compile routine. Will setup things and call the parser. */
299 {
300     char        DateStr[32];
301     char        TimeStr[32];
302     time_t      Time;
303     struct tm*  TM;
304
305     /* Since strftime is locale dependent, we need the abbreviated month names
306     ** in english.
307     */
308     static const char MonthNames[12][4] = {
309         "Jan", "Feb", "Mar", "Apr", "May", "Jun",
310         "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
311     };
312
313     /* Add macros that are always defined */
314     DefineNumericMacro ("__CC65__", GetVersionAsNumber ());
315
316     /* Language standard that is supported */
317     DefineNumericMacro ("__CC65_STD_C89__", STD_C89);
318     DefineNumericMacro ("__CC65_STD_C99__", STD_C99);
319     DefineNumericMacro ("__CC65_STD_CC65__", STD_CC65);
320     DefineNumericMacro ("__CC65_STD__", IS_Get (&Standard));
321
322     /* Optimization macros. Since no source code has been parsed for now, the
323     ** IS_Get functions access the values in effect now, regardless of any
324     ** changes using #pragma later.
325     */
326     if (IS_Get (&Optimize)) {
327         long CodeSize = IS_Get (&CodeSizeFactor);
328         DefineNumericMacro ("__OPT__", 1);
329         if (CodeSize > 100) {
330             DefineNumericMacro ("__OPT_i__", CodeSize);
331         }
332         if (IS_Get (&EnableRegVars)) {
333             DefineNumericMacro ("__OPT_r__", 1);
334         }
335         if (IS_Get (&InlineStdFuncs)) {
336             DefineNumericMacro ("__OPT_s__", 1);
337         }
338     }
339
340     /* __TIME__ and __DATE__ macros */
341     Time = time (0);
342     TM   = localtime (&Time);
343     xsprintf (DateStr, sizeof (DateStr), "\"%s %2d %d\"",
344               MonthNames[TM->tm_mon], TM->tm_mday, TM->tm_year + 1900);
345     strftime (TimeStr, sizeof (TimeStr), "\"%H:%M:%S\"", TM);
346     DefineTextMacro ("__DATE__", DateStr);
347     DefineTextMacro ("__TIME__", TimeStr);
348
349     /* Other standard macros */
350     /* DefineNumericMacro ("__STDC__", 1);      <- not now */
351     DefineNumericMacro ("__STDC_HOSTED__", 1);
352
353     /* Create the base lexical level */
354     EnterGlobalLevel ();
355
356     /* Create the global code and data segments */
357     CreateGlobalSegments ();
358
359     /* Initialize the literal pool */
360     InitLiteralPool ();
361
362     /* Generate the code generator preamble */
363     g_preamble ();
364
365     /* Open the input file */
366     OpenMainFile (FileName);
367
368     /* Are we supposed to compile or just preprocess the input? */
369     if (PreprocessOnly) {
370
371         /* Open the file */
372         OpenOutputFile ();
373
374         /* Preprocess each line and write it to the output file */
375         while (NextLine ()) {
376             Preprocess ();
377             WriteOutput ("%.*s\n", (int) SB_GetLen (Line), SB_GetConstBuf (Line));
378         }
379
380         /* Close the output file */
381         CloseOutputFile ();
382
383     } else {
384
385         /* Ok, start the ball rolling... */
386         Parse ();
387
388     }
389
390     if (Debug) {
391         PrintMacroStats (stdout);
392     }
393
394     /* Print an error report */
395     ErrorReport ();
396 }
397
398
399
400 void FinishCompile (void)
401 /* Emit literals, externals, debug info, do cleanup and optimizations */
402 {
403     SymTable* SymTab;
404     SymEntry* Func;
405
406     /* Walk over all functions, doing cleanup, optimizations ... */
407     SymTab = GetGlobalSymTab ();
408     Func   = SymTab->SymHead;
409     while (Func) {
410         if (SymIsOutputFunc (Func)) {
411             /* Function which is defined and referenced or extern */
412             MoveLiteralPool (Func->V.F.LitPool);
413             CS_MergeLabels (Func->V.F.Seg->Code);
414             RunOpt (Func->V.F.Seg->Code);
415         }
416         Func = Func->NextSym;
417     }
418
419     /* Output the literal pool */
420     OutputLiteralPool ();
421
422     /* Emit debug infos if enabled */
423     EmitDebugInfo ();
424
425     /* Write imported/exported symbols */
426     EmitExternals ();
427
428     /* Leave the main lexical level */
429     LeaveGlobalLevel ();
430 }